@charset "UTF-8";

/* ====================================================
   CSS変数の定義
==================================================== */
:root {
    --background-color: #F8F4E5;
    --text-color: #714F45;
    --accent-color: #80011F;
    --menu-bg-color: #CAB198;
}


/* ----------------------------------------------------
  FLAVOR セクション (STRAWBERRY)
---------------------------------------------------- */
.flavor-section {
    padding: 25px 20px;
    text-align: center;
    overflow: hidden;
    min-height: 80vh;
}

.flavor-content {
    position: relative;
    margin: 0 auto;
    display: inline-block;

}

.flavor-image-wrapper {
    position: relative;
    display: inline-block;
    margin: 0 auto;
    margin-top: 25px;
}

/* 既に半円に加工された画像 */
.flavor-arch-image {
    display: block;
    width: 320px;
    height: auto;
    margin: 0 auto;
    padding-top: 0;
}

/* メインタイトル STRAW (上段) */
.strawberry-title1 {
    font-family: 'Libre Bodoni', serif;
    font-size: 48px;
    font-weight: bold;
    line-height: 0.9;
    color: #E9B8B9;
    margin: 0;
    z-index: 10;

    /* 修正: 画像下部に重ねて配置 */
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    letter-spacing: 0.08em;
}

/* メインタイトル BERRY (下段) */
.strawberry-title2 {
    font-family: 'Libre Bodoni', serif;
    font-size: 48px;
    font-weight: bold;
    line-height: 0.9;
    color: #E9B8B9;
    margin: 0;

    /* 修正: STRAWの下に配置 */
    position: absolute;
    bottom: -65px;
    left: 75%;
    transform: translateX(-50%);
    white-space: nowrap;
    letter-spacing: 0.08em;
    z-index: 2;
}

/* Flavor と 01 の親要素 */
.flavor-content .flavor-sub-title,
.flavor-content .strawberry-number,
.flavor-content .orange-number,
.flavor-content .blueberry-number,
.flavor-content .matcha-number,
.flavor-content .flavor-sub-title1,
.flavor-content .flavor-sub-title2 {
    font-family: 'Libre Bodoni', serif;
    position: absolute;
    margin: 0;
    line-height: 1;
    white-space: nowrap;
}

/* サブタイトル (Flavor) */
.flavor-sub-title {
    font-family: 'Libre Bodoni', serif;
    font-size: 36px;
    color: #714F45;
    margin: 0;

    position: absolute;
    top: 10px;
    left: 0;
    letter-spacing: 0.1em;
    z-index: 15;
}

/* 01 */
.strawberry-number {
    font-size: 48px;
    color: #E9B8B9;
    font-weight: bold;
    letter-spacing: 0.05em;
    top: 2px;
    left: 105px;
    z-index: 10;
}


.product-card {
    border-radius: 8px;
    padding: 40px 15px;
    max-width: 400px;
    width: 100%;
    padding-top: 80px;
}

.product-title {
    font-size: 15px;
    line-height: 1.8;
    font-weight: 500;
    margin-bottom: 25px;
    text-align: left;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
}

.product-description {
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 30px;
    text-align: left;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: #80011F;
    margin: 30px 0;
}

.price-list {
    margin-bottom: 30px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
    ;
}

.price-quantity {
    font-weight: 400;
}

.price-amount {
    font-weight: 400;
}

.cart-btn {
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    padding: 12px 40px;
    background-color: transparent;
    border: 1.5px solid #714F45;
    border-radius: 25px;
    color: #714F45;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.add-to-cart-btn:hover {
    background-color: #714F45;
    color: #f5f1e8;
}

.details-card {
    border-radius: 8px;
    padding: 40px 20px;
    max-width: 400px;
    width: 100%;
    padding-top: 0;
}

.detail-section {
    margin-bottom: 30px;
}

.detail-section:last-child {
    margin-bottom: 0;
}

.detail-label {
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 500;
    text-align: left;
}

.detail-content {
    font-size: 13px;
    line-height: 1.8;
    text-align: left;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.detail-content.small {
    font-size: 12px;
}

.ingredient-list {
    line-height: 1.9;
}


/* ----------------------------------------------------
  FLAVOR セクション (ORANGE)
---------------------------------------------------- */
.orange-title1 {
    font-family: 'Libre Bodoni', serif;
    font-size: 48px;
    font-weight: bold;
    line-height: 0.9;
    color: #E9A242;
    margin: 0;
    z-index: 10;

    position: absolute;
    bottom: -50px;
    left: 65%;
    transform: translateX(-50%);
    white-space: nowrap;
    letter-spacing: 0.08em;
}

.orange-number {
    font-family: 'Libre Bodoni', serif;
    font-size: 48px;
    color: #E9A242;
    font-weight: bold;
    letter-spacing: 0.05em;
    top: 5px;
    left: 110px;
    z-index: 10;
}

/* ----------------------------------------------------
  FLAVOR セクション (ブルーベリー)
---------------------------------------------------- */

/* メインタイトル BLUE (上段) */
.blueberry-title1 {
    font-family: 'Libre Bodoni', serif;
    font-size: 48px;
    font-weight: bold;
    line-height: 0.9;
    color: #3E4E67;
    margin: 0;
    z-index: 10;

    /* 修正: 画像下部に重ねて配置 */
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    letter-spacing: 0.08em;
}

/* メインタイトル BERRY (下段) */
.blueberry-title2 {
    font-family: 'Libre Bodoni', serif;
    font-size: 48px;
    font-weight: bold;
    line-height: 0.9;
    color: #3E4E67;
    margin: 0;

    /* BLUEの下に配置 */
    position: absolute;
    bottom: -65px;
    left: 75%;
    transform: translateX(-50%);
    white-space: nowrap;
    letter-spacing: 0.08em;
    z-index: 2;
}

.blueberry-number {
    font-family: 'Libre Bodoni', serif;
    font-size: 48px;
    color: #3E4E67;
    font-weight: bold;
    letter-spacing: 0.05em;
    top: 5px;
    left: 110px;
    z-index: 10;
}

/* ----------------------------------------------------
  FLAVOR セクション (抹茶)
---------------------------------------------------- */
.matcha-title1 {
    font-family: 'Libre Bodoni', serif;
    font-size: 48px;
    font-weight: bold;
    line-height: 0.9;
    color: #94A95F;
    margin: 0;
    z-index: 10;

    position: absolute;
    bottom: -50px;
    left: 65%;
    transform: translateX(-50%);
    white-space: nowrap;
    letter-spacing: 0.08em;
}

.matcha-number {
    font-family: 'Libre Bodoni', serif;
    font-size: 48px;
    color: #94A95F;
    font-weight: bold;
    letter-spacing: 0.05em;
    top: 5px;
    left: 110px;
    z-index: 10;
}

/* ----------------------------------------------------
  SEASONALセクション (ルビーチョコレート)
---------------------------------------------------- */
.ruby-title1 {
    font-family: 'Libre Bodoni', serif;
    font-size: 48px;
    font-weight: bold;
    line-height: 0.9;
    color: #80011F;
    margin: 0;
    z-index: 10;

    position: absolute;
    bottom: -50px;
    left: 75%;
    transform: translateX(-50%);
    white-space: nowrap;
    letter-spacing: 0.08em;
}

/* サブタイトル (Flavor) */
.flavor-sub-title1 {
    font-family: 'Libre Bodoni', serif;
    font-size: 36px;
    color: #714F45;
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.4);
    margin: 0;

    position: absolute;
    top: 0;
    left: 0;
    letter-spacing: 0.1em;
    z-index: 15;
}

.flavor-sub-title2 {
    font-family: 'Libre Bodoni', serif;
    font-size: 36px;
    color: #714F45;
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.4);
    margin: 0;

    position: absolute;
    top: 40px;
    left: 0;
    letter-spacing: 0.1em;
    z-index: 15;
}

/* ----------------------------------------------------
  CLASSICセクション 
---------------------------------------------------- */
.category-container {
    max-width: 350px;
    width: 100%;
    padding: 0;
    border-radius: 0;
}

.category-card {
    position: relative;
    margin-bottom: 0;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* BITTER - 右寄せ */
.category-card:nth-child(1) {
    text-align: right;
    padding-right: 0;
}

/* MILK - 左寄せ */
.category-card:nth-child(2) {
    text-align: left;
    padding-left: 0;
}

/* WHITE - 右寄せ */
.category-card:nth-child(3) {
    text-align: right;
    padding-right: 0;
}

.category-image {
    width: 80%;
    height: auto;
    display: inline-block;
    vertical-align: top;
    margin: 0;
}

.category-label {
    position: absolute;
    font-family: 'Libre Bodoni', serif;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

/* BITTER - 左下 */
.category-card:nth-child(1) .category-label {
    bottom: 15px;
    left: 10px;
}

/* MILK - 右下 */
.category-card:nth-child(2) .category-label {
    bottom: 15px;
    right: 10px;
}

/* WHITE - 左下 */
.category-card:nth-child(3) .category-label {
    bottom: 15px;
    left: 10px;
}

.classic-content {
    position: relative;
    margin: 0 auto;
    text-align: center;
    max-width: 350px;
    padding: 0 20px;
}

.milk-title {
    font-family: 'Libre Bodoni', serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #c9a896;
    margin-bottom: 15px;
    text-align: center;
}

.classic-image-wrapper {
    position: relative;
    display: block;
    margin: 0 auto;
    max-width: 280px;
}

.classic-image-wrapper .flavor-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

.classic-card {
    border-radius: 8px;
    padding: 40px 30px;
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
}

.classic-title {
    font-size: 15px;
    line-height: 1.8;
    font-weight: 500;
    margin-bottom: 25px;
    text-align: center;
}

.classic-description {
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 30px;
    text-align: left;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.bitter-title {
    font-family: 'Libre Bodoni', serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #714F45;
    margin-bottom: 15px;
    text-align: center;
}

.white-title {
    font-family: 'Libre Bodoni', serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #FAF8F6;
    margin-bottom: 15px;
    text-align: center;
    -webkit-text-stroke: 0.5px #714F45;
}

.detail-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-title::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #c9a896;
    flex-shrink: 0;
}