@charset "UTF-8";

/*
Theme Name: Candle Characters Studio - 26.02.27
Theme URL: 
Description: Candle Characters Studio 専用テーマ
Author: 巽 拓人
*/

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-style: normal;
    font-size: 1.6rem;
    font-weight: 400;
    color: #201915;
    line-height: 1.5;
    letter-spacing: 3px;

    background-color: #fff;
}

img {
    max-width: 100%;
}

.btn {
    transition: 0.2s;
}

.btn:hover {
    transform: scale(1.1);
    transition: 0.2s;
}

@font-face {
    /* 太め */
    font-family: 'Poppins-Black';
    src: url(assets/fonts/Poppins-Black.ttf);
}

@font-face {
    /* 細め */
    font-family: 'Poppins-Bold';
    src: url(assets/fonts/Poppins-Bold.ttf);
}

@font-face {
    /* 太め */
    font-family: 'Poppins-ExtraBold';
    src: url(assets/fonts/Poppins-ExtraBold.ttf);
}

@font-face {
    /* 細い */
    font-family: 'Poppins-Medium';
    src: url(assets/fonts/Poppins-Medium.ttf);
}

.section__title {
    text-align: center;
    font-family: 'Poppins-Black';
    font-size: 5rem;
}

.white__btn {
    font-family: 'Poppins-ExtraBold';
    margin: 70px auto 0;
    display: block;
    width: 80%;
    max-width: 500px;
    background-color: #fff;
    padding: 15px;
    border: 1px #979797 solid;
    border-radius: 100px;
}

.black__btn {
    font-family: 'Poppins-ExtraBold';
    text-align: center;
    color: white;
    margin: 70px auto 0;
    display: block;
    width: 80%;
    max-width: 500px;
    background-color: #000;
    padding: 15px;
    border: none;
    border-radius: 100px;
}

.yellow__btn {
    font-weight: 900;
    text-align: center;
    color: #201915;
    margin: 70px auto 0;
    display: block;
    width: 80%;
    max-width: 900px;
    background-color: #FEF200;
    padding: 20px;
    border: none;
    border-radius: 100px;

    background-image: url(../images/arrow.png);
    background-position: top 50% right 30px;
    background-repeat: no-repeat;
    background-size: 25px auto;
}

.anime {
    opacity: 0;
}

.scrollin {
    opacity: 1;
    animation: scrollin 0.5s;
}

@keyframes scrollin {
    0% {
        opacity: 0;
        transform: translateY(25px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.SPtype {
    display: none;
}

.PCtype {
    display: block;
}

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

    .SPtype {
        display: block;
    }

    .PCtype {
        display: none;
    }

    .section__title {
        font-size: 3rem;
    }

    .white__btn,
    .black__btn,
    .yellow__btn {
        width: 90%;
        margin: 30px auto 0;
    }
}

/* 公開時非公開 */
.none {
    display: none;
}

/* ================================================================ common */


/* ================================================================ header */
.header {
    width: 100vw;
    height: 70px;
    padding: 0 100px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.nav__title__box,
.nav__btn {
    display: none;
}

.logo {
    display: block;
    height: 160px;
    width: auto;
}

.nav__list {
    font-family: 'Poppins-ExtraBold';
    height: 70px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 80px;
}

.nav__item:hover,
.nav__item a:hover {
    animation: jump 0.2s;
}

@keyframes jump {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

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

@media screen and (max-width:1200px) {
    .header {
        width: 100vw;
        padding: 0;
    }

    .logo {
        height: 100px;
        width: auto;
    }

    /* nav btn */
    .nav__title__box,
    .nav__btn {
        display: block;
    }

    .nav__btn {
        position: fixed;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 20px;
        z-index: 2000;
    }

    .nav__btn__before {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .nav__btn__before::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #201915;
        transition: 0.5s;
        transform: rotate(0deg) translate(0, 0);
    }

    .nav__btn__before::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #201915;
        transition: 0.5s;
        transform: rotate(0deg) translate(0, 0);
    }

    .nav__btn__after::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #201915;
        transition: 0.5s;
    }

    .nav__btn__after.active::after {
        content: '';
        transform: scale(0, 1);
        background-color: transparent;
        transition: 0.5s;
    }

    /* nav btn */

    .nav {
        background-color: #FEF200;
        position: fixed;
        top: 0;
        left: 0;
        transition: 0.5s;

        transform: translateY(-100%);
    }

    .nav.active {
        transition: 0.5s;
        transform: translateY(0);
    }

    .nav__title__box {
        width: 100vw;
        height: 220px;
        position: relative;
        margin-top: 10px;

        background-image: url(../images/logo.svg);
        background-repeat: no-repeat;
        background-position: 50% 60%;
        background-size: 250px auto;
    }

    .nav__title {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 250px;
    }

    .nav__title__svg {
        width: 100%;
        height: auto;
    }

    .nav__title__jp {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 300px;
        display: inline-block;
        font-size: 1.3rem;
        font-weight: 300;
        letter-spacing: 0px;
        text-align: center;
    }

    .nav__list {
        flex-direction: column;
        height: auto;
        align-items: center;
        gap: 20px;
        margin: 50px 0;
        font-size: 2.4rem;
    }
}

.nav__btn__before.close::before {
    animation: close-up 0.5s;
    transform-origin: center center;
}

.nav__btn__before.close::after {
    animation: close-down 0.5s;
    transform-origin: center center;
}

.nav__btn__before.open::before {
    content: '';
    transform: rotate(30deg) translate(0px, 7px);
    width: 110%;
    animation: menu-up 0.5s;
    transform-origin: center center;
    transition: 0.5s;
}

.nav__btn__before.open::after {
    content: '';
    transform: rotate(-30deg) translate(5px, -15px);
    width: 110%;
    animation: menu-down 0.5s;
    transform-origin: center center;
    transition: 0.5s;
}

@keyframes menu-up {
    0% {
        transform: rotate(0deg) translate(0, 0);
    }

    30% {
        transform: rotate(0deg) translate(0, -10px);
    }

    60% {
        transform: rotate(0deg) translate(0, 7px);
    }

    100% {
        transform: rotate(30deg) translate(0px, 7px);
    }
}

@keyframes menu-down {
    0% {
        transform: rotate(0deg) translate(0, 0);
    }

    30% {
        transform: rotate(0deg) translate(0, 10px);
    }

    60% {
        transform: rotate(0deg) translate(0, -15px);
    }

    100% {
        transform: rotate(-30deg) translate(5px, -15px);
    }
}

@keyframes close-up {
    0% {
        transform: rotate(30deg) translate(0px, 7px);
    }

    30% {
        transform: rotate(0deg) translate(0, 7px);
    }

    60% {
        transform: rotate(0deg) translate(0, -10px);
    }

    100% {
        transform: rotate(0deg) translate(0, 0);
    }
}

@keyframes close-down {
    0% {
        transform: rotate(-30deg) translate(5px, -15px);
    }

    30% {
        transform: rotate(0deg) translate(0, -15px);
    }

    60% {
        transform: rotate(0deg) translate(0, 10px);
    }

    100% {
        transform: rotate(0deg) translate(0, 0);
    }
}

/* ================================================================ header end */


/* ================================================================ MV */
.mv {
    width: 100%;
    position: relative;
    height: 100vh;
}

.main__title__box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main__title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    width: 40%;
    min-width: 600px;
    animation: scroll-in 2s;
}

@keyframes scroll-in {
    0% {
        opacity: 0;
        padding-top: 80px;
    }

    100% {
        opacity: 1;
        padding-top: 0;
    }
}

.main__title__svg {
    width: 100%;
    height: auto;
    padding: 0 20px;
}

/* SVG */
.logo-svg {
    position: absolute;
    top: 49%;
    left: 48%;
    transform: translate(-50%, -50%);
    width: 40%;
    min-width: 600px;
    height: auto;
    z-index: -100;
}

.mask {
    opacity: 0;
    stroke-dasharray: 7000px;
    animation: drow 3s linear forwards;
    animation-delay: 0.5s;
}

@keyframes drow {
    0% {
        stroke-dashoffset: 7000px;
        opacity: 1;
    }

    100% {
        stroke-dashoffset: 0px;
        opacity: 1;
    }
}

#text {
    mask: url(#mask-ani);
}

/* SVG end */

.main__title__jp {
    width: 100%;
    position: absolute;
    top: calc(100% + 30px);
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.4rem;
    font-weight: 300;
    text-align: center;
}

@media screen and (max-width:600px) {
    .mv {
        height: 80vh;
    }

    .main__title,
    .logo-svg {
        width: 100%;
        min-width: 0px;
        top: 33%;
    }

    .main__title__jp {
        font-size: 1.6rem;
        letter-spacing: 0px;
    }
}

/* ================================================================ MV end */


/* ================================================================ About */
.about {
    margin: 0 auto 30px;
    width: 100%;
    max-width: 1500px;
    height: auto;
    position: relative;
}

.about__box {
    width: 50%;
    height: auto;
    margin-left: 50%;
}

.about__title {
    text-align: left;
}

.about__txt {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 2.5;
    margin-top: 30px;
}

.po {
    opacity: 0;
    position: relative;
    z-index: -50;
}

.po::after {
    content: '';
    position: absolute;
    top: 60%;
    left: 15px;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;

    background-image: url(assets/images/po.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% auto;
}

.scrollinPO {
    opacity: 0;
    animation: po 0.2s forwards;
    animation-delay: 0.5s;
}

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

    100% {
        opacity: 1;
    }
}

/* SVG */
#lottie-animation {
    position: absolute;
    top: -200px;
    left: 0;
    width: 50%;
    height: 140%;
    z-index: -100;
}

.ro-soku__mask {
    opacity: 0;
    stroke-dasharray: 7000px;
}

.ro-soku__mask.active {
    animation: drow2 7s linear forwards;
}

@keyframes drow2 {
    0% {
        stroke-dashoffset: 7000px;
        opacity: 1;
    }

    100% {
        stroke-dashoffset: 0px;
        opacity: 1;
    }
}

#svg-line {
    mask: url(#ro-soku__mask-ani);
}

/* SVG end */

.contact__fixedBtn {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 150px;
    height: 150px;
    background-color: #FEF200;
    z-index: 400;
    margin: 0 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-family: 'Poppins-ExtraBold';
    opacity: 0;
}

@media screen and (max-width:768px) {
    .about__box {
        width: 90%;
        margin-left: 0;
        margin: 0 auto;
    }

    .about__txt {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    #lottie-animation {
        position: absolute;
        top: -380px;
        height: 140%;
        z-index: -100;
        left: -10px;
        width: 100%;
    }

    .contact__fixedBtn {
        position: fixed;
        background-color: #FEF200;
        z-index: 400;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        font-family: 'Poppins-ExtraBold';

        right: 20px;
        bottom: 20px;
        width: 100px;
        height: 100px;
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
}

/* ================================================================ About end */


/* ================================================================ News */
.news {
    background-color: #FFFFC8;
    margin: 200px 0 0;
    padding: 50px 100px;
    text-align: center;
}

.news__list__box {
    width: 100%;
    max-width: 1000px;
    margin: 50px auto;
}

.news__list {
    width: 100%;
    max-width: 800px;
    margin: 50px auto;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.news__date {
    display: inline-block;
    margin-right: 30px;
}

.news__title__link {
    transition: 0.2;
    text-decoration: underline;
    font-weight: 500;
}

.news__title__link:hover {
    opacity: 0.6;
    transition: 0.2;
}

.link-arrow {
    width: 20px !important;
    height: 20px !important;
    margin-left: 10px;
}

.no-link {
    text-decoration: none;
}

.no-link:hover {
    opacity: 1;
}

@media screen and (max-width:768px) {
    .news {
        margin: 150px 0 0;
        padding: 50px 5%;
    }

    .news__list {
        text-align: left;
        margin: 50px auto;
        width: 90%;
        max-width: 500px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .news__title__box {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ================================================================ News end */


/* ================================================================ Characters */
.characters {
    padding: 200px 5% 100px;
}

.characters__list {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(auto, 230px));
    gap: 20px;
    justify-content: center;
}

.characters__item {
    margin-top: 50px;
    max-width: 230px;
    text-align: center;

    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.absolute__icon__box {
    width: 230px;
    height: 293px;
    position: relative;
}

.onyanko__icon {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 265px;
    max-width: none;
    height: auto;
}

.gojiaichan__img {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 244px;
    max-width: none;
    height: auto;
}

.characters__name {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    height: 50px;
    font-weight: 500;
}

.modal__btn {
    width: 40px;
    height: 40px;
    background-color: #FEF200;
    margin: 0 auto;
    border-radius: 50%;
    position: relative;
}

.modal__btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 6px;
    height: 25px;
    background-color: white;
}

.modal__btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 25px;
    height: 6px;
    background-color: white;
}

.soon__img {
    height: 100%;
    max-height: 306px;
    display: flex;
    align-items: flex-end;
}

.coming-soon {
    position: relative;
    width: 230px;
    height: 230px;
    margin-bottom: 42px;
    background-color: #FEF200;
    border-radius: 50%;
}

.soon__txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Poppins-ExtraBold';
    font-size: 2.4rem;
}

.modal {
    display: none;
    position: relative;
    z-index: 1000;
    width: 90%;
    max-width: 1080px;
    height: 90%;
    max-height: 600px;
    background-color: #FEF200;
    color: #201915;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 130px 0 0;
}

.modal.active {
    display: block;
    opacity: 1;
    transition: 0.5s;
    animation: modal-open 0.5s;
}

.modal.closing {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
}

.modal__back {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 500;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    transform: translate(-50%, -50%);
    transition: 0.5s;
}

.modal__back.active {
    display: block;
    opacity: 1;
    animation: modal__back-open 0.5s;
    transition: 0.5s;
}

.modal__back.closing {
    opacity: 0;
    transition: 0.5s;
    animation: modal__back-open 0.5s;
}

.closeModal__btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
}

.closeModal__btn::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 40px;
    transform: translateX(-18px) rotate(45deg);
    background-color: #201915;
}

.closeModal__btn::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 40px;
    transform: translateX(-18px) rotate(-45deg);
    background-color: #201915;
}


@keyframes modal-open {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }

    40% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }

    60% {
        transform: translate(-50%, -50%) scale(0.95);
    }

    80% {
        transform: translate(-50%, -50%) scale(1.03);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes modal__back-open {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes modal__back-close {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.modal__contents {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.modal__img {
    width: auto;
    max-width: 400px;
    height: 300px;
    object-fit: contain;
    margin-left: 30px;
}

.modal__ex__box {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.modal__title {
    font-size: 2.4rem;
    font-weight: 700;
    padding-right: 50px;
}

.modal__txt {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.8;
    padding-right: 50px;
}

.sns__icon__box {
    display: inline-block;
    background-color: white;
    border-radius: 20px;
    padding: 10px 15px;
    margin-top: 50px;
    min-width: 180px;
}

.sns__icon {
    display: inline-block;
    width: auto;
    height: 30px;
    margin: 0 10px;
    font-weight: 700;
    transition: 0.2s;
}

.sns__icon:hover {
    transform: scale(1.2, 1.2);
    transition: 0.2s;
}

.sns__icon img {
    width: auto;
    height: 30px;
}

.store__btn p {
    background-image: url(assets/images/arrow.png);
    background-size: contain;
    background-position: center right 20px;
    background-repeat: no-repeat;
}

@media screen and (max-width:1111px) {
    .characters__list {
        padding: 0 5% 30px;
    }
}

@media screen and (max-width:820px) {
    .characters {
        padding: 60px 0;
    }

    .characters__list {
        margin: 50px auto 0px;
        padding-bottom: 0;
        grid-template-columns: repeat(auto-fit, minmax(auto, 170px));
        gap: 10px;
    }

    .characters__item {
        width: 100%;
        max-width: 170px;
    }

    .absolute__icon__box {
        height: 206px;
        width: 155px;
    }

    .onyanko__icon {
        right: -20px;
        bottom: 0;
        width: 200px;
    }

    .gojiaichan__img {
        width: 189px;
    }

    .coming-soon {
        position: relative;
        width: 170px;
        height: 170px;
        background-color: #FEF200;
        border-radius: 50%;
        margin-bottom: 110px;
    }

    .soon__txt {
        font-size: 1.4rem;
    }

    .soon__not {
        display: none;
    }

    .closeModal__btn {
        right: 10px;
        width: 30px;
        height: 30px;
    }

    .closeModal__btn::before {
        content: '';
        width: 3px;
        height: 30px;
    }

    .closeModal__btn::after {
        content: '';
        width: 3px;
        height: 30px;
    }

    .modal {
        max-height: 1500px;
        padding: 60px 25px 25px;
        height: auto;
    }

    .modal__contents {
        gap: 10px;
        flex-direction: column;
    }

    .modal__img {
        width: 80%;
        max-width: 400px;
        height: auto;
        margin: 0 auto;
    }

    .modal__ex__box {
        gap: 0;
        text-align: center;
    }

    .modal__title {
        font-size: 1.8rem;
        letter-spacing: 2px;
        padding-right: 0;
    }

    .modal__txt {
        font-size: 1.4rem;
        margin-top: 15px;
        letter-spacing: 0px;
        padding-right: 0;
    }

    .sns__icon__box {
        margin-top: 20px;
        border-radius: 10px;
    }

    .sns__icon {
        height: 20px;
        margin: 0 10px;
    }

    .sns__icon img {
        height: 20px;
    }
}

@media screen and (max-width:388px) {
    .characters__list {
        justify-content: center;
    }
}

/* ================================================================ Characters end */


/* ================================================================ others */
.others {
    background-color: #FFFFC8;
    margin: 30px 0 0;
    padding: 50px;
    text-align: center;
}

.others__list {
    width: 100%;
    max-width: 1000px;
    margin: 20px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.others__item {
    text-align: left;
    margin-top: 50px;
}

.others__img {
    width: 320px;
    height: 240px;
    background-color: white;
}

.others__item__title {
    margin: 10px 0;
}

@media screen and (max-width:768px) {
    .others {
        margin: 0;
        padding: 30px 5%;
    }

    .others__item {
        margin-top: 40px;
        width: 48%;
    }

    .others__img {
        width: 100%;
        max-width: 200px;
        height: 120px;
    }
}

/* ================================================================ others end */


/* ================================================================ entry */
.entry {
    padding: 100px 0;
}

.entry__txt {
    font-weight: 700;
    text-align: center;
    margin: 50px 0;
}

.entry__txt:first-of-type {
    padding-top: 30px;
}

.entry__txt:last-of-type {
    padding-bottom: 30px;
}

.entry__btn {
    max-width: 400px;
}

@media screen and (max-width:768px) {
    .entry {
        padding: 60px 0;
    }

    .entry__txt {
        margin: 25px 0;
        line-height: 2;
    }

    .entry__txt:first-of-type {
        padding-top: 30px;
    }

    .entry__txt:last-of-type {
        padding-bottom: 30px;
    }

    .entry__btn {
        max-width: 400px;
    }
}

/* ================================================================ entry end */


/* ================================================================ contact */
.contact {
    padding: 100px 0 200px;
}

.contact__btn {
    font-family: "Noto Sans JP";
    font-weight: 900;
    padding: 20px;
    max-width: 300px;
}

@media screen and (max-width:768px) {
    .contact {
        padding: 100px 0 150px;
    }
}

/* ================================================================ contact end */


/* ================================================================ footer */
.footer {
    padding: 40px 100px 20px;
    background-color: #FEF200;
    position: relative;
    z-index: 500;
}

.footer__box {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.footer__title__svg {
    width: 345px;
    height: auto;
}

.footer__list {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.footer__item {
    font-family: 'Poppins-ExtraBold';
    font-size: 2rem;
}

.footer__item:hover {
    animation: jump 0.2s;
}

.footer__link {
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.yorozu,
.policy {
    text-decoration: underline;
}

.copy {
    margin-top: 50px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
}

@media screen and (max-width:768px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer__box {
        flex-direction: column;
        width: 90%;
    }

    .footer__title__svg {
        width: 300px;
    }

    .footer__list {
        margin-top: 35px;
        gap: 5px;
        align-items: flex-start;
    }

    .footer__item {
        font-size: 3rem;
    }

    .footer__link {
        justify-content: flex-start;
        flex-direction: column;
        gap: 15px;
        margin: 30px auto 0;
        width: 90%;
    }

    .copy {
        margin-top: 30px;
        letter-spacing: 1px;
        font-weight: 400;
    }
}

/* ================================================================ footer end */