@charset "utf-8";
/* ========================================
 common
======================================== */
:root {
    --primary-blue: #424B6F;
    --primary-white: #fff;
    --primary-blueblack: #162531;
    --primary-black: #000;
    --primary-gray: rgba(0, 0, 0, 0.25);
    --primary-darkblue: #61677F;
    --grad-blue: linear-gradient(180deg, #424B6F, #3C4E5B, #162531);
    --grad-pink: linear-gradient(180deg, #CE6969, #D56C6C, #CE6969);
    --grad-red: linear-gradient(180deg, #B00517, #F9909D, #B00517);
}

html {
    font-size: 62.5%;
}

body {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-style: normal;
    color:  var(--primary-black, #000);
    background-color: var(--primary-white, #fff);
    line-height: 1.7;
}

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

/* ========================================
section title
======================================== */

.section_title {
    color: var(--primary-blueblack);
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1.4;
}

.section_title.center {
    text-align: center; 
}

.section_title.center.mt-20 {
    margin-top: 20px;
}

.section_title.item_set {
    color: var(--primary-white);
}

@media screen and (min-width: 769px) {
    .section_title {
        color: var(--primary-blueblack);
        font-size: 2.8rem;
        font-weight: 700;
        line-height: 2.1;
    }

    .section_title.center.mt-20 {
        margin-top: 40px;
    }
}

/* ========================================
btn
======================================== */

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 300px;
    height: 50px;
    background: var(--primary-blueblack);
    position: relative;
    transition: 0.4s;
    gap: 40px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
}

.btntext {
    color: #FFF;
    font-size: 1.6rem;
    font-weight: 900;
    line-height: normal;
    margin-right: 40px;
}

.btntext.setbtn_white_text {
    color: var(--primary-blue);
    margin-right: 0;
}

.btn-light {
    border: 0.5px solid var(--primary-black);
    background: #FFF;
}

.btntext-black {
    color: var(--primary-black);
}

.btn::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 48px;
    aspect-ratio: 1/2;
    background-image: url(../images/icons/chevron.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 49px;
}

.btn:hover {
    opacity: 0.5;
}

.btn-light::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 48px;
    aspect-ratio: 1/2;
    background-image: url(../images/icons/chevron-black.svg); /* 黒のSVGを指定 */
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 49px;
}


/* ========================================
header
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 79px;
    padding: 50px 4%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 999;
}

.header,
.nav_top {
    height: 79px;
    padding: 50px 6.6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-icon {
    height: 33px;
    display: flex;
    align-items: center;
    gap: 18px;
}

@media screen and (min-width: 769px) {
    .header {
        height: 79px;
        padding: 50px 6.6%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
    }
    
    .header_logo {
        max-width: 240px;
        height: 92px;
    }

    .nav {
        background-color: transparent;
        width: auto;
        height: auto;
        padding-bottom: 0;
        position: static;
        transform: translateX(0);
    }

    .nav_list.header{
        display: flex;
    }

    .main_text {
        color: var(--primary-black);
        font-family: "Shippori Mincho";
        font-size: 2.0rem;
        font-weight: 700;
        line-height: normal;
    }

    .brpc {
        display: none;
    }
}

/* nav 初期表示 */
.nav {
    background-color: var(--primary-white);
    width: 100%;
    height: 100vh;
    padding-bottom: 40px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.nav.active {
    transform: translateX(0);
}

.nav_list {
    width: 280px;
    height: 493px;
    margin: 50px auto;
}

.nav_item {
    display: flex;
    height: 51px;
    margin-top: 30px;
}

.nav_item:nth-of-type(2) {
    display: flex;
    align-items: center;
    gap: 60px;
    height: 51px;
    margin-top: 30px;
}

.nav_item:nth-of-type(3) {
    display: flex;
    align-items: center;
    height: 51px;
    gap: 33px;
    margin-top: 30px;
}

.nav_item:first-of-type {
    margin-top: 0
}

.main_text {
    display: block;
    font-size: 2.0rem;
    font-weight: 700;
    line-height: normal;
}

.sub_text {
    display: block;
    margin-top: 10px;
    font-family: Inter;
    font-size: 1.0rem;
    font-weight: 400;
    line-height: normal;
}

.small_list {
    padding: 5px 0;
    gap: 10px;
}

.small_text {
    color: #666;
    font-family: Inter;
    font-size: 1.0rem;
    font-weight: 400;
    line-height: normal;
}

.item {
    margin-right: 60px;
}

.nav_item:last-of-type {
    display: none;
    width: 186px;
    height: 46px;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-family: Inter;
    font-size: 2.0rem;
    font-weight: 700;
    line-height: normal;
    background: #424B6F;
}

.banner {
    text-align: center;
    margin: 0 auto;
}


/* ========================================
hamburger menu
======================================== */

.menu_btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
  }
  
  .menu_label {
    font-family: Noto Sans JP;
    font-size: 1.0rem;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-top: 4px;
    letter-spacing: 0.05em;
  }
  
  .lines {
    width: 18px;
    height: 10px;
    position: relative;
  }
  
  .lines span {
    display: block;
    height: 2px;
    width: 100%;
    background: #000;
    position: absolute;
    left: 0;
    transition: all 0.4s ease;
  }
  
  .lines span:nth-child(1) {
    top: 0;
  }
  
  .lines span:nth-child(2) {
    bottom: 0;
  }
  
  /* メニュー開いた時に × に変形 */
  .menu_btn.active .lines span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
  }
  
  .menu_btn.active .lines span:nth-child(2) {
    transform: rotate(-45deg);
    bottom: -2px;
  }

  .nav_btn {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    width: 33px;
    height: 33px;
  }

/* hamburger menu 終わり */

.floating-order-btn img {
    color: var(--primary-white);
}

.store {
    color: var(--primary-white);
    text-align: center;
    font-family: Inter;
    font-size: 1.0rem;
    font-weight: 700;
    line-height: 1.5; /* 150% */
    margin-bottom: 5px;
}

.illustrations {
    position: relative;
}

.illust {
    width: 147px;
    height: 133px;
    opacity: 0.33;
    position: absolute;
    right: 40px;
    bottom: 67px;
}





.footer {
    margin: 140px auto 10px;
}

.sns {
    display: flex;
    align-items: center;
    width: 280px;
    margin: 0 auto;
    text-align: left;
    gap: 18px;
}

.icon {
    width: 29px;
    height: 29px;
}

.SNS_insta,
.SNS_base {
    display: flex;
    gap: 10px;
}

.sns_title {
    color: var(--primary-black);
    font-family: "Shippori Mincho";
    font-size: 1.6rem;
    font-weight: 700;
    line-height: normal;
}

.important {
    width: 280px;
    display: flex;
    margin: 0 auto;
    gap: 20px;
}

.small_text {
    margin-top: 20px;
    color: var(--primary-black);
    font-family: Inter;
    font-size: 1.0rem;
    font-weight: 400;
    line-height: normal;
}

.footer_logo {
    display: block;
    align-items: center;
    text-align: center;
}

.footerlogo_img {
    margin-top: 30px;
}

.text4 {
    margin-top: 30px;
}

.nav_list {
    margin: 30px auto;
}

.copy {
    margin-top: 50px;
}

.message {
    width: 340px;
    margin: 100px auto;
}

.text::before {
    content: '';
    display: block;
    width: 300px;
    height: 0.5px;
    margin: 10px auto;
    background-color: var(--primary-black);
}

.text {
    margin: 20px;
    text-align: center;
    color: var(--primary-black);
    font-family: "Shippori Mincho";
    font-size: 1.6rem;
    font-weight: 700;
    line-height: normal;
}

.text::after {
    content: '';
    display: block;
    width: 300px;
    height: 0.5px;
    margin: 10px auto;
    background-color: var(--primary-black);
}

.text2 {
    margin-top: 20px;
    color: var(--primary-black);
    text-align: center;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.7; /* 178.571% */
}

.message img {
    margin-top: 20px;
}
/* rank */
.rank {
    padding: 0 5%;
    text-align: center;
}

.section_title {
    margin-top: 100px;
}

.rank_image {
    display: flex;
    justify-content: center;
    margin: 40px auto 100px;
    gap: 20px;
    width: 100%;
    height: auto;
    max-width: 1160px;
    object-fit: cover;
}

.rank_item {
    position: relative;
    display: flex;
    margin-right: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%; 
}

.img_container {
    width: 100%;
    aspect-ratio: 1 / 1;
    margin-bottom: 10px;
}

.rank_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: none;
    max-height: none;
    margin-bottom: 10px;
}


.ranking {
    position: absolute;
    top: 0;
    left: 10px;
    width: 31px;
    height: 41px;
    z-index: 10px;
}

.item_title {
    color: var(--primary-black);
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
}

@media screen and (min-width: 769px) {
    .slick-slider {
        display: block;
    }
}
/* rank 終わり */

.section_title:nth-of-type(4) {
    display: block;
    align-items: center;
}

.main {
    margin-top: 100px;
}

.read {
    margin: 0 auto;
    width: 100%;
}

.page_title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 98px;
    color: var(--primary-white);
    background-color: var(--primary-blue);
    text-align: center;
    font-family: "Shippori Mincho";
    font-size: 2.4rem;
    font-weight: 700;
    line-height: normal;
}

.itempage {
    margin: 43px 0;
    text-align: center;
}

.spbr {
    display: inline;
  }

  .read_img {
    width: 100%;
    height: 230px;
    object-position: 50% 50%;
    object-fit: cover;
}

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

    .read_img {
        display: block;
        margin: 20px auto;
        width: 60%;
        height: 500px; /* ←固定高さにしておくとトリミングしやすい */
        object-fit: cover;
        object-position: 50% 43%; /* PCも同様に */
    }
    
}

.set {
    width: 340px;
    margin: 0 auto;
    
}

.set_title {
    display: flex;
    width: 115px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.set_main_title {
    color: var(--primary-white);
    text-align: center;
    font-family: "Shippori Mincho";
    font-size: 2.0rem;
    font-weight: 700;
    line-height: normal;
}

.set_main_title::after {
    content: '';
    width: 115px;
    height: 0.5px;
    background-color: var(--primary-white);
}

/* ========================================
 modal window　【注文instaORbase】
======================================== */
.modal {
    padding: 50px 6.6%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease,visibility 0.3s ease;
    /* padding: 16px 5%;
    color: var(--primary-black);
    margin: 60px auto;
    gap: 30px; */
}

.modal .modal_content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 90%;
    width: 400px;
}

.modal_btn {
    margin: 0 auto;
}

.modal_title {
    display: flex;
    padding: 4px;
    justify-content: space-between;
    align-items: center;
}

.modal_text {
    color: var(--primary-white);
    font-family: "Shippori Mincho";
    font-size: 1.4rem;
    font-weight: 700;
    line-height: normal;
    display: flex;
    align-items: center; /* 中央寄せ */
    text-align: center;
    margin-top: 10px;
}

.modal_text0 {
    color: var(--primary-white);
    font-family: "Shippori Mincho";
    font-size: 1.8rem;
    font-weight: 700;
    line-height: normal;
    margin-top: 0;
}

.m_btn_text {
    color: var(--primary-white);
    text-align: center;
    font-family: Inter;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 700;
    line-height: 18px; /* 128.571% */
}

.m_btn_text.background_blue {
    background-color: var(--primary-blue);
}

.btn_rap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    width: 308px;
    height: 57px;
    background-color: #5A6DA6;
    margin-top: 10px;
}

.btn_rap:first-of-type {
    margin-top: 30px;
}

.base-btn {
    background-color: #8C8359;
}

.color {
    color: var(--primary-white);
}

.copy_box {
    display: flex;
    margin-top: 30px;
    gap: 33px;
}

.modal_text2 {
    color: var(--primary-white);
    font-family: Inter;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.2; /* 128.571% */
}

.copy_btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px;
    width: 91px;
    height: 29px;
    border-radius: 5px;
    background: #D9D9D9;
    cursor: pointer;
}

.copy_btn img {
    width: 16px;
    height: 16px;
}

.copy_btn_text {
    color: var(--primary-black);
    font-family: Inter;
    font-size: 1.0rem;
    font-weight: 700;
    line-height: normal;
}

.copy_area {
    width: 100%;
    max-width: 307px;
    margin: 10px 0 30px;
    border-radius: 5px;
    border: 1px solid var(--primary-black);
    background-color: var(--primary-white);
    padding: 10px;
}

.copy_text {
    width: 100%;
    height: 230px;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.4;
    font-family: Inter;
    color: #888888;
    border: none;
    outline: none;
    resize: none;
    background: var(--primary-white);
}
@media screen and (min-width: 769px) {
  .tab_menu {
      position: fixed;
      top: 200px;
      right: 20px;
      bottom: auto;
      left: auto;
      width: auto;
      height: auto;
      padding: 10px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      background-color: #fff;
      z-index: 100;
  }
  .tab_list {
      flex-direction: column;
      gap: 24px;
  }
  .tab_item {
      width: auto;
      flex-direction: row;
      gap: 8px;
  }
  .tab_item img {
      width: 40px;
      height: 40px;
  }
  .tab_text.black {
      font-size: 1.0rem;
  }
}

/* モーダル表示用のクラス */
.modal.show {
    opacity: 1;
    visibility: visible;
}

/* item */

/* tab menu */

#set,
#ordermade,
#wrapping,
#single {
  scroll-margin-top: 80px;
}

.tab_menu {
    position: fixed;
    background-color: #fff;
    z-index: 100;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    padding: 10px;
    overflow-x: auto;
  }

  .bottom-fixed {
    position: fixed;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 100;
  }

  .tab_list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    max-width: 100%;
    overflow-x: auto; /* 横スクロールに備えて */
    box-sizing: border-box;
  }

.tab_item {
    display: flex;
    flex-direction: column;
    width: 60px;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary-white);
}

.black {
    color: #000;
    text-align: center;
    font-family: Inter;
    font-size: 8px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

/* set */
.set {
    background: var(--grad-blue);
    width: 100%;
    height: auto;
    padding: 34px 5% 80px;
    margin-top: 100px;
}

.set_title {
    margin: 0 auto;
    gap: 10px;
}

.set_main_title {
    display: block;
    color: var(--primary-white);
    text-align: center;
    font-family: "Shippori Mincho";
    font-size: 2.0rem;
    font-weight: 700;
    line-height: normal;
}

.set_main_title::after {
    content: '';
    display: block;
    margin-top: 10px;
    width: 115px;
    height: 0.5px;
    background: var(--primary-white);
}

.set_sub_title {
    color: var(--primary-white);
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: normal;
}

.set_item img {
    margin-top: 40px;
}

.set_item_title {
    display: flex;
    width: 100%;
    margin-top: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
    white-space: normal;
}

.sou_sub_text.setitem {
    color: #dbe8ff;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: normal;
}

.sou_sub_text {
    color: var(--primary-black);
    text-align: left;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: normal;
}

.sou_main_text.setitem {
    color: var(--primary-white);
    font-size: 3.2rem;
    font-weight: 500;
    line-height: normal;
}

.tag {
    color: var(--primary-white);
    text-align: right;
    font-size: 1.4rem;
    font-weight: 700;
    /* max-width: 70%;
    margin: 30px auto; */
    margin-top: 30px;
    text-align: left; /* 左寄せで読みやすく */
    line-height: 1.8;
}

.set_text.setitem {
    margin-top: 30px;
    color: #dbe8ff;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.7; /* 178.571% */
}

.item_set:last-of-type {
    margin: 80px 0;
}

@media screen and (min-width: 769px) {
    .set_item {
        display: flex;
        margin-top: 100px;
        gap: 60px;
    }

    .set_title.fadein.show {
        margin-bottom: 30px;
    }

    .set_text.setitem {
        width: auto;
        margin: 30px 0 0;
    }

    .set_item:nth-of-type(even) {
        flex-direction: row-reverse;
    }
    
    .set_item img {
        margin-top: 0;
        width: 570px;
    }

    .setitem_flex {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .set_item_title {
        display: flex;
        width: 100%;
        margin-top: 0;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 5px;
    }

    .sou_main_text.setitem {
        color: var(--primary-white);
        font-size: 5.0rem;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .tag {
        color: var(--primary-white);
        font-size: 2.4rem;
        font-weight: 700;
        width: auto;
        margin-top: 20px;
        line-height: 1.8;
    }

    .section_title.item_set:last-of-type {
        text-align: right;
    }

    .order_img_flex {
        display: flex;
        gap: 32px;
    }
    
    /* section.ordermade img {
      height: 310px;
    } */

    .sou_sub_text {
    color: var(--primary-black);
    text-align: left;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: normal;
    }
}

/* wrapping */
.wrapping,.ordermade,.single {
    background-color: var(--primary-white);
    width: 100%;
    height: auto;
    padding: 0 5%;
    margin: 100px auto;
}

.wrapping_slider {
    width: 340px;
    height: 230px;
    object-fit: cover;
    object-position: 50% 27%;
}

.wrapping_slider img {
    display: block;
    width: 100%;
    max-height: 230px;
    object-fit: cover;
    margin-bottom: 20px; /* 画像の下に余白を作る */
  }
  
  .title_items {
    position: relative;
    z-index: 1;
    background-color: #fff; /* 白背景で画像の上にのっても読めるように */
    padding: 10px 0; /* 上下に余白追加 */
  }

.set_main_title2 {
    display: block;
    color: var(--primary-black);
    text-align: center;
    font-family: "Shippori Mincho";
    font-size: 2.0rem;
    font-weight: 700;
    line-height: normal;
}

.set_main_title2::after {
    content: '';
    display: block;
    margin-top: 10px;
    width: 115px;
    height: 0.5px;
    background: var(--primary-black);
}

.set_sub_title2 {
    color: var(--primary-black);
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: normal;
}

.ordermade img {
    margin-top: 20px;
    width: 100%;
    height: 230px;
    object-position: 50% 50%;
    object-fit: cover;
}

.om_title {
    display: block;
    margin-top: 10px auto;
    text-align: left;
    color: var(--primary-blueblack);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.4; /* 145.833% */
}

.om_catch {
    margin: 30px auto 10px;
    text-align: left;
    color: var(--primary-black);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.4; /* 142.857% */
}

.om_subtitle {
        font-size: 1.4rem;
        color: var(--primary-black);
        font-weight: 500;
        line-height: normal;
        text-align: left;
}

.om_title::after {
    content: '';
    display: block;
    width: 100%;
    height: 0.5px;
    margin-top: 20px;
    background-color: var(--primary-black);
}
/* 
.image_box {
  width: 100%;
  aspect-ratio: 340 / 230;
  position: relative;
  overflow: hidden;
  max-width: 340px;
  margin: 0 auto;
}

.image_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
} */

/* .image_box {
    padding-top: 20px;
    aspect-ratio: 3 / 2;
}

.image_box:first-of-type {
    padding-top: 20px;
}

.image_box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
} */

.wrapping img {
    margin-top: 20px;
    width: 100%;
    height: 230px;
    object-position: 50% 50%;
    object-fit: cover;
}


@media screen and (min-width: 769px) {
    .set_text {
        width: 45%;
        margin: 0 auto;
    }

    .om_subtitle {
        font-size: 1.4rem;
        color: var(--primary-black);
        font-weight: 500;
        line-height: normal;
        text-align: center;
    }

    .om_title {
        margin: 10px auto 10px;
        text-align: center;
        color: var(--primary-black);
        font-size: 2.8rem;
        font-weight: 700;
        line-height: 1.4; /* 142.857% */
    }

    .om_catch {
        margin: 0 auto 30px;
    }

    .section_title_om {
        margin-top: 40px;
        text-align: center;
        color: var(--primary-black);
        text-align: center;
        font-size: 2.8rem;
        font-weight: 700;
        line-height: 1.4; /* 142.857% */
    }

    .ordermade_flex_img {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 32px;
    }

    .image_box {
        padding-top: 0;
        flex-grow: 1;
    }
    
    /* .ordermade img {
        margin-top: 40px;
    } */

    
}

.itemtitle {
    display: flex;
    flex-direction: column;
    margin: 50px 0;
    gap: 10px;
}

.sou_main_text {
    color: var(--primary-black);
    text-align: left;
    font-size: 3.2rem;
    font-weight: 500;
    line-height: normal;
}

.fontsize2 {
    font-size: 1.6rem;
    font-weight: 700;
}

.set_text {
    color: var(--primary-black);
    font-size: 1.4rem;
    font-weight: 400;
    /* max-width: 70%;
    margin: 30px auto; */
    text-align: left; /* 左寄せで読みやすく */
    line-height: 1.8;
    margin-top: 50px;
}


.set_title.fadein.show {
    margin-bottom: 30px;
}

.wrapping_item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wrapping_item_wrapper.fadein.flex-wrap-target.show {
    display: flex;
    flex-direction: column;
}

.title_items.wrapping_catch::after {
    content: none;
  }

.title_items {
    color: var(--primary-black);
    font-size: 2.0rem;
    font-weight: 700;
    line-height: normal;
}

.title_items::after {
    content: '';
    display: block;
    width: 340px;
    height: 0.5px;
    margin-top: 20px;
    background-color: var(--primary-black);
}

.title_items.no-line::after {
    content: none;
}

.item_flower .flower_slider img {
    height: auto;
    max-height: 225px;
    object-fit: contain;
}

.wrapping_item_div {
    margin-top: 40px;
}

@media screen and (min-width: 769px) {
    .wrapping_item_div {
      display: flex;
      justify-content: center;
      gap: 32px;
    }
  
    .wrapping_item {
      width: 30%;
    }

    section.wrapping img {
        max-height: 230px;
    }

    .item_flower .flower_slider img {
        height: auto;
        max-height: 405px;
        object-fit: contain;
    }
    .wrapping_item_wrapper.fadein.flex-wrap-target.show {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
  }

/* single flower */

.flower_slider {
    overflow: hidden;
    position: relative;
    max-width: 608px; 
    margin: 0 auto;
}

.text_items {
    margin-top: 20px;
    color: var(--primary-black);
    font-family: "Shippori Mincho";
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.7;
}

.wrapping .text_items {
    margin-top: 0;
}

.text_items.text_left {
    text-align: left;
}

.text_items:last-of-type {
    margin-bottom: 50px;
}

.item_flower:first-of-type {
    margin: 0 auto 100px
}

.item_flower {
    text-align: center;
    margin: 80px auto 100px
}

.text_items.color {
    margin: 10px auto;
}

.color::after {
    content: '';
    display: block;
    width: 1005;
    height: 0.5px;
    margin: 10px auto;
    background-color: var(--primary-black);
}
.color::before {
    content: '';
    display: block;
    width: 100%;
    height: 0.5px;
    margin: 10px auto;
    background-color: var(--primary-black);
}

.title_items_single {
    margin: 10px 0 20px;
    color: var(--primary-black);
    font-size: 1.9rem;
    font-weight: 700;
    line-height: normal;
}

.text_items_size {
    margin-top: 20px;
    color: var(--primary-black);
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6; /* 166.667% */
}

.flower_slider button.slick-prev::before, 
.flower_slider button.slick-next::before {
  color: #000; 
  font-size: 30px;
  opacity: 1;
  font-family: 'slick';
}

/* Constrain slider arrows inside the slider area */
.flower_slider .slick-prev,
.flower_slider .slick-next {
    z-index: 10;
    width: 30px;
    height: 30px;
}

.flower_slider .slick-prev {
    left: 10px !important;
}

.flower_slider .slick-next {
    right: 10px !important;
}



.menu_tab {
    display: flex;
    flex-direction: column;
    height: 78px;
    gap: 8px;
}

.menu_tab img {
    width: 46px;
    height: 46px;
}

.flower_slider img {
    width: 100%;
    max-width: 608px;
    height: auto;
    margin: 0 auto;
    display: block;
    object-fit: contain;
  }

  .ordermade img.order_img2 {
    object-fit: cover;
    object-position: 50% 27%;
}
.order_tab img {
  width: 60px;
  height: 60px;

}
.tab_item.order-btn {
    flex: 0 0 auto;
    min-width: 50px;
    max-width: 60px;
    height: auto;
    background-color: var(--primary-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0; 
}

.tab_item.order-btn img {
    width: 60px;
    height: 60px;
}

.btn.order_tab,
.btn.order-btn {
  background-color: #424B6F;
}

.btn.btn-cta.order_tab.setbtn_white {
    background-color: var(--primary-white);
}

.btn.btn-cta.order_tab.setbtn_white img {
    width: 12px;
    height: 12px;
}
@media screen and (max-width: 768px) {
  .tab_menu {
    bottom: 20px;
    left: 20px;
    width: 90%;
  }
}

/* Added active tab styles */
.tab_item.active {
  background-color: #424B6F;
  border-radius: 10px;
}
.tab_item.active .tab_text {
  color: #fff;
}

.message {
    width: 340px;
    margin: 0 auto;
}

.message_img_pc {
    display: none;
}

.message_img_sp {
    display: block;
}

.footer_image {
    margin-top: 30px;
    width: 100%;
}

.footer_logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footerlogo img {
    margin-top: 30px;
    min-width: 340px;
}


@media screen and (min-width: 769px) {
    .item_flower {
        display: flex;
        max-width: 1160px;
        margin: 100px auto;
        align-items: flex-start;
        justify-content: center;
        gap: 40px;
    }
      
    .flower_slider img {
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
    }
      
    .flower_info {
        width: 40%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .title_items_single {
        margin: 0 0 20px;
    }

    .slider-nav {
    display: none;
    }

    .message {
        margin: 350px auto 350px;
    }

    .message_pc {
        display: flex;
        max-width: 1160px;
        align-items: center;
        justify-content: center;
        margin-bottom: 100px;
        gap: 40px;
    }
    
    .message_img_sp {
        display: none;
    }

    .message_img_pc {
        max-width: 600px;
        display: block;
        width: 708px;
        height: 395px;
    }

    .message img {
        margin-top: 0px;
    }

    .footer_flex {
        display: flex;
        justify-content: center;
        margin-bottom: 100px;
        gap: 300px;
    }
    
    .footer_right {
        margin-top: 30px;
        gap: 30px;
    }

    .footer_image {
        margin-top: 0;
    }

}

.fadein {
    opacity: 0;
    transform: translateY(20px); /* 下からふわっと */
    transition: all 1s ease;
}
  
.fadein.show {
    opacity: 1;
    transform: translateY(0);
}

.flex-wrap-target {
    display: flex;
    justify-content: center;
    gap: 32px;
  }

@media screen and (min-width: 769px) {
    .flex-wrap-target {
      display: flex;
      justify-content: center;
      gap: 32px;
    }
  }


.rank .slick-prev::before,
.rank .slick-next::before {
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
/* align-right for text alignment */
.align-right {
    text-align: right;
}

.header-icon a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
  }
  
  .header-icon-text {
    font-size: 1.0rem;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    line-height: 1.3;
    margin-top: 4px;
    text-align: center;
    color: var(--primary-black);
  }
  .header.scrolled {
      background-color: rgba(255, 255, 255, 0.75);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }

