@charset "UTF-8";
/* === CSS定数 === */
:root {
  /* ボタン背景色 */
  --BUTTON_BACKGROUND_COLOR: #a68744;
  /* ボタン文字色 */
  --BUTTON_TEXT_COLOR: #fafafa;
  /* 文字色 ゴールド */
  --TEXT_COLLAR_GOLD: #a68744;
  /* 文字色 黒 */
  --TEXT_COLLAR_BLACK: #000000;
  /* 文字色 赤 */
  --TEXT_COLLAR_RED: #b80000;
  /* 文字色 グレー */
  --TEXT_COLLAR_GRAY: #999999;
  /* ボタン枠線緑 */
  --BUTTON_BORDER_COLOR_GREEN: #47bd1d;
  /* ボタン文字色緑 */
  --BUTTON_TEXT_COLOR_GREEN: #47bd1d;
}

/* =============== */
body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", serif;
}

/* ### 共通 ### */
/* 初回ログイン, 会員ログイン, プライバシーポリシー・利用規約, マイページ, ポイント履歴 */
.fast_login_wrapper,
.verify_email_wrapper,
.verify_email_success_wrapper,
.front_login_wrapper,
.front_logout_wrapper,
.information_wrapper,
.mypage_wrapper,
.point_history_wrapper {
  background-color: #ffffff;
  display: flex;
  flex-flow: column;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  box-sizing: border-box;
}

/* ログイン画面タイトル, プライバシーポリシー・利用規約タイトル, マイページタイトル, ポイント履歴タイトル */
.fast_login_title,
.front_login_title,
.front_logout_title,
.information_title,
.mypage_title,
.point_history_title {
  font-size: 32px;
  font-weight: 700;
  color: var(--TEXT_COLLAR_BLACK);
  margin-bottom: 60px;
}

/* ボタン 共通 */
.top_page_button,
.fast_login_error_registered_login,
.fast_login_form button,
.verify_email_form button,
.front_login_form button,
.mypage_ec_button,
.mypage_ir_button,
.verify_email_success_login a {
  height: 42px;
  text-decoration: none;
  background-color: var(--BUTTON_BACKGROUND_COLOR);
  color: var(--BUTTON_TEXT_COLOR);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ログイン・ログアウト, ポイント履歴 緑ボタン共通 */
.front_header_button,
.mypage_point_history_button a {
  height: 28px;
  border: solid 1px var(--BUTTON_BORDER_COLOR_GREEN);
  color: var(--BUTTON_TEXT_COLOR_GREEN);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* 利用者ページ ヘッダー・フッター ロゴ */
.front_header_logo a,
.front_footer_logo {
  display: flex;
  align-items: end;
  justify-content: space-between;
  height: 54.86px;
  width: 340px;
}

/* 利用者ページ ヘッダー ロゴ */
.front_header_logo a {
  text-decoration: none;
  color: var(--TEXT_COLLAR_BLACK);
}

/* 利用者ページ ヘッダー・フッター ロゴ */
.front_header_logo a img,
.front_footer_logo img {
  width: 210px;
  height: 54.86px;
}

/* 初回ログイン, ログイン エラー */
.fast_login_error,
.front_login_error {
  width: 800px;
  height: 80px;
  align-content: center;
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 40px;
}

/* 初回ログイン, ログイン エラー エラーメッセージ */
.fast_login_error_message,
.front_login_error_message {
  font-size: 16px;
  font-weight: 400;
  color: #a64444;
}

/* 初回ログイン, ログイン フォーム */
.fast_login_form,
.verify_email_form,
.front_login_form {
  display: flex;
  flex-flow: column;
  align-items: center;
}

.fast_login_form div,
.verify_email_form_email,
.front_login_form div {
  margin-top: 20px;
  margin-bottom: 20px;
  width: 800px;
  justify-content: space-between;
  display: flex;
  align-items: center;
}

/* 初回ログイン, ログイン フォーム ラベル */
.fast_login_form label,
.verify_email_form label,
.front_login_form label {
  font-size: 14px;
  font-weight: 400;
  color: var(--TEXT_COLLAR_BLACK);
}

/* 初回ログイン, ログイン フォーム 入力部 */
.fast_login_form input,
.verify_email_form input,
.front_login_form input {
  width: 500px;
  height: 42px;
  border: 1px solid #a68744;
  border-radius: 5px;
  font-size: 14px;
  color: #a68744;
  padding-right: 15px;
  padding-left: 15px;
  box-sizing: border-box;
}

/* 初回ログイン, ログイン フォーム 入力部 エラースタイル */
.first_login_input_error,
.front_login_input_error {
  border: 1px solid #a64444 !important;
  background-color: rgba(166, 68, 68, 0.1019607843) !important;
  color: #231815 !important;
}

/* 初回ログイン, ログイン フォーム ログインボタン */
.fast_login_form button,
.verify_email_form button,
.front_login_form button {
  width: 210px;
  border: none;
  margin-top: 40px;
  margin-bottom: 40px;
}

/* 初回ログイン, ログイン 注意文言 */
.fast_login_attention,
.front_login_attention {
  text-align: center;
  color: var(--TEXT_COLLAR_BLACK);
  font-size: 16px;
  font-weight: 400;
}

/* メールアドレス認証完了, ログアウト完了 説明文 */
.verify_email_success_description,
.front_logout_description {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 40px;
}

/* プライバシーポリシー, 利用規約 本文領域 */
.information_contents_area {
  width: 800px;
  font-size: 16px;
  font-weight: 400;
  color: var(--TEXT_COLLAR_BLACK);
}

/* プライバシーポリシー, 利用規約 項目タイトル */
.information_section_title {
  font-size: 20px;
  font-weight: 500;
  margin-top: 40px;
  margin-bottom: 20px;
}

/* マイページ 注意文言, ポイント履歴 ポイント履歴開始 */
.mypage_stock_point_grant_attention,
.point_history_attention {
  font-size: 14px;
  font-weight: 400;
  color: var(--TEXT_COLLAR_GRAY);
}

/* マイページ, ポイント履歴 メインコンテンツ領域 */
.mypage_contents,
.point_history_contents {
  width: 800px;
}

/* === 利用者ページ ヘッダー === */
/* ヘッダー領域 */
.front_header_wrapper {
  height: 100px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 50px;
  padding-left: 50px;
  box-sizing: border-box;
}

/* ログイン */
.front_header_button_login {
  width: 90px;
}

/* ログアウト */
.front_header_button_logout {
  width: 109px;
}

/* === 利用者ページ フッター === */
.front_footer_wrapper {
  height: 149px;
  background-color: #eeeeee;
  align-content: center;
}

.front_footer_logo_link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 50px;
  padding-left: 50px;
  box-sizing: border-box;
}

/* リンク */
.front_header_link {
  display: flex;
}

.front_header_link div {
  margin-right: 20px;
  margin-left: 20px;
}

/* リンク トップページ */
.front_header_link div:nth-child(1) {
  margin-left: 0px;
}

/* リンク ログイン */
.front_header_link div:nth-child(6) {
  margin-right: 0px;
}

.front_header_link a {
  color: var(--TEXT_COLLAR_BLACK);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
}

.front_header_copyright {
  color: #aaaaaa;
  font-size: 10px;
  font-weight: 400;
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: end;
  padding-right: 50px;
  padding-left: 50px;
  box-sizing: border-box;
}

/* === トップページ === */
.top_page_wrapper {
  background: #fafafa;
  display: flex;
  justify-content: space-between;
  padding-right: 50px;
  padding-left: 50px;
  box-sizing: border-box;
  padding-top: 100px;
  padding-bottom: 100px;
}

.top_page_image img {
  width: 600px;
  height: 508px;
}

.top_page_buttons_wrapper {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.top_page_button_first {
  width: 210px;
}

.top_page_button_registered {
  width: 283px;
  margin-top: 40px;
  margin-bottom: 10px;
}

.top_page_button_registered_description {
  font-size: 16px;
  font-weight: 400;
  color: var(--TEXT_COLLAR_BLACK);
}

/* === 初回ログイン === */
.fast_login_error_registered {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fast_login_error_registered_login {
  width: 283px;
}

/* === メールアドレス登録 === */
.verify_email_form_link_wrapper {
  display: flex;
  justify-content: space-between;
  width: 800px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.verify_email_form_link {
  width: 500px;
  display: flex;
  flex-flow: column;
}

.verify_email_form_link a {
  font-size: 16px;
  font-weight: 400;
  color: var(--TEXT_COLLAR_GOLD);
  margin-top: 5px;
  margin-bottom: 5px;
}

.verify_email_form button {
  width: 230px !important;
}

/* === メールアドレス登録完了 === */
.verify_email_success_login {
  margin-top: 20px;
}

.verify_email_success_login a {
  width: 155px;
}

/* === 利用規約 === */
.information_term_title {
  text-align: center;
}

/* === プライバシーポリシー === */
.information_section_text table {
  width: 100%;
  border-collapse: collapse;
}

.information_section_text table td {
  width: 50%;
  border: solid 1px #000000;
  border-collapse: collapse;
  padding: 10px;
}

.information_section_text table thead {
  text-align: center;
  font-weight: 500;
}

/* === マイページ === */
.mypage_user_name {
  font-size: 20px;
  font-weight: 500;
  color: var(--TEXT_COLLAR_BLACK);
}

.mypage_point_wrapper {
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
}

.mypage_point_balance,
.mypage_stock_point_grant_wrapper {
  height: 189px;
}

.mypage_point_balance_contents_title,
.mypage_stock div:nth-child(1),
.mypage_point_grant div:nth-child(1) {
  font-size: 14px;
  font-weight: 400;
  color: var(--TEXT_COLLAR_BLACK);
}

.mypage_point_balance_contents_point,
.mypage_stock div:nth-child(2),
.mypage_point_grant div:nth-child(2) {
  font-size: 32px;
  font-weight: 500;
}

.mypage_point_balance {
  width: 300px;
  background-color: #f8f4ed;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: space-evenly;
}

.mypage_point_balance_contents {
  display: flex;
  flex-flow: column;
  align-items: end;
  justify-content: space-evenly;
  width: 260px;
  height: 90px;
}

.mypage_point_balance_contents_point {
  color: var(--TEXT_COLLAR_BLACK);
}

.mypage_point_history_button a {
  width: 147px;
  background-color: #ffffff;
}

.mypage_stock_point_grant_wrapper {
  width: 500px;
  background-color: #fcfcfc;
  display: flex;
  flex-flow: column;
  align-items: end;
  justify-content: center;
}

.mypage_stock_point_grant {
  display: flex;
}

.mypage_stock,
.mypage_point_grant {
  width: 250px;
  height: 76.5px;
  display: flex;
  flex-flow: column;
  align-items: end;
  justify-content: space-between;
  padding-right: 20px;
  box-sizing: border-box;
}

.mypage_stock {
  border-right: 1px solid #eeeeee;
}

.mypage_stock div:nth-child(2),
.mypage_point_grant div:nth-child(2) {
  color: var(--TEXT_COLLAR_GOLD);
}

.mypage_stock_point_grant_attention {
  margin-top: 10px;
  margin-right: 30px;
}

.mypage_ec_ir_wrapper {
  display: flex;
  justify-content: space-between;
}

.mypage_ec,
.mypage_ir {
  width: 390px;
  height: 200px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.mypage_ec_title,
.mypage_ir_title {
  width: 250px;
  height: 48px;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 20px;
}

.mypage_ec_button,
.mypage_ir_button {
  width: 210px;
}

/* === ポイント履歴 === */
.point_history_attention {
  text-align: end;
  margin-bottom: 10px;
}

.point_history_contents_header,
.point_history_contents_body {
  min-height: 48px;
  background-color: #e1d3b7;
  display: flex;
  align-items: center;
}

.point_history_contents_header_deal_datetime,
.point_history_contents_header_deal_point,
.point_history_contents_body_deal_datetime,
.point_history_contents_body_deal_point {
  text-align: center;
}

.point_history_contents_header_deal_datetime,
.point_history_contents_body_deal_datetime {
  width: 200px;
}

.point_history_contents_header_deal_point,
.point_history_contents_body_deal_point {
  width: 130px;
}

.point_history_contents_header_comment,
.point_history_contents_body_comment {
  width: 470px;
}

.point_history_contents_body_wrapper .point_history_contents_body:nth-child(odd) {
  background-color: #fcfcfc;
}

.point_history_contents_body_wrapper .point_history_contents_body:nth-child(even) {
  background-color: #f8f4ed;
}

body {
  --tw-gradient-to: #fbf0bc;
  --tw-gradient-from: #bbf0c0;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(187, 240, 192, 0));
}

@media screen and (min-width: 768px) {
  body {
    overflow: visible;
    contain: paint;
  }
  .front_footer_wrapper {
    padding: calc(20 * 100vw / 1400) calc(50 * 100vw / 1400);
  }
  .front_footer_wrapper .front_footer_logo_link {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin: 0;
  }
  .front_footer_wrapper .front_footer_logo_link .front_footer_link {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    column-gap: calc(50 * 100vw / 1400);
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .front_footer_wrapper .front_footer_logo_link .front_footer_link li a {
    font-size: min(14 * 100vw / 1400, 0.875rem);
    text-decoration: none;
    color: #000;
    font-weight: 400;
  }
  .front_footer_wrapper .front_footer_copyright {
    margin-top: calc(36 * 100vw / 1400);
    color: #aaaaaa;
    font-size: calc(10 * 100vw / 1400);
    font-weight: 400;
    display: flex;
    align-items: flex-start;
    justify-content: end;
    box-sizing: border-box;
  }
  .front_common_button {
    min-width: calc(210 * 100vw / 1400);
    padding: calc(10 * 100vw / 1400) calc(20 * 100vw / 1400);
    height: auto;
    background-image: linear-gradient(to right, var(--tw-gradient-stops)) !important;
    color: #000 !important;
    font-size: calc(14 * 100vw / 1400);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: calc(10 * 100vw / 1400);
    border: none;
  }
  .front_common_button--full {
    width: 100%;
    min-width: 0;
  }
  .front_common_button--sm {
    min-width: 0;
    height: calc(28 * 100vw / 1400);
    padding: 0 calc(12 * 100vw / 1400);
    border-radius: 5px;
    font-size: calc(14 * 100vw / 1400);
  }
  .front_common_button--with-spacing {
    margin-top: calc(40 * 100vw / 1400);
    margin-bottom: calc(40 * 100vw / 1400);
  }
  .front_common_button--h-46 {
    height: calc(46 * 100vw / 1400);
  }
  .front_common_button--w-147 {
    width: calc(147 * 100vw / 1400);
  }
  .front_common_button--w-155 {
    width: calc(155 * 100vw / 1400);
  }
  .front_common_button--w-160 {
    min-width: calc(160 * 100vw / 1400);
  }
  .front_common_button--w-210 {
    width: calc(210 * 100vw / 1400);
  }
  .front_common_button--w-230 {
    width: calc(230 * 100vw / 1400);
  }
  .front_common_button--w-260 {
    min-width: calc(260 * 100vw / 1400);
  }
  .front_common_button--w-283 {
    width: calc(283 * 100vw / 1400);
  }
  .front_common_button--secondary {
    background-image: none !important;
    background-color: #ffffff;
    border: 1px solid var(--BUTTON_BORDER_COLOR_GREEN);
    color: var(--BUTTON_TEXT_COLOR_GREEN) !important;
  }
  .front_common_button--disabled {
    background-image: none !important;
    background-color: #cccccc;
    color: #888888 !important;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.6;
  }
  .front_common_banner {
    width: 100%;
    aspect-ratio: 1400/240;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    object-fit: cover;
  }
  .front_common_banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .front_notice_wrapper {
    text-align: center;
    font-size: calc(18 * 100vw / 1400);
    color: var(--TEXT_COLLAR_RED);
    font-weight: bold;
    padding: calc(50 * 100vw / 1400) 0 0px;
    margin-bottom: calc(-100 * 100vw / 1400);
  }
  .front_common_wrapper {
    padding: calc(100 * 100vw / 1400) calc(50 * 100vw / 1400);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
  }
  .front_common {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .front_common__title {
    font-size: calc(32 * 100vw / 1400);
    font-weight: 700;
    line-height: 1.4;
    color: var(--TEXT_COLLAR_BLACK);
    margin-bottom: calc(60 * 100vw / 1400);
  }
  .product_list_grid {
    width: 100%;
    max-width: calc(930 * 100vw / 1400);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-items: center;
    column-gap: calc(40 * 100vw / 1400);
    row-gap: calc(50 * 100vw / 1400);
  }
  .product_list_card {
    width: 100%;
    max-width: calc(250 * 100vw / 1400);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .product_list_card__image_wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    margin-bottom: calc(20 * 100vw / 1400);
  }
  .product_list_card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .product_list_card__body {
    width: 100%;
    max-width: calc(210 * 100vw / 1400);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .product_list_card__product_code, .product_list_card__name, .product_list_card__points {
    width: 100%;
    line-height: 1.5;
    color: var(--TEXT_COLLAR_BLACK);
  }
  .product_list_card__product_code {
    font-size: calc(14 * 100vw / 1400);
    margin-bottom: calc(6 * 100vw / 1400);
  }
  .product_list_card__name, .product_list_card__points {
    font-size: calc(16 * 100vw / 1400);
  }
  .product_list_card__name {
    margin-bottom: calc(12 * 100vw / 1400);
  }
  .product_list_card__points {
    text-align: right;
    margin-bottom: calc(16 * 100vw / 1400);
  }
  .product_list_card__buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: calc(12 * 100vw / 1400);
  }
  .product_list_card__button {
    min-width: 0;
    width: 100%;
    font-size: calc(16 * 100vw / 1400);
    line-height: 1.5;
    box-sizing: border-box;
  }
  .product_list_empty_message {
    grid-column: 1/-1;
    width: 100%;
    font-size: calc(16 * 100vw / 1400);
    line-height: 1.5;
    color: var(--TEXT_COLLAR_BLACK);
    text-align: center;
  }
  .product_detail_layout {
    width: 100%;
    max-width: calc(860 * 100vw / 1400);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: calc(60 * 100vw / 1400);
  }
  .product_detail_media {
    width: calc(350 * 100vw / 1400);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: sticky;
    top: 0px;
  }
  .product_detail_media__main {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    margin-bottom: calc(20 * 100vw / 1400);
  }
  .product_detail_media__main_image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .product_detail_media__thumbs {
    width: 100%;
    display: flex;
    gap: calc(10 * 100vw / 1400);
    flex-wrap: nowrap;
  }
  .product_detail_media__thumb {
    width: calc(80 * 100vw / 1400);
    height: calc(80 * 100vw / 1400);
    padding: 0;
    border: 1px solid #dddddd;
    background-color: #ffffff;
    overflow: hidden;
    cursor: pointer;
  }
  .product_detail_media__thumb.is-active {
    border-color: var(--TEXT_COLLAR_GOLD);
  }
  .product_detail_media__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .product_detail_info_panel {
    width: calc(450 * 100vw / 1400);
  }
  .product_detail_info_panel__inner {
    width: calc(390 * 100vw / 1400);
    margin: 0 calc(30 * 100vw / 1400);
  }
  .product_detail_info_panel__divider {
    width: 100%;
    height: 1px;
    background-color: #d9d9d9;
    margin: calc(18 * 100vw / 1400) 0;
  }
  .product_detail_info_panel__name {
    margin: 0;
    font-size: calc(16 * 100vw / 1400);
    line-height: 1.6;
    font-weight: 500;
    color: var(--TEXT_COLLAR_BLACK);
  }
  .product_detail_info_panel__product_code, .product_detail_info_panel__period, .product_detail_info_panel__description_label {
    font-size: calc(14 * 100vw / 1400);
    line-height: 1.6;
    color: var(--TEXT_COLLAR_BLACK);
  }
  .product_detail_info_panel__product_code {
    margin-bottom: calc(4 * 100vw / 1400);
  }
  .product_detail_info_panel__points {
    display: flex;
    align-items: baseline;
    gap: calc(12 * 100vw / 1400);
    margin-bottom: calc(24 * 100vw / 1400);
  }
  .product_detail_info_panel__points_label {
    font-size: calc(16 * 100vw / 1400);
    line-height: 1.6;
    color: var(--TEXT_COLLAR_BLACK);
  }
  .product_detail_info_panel__points_value {
    font-size: calc(28 * 100vw / 1400);
    line-height: 1.3;
    font-weight: 500;
    color: var(--TEXT_COLLAR_BLACK);
  }
  .product_detail_info_panel__button {
    margin-bottom: calc(18 * 100vw / 1400);
  }
  .product_detail_info_panel__button_link {
    font-size: calc(16 * 100vw / 1400);
    box-sizing: border-box;
  }
  .product_detail_info_panel__description {
    font-size: calc(16 * 100vw / 1400);
    line-height: 1.8;
    color: var(--TEXT_COLLAR_BLACK);
  }
  .product_detail_info_panel__description {
    font-size: 1rem;
  }
  .product_detail_info_panel__description h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid;
    line-height: 1.4;
  }
  .product_detail_info_panel__description h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    padding-left: 0.75rem;
    border-left: 4px solid;
    line-height: 1.4;
  }
  .product_detail_info_panel__description h4 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: bold;
    line-height: 1.4;
  }
  .product_detail_info_panel__description h5 {
    font-size: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
    line-height: 1.4;
  }
  .product_detail_info_panel__description b {
    font-weight: 600;
  }
  .product_detail_info_panel__description strong {
    font-weight: bold;
  }
  .product_detail_info_panel__description ul,
  .product_detail_info_panel__description ol {
    margin-top: 0;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
  }
  .product_detail_info_panel__description li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
  }
  .product_detail_info_panel__description table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
  }
  .product_detail_info_panel__description th,
  .product_detail_info_panel__description td {
    padding: 0.75rem 1rem;
    border: 1px solid #dee2e6;
    text-align: left;
    vertical-align: middle;
    line-height: 1.5;
    min-width: 8em;
  }
  .product_detail_info_panel__description th {
    background-color: #f8f9fa;
    font-weight: bold;
    white-space: nowrap;
  }
  .product_detail_info_panel__description tbody tr:nth-child(even) {
    background-color: #fcfcfc;
  }
  .product_detail_info_panel__description p {
    line-height: 1.8;
    margin-top: 0;
    margin-bottom: 1.5rem;
  }
  .product_detail_info_panel__description small {
    font-size: 0.85em;
  }
  .product_detail_info_panel__description a {
    text-decoration: underline;
    transition: opacity 0.2s ease;
  }
  .product_detail_info_panel__description a:hover {
    opacity: 0.7;
    text-decoration: none;
  }
  .product_detail_info_panel__description img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    border-radius: 4px;
    margin-bottom: 1.5rem;
  }
  .product_detail_info_panel__description blockquote {
    margin: 0 0 1.5rem 0;
    padding: 1rem 1.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #adb5bd;
    border-radius: 0 4px 4px 0;
  }
  .product_detail_info_panel__description blockquote p:last-child {
    margin-bottom: 0;
  }
  .product_detail_info_panel__description hr {
    margin: 2.5rem 0;
    border: 0;
    border-top: 1px dashed #ccc;
  }
  .product_detail_info_panel__description dl {
    margin-top: 0;
    margin-bottom: 1.5rem;
    background-color: #fafafa;
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 4px;
  }
  .product_detail_info_panel__description dt {
    font-weight: bold;
    margin-bottom: 0.25rem;
    border-bottom: 1px solid;
    padding-bottom: 0.25rem;
  }
  .product_detail_info_panel__description dd {
    margin-left: 0;
    margin-bottom: 1rem;
    line-height: 1.6;
  }
  .product_detail_info_panel__description dd:last-child {
    margin-bottom: 0;
  }
  .product_order_layout {
    width: 100%;
    max-width: calc(860 * 100vw / 1400);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: calc(60 * 100vw / 1400);
  }
  .product_order_item_panel {
    width: calc(250 * 100vw / 1400);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .product_order_item_panel__image_wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    margin-bottom: calc(20 * 100vw / 1400);
  }
  .product_order_item_panel__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .product_order_item_panel__name {
    width: 100%;
    max-width: calc(210 * 100vw / 1400);
    font-size: calc(16 * 100vw / 1400);
    line-height: 1.6;
    color: var(--TEXT_COLLAR_BLACK);
  }
  .product_order_form_panel {
    width: calc(550 * 100vw / 1400);
  }
  .product_order_form_panel__inner {
    width: calc(490 * 100vw / 1400);
    margin: 0 calc(30 * 100vw / 1400);
  }
  .product_order_form_panel__alert {
    margin-bottom: calc(16 * 100vw / 1400);
    font-size: calc(14 * 100vw / 1400);
    color: #a64444;
  }
  .product_order_form_panel__divider {
    width: 100%;
    height: 1px;
    background-color: #d9d9d9;
    margin: calc(18 * 100vw / 1400) 0;
  }
  .product_order_form_panel__point_list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: calc(12 * 100vw / 1400);
  }
  .product_order_form_panel__point_row {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
    gap: calc(12 * 100vw / 1400);
    text-align: right;
  }
  .product_order_form_panel__point_label {
    font-size: calc(16 * 100vw / 1400);
    line-height: 1.6;
    color: var(--TEXT_COLLAR_BLACK);
  }
  .product_order_form_panel__point_value {
    font-size: calc(28 * 100vw / 1400);
    line-height: 1.3;
    font-weight: 500;
    color: var(--TEXT_COLLAR_BLACK);
  }
  .product_order_form_panel__form, .product_order_form_panel__confirm_list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: calc(16 * 100vw / 1400);
  }
  .product_order_form_panel__field, .product_order_form_panel__confirm_row {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
  }
  .product_order_form_panel__field_label {
    width: calc(140 * 100vw / 1400);
    flex: 0 0 calc(140 * 100vw / 1400);
    font-size: calc(16 * 100vw / 1400);
    line-height: 1.6;
    color: var(--TEXT_COLLAR_BLACK);
  }
  .product_order_form_panel__field_input, .product_order_form_panel__confirm_value {
    width: calc(350 * 100vw / 1400);
    flex: 0 0 calc(350 * 100vw / 1400);
    font-size: calc(16 * 100vw / 1400);
    line-height: 1.6;
    color: var(--TEXT_COLLAR_BLACK);
    box-sizing: border-box;
  }
  .product_order_form_panel__field_input {
    min-height: calc(42 * 100vw / 1400);
    padding: calc(8 * 100vw / 1400) calc(12 * 100vw / 1400);
    border: 1px solid #a68744;
    border-radius: 5px;
    background-color: #ffffff;
  }
  .product_order_form_panel__field_input--textarea {
    min-height: calc(120 * 100vw / 1400);
    resize: vertical;
  }
  .product_order_form_panel__button {
    width: calc(350 * 100vw / 1400);
    margin-left: calc(140 * 100vw / 1400);
    margin-top: calc(8 * 100vw / 1400);
  }
  .product_order_form_panel__button_link {
    font-size: calc(16 * 100vw / 1400);
    box-sizing: border-box;
  }
  .product_order_complete {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .product_order_complete__card {
    width: 100%;
    max-width: calc(520 * 100vw / 1400);
    padding: calc(40 * 100vw / 1400);
    border: 1px solid #e5e5e5;
    border-radius: calc(12 * 100vw / 1400);
    background-color: #ffffff;
    text-align: center;
    box-sizing: border-box;
  }
  .product_order_complete__icon {
    font-size: calc(28 * 100vw / 1400);
    line-height: 1;
    color: var(--TEXT_COLLAR_GOLD);
    margin-bottom: calc(18 * 100vw / 1400);
  }
  .product_order_complete__title {
    font-size: calc(24 * 100vw / 1400);
    line-height: 1.5;
    font-weight: 500;
    color: var(--TEXT_COLLAR_BLACK);
    margin-bottom: calc(16 * 100vw / 1400);
  }
  .product_order_complete__text {
    font-size: calc(16 * 100vw / 1400);
    line-height: 1.8;
    color: var(--TEXT_COLLAR_BLACK);
    margin-bottom: calc(28 * 100vw / 1400);
  }
  .product_order_complete__button {
    width: 100%;
    max-width: calc(260 * 100vw / 1400);
    margin: 0 auto;
  }
  .product_order_complete__button_link {
    font-size: calc(16 * 100vw / 1400);
    box-sizing: border-box;
  }
}
@media screen and (max-width: 767px) {
  body {
    overflow: visible;
    contain: paint;
  }
  .top_page_button_registered_description {
    font-size: calc(14 * 100vw / 390);
  }
  .front_header_wrapper,
  .front_footer_wrapper {
    max-width: calc(375 * 100vw / 390);
    width: auto;
    height: auto;
    padding: 0 calc(10 * 100vw / 390);
    padding-top: calc(20 * 100vw / 390);
    padding-bottom: calc(20 * 100vw / 390);
  }
  .front_header_wrapper .front_header_logo,
  .front_header_wrapper .front_footer_logo,
  .front_footer_wrapper .front_header_logo,
  .front_footer_wrapper .front_footer_logo {
    width: calc(240 * 100vw / 390);
    height: auto;
    aspect-ratio: 340/54.86;
  }
  .front_header_wrapper .front_footer_logo_link,
  .front_footer_wrapper .front_footer_logo_link {
    padding: 0;
  }
  .front_header_wrapper .front_header_logo a,
  .front_footer_wrapper .front_header_logo a {
    display: flex;
    align-items: end;
    justify-content: space-between;
    width: 100%;
    height: auto;
  }
  .front_header_wrapper,
  .front_footer_wrapper {
    /* 利用者ページ ヘッダー・フッター ロゴ */
  }
  .front_header_wrapper .front_header_logo a img,
  .front_header_wrapper .front_footer_logo img,
  .front_footer_wrapper .front_header_logo a img,
  .front_footer_wrapper .front_footer_logo img {
    width: calc(148 * 100vw / 390);
    height: auto;
    aspect-ratio: 210/54.86;
  }
  .front_header_wrapper .front_header_logo_title,
  .front_header_wrapper .front_footer_logo_title,
  .front_footer_wrapper .front_header_logo_title,
  .front_footer_wrapper .front_footer_logo_title {
    font-size: calc(12 * 100vw / 390);
  }
  .front_footer_wrapper .front_footer_logo_link {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    row-gap: calc(20 * 100vw / 390);
  }
  .front_footer_wrapper .front_footer_logo_link .front_footer_link {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    width: calc(375 * 100vw / 390);
    row-gap: calc(10 * 100vw / 390);
    column-gap: calc(20 * 100vw / 390);
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .front_footer_wrapper .front_footer_logo_link .front_footer_link li {
    width: 40%;
  }
  .front_footer_wrapper .front_footer_logo_link .front_footer_link li a {
    font-size: calc(12 * 100vw / 390);
    text-decoration: none;
    color: #000;
    font-weight: 400;
  }
  .front_footer_wrapper .front_footer_copyright {
    margin-top: calc(50 * 100vw / 390);
    color: #aaaaaa;
    font-size: calc(10 * 100vw / 390);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }
  .front_common_button {
    padding: calc(10 * 100vw / 390) calc(20 * 100vw / 390);
    height: auto;
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
    color: #000 !important;
    font-size: calc(14 * 100vw / 390);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: calc(10 * 100vw / 390);
    border: none;
  }
  .front_common_button--full {
    width: 100%;
    min-width: 0;
  }
  .front_common_button--sm {
    min-width: 0;
    height: calc(28 * 100vw / 390);
    padding: 0 calc(12 * 100vw / 390);
    border-radius: 5px;
    font-size: calc(14 * 100vw / 390);
  }
  .front_common_button--with-spacing {
    margin-top: calc(30 * 100vw / 390);
    margin-bottom: calc(30 * 100vw / 390);
  }
  .front_common_button--h-46 {
    height: calc(46 * 100vw / 390);
  }
  .front_common_button--w-147,
  .front_common_button--w-155,
  .front_common_button--w-160,
  .front_common_button--w-210,
  .front_common_button--w-230,
  .front_common_button--w-260,
  .front_common_button--w-283 {
    width: 100%;
    min-width: 0;
  }
  .front_common_button--secondary {
    background-image: none;
    background-color: #ffffff;
    border: 1px solid var(--BUTTON_BORDER_COLOR_GREEN);
    color: var(--BUTTON_TEXT_COLOR_GREEN) !important;
  }
  .front_common_button--disabled {
    background-image: none;
    background-color: #cccccc;
    color: #888888 !important;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.6;
  }
  .front_common_banner {
    width: 100%;
    aspect-ratio: 390/100;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    object-fit: cover;
  }
  .front_common_banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .front_notice_wrapper {
    text-align: center;
    font-size: calc(18 * 100vw / 390);
    color: var(--TEXT_COLLAR_RED);
    font-weight: bold;
    padding: calc(50 * 100vw / 390) calc(20 * 100vw / 390) 0px;
    margin-bottom: calc(-50 * 100vw / 390);
  }
  .front_common_wrapper {
    width: 100%;
    width: auto;
    height: auto;
    padding: 0 calc(20 * 100vw / 390);
    padding-top: calc(50 * 100vw / 390);
    padding-bottom: calc(50 * 100vw / 390);
  }
  .front_common__title {
    margin-bottom: calc(30 * 100vw / 390);
    font-size: calc(32 * 100vw / 390);
    font-weight: 700;
    line-height: 1.4;
    color: var(--TEXT_COLLAR_BLACK);
  }
  .front_common__form {
    width: 100%;
    row-gap: calc(20 * 100vw / 390);
    margin-bottom: calc(30 * 100vw / 390);
  }
  .front_common__form label {
    font-size: calc(16 * 100vw / 390);
  }
  .front_common__form div {
    width: 100%;
    justify-content: flex-start;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    row-gap: calc(10 * 100vw / 390);
    margin: 0;
  }
  .front_common__form div > input {
    width: 100%;
    aspect-ratio: 360/42;
    height: auto;
    border: 1px solid #a68744;
    border-radius: 5px;
    font-size: calc(16 * 100vw / 390);
    color: #a68744;
    padding-right: calc(15 * 100vw / 390);
    padding-left: calc(15 * 100vw / 390);
    box-sizing: border-box;
  }
  .front_common__form button {
    min-width: calc(200 * 100vw / 390);
    width: auto;
    border: none;
    margin-top: 0;
    margin-bottom: 0;
    height: calc(40 * 100vw / 390);
    text-decoration: none;
    background-color: var(--BUTTON_BACKGROUND_COLOR);
    color: var(--BUTTON_TEXT_COLOR);
    border-radius: 5px;
    font-size: calc(16 * 100vw / 390);
    font-weight: 400;
    padding: calc(0 * 100vw / 390) calc(20 * 100vw / 390);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .front_common__attention {
    font-size: calc(14 * 100vw / 390);
    text-align: left;
  }
  .front_common__description {
    font-size: calc(14 * 100vw / 390);
    text-align: left;
  }
  .product_list_grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: center;
    column-gap: calc(20 * 100vw / 390);
    row-gap: calc(32 * 100vw / 390);
  }
  .product_list_card {
    width: 100%;
    max-width: calc(250 * 100vw / 390);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .product_list_card__image_wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    margin-bottom: calc(16 * 100vw / 390);
  }
  .product_list_card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .product_list_card__body {
    width: 100%;
    max-width: calc(210 * 100vw / 390);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .product_list_card__product_code, .product_list_card__name, .product_list_card__points {
    width: 100%;
    line-height: 1.5;
    color: var(--TEXT_COLLAR_BLACK);
  }
  .product_list_card__product_code {
    font-size: calc(14 * 100vw / 390);
    margin-bottom: calc(4 * 100vw / 390);
  }
  .product_list_card__name, .product_list_card__points {
    font-size: calc(16 * 100vw / 390);
  }
  .product_list_card__name {
    margin-bottom: calc(10 * 100vw / 390);
  }
  .product_list_card__points {
    text-align: right;
    margin-bottom: calc(14 * 100vw / 390);
  }
  .product_list_card__buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: calc(10 * 100vw / 390);
  }
  .product_list_card__button {
    min-width: 0;
    width: 100%;
    font-size: calc(16 * 100vw / 390);
    line-height: 1.5;
    box-sizing: border-box;
  }
  .product_list_empty_message {
    grid-column: 1/-1;
    width: 100%;
    font-size: calc(16 * 100vw / 390);
    line-height: 1.5;
    color: var(--TEXT_COLLAR_BLACK);
    text-align: center;
  }
  .product_detail_layout {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: calc(30 * 100vw / 390);
  }
  .product_detail_media {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .product_detail_media__main {
    width: 100%;
    max-width: calc(350 * 100vw / 390);
    aspect-ratio: 1/1;
    overflow: hidden;
    margin-bottom: calc(16 * 100vw / 390);
  }
  .product_detail_media__main_image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .product_detail_media__thumbs {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: calc(8 * 100vw / 390);
    flex-wrap: wrap;
  }
  .product_detail_media__thumb {
    width: calc(80 * 100vw / 390);
    height: calc(80 * 100vw / 390);
    padding: 0;
    border: 1px solid #dddddd;
    background-color: #ffffff;
    overflow: hidden;
  }
  .product_detail_media__thumb.is-active {
    border-color: var(--TEXT_COLLAR_GOLD);
  }
  .product_detail_media__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .product_detail_info_panel {
    width: 100%;
  }
  .product_detail_info_panel__inner {
    width: 100%;
    max-width: calc(390 * 100vw / 390);
    margin: 0 auto;
  }
  .product_detail_info_panel__divider {
    width: 100%;
    height: 1px;
    background-color: #d9d9d9;
    margin: calc(16 * 100vw / 390) 0;
  }
  .product_detail_info_panel__name {
    margin: 0;
    font-size: calc(16 * 100vw / 390);
    line-height: 1.6;
    font-weight: 500;
    color: var(--TEXT_COLLAR_BLACK);
  }
  .product_detail_info_panel__product_code, .product_detail_info_panel__period, .product_detail_info_panel__description_label {
    font-size: calc(14 * 100vw / 390);
    line-height: 1.6;
    color: var(--TEXT_COLLAR_BLACK);
  }
  .product_detail_info_panel__product_code {
    margin-bottom: calc(4 * 100vw / 390);
  }
  .product_detail_info_panel__points {
    display: flex;
    align-items: baseline;
    gap: calc(10 * 100vw / 390);
    flex-wrap: wrap;
    margin-bottom: calc(20 * 100vw / 390);
  }
  .product_detail_info_panel__points_label {
    font-size: calc(16 * 100vw / 390);
    line-height: 1.6;
    color: var(--TEXT_COLLAR_BLACK);
  }
  .product_detail_info_panel__points_value {
    font-size: calc(26 * 100vw / 390);
    line-height: 1.3;
    font-weight: 500;
    color: var(--TEXT_COLLAR_BLACK);
  }
  .product_detail_info_panel__button {
    margin-bottom: calc(16 * 100vw / 390);
  }
  .product_detail_info_panel__button_link {
    font-size: calc(16 * 100vw / 390);
    box-sizing: border-box;
  }
  .product_detail_info_panel__description {
    font-size: calc(16 * 100vw / 390);
    line-height: 1.8;
    color: var(--TEXT_COLLAR_BLACK);
  }
  .product_detail_info_panel__description {
    font-size: 1rem;
  }
  .product_detail_info_panel__description h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid;
    line-height: 1.4;
  }
  .product_detail_info_panel__description h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    padding-left: 0.75rem;
    border-left: 4px solid;
    line-height: 1.4;
  }
  .product_detail_info_panel__description h4 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: bold;
    line-height: 1.4;
  }
  .product_detail_info_panel__description h5 {
    font-size: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
    line-height: 1.4;
  }
  .product_detail_info_panel__description b {
    font-weight: 600;
  }
  .product_detail_info_panel__description strong {
    font-weight: bold;
  }
  .product_detail_info_panel__description ul,
  .product_detail_info_panel__description ol {
    margin-top: 0;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
  }
  .product_detail_info_panel__description li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
  }
  .product_detail_info_panel__description table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
  }
  .product_detail_info_panel__description th,
  .product_detail_info_panel__description td {
    padding: 0.75rem 1rem;
    border: 1px solid #dee2e6;
    text-align: left;
    vertical-align: middle;
    line-height: 1.5;
    min-width: 5em;
  }
  .product_detail_info_panel__description th {
    background-color: #f8f9fa;
    font-weight: bold;
    white-space: nowrap;
  }
  .product_detail_info_panel__description tbody tr:nth-child(even) {
    background-color: #fcfcfc;
  }
  .product_detail_info_panel__description p {
    line-height: 1.8;
    margin-top: 0;
    margin-bottom: 1.5rem;
  }
  .product_detail_info_panel__description small {
    font-size: 0.85em;
  }
  .product_detail_info_panel__description a {
    text-decoration: underline;
    transition: opacity 0.2s ease;
  }
  .product_detail_info_panel__description a:hover {
    opacity: 0.7;
    text-decoration: none;
  }
  .product_detail_info_panel__description img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    border-radius: 4px;
    margin-bottom: 1.5rem;
  }
  .product_detail_info_panel__description blockquote {
    margin: 0 0 1.5rem 0;
    padding: 1rem 1.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #adb5bd;
    border-radius: 0 4px 4px 0;
  }
  .product_detail_info_panel__description blockquote p:last-child {
    margin-bottom: 0;
  }
  .product_detail_info_panel__description hr {
    margin: 2.5rem 0;
    border: 0;
    border-top: 1px dashed #ccc;
  }
  .product_detail_info_panel__description dl {
    margin-top: 0;
    margin-bottom: 1.5rem;
    background-color: #fafafa;
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 4px;
  }
  .product_detail_info_panel__description dt {
    font-weight: bold;
    margin-bottom: 0.25rem;
    border-bottom: 1px solid;
    padding-bottom: 0.25rem;
  }
  .product_detail_info_panel__description dd {
    margin-left: 0;
    margin-bottom: 1rem;
    line-height: 1.6;
  }
  .product_detail_info_panel__description dd:last-child {
    margin-bottom: 0;
  }
  .product_order_layout {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: calc(30 * 100vw / 390);
  }
  .product_order_item_panel {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .product_order_item_panel__image_wrapper {
    width: 100%;
    max-width: calc(250 * 100vw / 390);
    aspect-ratio: 1/1;
    overflow: hidden;
    margin-bottom: calc(16 * 100vw / 390);
  }
  .product_order_item_panel__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .product_order_item_panel__name {
    width: 100%;
    max-width: calc(210 * 100vw / 390);
    font-size: calc(16 * 100vw / 390);
    line-height: 1.6;
    color: var(--TEXT_COLLAR_BLACK);
  }
  .product_order_form_panel {
    width: 100%;
  }
  .product_order_form_panel__inner {
    width: 100%;
    max-width: calc(490 * 100vw / 390);
    margin: 0 auto;
  }
  .product_order_form_panel__alert {
    margin-bottom: calc(14 * 100vw / 390);
    font-size: calc(14 * 100vw / 390);
    color: #a64444;
  }
  .product_order_form_panel__divider {
    width: 100%;
    height: 1px;
    background-color: #d9d9d9;
    margin: calc(16 * 100vw / 390) 0;
  }
  .product_order_form_panel__point_list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: calc(10 * 100vw / 390);
  }
  .product_order_form_panel__point_row {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
    gap: calc(10 * 100vw / 390);
    text-align: right;
    flex-wrap: wrap;
  }
  .product_order_form_panel__point_label {
    font-size: calc(16 * 100vw / 390);
    line-height: 1.6;
    color: var(--TEXT_COLLAR_BLACK);
  }
  .product_order_form_panel__point_value {
    font-size: calc(26 * 100vw / 390);
    line-height: 1.3;
    font-weight: 500;
    color: var(--TEXT_COLLAR_BLACK);
  }
  .product_order_form_panel__form, .product_order_form_panel__confirm_list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: calc(14 * 100vw / 390);
  }
  .product_order_form_panel__field, .product_order_form_panel__confirm_row {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: calc(8 * 100vw / 390);
  }
  .product_order_form_panel__field_label {
    width: 100%;
    font-size: calc(16 * 100vw / 390);
    line-height: 1.6;
    color: var(--TEXT_COLLAR_BLACK);
  }
  .product_order_form_panel__field_input, .product_order_form_panel__confirm_value {
    width: 100%;
    font-size: calc(16 * 100vw / 390);
    line-height: 1.6;
    color: var(--TEXT_COLLAR_BLACK);
    box-sizing: border-box;
  }
  .product_order_form_panel__field_input {
    min-height: calc(42 * 100vw / 390);
    padding: calc(8 * 100vw / 390) calc(12 * 100vw / 390);
    border: 1px solid #a68744;
    border-radius: 5px;
    background-color: #ffffff;
  }
  .product_order_form_panel__field_input--textarea {
    min-height: calc(120 * 100vw / 390);
    resize: vertical;
  }
  .product_order_form_panel__button {
    width: 100%;
    margin-top: calc(8 * 100vw / 390);
  }
  .product_order_form_panel__button_link {
    font-size: calc(16 * 100vw / 390);
    box-sizing: border-box;
  }
  .product_order_complete {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .product_order_complete__card {
    width: 100%;
    padding: calc(28 * 100vw / 390) calc(20 * 100vw / 390);
    border: 1px solid #e5e5e5;
    border-radius: calc(12 * 100vw / 390);
    background-color: #ffffff;
    text-align: center;
    box-sizing: border-box;
  }
  .product_order_complete__icon {
    font-size: calc(26 * 100vw / 390);
    line-height: 1;
    color: var(--TEXT_COLLAR_GOLD);
    margin-bottom: calc(16 * 100vw / 390);
  }
  .product_order_complete__title {
    font-size: calc(22 * 100vw / 390);
    line-height: 1.5;
    font-weight: 500;
    color: var(--TEXT_COLLAR_BLACK);
    margin-bottom: calc(14 * 100vw / 390);
  }
  .product_order_complete__text {
    font-size: calc(16 * 100vw / 390);
    line-height: 1.8;
    color: var(--TEXT_COLLAR_BLACK);
    margin-bottom: calc(24 * 100vw / 390);
  }
  .product_order_complete__button {
    width: 100%;
  }
  .product_order_complete__button_link {
    font-size: calc(16 * 100vw / 390);
    box-sizing: border-box;
  }
  .mypage_wrapper .mypage_contents {
    width: 100%;
  }
  .mypage_wrapper .mypage_point_wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    row-gap: calc(0 * 100vw / 390);
  }
  .mypage_wrapper .mypage_point_wrapper .mypage_point_balance {
    width: 100%;
  }
  .mypage_wrapper .mypage_point_balance_contents {
    align-items: center;
  }
  .mypage_wrapper .mypage_point_balance {
    width: calc(160 * 100vw / 390);
    padding: calc(10 * 100vw / 390);
  }
  .mypage_wrapper .mypage_stock_point_grant {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .mypage_wrapper .mypage_stock {
    width: 50%;
  }
  .mypage_wrapper .mypage_point_grant {
    width: 50%;
  }
  .mypage_wrapper .mypage_stock_point_grant_wrapper {
    width: 100%;
  }
  .mypage_wrapper .mypage_ec_ir_wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: calc(20 * 100vw / 390);
  }
  .mypage_wrapper .mypage_ec_ir_wrapper .mypage_ec {
    width: 100%;
  }
  .mypage_wrapper .mypage_ec_ir_wrapper .mypage_ir {
    width: 100%;
  }
  .point_history_wrapper .point_history_contents {
    width: 100%;
  }
  .point_history_wrapper .point_history_contents .point_history_attention {
    font-size: calc(12 * 100vw / 390);
  }
  .point_history_wrapper .point_history_contents .point_history_contents_header,
  .point_history_wrapper .point_history_contents .point_history_contents_body {
    font-size: calc(14 * 100vw / 390);
  }
  .point_history_wrapper .point_history_contents .point_history_contents_header .point_history_contents_header_deal_datetime,
  .point_history_wrapper .point_history_contents .point_history_contents_header .point_history_contents_body_deal_datetime,
  .point_history_wrapper .point_history_contents .point_history_contents_body .point_history_contents_header_deal_datetime,
  .point_history_wrapper .point_history_contents .point_history_contents_body .point_history_contents_body_deal_datetime {
    width: calc(100 * 100vw / 390);
  }
  .point_history_wrapper .point_history_contents .point_history_contents_header .point_history_contents_header_deal_point,
  .point_history_wrapper .point_history_contents .point_history_contents_header .point_history_contents_body_deal_point,
  .point_history_wrapper .point_history_contents .point_history_contents_body .point_history_contents_header_deal_point,
  .point_history_wrapper .point_history_contents .point_history_contents_body .point_history_contents_body_deal_point {
    width: calc(100 * 100vw / 390);
  }
  .point_history_wrapper .point_history_contents .point_history_contents_header .point_history_contents_header_comment,
  .point_history_wrapper .point_history_contents .point_history_contents_header .point_history_contents_body_comment,
  .point_history_wrapper .point_history_contents .point_history_contents_body .point_history_contents_header_comment,
  .point_history_wrapper .point_history_contents .point_history_contents_body .point_history_contents_body_comment {
    width: calc(150 * 100vw / 390);
  }
}
