@charset "UTF-8";

/* ====================
common
==================== */
:root {
    --primary-black: #231815;
    --primary-red: #982227;
}

html {
    font-size: 62.5%;
}

body {
    font-family:
        "Noto Sans JP",
        "Noto Serif JP",
        Lato;
    font-style: normal;
    color: var(--primary-black);
    background-color: #fff;
    line-height: normal;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
}

.section {
    padding: 30px 4%;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

/* ====================
header
==================== */
.header {
    display: flex;
    padding: 10px 5.3%;
    justify-content: space-between;
    align-items: center;
}

.header__logo img {
    max-width: 80px;
    height: auto;
}

.header__logo {
    z-index: 2000;
}

/* pc 769px */
@media screen and (min-width:769px) {
    .header {
        display: flex;
        padding: 20px 3.5%;
        justify-content: space-between;
        align-items: center;
        align-self: stretch;
    }

    .header__logo img {
        max-width: 180px;
        height: auto;
    }
}

/* ====================
nav
==================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* 画面全体の幅 */
    height: 100vh;
    /* 画面全体の高さ */
    background: rgba(255, 255, 255, 0.9);
    /* ほぼ白の半透明 */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    padding: 60px 10.6%;
    z-index: 1000;
}

/* メニューを開いたとき */
.nav.active {
    opacity: 1;
    pointer-events: auto;
}

.nav__menuBtn {
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: relative;
    z-index: 2000;
}

.nav__menuBtn span {
    display: block;
    margin: 0;
    border: none;
    width: 70%;
    height: 2px;
    background: var(--primary-red);
    transform-origin: 0% 50%;
    position: absolute;
    top: 12px;
    left: 25%;
    transition: .3s;
}

.nav__menuBtn span:nth-last-of-type(2) {
    top: 21px;
}

.nav__menuBtn span:nth-last-of-type(3) {
    top: 30px;
}

.nav__menuBtn.active span {
    left: 30%;
}

.nav__menuBtn.active span:nth-of-type(1) {
    transform: rotate(45deg);
    width: 72%;
    top: 10px;
}

.nav__menuBtn.active span:nth-of-type(2) {
    opacity: 0;
}

.nav__menuBtn.active span:nth-of-type(3) {
    top: 30px;
    transform: rotate(-45deg);
    width: 72%;
}


.nav__item {
    margin-top: 10px;
}

.nav__item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 5px 0px;
    color: var(--primary-black);
    cursor: pointer;
    border-bottom: 1px solid var(--primary-red);

    font-size: 1.2rem;
    letter-spacing: 0.18em;
    text-align: left;
}

.nav__item summary::-webkit-details-marker {
    display: none;
}

.nav__item summary::before,
.nav__item summary::after {
    position: absolute;
    width: 1px;
    height: .9em;
    border-radius: 2px;
    background-color: var(--primary-black);
    content: '';
    right: 10px;
}

.nav__item summary::before {
    /* right: 1em; */
    rotate: 90deg;
}

.nav__item summary::after {
    transition: rotate .3s;
}

.nav__item[open] summary::after {
    rotate: 90deg;
}

.nav__item ul {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    /* padding: .3em 2em 1.5em; */

    color: #231815;
    transition: transform .5s, opacity .5s;

    display: flex;
    padding: 5px 0px;
    margin-top: 5px;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    gap: 10px;
}

.nav__item[open] ul {
    transform: none;
    opacity: 1;
}

.nav__item a {
    font-size: 1.2rem;
    letter-spacing: 0.18em;
}


.nav__directory summary::before,
.nav__directory summary::after {
    position: absolute;
    width: 1px;
    height: .9em;
    border-radius: 2px;
    background-color: #231815b3;
    content: '';
    right: 10px;
}

.nav__directory summary::before {
    /* right: 1em; */
    rotate: 135deg;
    bottom: 15px;
}

.nav__directory summary::after {
    /* right: 1em; */
    rotate: 45deg;
    top: 9px;
}

.nav__directory[open] summary::after {
    rotate: 45deg;
}

.nav__directory[open] summary::before {
    rotate: 135deg;
}

/* pc 769px */
@media screen and (min-width:769px) {
    .nav__menuBtn {
        display: none;
    }

    .nav {
        position: static;
        opacity: 1;
        width: auto;
        height: auto;

        display: flex;
        /* justify-content: center; */
        align-items: center;
        background: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;

        gap: 30px;
        flex-direction: row;

        padding: 0px;
    }

    .nav__item summary {
        position: static;
        font-size: 1.5rem;
        font-weight: 500;
        border-bottom: 0px;
        letter-spacing: 0px;
        padding: 0px;
        white-space: nowrap;
    }

    .nav__item a {
        font-size: 1.5rem;
        font-weight: 500;
        border-bottom: 0px;
        letter-spacing: 0px;
        padding: 0px;
        white-space: nowrap;
    }

    .nav__item summary::before,
    .nav__item summary::after {
        display: none;
    }

    .nav__item {
        position: relative;
    }

    /* サブメニューのスタイル */
    .nav__item ul {
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        transition: opacity 0.3s, transform 0.3s;

        position: absolute;
        top: 100%;
        /* 親メニューのすぐ下に表示 */
        left: 0;
        min-width: 200px;
        /* 必要に応じて調整 */
        max-width: 300px;
        /* 最大幅を設定（調整可） */
        background: rgba(255, 255, 255, 0.95);
        border-radius: 5px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 99;
        padding: 10px 15px;
    }

    /* サブメニュー内のリンクを適度に配置 */
    .nav__item ul li {
        display: block;
        text-align: left;
        padding: 8px 12px;
        white-space: nowrap;
        /* 折り返さない */
    }

    /* open クラスがついたときに表示 */
    .nav__item.open ul {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    /* ホバー時のエフェクト（調整可） */
    .nav__item ul li:hover {
        background: #f0f0f0;
        border-radius: 3px;
    }

}

/* ====================
mainImage
==================== */
.section__mainImage {
    max-width: 100%;
    padding-top: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    animation: image_anime 30s ease infinite;
    animation-fill-mode: forwards;
}

@keyframes image_anime {
    0% {
        background-image: url(../img/mainImage/sp/mainImage_1.png);
    }

    15% {
        background-image: url(../img/mainImage/sp/mainImage_1.png);
    }

    30% {
        background-image: url(../img/mainImage/sp/mainImage_2.png);
    }

    45% {
        background-image: url(../img/mainImage/sp/mainImage_3.png);
    }

    60% {
        background-image: url(../img/mainImage/sp/mainImage_4.png);
    }

    75% {
        background-image: url(../img/mainImage/sp/mainImage_5.png);
    }

    100% {
        background-image: url(../img/mainImage/sp/mainImage_6.png);
    }

}

/* pc 769px */
@media screen and (min-width:769px) {
    .section__mainImage {
        padding-top: 0;
        width: 100%;
        /* 画面幅に合わせて調整 */
        height: 100vh;
        /* 高さは固定 */
        background-size: cover;
        /* 画像が収まるように縮小 */
        background-repeat: no-repeat;
        background-position: center;
    }

    @keyframes image_anime {
        0% {
            background-image: url(../img/mainImage/pc/mainImage_1.png);
        }

        15% {
            background-image: url(../img/mainImage/pc/mainImage_1.png);
        }

        30% {
            background-image: url(../img/mainImage/pc/mainImage_2.png);
        }

        45% {
            background-image: url(../img/mainImage/pc/mainImage_3.png);
        }

        60% {
            background-image: url(../img/mainImage/pc/mainImage_4.png);
        }

        75% {
            background-image: url(../img/mainImage/pc/mainImage_5.png);
        }

        100% {
            background-image: url(../img/mainImage/pc/mainImage_6.png);
        }

    }
}

/* ====================
concept
==================== */
.section__concept {
    display: flex;
    padding: 25px 4%;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    align-self: stretch;
    position: relative;
    overflow: hidden;
}

.section__concept .corner-circle {
    position: absolute;
    border-radius: 50%;
    z-index: -10;
    /* 背景の後ろに */
}

.section__concept .circle1 {
    width: 200px;
    height: 200px;
    border: 6px solid rgba(152, 34, 39, 0.50);
    top: -55px;
    right: -95px;
    /* 右上 */
}

.section__concept .circle2 {
    width: 200px;
    height: 200px;
    border: 6px solid rgba(35, 24, 21, 0.50);
    top: -90px;
    right: -65px;
    /* 右上 */
}

.section__concept .circle3 {
    width: 200px;
    height: 200px;
    border: 6px solid rgba(152, 34, 39, 0.50);
    bottom: -55px;
    left: -95px;
    /* 左下 */
}

.section__concept .circle4 {
    width: 200px;
    height: 200px;
    border: 6px solid rgba(35, 24, 21, 0.50);
    bottom: -90px;
    left: -65px;
    /* 左下 */
}

.concept__sentence {
    color: var(--primary-black);
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 2.917;
    letter-spacing: 0.12em;
    text-align: center;
}

.concept__sentence span {
    color: var(--primary-red);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.944;
    letter-spacing: 0.12em;
}

.pcBr {
    display: none;
}

.business {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.business h3 {
    color: var(--primary-black);
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    border-bottom: 1px solid var(--primary-black);
    text-align: center;
    width: 45%;
    padding-bottom: 10px;
}

.business__list {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.business__item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.business__item img {
    max-width: 75px;
    height: auto;
}

.business__item p {
    color: var(--primary-black);
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.17em;
}

/* pc 769px */
@media screen and (min-width:769px) {
    .section__concept {
        padding: 75px 0px;
    }

    .spBr {
        display: none;
    }

    .pcBr {
        display: block;
    }

    .concept__sentence {
        font-size: 2.3rem;
        font-weight: 500;
        line-height: 2.609;
        letter-spacing: 0.17em;
        padding: 0px 12%;
    }

    .concept__sentence span {
        font-size: 4.5rem;
        line-height: 1.7778;
        letter-spacing: 0.17em;
    }

    .business {
        margin-top: 50px;
    }

    .business h3 {
        font-size: 2.5rem;
        letter-spacing: 0.3em;
        width: 70%;
        padding-bottom: 15px;
    }

    .business__list {
        margin-top: 20px;
        gap: 50px;
        padding: 0px 18%;
    }

    .business__item img {
        max-width: 230px;
        height: auto;
    }

    .business__item p {
        font-size: 2.5rem;
        letter-spacing: 0.18em;
    }

    .section__concept .circle1 {
        width: 500px;
        height: 500px;
        border: 10px solid rgba(152, 34, 39, 0.50);
        top: -280px;
        right: -95px;
        /* 右上 */
    }

    .section__concept .circle2 {
        width: 500px;
        height: 500px;
        border: 10px solid rgba(35, 24, 21, 0.50);
        top: -220px;
        right: -190px;
        /* 右上 */
    }

    .section__concept .circle3 {
        width: 500px;
        height: 500px;
        border: 10px solid rgba(152, 34, 39, 0.50);
        bottom: -280px;
        left: -95px;
        /* 左下 */
    }

    .section__concept .circle4 {
        width: 500px;
        height: 500px;
        border: 10px solid rgba(35, 24, 21, 0.50);
        bottom: -220px;
        left: -190px;
        /* 左下 */
    }
}

/* ====================
goods
==================== */
.section__goods {
    padding: 30px 1%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 20px; */
    align-self: stretch;
}

.section__topic {
    color: var(--primary-black);
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--primary-black);
    text-align: center;
    width: 50%;
    position: relative;
}

/* 背景の四角 */
.decor-box {
    position: absolute;
    width: 57px;
    height: 11px;
    z-index: -1;
}

.decor-box--left {
    background-color: rgba(152, 34, 39, 0.50);
    left: -80px;
}

.decor-box--left2 {
    left: -100px;
    top: -5px;
    background-color: rgba(35, 24, 21, 0.50);
}

.decor-box--right {
    background-color: rgba(152, 34, 39, 0.50);
    right: -80px;
    top: -10px;
}

.decor-box--right2 {
    right: -100px;
    top: -5px;
    background-color: rgba(35, 24, 21, 0.50);
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 16px; */
}

.goods__img {
    width: auto;
    height: 165px;
}

.goods__name {
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    margin-top: 16px;
}

.goods__btn {
    display: flex;
    padding: 10px 4%;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    background: var(--primary-red);
    margin-top: 11px;
}

.goods__btn img {
    max-width: 20px;
    height: auto;
}

.goods__btn {
    color: #FFF;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.196em;
}

.swiper {
    width: 100%;
    max-width: 800px;
    margin: auto;
}

.swiper-slide {
    /* text-align: center; */
    /* display: block; */
    /* display: flex; */
    /* flex-direction: column;
    align-items: center; */
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
}


@media screen and (min-width:769px) {
    .swiper-backface-hidden .swiper-slide {
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}

/* 矢印のデザイン */
.swiper-button-prev,
.swiper-button-next {
    color: var(--primary-red);
    /* 矢印の色を赤に変更 */
    font-size: 30px;
    /* 矢印のサイズ（デフォルトより小さく） */
    font-weight: bold;
    /* 矢印の太さを太く */
    width: 75px;
    /* ボタンの幅 */
    height: 37px;
    /* ボタンの高さ */
}

/* 矢印の位置を内側に調整 */
.swiper-button-prev {
    left: 10px;
    /* 左の矢印を内側に寄せる */
}

.swiper-button-next {
    right: 10px;
    /* 右の矢印を内側に寄せる */
}

.button__link {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    align-self: stretch;
    margin-top: 20px;
    padding: 0px 6.6%;
}

.button__link img {
    max-width: 500px;
    height: auto;
    position: relative;
}

/* .button__link p {
    color: var(--primary-red);
    text-align: right;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    position: absolute;
    right: 50px;
    top: -5px;
} */

/* pc 769px */
@media screen and (min-width:769px) {
    .section__goods {
        padding: 50px 8.3%;
    }

    .section__topic {
        font-size: 3.7rem;
        padding-bottom: 30px;
    }

    /* 背景の四角 */
    .decor-box {
        position: absolute;
        width: 212px;
        height: 35px;
        z-index: -1;
    }

    .decor-box--left {
        background-color: rgba(152, 34, 39, 0.50);
        left: -310px;
        top: 10px;
    }

    .decor-box--left2 {
        left: -405px;
        top: -5px;
        background-color: rgba(35, 24, 21, 0.50);
    }

    .decor-box--right {
        background-color: rgba(152, 34, 39, 0.50);
        right: -310px;
        top: -10px;
    }

    .decor-box--right2 {
        right: -405px;
        top: 5px;
        background-color: rgba(35, 24, 21, 0.50);
    }

    .swiper-wrapper {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 50px;
        margin-top: 50px;
    }

    .swiper-slide {
        flex: 1; /* 横並びにする */
        max-width: 300px; /* 商品の幅調整 */
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }

    .goods__img {
        width: 320px;
        height: 250px;
        object-fit: cover;
    }

    .goods__name {
        font-size: 2.2rem;
        letter-spacing: 0.18em;
        white-space: nowrap;
    }

    .goods__btn {
        padding: 13px 30px;
        margin-top: 20px;

        font-size: 1.8rem;
        letter-spacing: 0.18em;


    }

    .goods__btn img {
        max-width: 30px;
        height: auto;
    }

    .swiper {
        width: 100%;
        max-width: 100%;
        margin: auto;
    }

    .button__link {
        margin-top: 50px;
        padding: 0px;
    }

    .button__link img {
        max-width: 1000px;
        height: auto;
    }

    .button__link p {
        position: absolute;
        right: 145px;
        top: -40px;
        right: 195px;
        font-size: 2.0rem;
    }

}

/* ====================
column
==================== */
.section__column {
    display: flex;
    padding: 50px 4%;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
}

.column__topic {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
}

.section__column h3 {
    max-width: 139px;
    height: auto;
}

.column__list {
    margin: 40px 18% 0px;
}

.column__item {
    display: flex;
    padding: 20px 5.3%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    border-radius: 10px;
    background: #F9D6D8;
    margin-top: 50px;
}

.column__item:first-of-type {
    margin-top: 0px;
}

.column__item img {
    max-width: 200px;
    height: auto;
    border-radius: 5px;
}

.column__item time {
    color: var(--primary-black);
    text-align: center;
    font-family: Lato;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.3em;
    margin-top: 20px;
}

.column__item a {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    margin-top: 10px;
}

/* .section__column .button__link {
    margin-top: 45px;
} */

/* pc 769px */
@media screen and (min-width:769px) {
    .section__column {
        padding: 75px 8.3% 50px 8.3%;
        /* flex-wrap: wrap; */
    }

    .column__topic {
        display: flex;
        align-items: center;
        flex-direction: row;
        justify-content: center;
    }

    .section__column h3 {
        max-width: 230px;
    }

    /* .section__column h3 img {
        max-width: 300px;
        height: auto;
    } */

    .column__list {
        margin: 0px;
        display: flex;
        align-items: flex-start;
        gap: 50px;
        margin-left: 6%;
    }

    .column__item {
        max-width: 250px;
        padding: 20px 1.4%;
        margin-top: 0px;
        height: 350px;
    }

    .column__item img {
        width: 200px;
        height: 200px; /* 必要に応じて調整してね */
        object-fit: cover;
        display: block;
        justify-content: flex-start;
    }
}

/* ====================
news
==================== */
.section__news {
    display: flex;
    padding: 20px 4.2%;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
}

.news__item:first-of-type {
    margin-top: 20px;
    border-top: 1px solid rgba(35, 24, 21, 0.50);
}

.news__list {
    display: flex;
    padding: 0px 8%;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
}

.news__item {
    display: flex;
    padding: 25px 0px;
    align-items: center;
    align-self: stretch;
    border-bottom: 1px solid rgba(35, 24, 21, 0.50);
}

.news__item time {
    font-family: Lato;
    font-size: 0.9rem;
    letter-spacing: 0.18em;
}

.news__item a {
    font-size: 1.1rem;
    letter-spacing: 0.18em;
    margin-left: 30px;
}

.section__news .button__link {
    margin-top: 20px;
}

.nonews {
    text-align: center;
    font-size: 1.1rem;
    margin: 20px auto;
}

/* pc 769px */
@media screen and (min-width:769px) {
    .section__news {
        padding: 50px 8.3%;
    }

    .news__list {
        padding: 0px 5.5%;
        margin-top: 50px;
    }

    .news__item:first-of-type {
        margin-top: 0px;
    }

    .news__item {
        padding: 40px 3.5%;
    }

    .news__item time {
        font-size: 1.6rem;
        letter-spacing: 0.18em;
    }

    .news__item a {
        font-size: 2.2rem;
        margin-left: 50px;
    }

    .section__news .button__link {
        margin-top: 80px;
    }

    .nonews {
        text-align: center;
        font-size: 2.2rem;
        margin: 0 auto;
    }
}

/* ====================
footer
==================== */
.footer__topic {
    display: flex;
    padding: 20px 11%;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    background-color: #EFEDE9;
}

.footer__headlinePc {
    display: none;
}

details {
    width: 100%;
}

.footer__headlineSp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    margin-top: 20px;
}

.footer__logo img {
    max-width: 80px;
    height: auto;
}

.footer__sns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.footer__sns img {
    max-width: 20px;
    height: auto;
}

.footer__info {
    display: flex;
    padding: 10px 4%;
    flex-direction: column;
    align-self: stretch;
    background-color: var(--primary-red);
}

.footer__link {
    display: flex;
    align-items: center;
    gap: 25px;
    align-self: stretch;
}

.footer__link a {
    color: #FFF;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
}

.footer__copyright {
    margin-top: 10px;
}

.footer__copyright small {
    color: #FFF;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
}

.nav__pc {
    display: none;
}

/* pc 769px */
@media screen and (min-width:769px) {
    .footer__topic {
        padding: 50px 8.3%;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start
    }

    .footer__headlinePc {
        display: block;

        display: flex;
        flex-direction: column;
        align-items: center;
        align-self: stretch;
    }

    .footer__headlineSp {
        display: none;
    }

    .nav__sp {
        display: none;
    }

    .nav__pc {
        display: block;
    }

    .footer__logo img {
        max-width: 190px;
        height: auto;
    }

    .footer__sns {
        gap: 30px;
        margin-top: 40px;
    }

    .footer__sns img {
        max-width: 40px;
        height: auto;
    }

    .nav__pc {
        margin-left: 7%;
    }

    .nav__pc:first-of-type {
        margin-left: 80px;
    }

    .nav__item__pc:nth-of-type(2),
    .nav__item__pc:nth-of-type(3),
    .nav__item__pc:nth-of-type(4),
    .nav__item__pc:nth-of-type(5) {
        margin-top: 43px;
    }

    .nav__item__pc__header {
        font-size: 2.0rem;
        font-weight: 500;
        letter-spacing: 0.15em;
        border-bottom: 1px solid var(--primary-red);
        padding-bottom: 10px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        align-self: stretch;
    }

    .nav__item__pc ul {
        margin-top: 25px;
    }

    .nav__item__pc li {
        margin-top: 22px;
    }

    .nav__item__pc li a {
        font-size: 1.6rem;
        letter-spacing: 0.15em;
    }

    .footer__info {
        padding: 15px 8.3%;
        justify-content: space-between;
        align-items: center;
        align-self: stretch;
        flex-direction: row;
    }

    .footer__link {
        gap: 80px;
    }

    .footer__link a {
        font-size: 1.2rem;
    }

    .footer__copyright {
        margin-top: 0px;
    }

    .footer__copyright small {
        font-size: 0.8rem;
        font-weight: 500;
    }

}