@charset "utf-8";
/* ------------------------------
カラーコード
------------------------------ */
:root {
    --white: #fff;
    --beige: #F8F6EB;
    --red: #E05137;
    --orange: #F18D00;
    --green: #5DAC2B;
    --brown: #470000;
}
/* ------------------------------
背景・文字
------------------------------ */
html {
    scroll-behavior: smooth;
}
body{
    overflow-x: hidden;
}
.container {
    width: 100vw;
    box-sizing: border-box;
    background-color: var(--beige);
    color: var(--brown);
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: left;
    margin-left: calc(50% - 50vw);
    position: relative;
    padding-top: 100vh;
    padding-top: 100lvh;
}
.container p {
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0px;
}
.none {
    display: none;
}
@media (max-width: 1100px) {
    .container p {
        font-size: 14px;
        line-height: 28px;
    }
}
/* ------------------------------
シャドウ
------------------------------ */
.shade {
    filter: drop-shadow(10px 10px 20px rgba(64, 46, 37, 0.3));
}
/* ------------------------------
インデックス
------------------------------ */
.index p:first-child {
    display: flex;
}
.index-handwriting {
    font-family: "Homemade Apple", cursive;
    font-size: 24px;
    line-height: 32px;
    display: inline-block;
    width: 140px;
    padding-bottom: 8px;
    position: relative;
}
.index-handwriting::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background-color: var(--brown);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s ease-out;
}
.index-handwriting.animated::after {
    transform: scaleX(1);
}
.index-number {
    font-size: 96px;
    letter-spacing: 0px;
    font-weight: 600;
    display: block;
    margin: -40px 0 0 -40px;
}
.index .index-text {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 2px;
    font-weight: 500;
    margin: 16px 0 20px;
}
@media (max-width: 1100px) {
    .index-handwriting {
        font-size: calc(24px *0.8);
        line-height: calc(32px *0.8);
        width: 100px;
        padding-bottom: 6px;
    }
    .index-number {
        font-size: calc(96px * 0.8);
        margin: -35px 0 0 -30px;
    }
    .index .index-text {
        font-size: calc(24px *0.8);
        line-height: calc(32px *0.8);
    }
}
@media (max-width: 767px) {
    .index-handwriting {
        font-size: 16px;
        line-height: 24px;
        width: 80px;
        padding-bottom: 4px;
    }
    .index-number {
        font-size: 48px;
        margin: -20px 0 0 -20px;
    }
    .index .index-text {
        font-size: 18px;
        line-height: 27px;
        letter-spacing: 2px;
        margin: 8px 0 12px;
    }
}
/* ------------------------------
栄養素表示
------------------------------ */
.nutrition {
    width: 100%;
    max-width: 300px;
}
.nutrition ul {
    width: 100%;
    margin: 30px auto;
    display: flex;
    justify-content: center;
    list-style: none;
}
.nutrition ul li {
    padding: 0 20px;
    text-align: center;
}
.nutrition ul li:nth-child(2) {
    border-right: 1px solid var(--brown);
    border-left: 1px solid var(--brown);
}
.nutrition ul li p:first-child {
    font-size: 12px;
    line-height: 18px;
}
.nutrition ul li p:last-child {
    font-size: 20px;
}
.nutrition ul li p .unit {
    font-size: 14px;
    margin-left: 5px;
}
@media (max-width: 767px) {
    .nutrition ul li {
        padding: 0 16px;
    }
    .nutrition ul li p:first-child {
        font-size: 10px;
        line-height: 15px;
    }
    .nutrition ul li p:last-child {
        font-size: 14px;
    }
    .nutrition ul li p .unit {
        font-size: 10px;
        margin-left: 5px;
    }
}
/* ------------------------------
ボタン
------------------------------ */
.button a {
    text-decoration: none;
    color: var(--brown);
    font-size: 14px;
    background: transparent;
    padding: 8px 40px 8px 24px;
    border: 1px solid var(--brown);
    border-radius: 50px;
    position: relative;
    z-index: 1;
    transition: ease-in-out .3s;
    overflow: hidden;
}
.button a::after {
    content: '';
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--brown);
    border-right: 2px solid var(--brown);
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 24px;
    border-radius: 1px;
    transition: ease-in-out .3s;
}
.button a:hover {
    border: 1px solid var(--orange);
    background-color: var(--orange);
    color: var(--white);
}
.button a:hover::after {
    border-top: 2px solid var(--white);
    border-right: 2px solid var(--white);
}
@media (max-width: 1100px) {
    .button a {
        font-size: 12px;
        padding: 6px 30px 6px 18px;
    }
    .button a::after {
        width: 6px;
        height: 6px;
        right: 18px;
    }
}
/* ------------------------------
タイトル
------------------------------ */
.title {
    width: 100%;
    max-width: 1440px;
    margin: 60px auto;
    padding: 0 40px;
}
.title h3 {
    color: var(--orange);
    font-size: 40px;
    font-weight: 800;
    letter-spacing: 2px;
}
.title h4 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
}
@media (max-width: 767px) {
    .title h3 {
        font-size: 32px;
    }
    .title h4 {
        font-size: 14px;
    }
}
/* ------------------------------
MV
------------------------------ */
.mv {
    width: 100%;
    max-width: 1440px;
    height: calc(100vh - 105px);
    height: calc(100lvh - 105px);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
/* ロゴ */
.mv-logo {
    position: absolute;
    width: 65vw;
    max-width: 620px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 40;
}
.mv-logo img {
    width: 100%;
    opacity: 0;
    will-change: transform, opacity;
}
/* コピー */
.mv-copy-horizontal {
    display: none;
}
.mv-copy-horizontal,
.mv-copy-vertical {
    position: absolute;
    z-index: 40;
}
.mv-copy-horizontal h2{
    font-weight: 600;
    font-size: 28px;
    line-height: 47px;
    letter-spacing: 3px;
    background-color: var(--white);
    display: inline-block;
    vertical-align: top;
    color: var(--orange);
}
.mv-copy-vertical {
    top: 60px;
    left: 10%;
}
.mv-copy-vertical {
    width: 120px;
}
.mv-copy-vertical img{
    width: 100%;
}
/* プレート */
.mv-plate {
    position: absolute;
    width: 110vw;
    max-width: 1120px;
    top: 110px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}
.mv-plate img {
    width: 100%;
    display: block;
}
/* 野菜 */
.mv-vege-tomato,
.mv-vege-beans,
.mv-vege-pumpkin,
.mv-vege-sweetpotato {
    position: absolute;
    object-fit: contain;
    display: block;
    opacity: 0;
    will-change: transform, opacity;
}
.mv-vege-tomato {
    left: -30px;
    width: clamp(250px, 26%, 380px);
    z-index: 30;
}
.mv-vege-beans {
    left: -30px;
    width: clamp(257px, 27%, 390px);
    z-index: 10;
}
.mv-vege-pumpkin {
    right: -60px;
    width: clamp(382px, 37%, 540px);
    z-index: 10;
}
.mv-vege-sweetpotato {
    right: -70px;
    width: clamp(300px, 29%, 420px);
    z-index: 30;
}
/* ラベル */
.mv-label {
    width: 20vw;
    max-width: 260px;
    min-width: 200px;
    position: absolute;
    right: clamp(40px, 2vw, 100px);
    bottom: 5%;
    z-index: 40;
}
.mv-label img {
    width: 100%;
    object-fit: contain;
}
/* 1100pxからコピー位置変更 */
@media (max-width: 1100px) {
    .mv-copy-vertical {
        display: none;
    }
    .mv-copy-horizontal {
        left: 5%;
        top: calc(50% + 140px);
        transform: translate(0, calc(-50% + 40vh));
        transform: translate(0, calc(-50% + 40lvh));
        display: inline-block;
    }
    .mv-copy-horizontal h2 {
        writing-mode: horizontal-tb;
        text-orientation: initial;
        font-size: 24px;
        line-height: 48px;
        letter-spacing: 2px;
        display: inline-block;
    }
    .mv-copy-horizontal h2:first-child {
        padding: 2px 4px 2px 14px;
        margin-bottom: 8px;
    }
    .mv-copy-horizontal h2:last-child {
        padding: 2px 4px 2px 10px;
        display: block;
    }
    .mv-copy-horizontal .quote-open {
        padding: 4px;
    }
    .mv-copy-horizontal .quote-close {
        padding: 4px;
        margin: 0;
    }
    .mv-label {
        bottom: 10%;
    }
}
/* 960pxからヘッダー高さ縮小 */
@media (max-width: 960px) {
    .mv {
        height: calc(100vh - 64px);
        height: calc(100lvh - 64px);
    }
}
/* 767pxからプレート・ラベル位置変更 */
@media (max-width: 767px) {
    .mv {
        max-height: 700px;
    }
    .mv-logo {
        width: 80%;
        max-width: 400px;
        min-width: 270px;
    }
    .mv-plate {
        min-width: 520px;
        max-width: 660px;
        top: 50%;
        transform: translate(-50%, calc(-50% + 20vw));
    }
    .mv-product {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, calc(-50% + 20vw));
        display: flex;
        gap: 13px;
        justify-content: center;
        align-items: center;
        width: 110vw;
        min-width: 520px;
        max-width: 660px;
        z-index: 20;
    }
    .mv-product img {
        width: 22.5%;
        object-fit: contain;
        display: block;
    }
    .mv-copy-horizontal {
        left: 5%;
        top: calc(50% + 100px);
        transform: translate(0, calc(-50% + 40vh));
        transform: translate(0, calc(-50% + 40lvh));
    }
    .mv-copy-horizontal h2 {
        font-size: 16px;
        line-height: 32px;
        letter-spacing: 1px;
    }
    .mv-copy-horizontal h2:first-child {
        padding: 0px 2px 0px 12px;
        margin-bottom: 8px;
    }
    .mv-copy-horizontal h2:last-child {
        padding: 0px 2px 0px 8px;
    }
    .mv-copy-horizontal .quote-open {
        padding: 2px;
    }
    .mv-copy-horizontal .quote-close {
        padding: 2px;
    }
    .mv-vege-tomato {
        left: calc(-5% + 20px);
        width: clamp(100px, 30%, 200px);
    }
    .mv-vege-beans {
        left: calc(-5% + 20px);
        width: clamp(120px, 30%, 200px);
    }
    .mv-vege-pumpkin {
        right: calc(-10% + 20px);
        width: clamp(180px, 40%, 540px);
    }
    .mv-vege-sweetpotato {
        right: calc(-10% + 20px);
        width: clamp(130px, 35%, 420px);
    }
    .mv-label {
        width: 22%;
        min-width: 140px;
        right: 5%;
        top: 3%;
    }
}
@media (max-width: 500px) {
    .mv-vege-tomato {
        left: -5%;
    }
    .mv-vege-beans {
        left: -10%;
    }
    .mv-vege-pumpkin {
        right: -15%;
    }
    .mv-vege-sweetpotato {
        right: -15%;
    }
        .mv-label {
        width: 32%;
        min-width: 120px;
        right: 5%;
        top: calc(40% - 230px);
    }
}
/* ------------------------------
アクセント
------------------------------ */
.accent {
    width: 100%;
    height: auto;
    padding: 100px 0;
}
.accent img {
    width: 160px;
    height: auto;
    display: block;
    margin: 0 auto;
}
@media (max-width: 1100px) {
    .accent {
        padding: 80px 0;
    }
    .accent img {
        width: 20%;
        max-width: 120px;
        min-width: 80px;
    }
}
/* ------------------------------
イントロダクション
------------------------------ */
.intro {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
}
.intro-scene {
    height: 100vh;
    height: 100lvh;
    width: 50%;
    position: sticky;
    top: 0;
}
.intro-scene img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.intro-content {
    height: 100%;
    width: 50%;
    position: sticky;
    top: 0;
    padding: 100px 5%;
}
.intro-scene::after {
    content: "Oh! SAKANA BAR";
    height: 100vh;
    height: 100lvh;
    color: var(--orange);
    top: 70px;
    right: -85px;
    position: absolute;
    writing-mode: vertical-rl;
    font-size: 64px;
    font-weight: 600;
    letter-spacing: 6px;
    opacity: 0.4;
}
.intro-content>.intro-text {
    max-width: 320px;
    margin: 0 0 80px 60px;
}
.intro-content>.intro-text p {
    margin-bottom: 30px;
}
.intro-content>.intro-text span {
    color: var(--orange);
    font-weight: bold;
    display: inline;
    line-height: 24px;
    padding: 0 8px;
    margin: 8px 0;
    position: relative;
    z-index: 0;
}
.intro-content>.intro-text span::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 0;
    right: 0;
    height: 22px;
    background-color: var(--white);
    transform: translateY(-50%);
}
.intro-sokkin {
    padding: 15%;
    max-width: 540px;
    margin-left: 20px;
    background-color: var(--white);
}
.intro-sokkin .intro-text {
    margin: 60px 0;
}
.intro-sokkin .intro-text p {
    margin: 0 0 20px;
}
.intro .index {
    color: var(--orange);
}
.intro .index-number {
    font-size: 40px;
    line-height: normal;
    letter-spacing: 2px;
    margin: -30px 0 0 -20px;
}
.intro .index-handwriting::after {
    background-color: var(--orange);
    transition: transform 0.8s ease-out;
    transition-delay: 0.8s;
}
.intro .button {
    text-align: right;
}
@media (max-width: 1100px) {
    .intro-scene::after {
        display: none;
    }
    .intro-content {
        padding: 100px 3%;
    }
    .intro-content>.intro-text {
        margin: 0 auto 80px;
        max-width: 280px;
    }
    .intro-sokkin {
        max-width: 400px;
        margin-left: 0;
    }
    .intro .index-handwriting {
        min-width: 90px;
    }
    .intro .index-number {
        font-size: calc(40px * 0.8);
        margin: -20px 0 0 0px;
    }
}
@media (max-width: 767px) {
    .intro {
        flex-direction: column;
    }
    .intro-scene {
        width: 100%;
        opacity: 0.2;
    }
    .intro-content {
        padding: 100px 5%;
        width: 100%;
        margin-top: -100vh;
        margin-top: -100lvh;
    }
    .intro-sokkin {
        padding: 15% 10%;
        margin: 0 auto;
    }
    .intro .index-number {
        font-size: 24px;
        margin: -15px 0 0 -10px;
    }
}
/* ------------------------------
利用シーン
------------------------------ */
.scene {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    justify-content: space-between;
    position: relative;
}
.scene img {
    width: 100%;
}
.scene01,
.scene02,
.scene03 {
    width: 100%;
    position: relative;
    padding: 0 20px;
}
.scene01 {
    margin: 0 0 0 auto;
}
.scene02 {
    margin: -100px auto 0 0;
}
.scene03 {
    margin: -20px 0 0 auto;
}
.scene-text {
    width: 320px;
    position: relative;
    z-index: 10;
}
.scene01 .scene-text,
.scene03 .scene-text {
    margin: 0 0 0 auto;
}
.scene02 .scene-text {
    margin: 0 auto 0 20px;
}
.scene-img-lg {
    width: clamp(360px, 50vw, 600px);
    aspect-ratio: 3 / 2;
    z-index: 0;
    position: relative;
}
.scene01 .scene-img-lg,
.scene03 .scene-img-lg {
    margin: 0 0 30px auto;
}
.scene-img-sm {
    position: absolute;
}
.scene01 .scene-img-sm,
.scene03 .scene-img-sm {
    width: clamp(100px, 15vw, 180px);
    aspect-ratio: 18 / 50;
}
.scene01 .scene-img-sm {
    top: clamp(-180px, -15vw, -140px);
    right: calc(50% + 5vw);
}
.scene02 .scene-img-sm {
    bottom: clamp(160px, 15vw, 180px);
    right: 0;
    height: clamp(100px, 15vw, 180px);
    aspect-ratio: 50 / 18;
}
.scene03 .scene-img-sm {
    top: clamp(80px, 10vw, 120px);
    right: calc(50% + 7vw);
}
@media (max-width: 1100px) {
    .scene-text {
        width: 280px;
    }
    .scene-img-lg {
        margin-bottom: 20px;
    }
}
@media (max-width: 767px) {
    .scene .title {
        margin-top: 0;
    }
    .scene01,
    .scene02,
    .scene03 {
        padding: 0 16px;
    }
    .scene01 {
        margin: calc(20vw + 20px) 0 0 auto;
    }
    .scene02 {
        margin: 60px auto 0 0;
    }
    .scene03 {
        margin: 60px 0 0 auto;
    }
    .scene-text {
        width: clamp(230px, 60vw, 400px);
    }
    .scene01 .scene-text,
    .scene03 .scene-text {
        margin: 0 0 0 auto;
    }
    .scene02 .scene-text {
        width: clamp(280px, 60vw, 400px);
        margin: 0 auto 0 10px;
    }
    .scene-img-lg {
        width: clamp(230px, 60vw, 400px);
        margin-bottom: 0px;
    }
    .scene01 .scene-img-lg,
    .scene03 .scene-img-lg {
        margin: 0 0 30px auto;
    }
    .scene01 .scene-img-sm,
    .scene03 .scene-img-sm {
        width: clamp(80px, 15vw, 180px);
        right: calc(32px + clamp(230px, 60vw, 400px));
    }
    .scene01 .scene-img-sm {
        top: clamp(-120px, -10vw, -90px);
    }
    .scene02 .scene-img-sm {
        top: clamp(180px, 45vw, 240px);
        right: -5%;
        height: clamp(80px, 15vw, 180px);
    }
    .scene03 .scene-img-sm {
        top: clamp(80px, 10vw, 120px);
    }
}
@media (max-width: 500px) {
    .scene02 .scene-img-lg {
        margin-bottom: 10%;
    }
}
/* ------------------------------
レシピ（全体・１・２）
------------------------------ */
.recipe {
    width: 100%;
    max-width: 1220px;
    margin: 160px auto;
}
.recipe img {
    aspect-ratio: 3 / 2;
}
.recipe-lg .button {
    text-align: right;
}
.recipe-lg img {
    width: 100%;
    max-width: 600px;
}
.recipe01,
.recipe02 {
    display: flex;
    justify-content: center;
    align-items: center;
}
.recipe01 {
    margin-bottom: 80px;
}
.recipe02 {
    flex-direction: row-reverse;
}
.recipe01 .recipe-img,
.recipe02 .recipe-img {
    width: 50%;
}
.recipe01 .recipe-text,
.recipe02 .recipe-text {
    padding-top: 40px;
    position: relative;
}
.recipe01 .recipe-text {
    margin-left: 60px;
}
.recipe02 .recipe-text {
    margin-right: 60px;
}
.recipe-comment {
    width: 160px;
    position: absolute;
    top: -80px;
    right: -20px;
}
.recipe-comment img {
    width: 100%;
    object-fit: contain;
}
@media (max-width: 767px) {
    .recipe {
        margin: 120px auto;
    }
    .recipe-lg {
        padding: 0 20px;
        margin: 0 auto;
    }
    .recipe01,
    .recipe02 {
        flex-direction: column;
        position: relative;
    }
    .recipe01 .recipe-img,
    .recipe02 .recipe-img {
        width: 100%;
        max-width: 400px;
        position: relative;
        z-index: 0;
    }
    .recipe01 .recipe-text,
    .recipe02 .recipe-text {
        padding-top: 0px;
        margin: 0 auto;
        position: static;
        z-index: 10;
    }
    .recipe-comment {
        width: 140px;
        position: absolute;
        top: -50px;
        right: 10%;
    }
}
/* ------------------------------
レシピ（３－６）
------------------------------ */
.recipe-sm {
    width: 100%;
    margin: 80px 40px 80px;
}
.recipe-sm .recipe-card {
    width: 35vw;
    max-width: 440px;
    height: 100%;
    margin: 0 10px;
    padding-bottom: 20px;
}
.recipe-sm .recipe-img {
    width: 35vw;
    max-width: 440px;
}
.recipe-sm .recipe-text {
    width: 35vw;
    max-width: 440px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}
.recipe-sm .nutrition ul {
    margin: 0 auto 30px;
}
.recipe-sm .button {
    text-align: center;
}
.recipe-sm img {
    width: 100%;
    max-width: 440px;
}
@media (max-width: 767px) {
    .recipe-sm {
        margin: 60px 20px 60px;
    }
    .recipe-sm .recipe-card {
        width: 100%;
        max-width: 280px;
        margin: 0 4px;
    }
    .recipe-sm .recipe-img {
        width: 100%;
        max-width: 280px;
    }
    .recipe-sm .recipe-text {
        width: 100%;
        max-width: 280px;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
    }
    .recipe-sm img {
        width: 100%;
        max-width: 280px;
    }
}
/* ------------------------------
レシピ（ナビゲーション）
------------------------------ */
.swiper-nav {
    width: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}
.swiper-nav .swiper-button-next,
.swiper-nav .swiper-button-prev {
    position: static;
    background: transparent;
    border: 1px solid var(--brown);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--brown);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.swiper-nav .swiper-button-next:focus,
.swiper-nav .swiper-button-prev:focus {
    outline: none;
}
.swiper-nav .swiper-button-next::after,
.swiper-nav .swiper-button-prev::after {
    font-size: 12px;
}
.progressbar-wrapper {
    flex: 1;
    top: -10px;
    height: 2px;
    background-color: #eae7dd;
    position: relative;
    overflow: hidden;
}
.progressbar-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 35%;
    transform: translateX(0%);
    height: 100%;
    background-color: var(--brown);
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.swiper-slide {
    transition: opacity 0.8s ease;
}
@media (max-width: 767px) {
    .swiper-nav {
        width: 80%;
        max-width: 400px;
        gap: 20px;
    }
}
/* ------------------------------
商品ラインナップ
------------------------------ */
.product {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
}
.product-wrapper {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}
.product-wrapper::after {
    content: "";
    display: block;
    width: 160px;
    height: 160px;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    top: 40px;
    right: -40px;
    background-image: url(/product/brands/osakanabar/img/protein_label.png);
}
.product-img {
    width: 100%;
    display: flex;
    justify-content: center;
    background-image: url(/product/brands/osakanabar/img/product-bg.png);
    background-size: cover;
    border-radius: 30px 30px 0 0;
    padding: 40px 80px;
    gap: clamp(20px, 3vw, 40px);
}
.product-img div {
    position: relative;
}
.product-img div::after {
    content: "";
    display: block;
    width: 260px;
    height: 260px;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
}
.product-img div:first-child::after {
    bottom: -40px;
    left: -190px;
    background-image: url(/product/brands/osakanabar/img/product-t-b.png);
}
.product-img div:last-child::after {
    bottom: -50px;
    right: -190px;
    background-image: url(/product/brands/osakanabar/img/product-p-s.png);
}
.product-img img {
    width: 180px;
    display: block;
    box-shadow: 10px 10px 20px rgba(64, 46, 37, 0.2);
}
.product-text {
    width: 100%;
    background-color: var(--white);
    border-radius: 0 0 30px 30px;
    padding: 40px 40px 60px;
    margin: 0 auto;
}
.product-text .protein-logo {
    width: 100px;
    margin: 0 auto 10px;
}
.product-text .protein-logo img {
    width: 100%;
    object-fit: contain;
}
.product-text .product-title {
    margin: 0 auto 30px;
}
.product-text .product-title p {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
}
.product-text .product-caption {
    display: flex;
    justify-content: center;
    text-align: center;
    gap: 10px;
}
.product-text .product-name {
    position: relative;
    margin-bottom: 40px;
}
.product-text .product-name p {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
}
.product-text .product-name p span {
    font-size: 16px;
    font-weight: 700;
    margin-right: 4px;
}
.product-text .product-name::after {
    content: "";
    width: 60px;
    height: 5px;
    left: 50%;
    bottom: -14px;
    transform: translateX(-50%);
    position: absolute;
}
.product-t-b .product-name::after {
    background-color: var(--red);
}
.product-p-s .product-name::after {
    background-color: var(--green);
}
@media (max-width: 767px) {
    .product-wrapper {
        padding: 0 20px;
    }
    .product-wrapper::after {
        width: clamp(110px, 30vw, 160px);
        height: clamp(110px, 30vw, 160px);
        top: -90px;
        right: 20px;
    }
    .product-img {
        padding: 40px 20px;
    }
    .product-img div::after {
        width: clamp(140px, 40vw, 240px);
        height: clamp(140px, 40vw, 240px);
    }
    .product-img div:first-child::after {
        bottom: -40px;
        left: calc(max(-70px, -60vw));
    }
    .product-img div:last-child::after {
        bottom: -50px;
        right: calc(max(-80px, -60vw));
    }
    .product-img img {
        width: clamp(100px, 80%, 180px);
    }
    .product-img div:first-child img {
        margin: 0 0 0 auto;
    }
    .product-img div:last-child img {
        margin: 0 auto 0 0;
    }
}
@media (max-width: 610px) {
    .product-text {
        padding: 40px 0 60px;
    }
    .product-text .protein-logo {
        width: 80px;
    }
    .product-text .product-title p {
        font-size: 14px;
    }
    .product-text .product-caption {
        align-items: center;
        flex-direction: column;
        gap: 40px;
    }
    .product-text .product-name {
        position: relative;
        margin-bottom: 40px;
    }
    .product-text .product-name p {
        font-size: 16px;
    }
    .product-text .product-name p span {
        font-size: 14px;
    }
    .product-text .product-name::after {
        width: 40px;
    }
}


/* ------------------------------
アニメーション
------------------------------ */

/* 下からフェードイン */
.fadeIn-under {
    transform: translate3d(0, 10px, 0);
    transition: 1.8s;
    opacity: 0;
}
.fadeIn-under.animated {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

/* 右からフェードイン */
.fadeIn-right {
    transform: translate3d(10px, 0, 0);
    transition: 1.8s;
    opacity: 0;
}
.fadeIn-right.animated {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}
/* 左からフェードイン */
.fadeIn-left {
    transform: translate3d(-10px, 0, 0);
    transition: 1.8s;
    transition-delay: 0.3s;
    opacity: 0;
}
.fadeIn-left.animated {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}


/* 下からフェードイン */
@keyframes fadeIn-under05{
0% {
    transform: translate3d(0, 10px, 0);
        opacity: 0;
    }
    50% {
    transform: translate3d(0, 5px, 0);
        opacity: 0;
    }
    75% {
            transform: translate3d(0, 0, 0);
        opacity: 1;
    }
    100% {
            transform: translate3d(0, 0, 0);
    opacity: 1;
    }
}
.fadeIn-under05.animated {
        animation: fadeIn-under05 2.0s ease-in-out forwards;
}
/* 上からフェードイン */
@keyframes fadeIn-top{
0% {
        transform: translate3d(0, -10px, 0);
        opacity: 0;
    }
    50% {
    transform: translate3d(0, -5px, 0);
        opacity: 0;
    }
    75% {
            transform: translate3d(0, 0, 0);
        opacity: 1;
    }
    100% {
            transform: translate3d(0, 0, 0);
    opacity: 1;
    }
}
.fadeIn-top.animated {
        animation: fadeIn-top 3.0s ease-in-out forwards;
}

@keyframes stamp {
    0% {
        opacity: 0;
    }
    50% {
        transform: scale(0.9) rotate(-10deg);
        opacity: 0;
    }
    75% {
        transform: scale(1.02) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: scale(1);
    }
}
.stamp-in {
    animation: stamp 3.0s ease-in-out forwards;
}