@charset "UTF-8";

/*=============
 main-mv
 ==============*/

.mv__wrapper {
    padding: 0 7.7% 40px;
    position: relative;
}

.mv {
    display: flex;
    padding-top: 30px;
}

.mv__illust1 {
    display: block;
    margin: 0 auto;
    height: 300px;
    animation: img 2.5s ease-in-out infinite alternate;
}

@keyframes img {
    0% {
        transform: translate(0, 0) rotate(-7deg);
    }
    100% {
        transform: translate(0, 0) rotate(7deg);
    }
}

.mv__illust2 {
    width: 150px;
    height: 150px;
    transform: rotate(-9.677deg);
    animation: floating-y 2.5s ease-in-out infinite alternate-reverse;
}

.mv__illust3 {
    width: 170px;
    height: 170px;
    position: absolute;
    top: 200px;
    right: -80px;
    animation: floating-y 2.5s ease-in-out infinite alternate-reverse;
}

.mv__illust4 {
    width: 150px;
    height: 150px;
    transform: rotate(-9.677deg);
    position: absolute;
    top: 300px;
    left: -60px;
    animation: floating-y 2.5s ease-in-out infinite alternate-reverse;
}

@keyframes floating-y {
    0% {
        transform: translateY(-5%);
    }
    100% {
        transform: translateY(5%);
    }
}

.mv__name {
    display: flex;
    justify-content: center;
    letter-spacing: 17px;
}

.color-pink {
    color: var(--primary-pink);
    font-family: "Cherry Bomb One";
    font-size: 6.4rem;
    line-height: 1.5;
}

.color-yellow {
    color: var(--primary-yellow);
    font-family: "Cherry Bomb One";
    font-size: 6.4rem;
    line-height: 1.5;
}

.color-blue {
    color: var(--primary-blue);
    font-family: "Cherry Bomb One";
    font-size: 6.4rem;
    line-height: 1.5;
}

.mv__scroll {
    color: var(--primary-black);
    font-family: Itim;
    font-size: 1.4rem;
    margin: 20px 0 100px;
}

.mv__scroll span {
    position: absolute;
}


/* 線 */

.mv__scroll ::after {
    content: "";
    position: absolute;
    right: 25px;
    width: 1px;
    height: 50px;
    background: var(--primary-black);
    animation: pathmove 1.4s ease-in-out infinite;
    opacity: 0;
}


/*高さ・位置・透過が変化して線が上から下に動く*/

@keyframes pathmove {
    0% {
        height: 10px;
        top: 20px;
        opacity: 0;
    }
    30% {
        height: 40px;
        opacity: 1;
    }
    100% {
        height: 0;
        top: 80px;
        opacity: 0;
    }
}


/* main-mv */


/*=============
 main-about
 ==============*/

.about-wrapper {
    padding: 0 6.4% 50px;
    border-radius: 50px;
    background-image: url(../image/about/about_background.jpg);
    background-color: rgba(254, 242, 218, 0.9);
    background-blend-mode: soft-light;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.title {
    color: var(--primary-brown);
    font-family: Itim;
    font-size: 3.2rem;
    margin-top: 35px;
}

.about__pote {
    margin: 56px auto 0;
}

.pote__zenshin {
    width: 113px;
    height: 132px;
    transform: rotate(3.451deg);
    display: block;
    margin: 0 auto;
}

.about__name {
    text-align: center;
    margin-top: 37px;
    color: var(--primary-black);
    font-family: "Cherry Bomb One";
    font-size: 2.4rem;
}

.about__txt {
    text-align: center;
    margin-top: 18px;
    color: var(--primary-black);
    font-family: "Zen Maru Gothic";
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 2;
    /* 200% */
}


/* main-about */


/*=============
 main-gallery
==============*/

.gallery-wrapper {
    background-image: url(../image/gallery/dot_background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50px;
    padding: 0 6.4%;
    position: relative;
}

.gallery__txt {
    color: var(--primary-black);
    font-family: "Zen Maru Gothic";
    font-size: 1.3rem;
    font-style: normal;
    font-weight: 500;
    line-height: 2;
    /* 200% */
    margin-top: 5px;
}

.pote__hole {
    width: 66px;
    height: 66px;
    position: absolute;
    top: 240px;
    right: 30px;
}

.gallery__grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 56px;
    gap: 35px;
}

.gallery__img {
    width: 140px;
    border-radius: 10px;
}

.gallery__img img {
    border-radius: 10px;
}

.gallery__btnTxt {
    color: var(--primary-black);
    font-family: "Zen Maru Gothic";
    font-size: 1.1rem;
    font-weight: 500;
    margin: 30px auto -30px;
    text-align: center;
}

.gallery__linkIcon__img {
    height: 15px;
    position: absolute;
    top: 38%;
    bottom: 0;
    left: 60%;
}

.gallery__btn__illust {
    position: absolute;
    display: block;
    width: 71px;
    height: 54px;
    top: 0;
    bottom: 0;
    left: 10%;
    transform: scale(-1, 1);
}

.gallery__bottom__design {
    margin-top: 10px;
}

.pote__carrotcar {
    width: 66px;
    height: 72px;
    transform: scale(-1, 1);
}


/* 車の動き */

.gallery__bottom__design {
    transform: translate(0px, 0px);
    animation: move 16s linear infinite;
}

@keyframes move {
    0% {
        transform: translate(0px, 0px);
    }
    50% {
        transform: translate(250px, 0px);
    }
    100% {
        transform: translate(0px, 0px);
    }
}


/* main-gallery */


/*=============
 main-shop
==============*/

.shop-wrapper {
    padding: 0 6.4% 70px;
    border-radius: 50px;
    background-image: url(../image/shop/shop_background.jpg);
    background-color: rgba(254, 242, 218, 0.9);
    background-blend-mode: soft-light;
    background-position: center;
    background-repeat: repeat;
    background-size: auto;
}

.shop__txt {
    color: var(--primary-black);
    font-family: "Zen Maru Gothic";
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 5px;
}

.shop__item__list {
    margin-top: 76px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;
}


/* LINE */

.shop__item {
    background: #000;
    width: 100%;
    height: auto;
    display: block;
    opacity: 1;
    transition: 0.2s;
}

.shop__item:hover {
    opacity: 0.5;
}

.shop__item__stamp {
    display: flex;
}

.shop__item__stampImg {
    width: 59px;
}

.shop__item__name {
    display: flex;
    align-items: center;
}

.shop__name {
    color: var(--primary-black);
    font-family: "Zen Maru Gothic";
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration-line: none;
    text-align: center;
    margin: 4px auto;
}

.shop__link {
    width: 11px;
    height: 11px;
}


/* スタンプ */

.shop__item:nth-child(1) {
    display: block;
    width: 142px;
    height: 149px;
    padding: 35px 13px 31px;
    border-radius: 5px;
    background-color: rgba(255, 219, 208, 0.9);
}


/* 絵文字 */

.shop__item:nth-child(2) {
    display: block;
    width: 142px;
    height: 149px;
    padding: 60px 4.2% 31px;
    border-radius: 5px;
    background-color: rgba(248, 249, 253, 0.9);
}


/* 着せ替え */

.shop__item:nth-child(3) {
    display: block;
    width: 142px;
    height: 149px;
    padding: 30px 6% 30px;
    border-radius: 5px;
    background-color: rgba(207, 239, 219, 0.9);
}


/* SUZURI */

.shop__item:nth-child(4) {
    display: block;
    width: 142px;
    height: 149px;
    padding: 12px 6% 0;
    border-radius: 5px;
    background-color: rgba(220, 238, 238, 0.9);
}


/* info */

.info__title {
    margin-top: 60px;
}

.info__sub {
    text-align: center;
    color: var(--primary-black);
    font-family: "Zen Maru Gothic";
    font-size: 1.1rem;
    font-weight: 500;
}

.info__main {
    margin-top: 4px;
    text-align: center;
    color: var(--primary-black);
    font-family: "Zen Maru Gothic";
    font-size: 1.6rem;
    font-weight: 500;
}

.info__main span {
    color: #FD4427;
}

.sns__list1 {
    display: flex;
    justify-content: space-between;
    margin: 0 16%;
}

.sns__list2 {
    display: flex;
    justify-content: space-between;
    margin: 20px 13%;
    align-items: center;
}

.sns__link {
    transition: 0.1s
}

.sns__link:hover {
    opacity: 0.5;
    text-align: center;
}

.sns {
    text-align: center;
    width: 100%;
    height: auto;
    display: block;
    opacity: 1;
}

.snsLine {
    text-align: center;
    position: absolute;
    bottom: 0;
    left: -10px;
}

.snsImg {
    width: 21px;
    height: 21px;
    margin-top: 35px;
}

.sns__name {
    color: var(--primary-black);
    font-family: "Zen Maru Gothic";
    font-size: 1.4rem;
    font-weight: 500;
    text-decoration-line: underline;
}

.sns__name__line {
    color: var(--primary-black);
    font-family: "Zen Maru Gothic";
    font-size: 1rem;
    font-weight: 500;
    text-decoration-line: underline;
}

.sns__pote {
    width: 90px;
    transition: 0.2s;
}

.sns__pote:hover {
    transform: rotate(5deg);
}


/* main-shop */

/*=============
 main-STICKER
==============*/
.linesticker-wrapper {
    background-image: url(../image/linesticker/linesticker-background.jpg);
    background-position: center;
    /* background-color:rgba(255,255,255,0.4);
    /* background-color: rgba(254, 242, 218, 0.9); */
    /* background-blend-mode: soft-light;
    background-blend-mode:lighten; */
    background-repeat: repeat;
    background-size: auto;
    border-radius: 50px;
    padding: 0 6.4%;
    position: relative;
}
.linesticker-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 半透明の白を適用 */
    background-color: rgba(255, 255, 255, 0.4); 
    
}

.linesticker-text {
    color: var(--primary-black);
    font-family: "Zen Maru Gothic";
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 5px;
}

.linestore-banner {
    width: 50%;
}

.tab-container {
    width: 100%;
    padding-bottom: 30px;
}

.tab-container ul {
    list-style: none;
    padding: 0;
    margin-top: 35px;
    display: flex;      
    flex-wrap: wrap;    
    gap: 8px;         
    justify-content:left 
}

.tab-container li {
    font-family: "Zen Maru Gothic","Itim","Cherry Bomb One","Dela Gothic One";
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    background-color: #ffffff; /* 白い背景 */
    color: var(--primary-black); /* テキストの色 */
    border: 1px solid #33302c; /* 枠線 */
    padding: 4px 16px;
    border-radius: 50px; /* 角を丸くする */
    cursor: pointer;
    font-size: 1.2em;
    transition: background-color 0.3s, color 0.3s;
    user-select: none; /* テキスト選択を禁止 */
}

.tab-container li:hover {
    opacity: 0.8;
}

.tab-container li.selected {
    background-color:var(--primary-yellow); /* 反転した背景色 */
    color:var(--primary-black); /* 反転したテキスト色 */
    border-color: #4a3c26;
    
}

.tab-content {
    display: none; /* 初期状態ではすべて非表示 */
    padding: 10px 0;
    transition: opacity 0.6s ease-in-out; 
    opacity: 0;
}

.tab-content.selected {
    display: block;
}

.stamp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 40px 30px;
    text-align: center;
    margin-top: 20px;
}    

.stamp-grid img:hover {
    opacity: 0.8;
}

.stamp-grid img {
    width: 100%; /* グリッドのセルに合わせる */
    height: auto;
}

.stamp-grid a:hover {
    opacity: 0.8;
}

.stamp-grid a {
    margin-top: 12px;
    font-weight: 500;
    text-decoration:none;
    display: block;
    color:var(--primary-black);
}

.sticker-name {
    margin-top: 5px;
    font-size: 1.3em;
    text-align: left;
}


.linestore-banner {
    display: block;
    width: 100%;
    padding: 0 20px 30px;
}

.linestore-banner:hover {
    opacity: 0.9;
} 

/*=============
 main-illustrator
==============*/

.illustrator-wrapper {
    padding: 0 6.4%;
    border-radius: 50px;
    margin-bottom: 20px;
}

.tanuki_shiori {
    width: 141px;
    height: 134px;
    border-radius: 100%;
    display: block;
    margin: 65px auto 0;
}

.illust__name {
    text-align: center;
    color: var(--primary-black);
    font-family: "Zen Maru Gothic";
    font-size: 1.6rem;
    font-weight: 500;
    margin-top: 22px;
}

.illust__txt {
    text-align: center;
    color: var(--primary-black);
    font-family: "Zen Maru Gothic";
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 2;
    /* 200% */
    margin-top: 17px;
}

.pageup {
    width: 100px;
    margin: 0 0 0 250px;
    animation: floating-y 2s ease-in-out infinite alternate-reverse;
}

.pageup__txt {
    color: #7B4622;
    text-align: center;
    font-family: Itim;
    font-size: 1.4rem;
    font-weight: 400;
    margin-top: -10px;
}


/* footer */

.footer {
    padding-bottom: 10px;
}

.copy {
    text-align: center;
    color: var(--primary-black);
    font-family: Itim;
    font-size: 1.5rem;
    font-weight: 400;
}