@charset "utf-8";

/* ==============================================================
    共通スタイル
============================================================== */

section {
    background-color: var(--c-white);
}

.section__inner {
    width: 90%;
    max-width: 960px;
    margin: 0 auto;
    padding: 120px 0;
}

.section__inner.-flex {
    display: flex;
    column-gap: 80px;
    align-items: center;
}

.section__lead {
    text-align: center;
    padding-bottom: 2em;
}

.section__title {
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    padding-bottom: 0.9em;
    margin: 0 auto 0.8em auto;
    font-size: var(--fz-xxxl);
    font-weight: var(--fw-bold);
    text-align: center;
    line-height: 1.5;
}

.section__title span {
    display: inline-block;
}

.section__title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 120%;
    max-width: 440px;
    height: 7px;
    margin: 0 auto;
    background-image: url(../_image/peel_title_line.svg);
    background-repeat: space;
    background-position: center;
}

.section__title.-yellowLine::after {
    background-image: url(../_image/peel_title_line_yellow.svg);
}

.img__box {
    flex-shrink: 0;
    overflow: hidden;
}

.img__graphic,
.img__box img {
    width: 100%;
    height: auto;
    flex-shrink: 0;
}

.img__box.-flex,
.img__graphic {
    width: calc((100% - 80px) / 2 );
}

.btn {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0.6em 1.8em;
    font-weight: var(--fw-bold);
    color: var(--c-white);
    background-color: var(--c-peel-pink);
    border: 2px solid var(--c-peel-pink);
    border-radius: 10em;
    transition: all 0.3s;
}

.btn.-mailIcon::before {
    content:"";
    display: inline-block;
    width: 1.2em;
    height: 1em;
    margin-right: 0.5em;
    vertical-align: middle;
    background-image: url(../_image/contact_icon_white.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

.preopen {
    text-align: center;
    font-weight: var(--fw-bold);
    color: var(--c-peel-pink);
}

@media (hover:hover) {

    .btn:hover {
        background-color: transparent;
        color: var(--c-peel-pink);
        letter-spacing: 0.1em;
        transition: all 0.3s;
    }

    .btn:hover.-mailIcon::before {
        background-image: url(../_image/contact_icon_pink.svg);
    }

}

@media screen and (max-width:640px) {

    .section__inner.-flex {
        flex-direction: column;
        row-gap: 40px;
    }

    .section__inner.-spReverse {
        flex-direction: column-reverse;
    }

    .section__title {
        position: relative;
        width: -moz-fit-content;
        width: fit-content;
        font-size: var(--fz-xxl);
    }

    .section__title::after {
        width: 105%;
        max-width: 105%;
        height: 10px;
    }

    .img__box {
        width: 100%;
    }

    .img__box.-flex,
    .img__graphic {
        width: 100%;
    }

    .section__lead {
        text-align: left;
    }

}

/* ==============================================================
    ヘッダー
============================================================== */
#header {
    position: fixed;
    z-index: 9000;
    width: 100%;
    height: 90px;
    background-color: var(--c-white);
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
}

.header_rightBox {
    position: relative;
    z-index: 9999;
    display: flex;
    column-gap: 2em;
}

.haeder__logo {
    position: relative;
    z-index: 9999;
    height: 50px;
}

.haeder__logo img {
    width: auto;
    height: 100%;
}

.header__contact {
    font-size: var(--fz-s);
}


/* ハンバーガーボタン */
.header__menuBtn {
    display: block !important;
    width: 38px;
    height: 41px;
}

.headerMenuBtn__inner {
    position: relative;
    height: 28px;
}

.headerMenuBtn__inner::after {
    content: "";
    position: absolute;
    bottom: -1.1em;
    left: -4%;
    display: block;
    width: 110%;
    height: 13px;
    background-image: url(../_image/menu.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom center;
}

.headerMenuBtn__inner span {
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 4px;
    margin: 0 auto;
    background-color: var(--c-peel-pink);
    transition: 0.5s;
}

.headerMenuBtn__inner span:first-child{
    top: 0;
}

.headerMenuBtn__inner span:nth-child(2){
    opacity: 1;
    top: 50%;
    transform: translateY(-2px);
}

.headerMenuBtn__inner span:last-child{
    top: auto;
    bottom: 0;
}

/* ボタンクリックで×に */
#header.is-open .headerMenuBtn__inner span:first-child {
    transform: translateY(12px) rotate(45deg);
}

#header.is-open .headerMenuBtn__inner span:nth-child(2){
    opacity: 0;
}

#header.is-open .headerMenuBtn__inner span:last-child {
    transform: translateY(-12px) rotate(-45deg);
}

/* メニュー枠 */
.header__bg {
    position: absolute;
    z-index: 5000;
    top: 0;
    bottom: 0;
    right: -100%;
    width: 35vw;
    height: 100vh;
    background-color: var(--c-white);
    transition: all 0.8s ease;
    overflow-y: auto;
}

#header.is-open .header__bg {
    right: 0;
    transition: all 0.8s ease;
}

/* メニュー内部 */
.header__nav {
    display: flex;
    flex-direction: column;
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
    margin: 18vh auto 4.2vh;
}

.header__nav a {
    margin-bottom: 3vh;
    opacity: 0;
    width: -moz-fit-content;
    width: fit-content;
    font-size: var(--fz-l);
    color: var(--c-peel-pink);
    font-weight: var(--fw-bold);
    transform: translateX(2rem);
    transition: color 0.25s ease;
}

/* 出現の時差 */
#header.is-open .header__nav a {
    opacity: 1;
    transform: translateX(0);
    transition: transform 1s ease, opacity 1s ease;
}

#header.is-open .header__nav a:first-child {
    transition-delay: 0.4s;
}

#header.is-open .header__nav a:nth-child(2) {
    transition-delay: 0.5s;
}

#header.is-open .header__nav a:nth-child(3) {
    transition-delay: 0.6s;
}

#header.is-open .header__nav a:nth-child(4) {
    transition-delay: 0.7s;
}

#header.is-open .header__nav a:nth-child(5) {
    transition-delay: 0.8s;
}

#header.is-open .header__nav a:nth-child(6) {
    transition-delay: 0.9s;
}

#header.is-open .header__nav a:nth-child(7) {
    transition-delay: 1s;
}

#header.is-open .header__nav a:nth-child(8) {
    transition-delay: 1.1s;
}

#header.is-open .header__nav a:nth-child(9) {
    transition-delay: 1.2s;
}

.header__sns {
    display: block !important;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    opacity: 0;
    transition: opacity 0.3s;
}

#header.is-open .header__sns {
    opacity: 1;
    transition: opacity 0.4s;
    transition-delay: 1.2s;
}

.header__sns li {
    display: inline-block;
    width: 1.4em;
    height: auto;
    margin-right: 20px;
}

.header__sns li:last-child {
    margin-right: 0;
}


@media (hover:hover) {

    .header__nav a:hover {
        color: var(--c-peel-yellow);
        transition: color 0.25s ease;
    }

}


@media screen and (max-width:640px) {

    #header {
        height: 100px;
    }

    .haeder__logo {
        height: 55px;
    }

    .header_rightBox {
        column-gap: 1.2em;
    }

    .header__contact {
        font-size: var(--fz-xs);
        padding: 0.7em 1.4em;
    }

    .header__menuBtn {
        width: 1.9em;
        height: 2.1em;
    }

    .headerMenuBtn__inner {
        height: 1.4em;
    }

    .headerMenuBtn__inner::after {
        bottom: -0.9em;
    }

    /* ボタンクリックで×に */
    #header.is-open .headerMenuBtn__inner span:first-child {
        transform: translateY(0.62em) rotate(45deg);
    }

    #header.is-open .headerMenuBtn__inner span:last-child {
        transform: translateY(-0.62em) rotate(-45deg);
    }

    /* メニュー枠 */
    .header__bg {
        width: 100vw;
    }

    /* メニュー内部 */
    .header__nav {
        margin-top: 15vh;
    }

    .header__nav a {
        width: 100%;
        text-align: center;
    }
}

/* ==============================================================
    コンテンツ
============================================================== */

/* === mainV ================================================== */

#mainV {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: -500;
    min-width: 1024px;
    width: 100%;
    min-height: 580px;
    aspect-ratio: 16 / 9;
    background-image: url(../_image/mainV_bg.jpg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
}

.mainV__logo {
    width: 380px;
    height: auto;
    margin-bottom: 10px;
}

.mainV__logo img {
    width: 100%;
    height: auto;
}

.mainV__copy {
    margin-top: 5px;
    text-align: center;
    color: var(--c-white);
    font-size: clamp(var(--fz-l), 2.5vw, var(--fz-2x));
    font-weight: var(--fw-bold);
    line-height: 1.4;
    text-shadow: 0px 0px 10px var(--c-black), 2px 3px 3px rgba(var(--c-black-rgb), 0.4);
}

.mainV__copy span {
    padding-top: 0.3em;
    display: block;
    font-size: 0.7em;
}

@media screen and (max-width: 1500px) and (min-width: 641px) {

    #mainV {
        height: 800px;
        min-height: 800px;
    }

    .mainV__logo {
        width: 340px;
    }

}

@media (orientation: portrait) and (min-width: 641px) {

    /* タブレット等 */
    #mainV {
        height: auto;
        min-height: 1024px;
        aspect-ratio: 1 / 1;
    }

    .mainV__logo {
        width: 100%;
    }

    .mainV__copy {
        font-size: clamp(var(--fz-xxl), 4vw, var(--fz-3x));
    }

}

@media screen and (max-width:640px) {

    #mainV {
        background-image: url(../_image/mainV_bg-sp.jpg);
        min-width: 100%;
        aspect-ratio: 9 / 16;
    }

    .mainV__logo {
        width: 80%;
        max-width: 400px;
    }

    .mainV__copy {
        font-size: var(--fz-xl);
    }

    .mainV__copy span {
        font-size: var(--fz-m);
    }

}

/* === deco__peel ================================================== */

.deco__peel {
    width: 100%;
    height: 0;
    background-image: url(../_image/deco_peel.svg);
    background-repeat: repeat-x;
    background-position: bottom -2px center;
    background-size: auto 70px;
    padding-top: 56.25%;
}

@media screen and (max-width: 1500px) and (min-width: 641px) {

    .deco__peel {
        padding-top: 800px;
    }

}

@media (orientation: portrait) and (min-width: 641px) {

    /* タブレット等 */
    .deco__peel {
        padding-top: 100%;
    }

}

@media screen and (max-width:640px) {

    .deco__peel {
        padding-top: 177%;
    }

}

/* === about ================================================== */
#about {
    color: var(--c-white);
    background-color: var(--c-peel-pink);
    outline: 3px solid var(--c-peel-pink);
}

.about__inner {
    display: flex;
    column-gap: 80px;
    align-items: center;
}

@media screen and (max-width:640px) {

    .about__inner {
        flex-direction: column;
        row-gap: 40px;
    }

}

/* === video ================================================== */

.video__inner {
    padding-bottom: 50px;
}

.video__list {
    display: grid;

    /* ↓↓ 動画1件  ↓↓ */
    grid-template-columns: 1fr;
    width: 80%;
    margin: 0 auto;
    /* ↑↑ 動画1件 ↑↑ */

    /* 動画増えたらこっちに */
    /* grid-template-columns: repeat(3, 1fr); */

    gap: 60px 20px;
    margin-top: 40px;
}

.video__item {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    border: 1px solid var(--c-purple-pale);
}

.video__item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video__item p {
    padding-top: 0.3em;
    line-height: 1.4;
    text-align: center;
}

@media screen and (max-width:640px) {

    .video__list {
        display: grid;
        width: 100%;
        grid-template-columns: 1fr;
        gap: 60px 20px;
        margin-top: 40px;
    }
}



/* === store ================================================== */

.store__inner {
    display: flex;
    padding-left: 5%;
    padding-right: 5%;
}

.store__img {
    width: 50%;
}

.store__text {
    display: grid;
    place-content: center;
    place-items: center;
    width: 50%;
    background-color: var(--c-bg-yellow);
}

.store__text p {
    margin-bottom: 0.5em;
    font-size: var(--fz-xl);
    font-weight: var(--fw-bold);
    text-align: center;
}

.store__link {
    margin: 0 auto;
}

@media screen and (max-width:640px) {

    .store__inner {
        flex-direction: column;
    }

    .store__img,
    .store__text {
        width: 100%;
    }

    .store__text {
        padding: 40px 0;
    }

}

/* === make ================================================== */
#make {
    background-color: var(--c-bg-gray);
    outline: 3px solid var(--c-bg-gray);
}

@media screen and (max-width:640px) {
    .make__img {
        margin-top: -1.5em;
    }
}

/* === current ================================================== */
#current {
    background-color: var(--c-bg-gray);
    outline: 3px solid var(--c-bg-gray);
}

.current__inner {
    padding-top: 20px;
}

.current__inner .img__graphic {
    background-color: var(--c-white);
}

@media screen and (max-width:640px) {

    .current__inner {
        flex-direction: column;
        row-gap: 40px;
    }

    .current__inner .img__graphic {
        width: 100%;
    }

}

/* === solution ================================================== */
#solution {
    background-color: var(--c-bg-gray);
}

.solution__inner {
    padding-top: 20px;
}

/* === peel,attraction ================================================== */

#peel,
#attraction {
    outline: 3px solid var(--c-white);
}

.attraction__inner {
    padding-top: 30px;
    padding-bottom: 30px;
}

.attraction__inner .img__graphic {
    background-color: var(--c-bg-gray);
}

/* === potential ================================================== */

.potential__imgWrap {
    width: 100%;
    overflow: hidden;
}

.potential__imgList {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    row-gap: 40px;
    padding-top: 20px;
}

.potential__imgItem {
    width: 420px;
    height: auto;
}

.potential__imgItem figcaption {
    text-align: center;
    padding-top: 0.5em;
    line-height: 1.2;
    font-weight: var(--fw-bold);
}

.potential__arrow {
    width: 100%;
    margin: 40px auto 50px;
    height: 30px;
    background-image: url(../_image/arrow_bottom.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.potential__btn {
    padding: 0.6em 3em;
    margin: 50px auto 0;
}

#potential .preopen {
    margin-bottom: 20px;
    font-size: var(--fz-l);
}

@media screen and (max-width:640px) {

    .potential__imgList {
        column-gap: 20px;
        row-gap: 30px;
    }

    .potential__imgItem {
        width:calc(50% - 10px);
    }

}

/* === news ================================================== */

#news {
    background-color: var(--c-bg-yellow);
    outline: 3px solid var(--c-bg-yellow);
}

.news__box {
    padding: 60px 40px;
    background-color: var(--c-white);
}

.news__list {
    height: 500px;
}

/* スクロールバー：SimpleBar使用 */
.simplebar-scrollbar::before {
    background: var(--c-peel-pink) !important;
    opacity: 1 !important;
    width: 4px;
    margin-left: 2px;
    margin-top: 2px;
}

.simplebar-scrollbar.simplebar-visible::before {
    opacity: 1;
}

.simplebar-track {
    background-color: var(--c-bg-gray);
}

.news__date {
    font-family: var(--ff-en);
    font-weight: var(--fw-en-bold);
    color: var(--c-peel-pink);
}

.news__title {
    font-size: var(--fz-xl);
    font-weight: var(--fw-bold);
    margin-bottom: 0.2em;
    line-height: 1.5;
}

.news__text {
    padding-left: 0.15em;
    line-height: 1.6;
}

.news__list {
    padding: 2em;
}

.news__item {
    padding: 1.5em 2em 1.5em 1.2em;
    border-bottom: 1px solid var(--c-gray);
}

.news__item:first-child {
    border-top: 1px solid var(--c-gray);
}

.news__img {
    display: inline-block;
    width: auto;
    height: auto;
    max-width: 47%;
    margin: 1% 2% 1% 0;
}

.news__img img {
    width: 100%;
}

.news__img figcaption {
    text-align: center;
    font-size: var(--fz-s);
}

.news__item a {
    display: block;
    position: relative;
    transition: all 0.3s;
}

.news__item a .news__title {
    text-decoration: underline;
}

.news__item a::after {
    content: "";
    position: absolute;
    left: auto;
    right: -1.2em;
    top: calc(50% - 0.25em);
    display: block;
    width: 0.5em;
    height: 0.5em;
    border: 2px solid;
    border-color: var(--c-peel-pink) var(--c-peel-pink) transparent transparent;
    transform: rotate(45deg);
    transition: all 0.3s;
}

@media (hover:hover) {

    .news__item a:hover {
        opacity: 0.6;
        transition: all 0.3s;
    }

    .news__item a:hover::after {
        content: "";
        right: -1.5em;
        transition: all 0.3s;
    }

}

@media screen and (max-width:640px) {

    .news__box {
        padding: 40px 30px;
    }

    .news__list {
        height: 550px;
        padding: 0 1em 0 0;
    }

    .news__item {
        padding: 1em 1.5em 1em 0.5em;
    }

    .news__title {
        font-size: var(--fz-l);
    }

    .news__img {
        width: 100%;
        max-width: 100%;
        margin: 2% 0;
    }

    .news__img img {
        width: 100%;
        max-width: 100%;
    }

    .news__item a::after {
        right: -1em;
        top: auto;
        bottom: 0;
    }

}

/* === partner ================================================== */

#partner {
    background-color: var(--c-bg-gray);
}

.partner__box {
    background-color: var(--c-white);
    padding: 60px;
    margin-bottom: 60px;
}

.partner__title {
    margin-bottom: 1.2em;
    font-size: var(--fz-xl);
    text-align: center;
    font-weight: var(--fw-bold);
}

.partner__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 1.8em;
    row-gap: 1em;
}

.partner__item {
    position: relative;
    line-height: 1.5;
    text-indent: -1.7em;
    padding-left: 1.7em;
}

.partner__item::before {
    content: "";
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    margin-right: 0.5em;
    vertical-align: middle;
    background-image: url(../_image/peel_icon_pink.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.partner__item a {
    text-decoration: underline;
    text-decoration-color: var(--c-gray);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.4em;
    transition: opacity 0.3s;
}

@media (hover:hover) {

    .partner__item a:hover {
        opacity: 0.7;
        transition: opacity 0.3s;
    }

}


@media screen and (max-width:640px) {

    .partner__title {
        margin-bottom: 0.8em;
    }

    .partner__box {
        padding: 60px;
    }

    .partner__list {
        grid-template-columns: 1fr;
    }

}

/* === contact ================================================== */

#contact {
    padding-bottom: 70px;
    background-color: var(--c-peel-yellow-soft);
    background-image: url(../_image/deco_peel.svg);
    background-repeat: repeat-x;
    background-position: bottom -2px center;
    background-size: auto 70px;
}

.contact__inner {
    padding: 100px 0;
}

.contact__lead {
    margin-bottom: 2rem;
    font-size: var(--fz-xxl);
    font-weight: var(--fw-bold);
    text-align: center;
}

.btn.contact__link {
    font-size: var(--fz-l);
    margin: 0 auto;
}

.contact__text {
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 2em;
    margin: 0 auto 1.2em;
    color: var(--c-peel-pink);
    /* color: var(--c-white);
    background-color: var(--c-peel-pink); */
    font-weight: var(--fw-bold);
    text-align: center;
    border: 2px solid var(--c-peel-pink) ;
    border-radius: 10em;
}

.contact__mailImg {
    width: 380px;
    height: auto;
    margin: 0 auto;
}

@media (hover:hover) {

    .btn.contact__link:hover {
        background-color: rgba(var(--c-peel-pink-rgb), 0.6);
        color: var(--c-white);
    }

    .btn.contact__link:hover::before {
        background-image: url(../_image/contact_icon_white.svg);
    }

}

@media screen and (max-width:640px) {

    .contact__lead {
        font-size: var(--fz-xl);
    }

    .contact__text {
        padding: 0.5em 2em;
        line-height: 1.3;
    }

    .contact__mailImg {
        width: 80%;
    }

}

/* === pagetop ================================================== */

#page_top {
    position: fixed;
    z-index: 500;
    right: 2vw;
    bottom: -5px;
    width: 60px;
    height: 60px;
    background-color: var(--c-white);
    border: 3px solid var(--c-peel-pink);
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s;
}

#page_top a {
    display: block;
    height: 100%;
    user-select: none;
}

#page_top::after {
    content: "";
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-top: 3px solid var(--c-peel-pink);
    border-right: 3px solid var(--c-peel-pink);
    transform: translateX(-50%) rotate(-45deg);
    transition: margin 0.25s;
    pointer-events: none;
}

#page_top.is-fixed {
    opacity: 1;
    visibility: visible;
    bottom: 1.5vw;
    transition: all 0.25s;
}

@media (hover: hover) {

    #page_top:hover {
        background-color: var(--c-peel-pink);
    }

    #page_top:hover::after {
        border-top: 3px solid var(--c-white);
        border-right: 3px solid var(--c-white);
    }

}

@media screen and (max-width:640px) {

    #page_top {
        right: 2.5vw;
        width: 80px;
        height: 80px;
    }

    #page_top::before {
        width: 30px;
        height: 30px;
    }

    #page_top.is-fixed {
        bottom: 3.5vw;
    }

}

/* === footer ================================================== */

#footer {
    position: relative;
    padding-top: 80px;
    background-color: var(--c-peel-pink);
    outline: 3px solid var(--c-peel-pink);
}

.footer__inner {
    width: 95%;
    max-width: 960px;
    margin: 0 auto;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px;
}

.footer__logo {
    width: 130px;
}

.footer__logo a {
    display: block;
    transition: all 0.3s;
}

.footer__logo img {
    width: 100%;
    height: auto;
}

.footer__nav {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(5, min-content);
    column-gap: 80px;
}

.footer__nav a {
    color: var(--c-white);
    font-weight: var(--fw-bold);
    margin-bottom: 0.8em;
    transition: color 0.3s;
}

.footer__nav a::before {
    content: "";
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    margin-right: 0.5em;
    vertical-align: middle;
    background-image: url(../_image/peel_icon_yellow.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.footer__sns {
    display: flex;
    column-gap: 20px;
    margin-top: 0.5em;
}

.footer__sns li {
    width: 25px;
}

.footer__sns li img {
    width: 100%;
    height: auto;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    color: var(--c-white);
}

.footer__company a {
    text-decoration: underline;
    transition: opacity 0.3s;
}

@media (hover:hover) {

    .footer__nav a:hover {
        color: var(--c-peel-yellow-soft);
        transition: color 0.3s;
    }

    .footer__company a:hover {
        opacity: 0.7;
        transition: opacity 0.3s;
    }

}

@media screen and (max-width:640px) {

    .footer__inner {
        width: 80%;
    }

    .footer__top {
        flex-direction: column;
        margin-bottom: 60px;
    }

    .footer__logo {
        width: 200px;
        margin: 0 auto 80px;
    }

    .footer__nav {
        grid-auto-flow: row;
        grid-template-rows: 1fr;
        width: -moz-fit-content;
        width: fit-content;
        margin: 0 auto 40px;
    }

    .footer__sns {
        margin: 0 auto;
    }

    .footer__sns li {
        width: 40px;
    }

    .footer__bottom {
        flex-direction: column;
        padding-bottom: 4em;
    }

    .footer__copyright {
        order: 2;
        text-align: center;
    }

    .footer__company {
        order: 1;
        text-align: center;
        margin-bottom: 1em;
    }

}