@charset "utf-8";

.lineup {

}
.lineup_head {
    padding-bottom: 6.15%;
}


.page_link {
    display: flex;
    justify-content: center; /* 横方向中央 */
    margin-top: 6.15%;
}
.page_link ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
    justify-content: center;
}

.page_link ul li a {
    display: inline-block;
    padding: 10px 18px;
    background: #f56733;
    color: #fff;
    text-decoration: none;
    border-radius: 9999px;
    font-size: 14px;
    line-height: 1;
    transition: 0.2s ease;
    white-space: nowrap;
    border: 1px solid #f56733;
    font-weight: 600;
}


.page_link ul li a:hover {
  background: #fff;
  color: #f56733;
  opacity: 1;
  transform: translateY(-1px);
}


.page_link ul li a:active {
  transform: translateY(0);
}

.product_block {
    padding-top: 6.15%;
    padding-bottom: 8.46%;
    background-image: url(../images/three.png);
    background-repeat: no-repeat;
    background-size: 23.07% auto;
    background-position: left 5.38% top 640px;
}
.product_block.bg_ivory {
    background-color: #fffaee;
}


.product_header {
    text-align: center;
    margin-bottom: 32px;
}

.product_header_jp {
  font-size: 28px;
  margin: 5px 0 0;
}

.product_lead {
    max-width: 800px;
    margin-top: 0;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 48px;
    text-align: center;
    line-height: 1.8;
    font-size: 1.1rem;
}

.product_content {
  display: flex;
  gap: 56px;
  align-items: flex-start;
}

.product_main_img {
  flex: 0 0 45%;
}

.product_main_img img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
#party-selection .product_main_img {
  flex: 0 0 100%;
}
#party-selection .product_main_img img {
    aspect-ratio: auto;
    object-fit: contain; /* または initial */
    width: auto;
    max-width: 100%;
}
.product-p_list {
  flex: 1;
}

.product_price {
    font-weight: 600;
    margin-bottom: 28px;
    font-size: 1.2rem;
    color: #f56733;
    line-height: 1;
    border-bottom: 3px dotted #f56733;
    padding-bottom: 12px;
    letter-spacing: 0.05em;
}
.product_price span {
    font-size: 1.4rem;
}

.product_price small {
    font-size: 0.8rem;
}


.product_cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 36px;
}

.product_card {
  width: calc(50% - 18px);
  text-align: center;
}

/* 1個だけのとき */
.product_cards.is-single {
  	justify-content: center;
}
.product_cards.is-single .product_card {
  width: 60%;
  max-width: 420px;
}
.product_card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.product_cards.is-single .product_card img {
  aspect-ratio: 16 / 12;
}
.product_card p {
    margin-top: 8px;
    font-size: 0.9rem;
}



.product_detail_toggle {
    margin-top: 7.69%;
}


.toggle_btn {
  width: 100%;
  background: #f56733;
  color: #fff;
  border: none;
  padding: 14px 16px;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  position: relative;
  justify-content: center;
}
.toggle_btn {
    transition: background .25s;
}

.toggle_btn:hover {
    background:#ea5b27;
}
.toggle_icon {
    position: absolute;
    right: 24px;
    width: 18px;
    height: 18px;
}

.toggle_icon::before,
.toggle_icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    background: #fff;
    transform: translate(-50%, -50%);
    transition: .3s;
}

.toggle_icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.product_detail_toggle.open .toggle_icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg) scaleY(0);
}

.toggle_content {
    background: #fff;
    padding: 0 32px;

    max-height: 0;
    overflow: hidden;

    opacity: 0;

    transition:
        max-height .5s ease,
        opacity .3s ease,
        padding .5s ease;
}

.product_detail_toggle.open .toggle_content {
    max-height: 3000px;
    opacity: 1;
    padding: 32px;
}

.product_info {
    display: flex;
    gap: 48px;
    margin-bottom: 48px;
}

.product_info:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.product_info_img {
    width: 184px;
}

.product_info_img img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.product_info_text {
  flex: 1;
}

.product_info_title {
    font-size: 18px;
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 24px;
    border-bottom: 3px dotted #f56733;
    padding-bottom: 8px;
}

.product_info_desc {
    font-size: 1rem;
    line-height: 2;
    margin-bottom: 8px;
}
.product_info_allergy {
    padding: 8px 8px 8px 24px;
    background: #f4f4f4;
}

.product_info_allergy p {
    display: flex;
    align-items: center;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.8;
}

.allergy_title {
    flex-shrink: 0;
}

.allergy_text {
    margin-left: 0.5em;
}

.marker {
  background: linear-gradient(
    transparent 60%,
    rgba(245, 103, 51, 0.25) 60%
  );
  font-weight: bold;
}
.product_gift {
    padding: 64px;
    background-color: #f4f4f4;
    margin-top: 104px;
}


.gift_cards{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
    margin-bottom: 40px;
}

.gift_card{
    width: calc((100% - 64px) / 3);
}
.gift_card.wide{
    width: 61%;
}
.gift_card_img {
    width: 100%;
    aspect-ratio: 1 / 1;
    margin-bottom: 16px;
    color: hsla(358,49%,85%,1.00);
}
.gift_card.wide .gift_card_img {
    aspect-ratio: auto;
}
/*
.gift_card_img img {
    width: 100%;
    display: block;
}
*/

.gift_card_body{
    text-align: center;
}

.gift_card_title{
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
    font-size: 1.3rem;
    font-weight: 700;
}

.gift_card_price{
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #f56733;
    letter-spacing: 0.08em;
}
.gift_card_price span {
    font-size: 1.1rem;
}


.gift_card_price_sub{
    margin-top:4px;
    font-size:.85rem;
    color:#777;
}
.gift_card_plus {
    font-size: 0.8rem;
}


.gift_card_allergy {
    padding: 8px 16px;
    background-color: #fff;
}

.gift_card_allergy p {
    display: flex;
    justify-content: center; /* ←全体中央 */
    align-items: flex-start;
    flex-wrap: wrap; /* ←折り返し対応 */
    font-size: .85rem;
    line-height: 1.8;
    margin: 0;
}

/* ラベルは固定 */
.allergy_title {
    flex-shrink: 0;
}

/* 中身は折り返しOK */
.allergy_text {
    text-align: left;
}
#party-selection .product_gift {
    padding-top: 48px;
}


.gift_includes {
    margin-top: 16px;
    padding: 0;
    list-style: none;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.gift_includes li {
    display: flex;
    justify-content: space-between;
    gap: 1em;
    padding-top: 0.5em;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 0.5em;
    border-bottom: 1px dotted #ddd; /* 不要なら削除 */
    font-size: 0.85rem;
    line-height: 1.2;
    text-align: left;
}

.gift_includes li span:last-child {
    flex-shrink: 0;
    text-align: right;
    min-width: 3em;
}
