@charset "utf-8";

html   {
    font-size: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body   {
    color: #333;
    font-family: 'Kosugi Maru', sans-serif;
    font-weight: 400;
    font-feature-settings: "palt";
    letter-spacing: 0.06em;
    overflow-x: hidden;
    padding-top: 60px;
}

img   {
    max-width: 100%;
    vertical-align: bottom;
}

li   {
    list-style-type: none;
}

a   {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover   {
    opacity: 0.7;
}

iframe   {
    vertical-align: bottom;
}

main   {
    width: 100%;
}

.wrapper   {
    width: 100%;
    padding: 0 30px;
    margin: 0 auto;
    box-sizing: border-box;
}

.en   {
    font-family: 'Poppins';
}


/* タイトル */
.section_title   {
    width: 100%;
    display: flex;
    align-items: center;
    padding-right: 30px;
    padding-bottom: 8px;
    position: relative;
}

.section_title::before   {
    content: "";
    width: 300px;
    height: 3px;
    background-color: #004FFF;
    border-radius: 5px;
    position: absolute;
    top: 48px;
    left: -30px;
}

.section_title .logo   {
    width: 100%;
    max-width: 40px;
    margin-right: 16px;
}

.section_title .logo img   {
    width: 100%;
    vertical-align: bottom;
}

.section_title .text   {
    font-size: 28px;
}


/* アローアニメーション */
@keyframes arrow-slide   {
    0%   {
        transform: translateX(0);
    }

    50%   {
        transform: translateX(6px);
    }

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

@keyframes arrow-slide-before {
    0% {
        transform: rotate(45deg) translateX(0);
    }
    50% {
        transform: rotate(45deg) translateX(5px) translateY(-5px);
    }
    100% {
        transform: rotate(45deg) translateX(0);
    }
}

/* メインビジュアルアニメーション */

/* フェードアップ */
.time, .people, .mean, .coffee {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.8s ease;
}
.animate {
    opacity: 1;
    transform: translateY(0);
}
  /* 擬似要素に対して */
.time.animate::before,
.people.animate::after,
.mean.animate::before,
.mean.animate::after {
    animation: fadeUp 0.8s ease forwards;
}

  /* コーヒー */
.coffee.animate {
    opacity: 1;
    transform: translateY(0);
}

/* 揺れる */
@keyframes shake {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(2deg); }
    50% { transform: rotate(-2deg); }
    75% { transform: rotate(1deg); }
}
.shake-icons .time::before,
.shake-icons .people::after,
.shake-icons .mean::before,
.shake-icons .mean::after,
.shake-icons .mainvisual .inner .mean .coffee {
    animation: shake 1.2s ease-in-out infinite;
}


/* スクロール */
@keyframes scrolltext   {
    0%, 100%   {
        transform: translateY(0);
    }
    50%   {
        transform: translateY(6px);
    }
}



/* ヘッダー */
#header   {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 0 30px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

#header .name   {
    width: 100%;
    max-width: 300px;
    font-size: 30px;
    text-shadow: 0 0 1px #333;
    z-index: 30;
}

#header .name a   {
    display: inline-block;
    margin: auto 0;
}

#header .name .sp-br   {
    display: inline;
}

#header .logo   {
    width: 100%;
    max-width: 20px;
    line-height: 0;
    position: fixed;
    top: 15px;
    right: 50%;
    z-index: 30;
}

#header .logo a   {
    display: block;
}


/* ハンバーガーメニュー */
#header .hamburger   {
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: fixed;
    top: 0;
    right: 20px;
    z-index: 30;
}

#header .hamburger span   {
    width: 20px;
    height: 2px;
    border-radius: 5px;
    background-color: #333;
    display: inline-block;
    position: absolute;
    left: 10px;
    transition: all 0.4s;
}

#header .hamburger span:nth-child(1)   {
    top: 26px;
}

#header .hamburger span:nth-child(2)   {
    top: 34px;
}

#header .hamburger.active span:nth-child(1)   {
    top: 30px;
    transform: rotate(-45deg);
}

#header .hamburger.active span:nth-child(2)   {
    top: 30px;
    transform: rotate(45deg);
}

/* ナビゲーション */
#header .navi   {
    width: 100%;
    height: 100vh;
    background-color: rgba(51, 51, 51, 0.95);
    position: fixed;
    top: 60px;
    left: 0;
    z-index: 20;
    transition: all 0.6s ease;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
}

#header .navi.active   {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#header .navi .menu-area   {
    width: 100%;
    height: 100vh;
    overflow: auto;
    margin: 10% 0 2%;
}

#header .navi .menu-area .menu   {
    max-width: 460px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding-left: 80px;
}

#header .navi .menu-area .menu li a   {
    margin: 10% 0;
    font-size: 40px;
    display: inline-block;
    color: #efefef;
    position: relative;
}

#header .navi .menu-area .menu li a::after   {
    content: "";
    width: 40px;
    height: 3px;
    border-radius: 5px;
    background-color: #efefef;
    position: absolute;
    top: 20px;
    left: -72px;
    animation: none;
}

#header .navi .menu-area .menu li a::before   {
    content: "";
    width: 16px;
    height: 3px;
    border-radius: 5px;
    background-color: #efefef;
    position: absolute;
    transform: rotate(45deg);
    top: 15px;
    left: -46px;
    animation: none;
}

#header .navi .menu-area .menu li a:hover::after   {
    animation: arrow-slide 1.2s ease-in-out infinite;
}

#header .navi .menu-area .menu li a:hover::before   {
        animation: arrow-slide-before 1.2s ease-in-out infinite;
}

#header .navi .menu-area .sns   {
    max-width: 460px;
    padding-top: 4%;
    margin: 0 auto;
}

#header .navi .menu-area .sns .icon   {
    width: 160px;
    display: flex;
    margin: 0 auto;
    gap: 40%;
}

#header .navi .menu-area .sns .icon .insta   {
    width: 100%;
    max-width: 48px;
}

#header .navi .menu-area .sns .icon .x   {
    width: 100%;
    max-width: 46px;
}

#header .navi .menu-area .sns .follow   {
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 24px;
    text-align: center;
    letter-spacing: 0.2em;
    margin-top: 8px;
    color: #efefef;
}

#header .navi .menu-area .sns .icon a   {
    display: block;
}




/* メインビジュアル */
.mainvisual   {
    width: 100%;
    height: 100vh;
    background-color: #fff;
}

.mainvisual .inner   {
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    padding: 200px 0;
}

.mainvisual .inner p   {
    font-size: 64px;
    text-shadow: 0 0 1px #333;
    letter-spacing: 0.06em;
    line-height: 2em;
    display: inline-block;
    padding-left: 40px;
}

.mainvisual .inner span   {
    font-size: 48px;
    text-shadow: none;
}

.mainvisual .inner .time   {
    position: relative;
}

.mainvisual .inner .time::before   {
    content: "";
    width: 100px;
    height: 100%;
    position: absolute;
    top: -60px;
    background-image: url("../img/top/time.svg");
    background-size: contain;
    left: -50%;
    transform: rotate(-8deg);
}

.mainvisual .inner .people   {
    position: relative;
}

.mainvisual .inner .people::after   {
    content: "";
    width: 280px;
    height: 200px;
    position: absolute;
    background-image: url("../img/top/people.svg");
    background-size: contain;
    top: -100px;
    right: -60%;
    transform: rotate(12deg);
}

.mainvisual .inner .mean   {
    position: relative;
}

.mainvisual .inner .mean::after   {
    content: "";
    width: 160px;
    height: 100%;
    position: absolute;
    background-image: url("../img/top/music.svg");
    background-size: contain;
    top: 240px;
    right: -400px;
}

.mainvisual .inner .mean::before   {
    content: "";
    width: 120px;
    height: 100%;
    position: absolute;
    background-image: url("../img/top/sun.svg");
    background-size: contain;
    top: 20px;
    left: -480px;
}

.mainvisual .inner .mean .coffee   {
    display: block;
    width: 60px;
    height: 60px;
    background-image: url("../img/coffee.svg");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 160px;
    left: 80px;
    opacity: 1;
    animation: fadeInCoffee 1s ease forwards;
    animation-delay: 1.8s;
}

.mainvisual .scroll   {
    width: 100%;
    max-width: 120px;
    display: flex;
    align-items: center;
    margin: 0 auto;
    font-family: 'Poppins';
    font-weight: 600;
    letter-spacing: 0.06em;
    font-size: 24px;
    text-align: center;
    margin-top: 40px;
    padding-left: 48px;
    opacity: 0;
    transition: opacity 0.8s ease;
    animation: scrolltext 1.6s ease-in-out infinite;
    position: relative;
}

.mainvisual .scroll.show   {
    opacity: 1;
}

.mainvisual .scroll::before   {
    content: "";
    width: 40px;
    height: 3px;
    border-radius: 5px;
    background-color: #333;
    transform: rotate(90deg);
    position: absolute;
    top: 16px;
    left: 0px;
}

.mainvisual .scroll::after   {
    content: "";
    width: 12px;
    height: 3px;
    border-radius: 5px;
    background-color: #333;
    position: absolute;
    top: 31px;
    left: 10.5px;
    transform: rotate(45deg);
}


#works   {
    width: 100%;
    padding-top: 80px;
    padding-bottom: 160px;
    margin-bottom: 400px;
    background-color: #fff;
}

#works .content   {
    width: 100%;
    margin: 80px 0 200px;
}

#works .content .content1   {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-bottom: 80px;
    border-bottom: solid 1px #9F9F9F;
    border-radius: 1px;
}

#works .content .content1 .img   {
    width: 46%;
    border: solid 1px #333;
    border-radius: 40px;
    transition: border-radius 0.6s cubic-bezier(0.6, 0, 0.2, 1), transform 0.6s ease;
}

#works .content .content1 .img:hover   {
    border-radius: 0;
    transform: scale(1.05);
}

#works .content .content1 .img img   {
    width: 100%;
    height: 560px;
    border-radius: 40px;
    object-fit: cover;
    transition: border-radius 0.6s cubic-bezier(0.6, 0, 0.2, 1);
}

#works .content .content1 .img:hover img   {
    border-radius: 0;
}

#works .content .content1 .text   {
    width: 46%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#works .content .content1 .text .top   {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-family: 'Poppins';
    font-weight: 600;
    letter-spacing: 0.032em;
    font-size: 24px;
}

#works .content .content1 .text .middle   {
    width: 100%;
    margin-top: -24%;
    font-family: 'Poppins';
    font-weight: 600;
    letter-spacing: 0.032em;
}

#works .content .content1 .text .middle .category   {
    font-size: 16px;
    margin-bottom: 4px;
}

#works .content .content1 .text .middle .title   {
    font-size: 40px;
}

#works .content .content1 .text .bottom   {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: end;
    font-family: 'Poppins';
    font-weight: 600;
    letter-spacing: 0.032em;
}

#works .content .content1 .text .bottom .do   {
    font-size: 24px;
    margin-left: 16px;
    line-height: 1.8em;
    position: relative;
}

#works .content .content1 .text .bottom .do li   {
    position: relative;
}

#works .content .content1 .text .bottom .do li::before   {
    content: "";
    width: 12px;
    height: 4px;
    background-color: #333;
    border-radius: 5px;
    position: absolute;
    top: 19px;
    left: -16px;
}

#works .content .content1 .text .bottom .button   {
    text-align: center;
    transition: all 0.6s ease;
}

#works .content .content1 .text .bottom .button:hover   {
    transform: scale(1.2);
}

#works .content .content1 .text .bottom .button .en   {
    font-size: 12px;
    margin-bottom: 10px;
}

#works .content .content1 .text .bottom .button .ja   {
    font-family: 'Kosugi Maru', sans-serif;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.06em;
}


#works .content .content3 .text .middle .title   {
    font-family: 'Kosugi Maru', sans-serif;
    font-weight: 400;
    letter-spacing: 0.06em;
    margin-top: 12px;
}

#works .content .content2 , .content3   {
    padding-top: 80px;
}


/* ボタン */
#works .buttom   {
    width: 100%;
    max-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 3px #333;
    border-radius: 20px;
    margin: 0 auto;
}

#works .buttom .text   {
    font-size: 24px;
    padding: 30px 24px 30px 96px;
    position: relative;
}

#works .buttom .text::after   {
    content: "";
    width: 40px;
    height: 3px;
    border-radius: 5px;
    background-color: #333;
    position: absolute;
    top: 45px;
    left: 14px;
    animation: none;
}

#works .buttom .text::before   {
    content: "";
    width: 16px;
    height: 3px;
    border-radius: 5px;
    background-color: #333;
    position: absolute;
    transform: rotate(45deg);
    top: 40px;
    left: 40px;
    animation: none;
}

#works .buttom .text:hover::after   {
    animation: arrow-slide 1.2s ease-in-out infinite;
}

#works .buttom .text:hover::before   {
    animation: arrow-slide-before 1.2s ease-in-out infinite;
}



/* 遊び心 */
#play   {
    width: 100vw;
    height: 100vh;
    background-color: #f8f8f8;
    position: relative;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

#play .baka   {
    width: 100%;
    max-width: 250px;
    position: absolute;
    top: 200px;
    left: 16%;
}

#play .puri   {
    font-size: 12px;
    line-height: 1.5em;
    position: absolute;
    top: 135px;
    right: 29%;
    transform: rotate(25deg);
}

#play .lore   {
    font-size: 12px;
    line-height: 1.5em;
    position: absolute;
    top: 135px;
    right: 39%;
    transform: rotate(-35deg);
}

#play .prism   {
    width: 100%;
    max-width: 160px;
    position: absolute;
    top: 140px;
    right: 30%;
}

#play .padosi   {
    width: 100%;
    max-width: 120px;
    position: absolute;
    bottom: 120px;
    left: 40%;

}

#play .overflow   {
    width: 100%;
    max-width: 240px;
    position: absolute;
    bottom: 220px;
    right: 15%;
}

#play .overflowText   {
    font-size: 12px;
    line-height: 1.8em;
    position: absolute;
    bottom: 320px;
    right: 28%;
}




/* とっとっと */
#about   {
    width: 100%;
    height: auto;
    background-color: #333;
    position: relative;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    padding-top: 48px;
    z-index: 0;
}

#about .img   {
    width: 60%;
    position: absolute;
    top: 8%;
    left: 15%;
    transform: rotate(15deg);
    z-index: -1;
}

#about .section_title   {
    margin-bottom: 80px;
    z-index: 1;
}

#about .section_title::before   {
    background-color: #f5f5f5;
    width: 260px;
}

#about .section_title .logo img   {
    padding: 10px;
    margin-left: -30px;
}

#about .section_title .text   {
    color: #f5f5f5;
    margin-left: -30px;
}



/* カード */
#about .card   {
    width: 100%;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-radius: 20px;
    margin-bottom: 56px;
    z-index: 1;
}

#about .card .card-left   {
    width: 33%;
    font-family: 'Poppins';
    font-weight: 600;
    letter-spacing: 0.032em;
    font-size: 80px;
    text-align: center;
    padding: 120px 0 120px 8%;
    align-self: center;
}

#about .card .card-middle   {
    width: 33%;
    font-size: 40px;
    text-align: center;
    align-self: center;
}

#about .card .card-right   {
    font-size: 16px;
    width: 33%;
    line-height: 1.8em;
    letter-spacing: 0.06em;
    margin: 0 auto;
    padding: 8% 8% 8% 0;
}

#about .card .card-right .text.full   {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 1.2s ease, opacity 1.2s ease;
}

#about .card .card-right .toggle   {
    font-size: 12px;
    display: block;
    margin: 0 auto;
    position: relative;
    cursor: pointer;
}

#about .card.open .text.short   {
    display: none;
}

#about .card.open .text.full   {
    max-height: 2000px;
    opacity: 1;
}

#about button.toggle   {
    color: #333;
    background: none;
    border: none;
}




/* お問い合わせ */
#contact   {
    background-color: #fff;
    margin-top: 20%;
    padding: 48px 0 80px;
    border-top-right-radius: 40px;
    border-top-left-radius: 40px;
}


/* セクションタイトル */
#contact .section_title   {
    margin-left: 30px;
    margin-bottom: 130px;
}

#contact .section_title::before   {
    background-color: #FFF000;
    width: 280px;

}

#contact .section_title .logo   {
    width: 40px;
}

#contact .section_title .logo img   {
    width: 100%;
    padding: 0;
}

#contact .section_title .text   {
    color: #333;
}


/* テキスト */
#contact .ContactText   {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin-bottom: 64px;
}

#contact .ContactText .textMain   {
    font-size: 40px;
}

#contact .ContactText .textMain .br-sp   {
    display: none;
}

#contact .ContactText .textMain span   {
    font-family: 'Poppins';
    font-weight: normal;
    letter-spacing: 0.032em;
}

#contact .ContactText .textSub   {
    font-size: 20px;
    margin-top: 8px;
}



/* コンタクトボタン */
#contact .button   {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    display: block;
    background-color: #333;
    color: #fff;
    padding: 28px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    gap: 32px;
}

#contact .button img   {
    width: 100%;
    max-width: 32px;
}

#contact .button p   {
    font-size: 24px;
}





/* フッター */
#footer   {
    width: 100%;
    background-color: #fff;
    padding: 120px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top: solid 3px #333;
}

#footer .img   {
    width: 100%;
    max-width: 18%;
}

#footer .img img   {
    width: 100%;
}

#footer .copyright   {
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 40px;
    letter-spacing: 0.06em;
}

#footer .sns   {
    display: flex;
    justify-content: space-between;
    gap: 100px;
    margin-top: 32px;
}

#footer .sns .insta   {
    display: block;

}

#footer .sns .insta img   {
    width: 100%;
    max-width: 48px;
}

#footer .sns .x   {
    display: block;
}

#footer .sns .x img   {
    width: 100%;
    max-width: 46px;
}





/* スマートフォン */
@media screen and (max-width: 798px)   {
    .wrapper   {
        padding: 0 14px;
    }


    /* ヘッダー */
    #header   {
        padding-left: 14px;
        padding-right: 0px;
    }
    #header .name  {
        max-width: 140px;
        font-size: 14px;
        line-height: 1.6em;
    }

    #header .name .sp-br   {
        display: block;
        height: 0;
    }

    #header .hamburger   {
        right: 14px;
    }



    /* ナビゲーション */
    #header .navi .menu-area   {
        margin: 20% 0 20%;
    }

    #header .navi .menu-area .menu   {
        max-width: 300px;
    }

    #header .navi .menu-area .menu li a   {
        font-size: 28px;
        margin: 20% 0;
    }

    #header .navi .menu-area .menu li a::after   {
        top: 15px;
    }

    #header .navi .menu-area .menu li a::before   {
        top: 10px;
    }

    #header  .navi .menu-area .sns   {
        max-width: 300px;
        padding-top: 8%;
    }

    #header .navi .menu-area .sns .icon   {
        width: 150px;
        gap: 38%;
        justify-content: center;
    }

    #header .navi .menu-area .sns .icon .insta   {
        max-width: 35px;
    }

    #header .navi .menu-area .sns .icon .x   {
        max-width: 35px;
    }

    #header .navi .menu-area .sns .follow   {
        font-size: 20px;
        margin-right: -6px;
    }



    /* メインビジュアル */
    .mainvisual .inner   {
        padding: 240px 0;
    }

    .mainvisual .inner p   {
        font-size: 40px;
        padding-left: 80px;
    }

    .mainvisual .inner span   {
        font-size: 32px;
    }

    .mainvisual .inner .time::before   {
        width: 80px;
        top: -140px;
        left: 5%;
    }

    .mainvisual .inner .people::after   {
        width: 160px;
        right: 5%;
        top: -160px;
    }

    .mainvisual .inner .mean::before   {
        width: 110px;
        top: 80px;
        left: 2%;
    }

    .mainvisual .inner .mean::after   {
        width: 100px;
        right: 5%;
        top: 200px;
    }

    .mainvisual .inner .mean .coffee   {
        width: 45px;
        top: 200px;
        left: 40%;
    }

    /* スクロール */
    .mainvisual .scroll   {
        max-width: 88px;
        font-size: 16px;
        margin-top: 20px;
        padding-left: 32px;
    }

    .mainvisual .scroll::before   {
        width: 30px;
        top: 12px;
    }

    .mainvisual .scroll::after   {
        width: 10px;
        top: 24px;
        left: 7.5px;
    }



    /* つくったもの */


    /* タイトル */
    .section_title   {
        margin-right: 14px;
    }

    .section_title::before   {
        width: 170px;
        height: 2px;
        top: 28px;
        left: -14px;
    }

    .section_title .logo   {
        max-width: 20px;
        margin-right: 16px;
    }

    .section_title .text   {
        font-size: 16px;
    }

    /* タイトル */
    #works   {
        padding-top: 64px;
        padding-bottom: 160px;
    }

    #works .content   {
        margin: 24px 0 160px;
    }

    #works .content .content1   {
        flex-direction: column;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    #works .content .content1 .img   {
        width: 100%;
        border-radius: 20px;
    }

    #works .content .content1 .img img   {
        height: 250px;
        border-radius: 20px;
    }

    #works .content .content1 .text   {
        width: 100%;
        margin-top: 24px;
    }

    #works .content .content1 .text .top   {
        font-size: 16px;
    }

    #works .content .content1 .text .middle   {
        margin-top: 10%;
    }

    #works .content .content1 .text .middle .category   {
        font-size: 8px;
        margin-bottom: 0;
    }

    #works .content .content1 .text .middle .title   {
        font-size: 24px;
        margin-bottom: 20%;
    }

    #works .content .content1 .text .bottom .do   {
        font-size: 16px;
        margin-left: 10px;
    }

    #works .content .content1 .text .bottom .do li::before   {
        width: 8px;
        height: 3px;
        top: 13px;
        left: -10px;
    }

    #works .content .content1 .text .bottom .button .en   {
        font-size: 10px;
        margin-bottom: 4px;
    }

    #works .content .content1 .text .bottom .button .ja   {
        font-size: 16px;
    }


    /* ボタン */
    #works .buttom   {
        max-width: 250px;
        border: solid 2px #333;
    }

    #works .buttom .text   {
        font-size: 16px;
        padding: 16px 24px 16px 60px;
    }

    #works .buttom .text::after   {
        width: 24px;
        height: 2px;
        left: 20px;
        top: 24px;
    }

    #works .buttom .text::before   {
        width: 10px;
        height: 2px;
        top: 21px;
        left: 35px;
    }


    /* 遊び心 */
    #play .baka   {
        max-width: 140px;
        top: 20px;
        left: 10%;
        transform: rotate(-15deg);
    }

    #play .puri   {
        font-size: 6px;
        top: 240px;
        right: 12%;
    }

    #play .lore   {
        font-size: 6px;
        top: 234px;
        right: 38%;
        transform: rotate(-30deg);
    }

    #play .prism   {
        max-width: 100px;
        top: 240px;
        right: 15%;
    }

    #play .padosi   {
        max-width: 80px;
        top: 45%;
        left: 20%;
        transform: rotate(-10deg);
    }

    #play .overflow   {
        max-width: 100px;
        bottom: 14%;
        right: 10%;
        transform: rotate(10deg);
    }

    #play .overflowText   {
        font-size: 6px;
        bottom: 20%;
        right: 32%;
    }




    /* とっとっと */
    #about   {
        border-top-left-radius: 40px;
        border-top-right-radius: 40px;
    }

    #about .section_title   {
        margin-left: 14px;
    }

    #about .section_title::before   {
        width: 140px;
        left: -28px;
    }

    #about .section_title .logo   {
        width: 10px;
    }

    #about .section_title .logo img   {
        padding: 0px;
    }



    /* カード */
    #about .card   {
        flex-direction: column;
        align-items: center;
    }

    #about .card .card-left   {
        width: 100%;
        font-size: 80px;
        padding: 20px 8%;
    }

    #about .card .card-middle   {
        width: 100%;
        font-size: 32px;
    }

    #about .card .card-right   {
        font-size: 12px;
        width: 100%;
        padding: 40px 8%;
    }




    /* お問い合わせ */
    #contact   {
        padding: 32px 0 40px;
    }



    /* セクションタイトル */
    #contact .section_title   {
        margin-bottom: 64px;
        padding-left: 28px;
    }

    #contact .section_title::before   {
        width: 160px;
        left: -14px;
    }

    #contact .section_title .logo   {
        width: 20px;
    }


    /* テキスト */
    #contact .ContactText .textMain   {
        font-size: 24px;
        line-height: 1.8em;
        text-align: center;
    }

    #contact .ContactText .textMain .br-sp   {
        display: inline;
    }

    #contact .ContactText .textSub   {
        font-size: 12px;
        margin-top: 16px;
    }



    /* コンタクトボタン */
    #contact .button   {
        max-width: 240px;
        gap: 24px;
        padding: 24px;
    }

    #contact .button img   {
        width: 28px;
    }

    #contact .button p   {
        font-size: 20px;
    }




    /* フッター */
    #footer   {
        padding: 100px 0 64px;
    }

    #footer .copyright   {
        font-size: 24px;
    }

    #footer .img   {
        max-width: 40%;
    }

    #footer .copyright   {
        margin-top: 24px;
    }

    #footer .sns   {
        gap: 56px;
    }

    #footer .sns .insta img   {
        max-width: 30px;
    }

    #footer .sns .x img   {
        max-width: 28px;
    }
}