@charset "utf-8";

/*==========================
common
==========================*/
:root {
    --primary-white: rgba(255, 253, 253, 1);
    --primary-black: rgba(44, 44, 44, 1);
    --primary-orange: rgba(255, 147, 100, 1);
    --primary-yellow: rgba(255, 228, 99, 1);
    --primary-blue: rgba(159, 215, 216, 1);
    --primary-gray: rgba(133, 133, 133, 1);
    --primary-darkGray: rgba(137, 137, 137, 1);
    --primary-lightGray: rgba(240, 240, 240, 1);
}

html {
    font-size: 62.5%;
}

body {
    font-family:
        'Noto Sans JP',
        'Manrope',
        Arial, sans-serif;
    font-style: normal;
    color: var(--primary-black);
    background-color: var(--primary-white);
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

.topic {
    font-family: 'Manrope';
    font-weight: 700;
    font-size: 5rem;
    line-height: 1;
}

.btn {
    display: inline-block;
    padding: 0 25px;
    height: 50px;
    color: var(--primary-white);
    background: var(--primary-black);
    font-family: 'Manrope', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 50px;
    text-align: center;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
    letter-spacing: 0.05em;
}

.btn__txt {
    display: inline-block;
    line-height: 1;
}

.btn:hover {
    opacity: 0.5;
    background-color: var(--primary-gray);
}

/*common pc */
@media screen and (min-width:769px) {
    .topic {
        font-size: 10rem;
    }

    .btn {
        padding: 0 60px;
        height: 100px;
        font-size: 3.5rem;
        font-weight: 700;
        line-height: 100px;
        border-radius: 50px;
        transition: 0.3s;
        letter-spacing: 0.05em;
    }

    .btn__txt {
        display: inline-block;
        line-height: 1;
    }

    .btn:hover {
        opacity: 0.5;
        background-color: var(--primary-gray);
    }
}

/*==========================
fadeIn
==========================*/
.fadeIn {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out;
}

.fadeIn.animated {
    opacity: 1;
    transform: translateY(0);
}

/*==========================
cheers
==========================*/
.cheersSp {
    display: block;
    position: fixed;
    width: 70px;
    height: auto;
    bottom: 3%;
    right: 3%;
    animation: cheerWiggle 4s infinite ease-in-out;
}

.cheersPc {
    display: none;
}

@keyframes cheerWiggle {
    0%, 85%, 100% { transform: rotate(0deg) scale(1); }
    88% { transform: rotate(10deg) scale(1); }
    91% { transform: rotate(-10deg) scale(1); }
    94% { transform: rotate(8deg) scale(1); }
    97% { transform: rotate(-8deg) scale(1); }
}

.cheersSp:hover,
.cheersPc:hover {
    animation: none; 
    transform: scale(1.2); 
}

@media screen and (min-width:769px) {
    .cheersSp {
        display: none;
    }
    .cheersPc {
        display: block;
    position: fixed;
        width: 100px;
        height: auto;
        bottom: 6%;
        right: 4%;
        animation: cheerWiggle 3s infinite ease-in-out;
    }
    
}

@keyframes cheerWiggle {
    0%,
    85%,
    100% {
        transform: rotate(0deg);
    }

    88% {
        transform: rotate(10deg);
    }

    91% {
        transform: rotate(-10deg);
    }

    94% {
        transform: rotate(8deg);
    }

    97% {
        transform: rotate(-8deg);
    }
}

/*==========================
header
==========================*/
.header {
    padding: 20px 6% 0;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__img {
    width: 78px;
    height: auto;
}

/* .nav初期表示 */
.drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 100;
    pointer-events: none;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 100;
}

.nav {
    position: absolute;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100%;
    background-color: var(--primary-darkGray);
    transition: right 0.4s;
    padding: 20px;
    box-sizing: border-box;
    z-index: 200;
}

.drawer.open .overlay {
    opacity: 1;
}

.drawer.open .nav {
    right: 0;
}

.drawer.open {
    pointer-events: auto;
}

.nav__header {
    padding-left: 4.2%;
    display: flex;
    justify-content: flex-end;
}

.nav__btn--close {
    height: 18px;
    width: 18px;
}

.nav__logo {
    display: block;
    margin: 40px auto 0;
    width: 160px;
}

.nav__item {
    color: var(--primary-white);
    font-size: 2rem;
    font-weight: 400;
    line-height: 35px;
    margin-top: 28px;
    display: flex;
    align-items: center;
}

.nav__list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    margin-left: 15%;
}

.nav__list img {
    width: 45px;
    margin-right: 12px;
}

.nav__sns {
    display: flex;
    position: relative;
    justify-content: center;
    margin-top: 80px;
    gap: 20px;

}

.header__container a {
    cursor: pointer;
}

.header__btn--menu {
    width: 30px;
    height: auto;
}

@media screen and (min-width:769px) {
    .header {
        padding: 60px 6% 50px;
        height: 80px;
    }

    .header__img {
        width: 140px;
        height: auto;
    }

    .header__btn--menu {
        width: 43px;
    }

    .nav__header img {
        width: 35px;
        height: auto;
    }

    .nav {
        right: -300px;
        width: 300px;
    }

    .nav__logo {
        display: block;
        margin: 50px auto 30px;
        width: 180px;
    }

    .nav__list {
        margin-left: 18%;
    }

    .nav__item {
        font-size: 2.6rem;
        font-weight: 400;
        line-height: 35px;
        margin-top: 40px;
        display: flex;
        align-items: center;
    }

    .nav__sns {
        margin-top: 100px;
        display: flex;
        position: relative;
        justify-content: center;
        align-items: flex-end;
    }

    .nav__sns-item img {
        width: 30px;
        height: auto;
    }
}



/*==========================
slick
==========================*/
.slider-wrapper {
    width: 100%;
    overflow: visible;
    margin: 30px auto;
    padding: 0 4%;
}

.slider__item {
    box-sizing: border-box;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    transform: scale(0.85);
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0.6;
}

.slider__item a {
    display: block;
    width: 100%;
    height: 100%;
}

.slider__item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.slick-center {
    transform: scale(1) !important;
    opacity: 1 !important;
    z-index: 2;
}

.slider .slick-slide img {
    max-height: 80vh;
    margin: 0 auto;
}

.slider {
    position: relative;
}

.slider img {
    display: block;
    margin: 0 auto;
}

@media screen and (min-width:769px) {
    .slider-wrapper {
        padding: 0;
    }
}

/*==========================
profile
==========================*/

.section--profile {
    padding: 40px 8%;
}

.topic--profile img {
    width: 120px;
}

.profile__sns {
    display: flex;
    position: relative;
    justify-content: center;
    gap: 20px;
}

.profile__sns-item img {
    height: 24px;
}

.profile__top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.profile__bottom-img {
    display: none;
}

.profile__txt {
    font-size: 1.2rem;
    margin-top: 16px;
    line-height: 1.8;
}

.spBr {
    display: none;
}


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

    
    .section--profile {
        padding: 50px 16% 100px;
    }

    .topic--profile img {
        width: 250px;
    }

    .profile__sns {
        gap: 46px;
    }

    .profile__sns-item img {
        height: 46px;
    }

    .profile__bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        margin-top: 48px;
    }

    .profile__txt {
        font-size: 1.8rem;
        line-height: 2;
        width: 420px;
        margin-top: 0;
    }

    .spBr {
        display: block;
    }

    .profile__bottom-img {
        display: block;
        width: 397px;
        flex-shrink: 0;
    }

}

@media screen and (min-width: 500px) and (max-width: 1100px) {
    .spBr {
        display: block;
    }

    .profile__top {

        gap: 16px;
        /* 要素間の隙間 */
        align-items: baseline;
        /* 横方向の中央揃え */
        max-width: 595px;
    }

    .profile__txt {
        width: auto;

    }

    .profile__bottom {
        display: flex;
        flex-direction: column;
        /* 縦方向に並べる */
        gap: 16px;
        /* 要素間の隙間 */
        align-items: center;
        /* 横方向の中央揃え */
    }

    .profile__sns {
        gap: 20px;
    }

    .profile__sns-item img {
        height: 34px;
    }

    .profile__bottom-img {
        margin-top: 56px;
    }

}
@media screen and (min-width: 1101px)
{
.profile__content {
        position: relative;
  top: -100px;
    }
}
/*==========================
works
==========================*/

.works__sp {
    padding: 40px 4%;
    text-align: center;
}

.section--worksPc {
    display: none;
}

.topic--worksSp {
    font-size: 5rem;
    font-weight: 700;
    text-align: center;
}

.section--worksSp {
    padding: 60px 4.2%;
    text-align: center;
}

.works__item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    margin-top: 24px;
}

.works__img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.works__img:hover {
    transform: scale(1.03);
}

.works__btn {
    display: inline-block;
    margin-top: 32px;
    align-items: center;
}


@media screen and (min-width: 769px) {
   
    .works__sp {
        display: none;
    }

    .section--works {
        display: block;
        padding: 80px 2%;
        overflow: hidden;
    }

    .works__wrapper {
        transform-origin: top center;
        transition: transform 0.3s ease;
    }

    .works__pc {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
        justify-content: center;
        margin: 0 auto;
        max-width: 1364px;
    }

    .works__img {
        width: 100%;
        aspect-ratio: 1 / 1;
        border-radius: 8px;
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease;
    }

    .works__img:hover {
        transform: scale(1.05);
    }

    .works__center {
        grid-column: 2 / span 2;
        grid-row: 2;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 8px;
    }



    .topic--worksPc {
        font-size: 12rem;
        font-weight: 700;
        text-align: center;
        letter-spacing: 0.1em;
    }

    .works__btn {
        display: inline-block;
        font-size: 3.2rem;
        letter-spacing: 1px;
        transition: background 0.3s ease;
    }

    .works__btn:hover {
        background: #333;
    }

    @media screen and (min-width: 1440px) {
        .works__wrapper {
            transform: scale(1);
        }
    }

    @media screen and (max-width: 1439px) and (min-width: 769px) {
        .works__wrapper {
            transform: scale(calc(100vw / 1440));
        }
    }
}

@media screen and (min-width: 769px) and (max-width: 1100px) {
    .topic--worksPc {
        font-size: 8rem;

    }

    .btn {
        padding: 0 60px;
        height: 80px;
        font-size: 2.5rem;
        font-weight: 700;
        line-height: 80px;
        border-radius: 50px;
        transition: 0.3s;
        letter-spacing: 0.05em;
        margin-top: 12px;
    }
}

/*==========================
news
==========================*/

.section--news {
    padding: 40px 8%;
}

.news__img {
    width: 135px;
    height: auto;
    margin-left: 10px;
}

.news__top {
    display: flex;
    align-items: baseline;
}

.news__date {
    display: block;
    font-size: 1.4rem;
    font-weight: 500;
}

.news__content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 2px solid black;
    padding: 8px;
    border-radius: 20px;
    margin-top: 20px;
}

.news__txt {

    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.3;
}

.news__content::after {
    display: block;
    content: '';
    width: 30px;
    height: 30px;
    background-image: url(../images/arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
}

.news__content:hover {
    transform: scale(1.02);
}
@media screen and (min-width:850px) {
    .section--news {
        padding: 60px 16% 140px;
    }

    .news__img {
        width: 292px;
        margin-left: 20px;
    }


    .news__date {
        font-size: 3.2rem;
    }

    .news__list {
        margin-top: 57px;
    }

    .news__content {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 42px 42px;
        border-radius: 20px;
        gap: 12px;
        margin-top: 20px;
    }

    .news__txt {
        font-size: 3.2rem;
        font-weight: 500;
        line-height: 1.3;
    }

    .news__content::after {
        display: block;
        content: '';
        width: 52px;
        height: 52px;
        background-image: url(../images/arrow.svg);
        background-size: contain;
        background-repeat: no-repeat;
        position: absolute;
        top: 50%;
        right: 30px;
        transform: translateY(-50%);
    }
}

@media screen and (min-width: 850px) and (max-width: 1200px) {
.news__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 2px solid black;
    padding: 20px;
    border-radius: 20px;
    margin-top: 20px;
}

}
/*==========================
store
==========================*/

.section--store {
    padding: 60px 8%;
    text-align: center;
}

.topic--store {
    text-align: center;
}

.category__list {
    display: flex;
    margin-top: 4px;
}

.category__item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.category__item :hover {
    transform: scale(1.1);
}

.category__img {
    width: 30px;
}

.category__list {
    display: flex;
    position: relative;
    justify-content: center;
    gap: 12px;
}


.item__list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin: 26px auto 0;
}

.store__item {
    flex: 1 1 calc(50% - 8px);
    aspect-ratio: 1 / 1;
    transition: transform 0.3s ease;
}

.store__item-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.store__item-a {
    border: 10px solid var(--primary-blue);
}

.store__item-w {
    border: 10px solid var(--primary-yellow);
}

.store__item-g {
    border: 10px solid var(--primary-orange);
}

.store__item:hover {
    transform: scale(1.05);
}

.btn__store {
    margin-top: 32px;
}

@media screen and (min-width:769px) {
    .section--store {
        padding: 60px 8%;
    }

    .category__list {
        display: flex;
        margin-top: 4px;
    }

    .category__item a {
        font-size: 2.5rem;
    }

    .category__img {
        width: 80px;
    }

    .category__list {
        gap: 30px;
    }

    .item__list {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 1fr;
        gap: 15px;
        justify-items: center;
        margin: 64px auto 0;
    }

    .store__item {
        width: 100%;
        aspect-ratio: 1 / 1;
        transition: transform 0.3s ease;
    }

    .store__item-img {
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        transition: transform 0.3s ease;
    }



    .store__item-a {
        border: 15px solid var(--primary-blue);
    }

    .store__item-w {
        border: 15px solid var(--primary-yellow);
    }

    .store__item-g {
        border: 15px solid var(--primary-orange);
    }

    .store__item:hover {
        transform: scale(1.05);
    }

    .btn__store {
        margin-top: 64px;
    }


}

/* ==========================
   Contact
========================== */

.section--contact {
    padding: 40px 8%;
}

.topic--contact {
    display: flex;
    align-items: flex-end;
    /* ここで下揃え */
    justify-content: center;
    /* 横中央揃え */
}

.contact__img {

    width: 75px;
    height: auto;

}

.form {
    max-width: 600px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form__parts {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form__category {
    font-size: 1.2rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.form__category::before {
    display: inline-block;
    content: '必須';
    height: 20px;
    min-width: 36px;
    text-align: center;
    color: #fff;
    font-size: 0.9rem;
    line-height: 20px;
    font-weight: 500;
    background-color: #000;
    border-radius: 2px;
    margin-right: 6px;
}

input[type="text"],
input[type="email"],
textarea {
    padding: 12px 14px;
    font-size: 1rem;
    background-color: var(--primary-lightGray);
    border-radius: 6px;
    transition: border 0.3s, box-shadow 0.3s;
}


input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    border-color: #333;
    outline: none;
}

textarea {
    min-height: 140px;
    resize: vertical;
}

.btn--form {
    display: block;
    margin: 32px auto 0;
    width: 145px;
}

@media screen and (min-width:769px) {
    .section--contact {
        padding: 96px 15%;

    }

    .topic--contact {
        align-items: center;
        gap: 8px;
    }

    .contact__img {
        width: 140px;
        height: auto;
    }

    .form {
        gap: 32px;
    }

    .form__parts {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .form__category {
        font-size: 1.6rem;
        font-weight: 500;
    }

    .form__category::before {
        display: inline-block;
        content: '必須';
        height: 22px;
        min-width: 36px;
        text-align: center;
        color: #fff;
        font-size: 1.2rem;
        line-height: 20px;
        font-weight: 500;
        background-color: #000;
        border-radius: 2px;
        margin-right: 6px;
    }

    input[type="text"],
    input[type="email"],
    textarea {
        padding: 12px 14px;
        font-size: 1.6rem;
        border-radius: 6px;
        transition: border 0.3s, box-shadow 0.3s;
    }

    input[type="text"]:focus,
    input[type="email"]:focus,
    textarea:focus {
        border-color: #333;
        outline: none;
    }

    textarea {
        min-height: 140px;
        resize: vertical;
    }

    .btn--form {
        display: block;
        margin: 32px auto 0;
        width: 297px;
    }

}

/* ==========================
footer
========================== */
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 0 40px;
    text-align: center;
}

.footer a img {
    width: 135px;
    height: auto;
    display: block;
}

.footer .nav__sns {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin-top: 14px;
}

.footer .nav__sns-item img {
    width: 20px;
    height: auto;
}

.footer .copy {
    font-size: 1.2rem;
    color: var(--primary-gray);
    margin-top: 35px;
}

@media screen and (min-width:769px) {
    .footer a img {
        width: 200px;
    }

    .footer .nav__sns {
        margin-top: 32px;
    }

    .footer .nav__sns-item img {
        width: 40px;
    }

    .footer .copy {
        font-size: 1.6rem;
        color: var(--primary-gray);
        margin-top: 60px;
    }
}



