@charset "utf-8";
/* CSS Document */


/* ============================================================
   コンテンツ共通
   ============================================================ */
.hidden-pc {
  display: none !important;
}

.naire-section {
  display: block;
  padding: 0 16px;
  font-size: 16px;
}

.naire-section img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

.naire-heading--large {
  background-color: #F0F0F0;
  font-size: 20px;
  font-weight: bold;
  color: #555;
  line-height: 1.4;
  padding: 10px 12px;
}

.naire-heading--medium {
  font-size: 16px;
  font-weight: bold;
  color: #4A4A4A;
  line-height: 1.4;
  margin: 16px 0 0;
}

.naire-heading--small {
  font-size: 12px;
  color: #4A4A4A;
  line-height: 1.4;
  margin: 8px 0 0;
}

.naire-content_label {
  font-size: 14px;
  margin: 10px 0 0;
  color: #555;
}

.naire-content_label strong {
  font-weight: bold;
}

/* ============================================================
   セクション共通
   ============================================================ */
.naire-section--margin {
  margin: 30px 0 0;
}

.naire-section--border-bottom {
  border-bottom: 1px solid #CCC;
}

.naire-content_section {
  border-top: 1px solid #CCC;
  padding: 24px 0;
  margin: 32px 0 0;
}

.naire-content_section--margin {
  margin: 16px 0 0;
}


/* ============================================================
   横並び Layout（共通・再利用）
   SP: 1行3列（折り返し） / PC側は pc/naire.css で上書き
   ============================================================ */
.m-row-grid {
  list-style: none;
  display: grid;
  margin: 0;
  padding: 0;
  gap: 10px;
}

.m-row-grid--sm-3 {
  grid-template-columns: repeat(3, 1fr);
}

.m-row-grid--sm-2 {
  grid-template-columns: repeat(2, 1fr);
}

.m-row-grid--sm-1 {
  grid-template-columns: 1fr;
}

.m-row-grid_item {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* ============================================================
   商品情報-画像・価格・出荷予定日・アイコン
   ============================================================ */

.goods-summary_title {
  font-size: 18px;
  font-weight: bold;
}

.goods-summary_price2 {
  margin: 16px 0 0;
}

.goods-summary_price2_value {
  font-size: 24px;
  color: #D93A38;
  line-height: 1.4;
  font-weight: bold;
  margin: 0 0 0 8px;
}

.goods-summary_price2_unit {
  font-size: 12px;
  color: #D93A38;
  line-height: 1.4;
}

.goods-summary_shipping {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.4;
}

.goods-summary_shipping_label {
  font-size: 12px;
  display: block;
  font-weight: bold;
  color: #333;
}

.goods-summary_shipping_date {
  font-size: 16px;
  display: block;
  margin: 4px 0 0;
  font-weight: bold;
  color: #008247;
}

.goods-summary_badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.goods-summary_badge {
  display: inline-block;
  padding: 6px 8px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.4;
  color: #fff;
  background-color: #4A4A4A;
  border-radius: 4px;
}

.goods-summary_badge--shipping-free {
  background-color: #EB5F5F;
}

/* 出荷リードタイム（display_shipday） */

.goods-summary_shipday--sameday {
  background: #ffcc33;
  color: #e44e1b;
  border: none;
}

.goods-summary_shipday--1 {
  background: #b8f5ff;
  color: #0066cc;
  border: none;
}

.goods-summary_shipday--2 {
  background: #b8ded0;
  color: #006666;
  border: none;
}

/* 3営業日後出荷以降のスタイル */
.goods-summary_shipday:not(.goods-summary_shipday--sameday):not(.goods-summary_shipday--1):not(.goods-summary_shipday--2) {
  background: #fff;
  color: #005B32;
  border: 1px solid #005B32;
}

/* ============================================================
   同梱不可の案内
   ============================================================ */

.goods-summary-notice_wrapper {
  padding: 16px 0 0;
  margin: 8px 0 0;
  border-top: 1px solid #CCC;
}

.goods-summary-notice {
  display: block;
  background-color: #daf0fe;
  border: 1px solid #1661a3;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  font-weight: 700;
  text-align: center;

  padding: 4px 0;
}

.goods-summary-notice:hover {
  color: inherit;
  text-decoration: none;
  opacity: 0.7;
}

.goods-summary-notice:visited {
  color: inherit;
}

.goods-summary-notice_highlight {
  display: inline-block;
  color: #fff;
  background-color: #1661a3;
  border-radius: 4px;
  margin: 0 2px;
  padding: 2px 6px;
}

.goods-summary-notice_link-text {
  display: inline;
  font-size: 14px;
  color: #1661a3;
  margin: 3px 0 0;
  padding: 0 0 0 1.5em;
  position: relative;
}

.goods-summary-notice_link-text::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #1661a3;
  border-right: 2px solid #1661a3;
  transform: rotate(135deg);
  position: absolute;
  top: 10%;
  left: 0;
}


/* ============================================================
   商品画像ギャラリー
   ============================================================ */
.goods-viewer {
  aspect-ratio: auto;
}

/* ============================================================
   商品ヒーロー（PC 2カラム）
   ============================================================ */
.goods-hero {
  display: grid;
  /* 750 - 16*2(padding) - 15(gap) = 703 → 460px : 220px */
  grid-template-columns: calc((100% - 15px) * 460 / 703) calc((100% - 15px) * 220 / 703);
  column-gap: 15px;
  align-items: start;
}

.goods-hero_media {
  grid-column: 1;
  grid-row: 1 / 5;
  align-self: start;
}

.goods-hero_summary {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
}

.goods-hero_variation {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
}

.goods-hero_variation_label {
  line-height: 1.4;
  min-height: calc(1.4em * 2);
}

.goods-hero_cart {
  grid-column: 2;
  grid-row: 3;
  margin: 8px 0 0;
}

.goods-hero_cart input {
  width: 100%;
  height: auto;
}

/* サムネイル: 5列・gap10px → 460px幅で1枚84px相当 */
.goods-hero_media .goods-viewer ul {
  display: grid;
  grid-template-columns: repeat(5, calc((100% - 40px) / 5));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.goods-hero_media .goods-viewer ul > li[data-id] {
  float: none;
  margin: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  min-width: 0;
  box-sizing: border-box;
}

.goods-hero_media .goods-viewer ul > li:not([data-id]) {
  display: none;
}


/* ============================================================
   ボディカラー選択
   ============================================================ */
/* スタイリングに js-* クラスは使わないこと（プログラム用とデザイン用クラスを分けるため） */

.goods-variation_section {
  margin: 0;
}

.goods-variation_section > .naire-content_label {
  line-height: 1.4;
  min-height: calc(1.4em * 2);
}


.goods-variation_buttons {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0 0;
  flex-wrap: wrap;
}

.goods-variation_button {
  all: unset;
  display: block;
  width: calc((100% - 20px) / 5);
  cursor: pointer;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.goods-variation_button--hero {
  width: calc((100% - 20px) / 3);
}

.goods-variation_button.is-selected {
  border: 1px solid transparent;
  box-shadow: 0 0 0 3px #333;
}

/* 在庫のある商品のカラーピッカーには data-sale-status="3" が付与されます */
/* 在庫のない商品（品切れ・廃番）には "3" 以外が付与されます（1,2,4） */
/* よって品切れ商品のカラーピッカーのスタイル変更は [data-sale-status]:not([data-sale-status="3"]) をセレクタにしてください */
.goods-variation_buttons button[data-sale-status]:not([data-sale-status="3"]) {
  position: relative;
  overflow: hidden;
}

.goods-variation_buttons button[data-sale-status]:not([data-sale-status="3"])::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(153, 153, 153, 0.55);
  pointer-events: none;
  z-index: 1;
}

.goods-variation_buttons button[data-sale-status]:not([data-sale-status="3"])::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 2px;
  background-color: #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
  pointer-events: none;
  z-index: 2;
}

/* 品切れ商品選択中は .js-goods-variation に .is-out-of-stock が付与されます */
/* 品切れ商品選択中のスタイル変更は .is-out-of-stock .foo のような入れ子で指定してください */
.is-out-of-stock .goods-variation-body-color {
  color: #D93A38;
}

.is-out-of-stock .sale-status-message {
  font-weight: bold;
  color: #D93A38;
}

.is-out-of-stock input[name="style"],
.is-out-of-stock input[name="layout"],
.is-out-of-stock input[name="last_name"],
.is-out-of-stock input[name="first_name"] {
  cursor: not-allowed;
}

.is-out-of-stock label {
  cursor: not-allowed;
}

.is-out-of-stock .preview_text_color {
  color: #333;
}


/* ============================================================
   印面プレビューリンク（goods-hero 内配置）
   ============================================================ */
.order-option_page-link {
  grid-column: 2;
  grid-row: 4;
  margin: 8px 0 0;
}

.order-option_page-link_button {
  display: flex;
  align-items: center;
  gap: 27px;
  width: 100%;
  padding: 14px 14px 14px 25px;
  color: #124C80;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  text-decoration: none!important;
  box-sizing: border-box;
  border: 2px solid #124C80;
  border-radius: 12px;
}

.order-option_page-link_icon {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: #124C80;
}

.order-option_page-link_icon::before,
.order-option_page-link_icon::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 11px;
  height: 11px;
  border-right: 3px solid #333;
  border-bottom: 3px solid #333;
  transform: translateX(-50%) rotate(45deg);
}

.order-option_page-link_icon::before {
  top: 0;
}

.order-option_page-link_icon::after {
  top: 8px;
}

.order-option_page-link_text {
  display: flex;
  flex-direction: column;
}

.order-option_page-link_text_line {
  display: block;
}

/* ============================================================
   選択オプション（共通）
   ============================================================ */
.order-option_buttons {
  margin: 16px 0 0;
}

.order-option_button {
  position: relative;
  width: 100%;
  min-width: 0;
  border: 2px solid #999;
  border-radius: 10px;
  box-sizing: border-box;
  cursor: pointer;
}

.order-option_button:has(.order-option_button_input:checked) {
  border-color: #333;
  box-shadow: 0 0 0 1px #333;
}

.order-option_button_input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.order-option_button_badge_recommend {
  position: absolute;
  top: -10px;
  left: 75%;
  transform: translateX(-50%);
  padding: 2px 6px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.4;
  color: #fff;
  background-color: #29A96F;
  border-radius: 4px;
  white-space: nowrap;
  z-index: 1;
}

.order-option_button_badge_english {
  position: absolute;
  top: -10px;
  left: 95%;
  transform: translateX(-50%);
  padding: 2px 6px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.4;
  color: #fff;
  background-color: #FF3D00;
  border-radius: 4px;
  white-space: nowrap;
  z-index: 1;
}

.order-option_button_text {
  font-size: 16px;
  line-height: 1.4;
  color: #333;
}

/* ============================================================
   選択オプション：印面書体・レイアウト
   ============================================================ */
.order-option_buttons--inmen-font,
.order-option_buttons--inmen-layout {
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.order-option_button--inmen-font,
.order-option_button--inmen-layout {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 4px 10px;
  min-height: 50px;
}

.order-option_button_badge_recommend--inmen-font,
.order-option_button_badge_recommend--inmen-layout {
  left: 72%;
  transform: none;
}

.order-option_button_text--inmen-font,
.order-option_button_text--inmen-layout {
  flex: 1;
  min-width: 0;
}

.order-option_button_text--inmen-font,
.order-option_button_text--inmen-layout {
  text-align: center;
}

.order-option_button_img--inmen-font,
.order-option_button_img--inmen-layout {
  flex-shrink: 0;
  width: auto;
  max-width: 46px;
  height: auto;
  object-fit: contain;
}

.order-option_button_item {
  display: flex;
}

.order-option_note--inmen-font {
  font-size: 14px;
  margin: 8px 0 0;
}


/* ============================================================
   選択オプション：側面彫刻書体
   ============================================================ */
.order-option_warning {
  background-color: #DAF0FE;
  padding: 16px 20px;
  margin: 10px 0 0;
}

.order-option_warning_text {
  font-size: 14px;
  line-height: 1.6;
  font-weight: bold;
  margin: 0;
}

.order-option_buttons--side-font {
  grid-template-columns: 1fr;
  gap: 14px 8px;
}

.order-option_button_item-side-font {
  display: flex;
}

.order-option_button--side-font {
  display: flex;
  align-items: center;
  flex: 1;
  width: 100%;
  gap: 8px;
  min-height: 50px;
  padding: 8px;
}

.order-option_button_badge_recommend--side-font {
  left: 95%;
}

.order-option_button_badge_recommend--side-font_2badge {
  left: 78%;
}

.order-option_button_text--side-font {
  flex: 1;
  min-width: 0;
  min-height: calc(1.4em * 2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.order-option_button_img--side-font {
  max-width: 76%;
  border: 1px solid #CCC;
  box-sizing: border-box;
}

.order-option_note_list {
  font-size: 14px;
  list-style: none;
  padding: 0;
}

/* ============================================================
   印面に入れる名前を入力
   ============================================================ */
.goods-name_input {
  margin: 10px 0 0;
}

.goods-name_input_name {
  width: 100%;
  padding: 12px 8px;
  border: 1px solid #999;
  border-radius: 10px;
  box-sizing: border-box;
}

/* バリデーションメッセージ */
span.input_name1, span.input_name2 {
  color: #FF0000;
  font-size: 13px;
}

/* ============================================================
   名入れ内容を入力
   ============================================================ */
.engraving-text-input-title {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  gap: 10px;
}

.engraving-text-input-title_head {
  flex-shrink: 0;
}

.engraving-text-input-title_sub {
  font-size: 12px;
  color: #124C80;
  margin: 8px 0 0;
}

.engraving-text-input_validation-message {
  display: block;
  color: #D93A38;
  font-size: 12px;
  margin: 5px 0 5px;
  min-height: 18px;
}


/* ============================================================
  まとめ買いはどうすればいいですか？（アコーディオン）
============================================================ */
.goods-accordion-list {
  margin: 24px 0 0;
}

.goods-accordion_item + .goods-accordion_item {
  margin: 10px 0 0;
}

.goods-accordion_head {
  all: unset;
  display: block;
  font-size: 16px;
  font-weight: bold;
  width: 100%;
  padding: 9px 0;
  border-bottom: 1px solid #333;
  position: relative;
  cursor: pointer;
}

.goods-accordion_head:hover {
  opacity: 0.8;
}

.goods-accordion_head::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  border: 1px solid #009953;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
}

.goods-accordion_head::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #009953;
  border-right: 2px solid #009953;
  position: absolute;
  top: 28%;
  right: 15px;
  transform: rotate(135deg);
}

.goods-accordion_head.is-active::after {
  transform: translateY(45%) rotate(-45deg);
}

.goods-accordion_panel-inner {
  padding: 8px 0 0;
}

.goods-accordion_text {
  margin: 0;
}

.goods-accordion_text-link {
  display: inline-block;
  margin: 1.5em 0 0;
  word-break: break-all;
  color: #333;
}

.goods-accordion_close-outer {
  text-align: right;
}

.goods-accordion_close {
  all: unset;
  display: inline-block;
  font-size: 12px;
  text-align: right;
  color: #009953;
  padding: 0 26px 0 0;
  position: relative;
  cursor: pointer;
}

.goods-accordion_close::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #009953;
  border-right: 2px solid #009953;
  position: absolute;
  top: 38%;
  right: 8px;
  transform: rotate(-45deg);
}


/* ============================================================
   注文オプション（PC 2カラム：左プレビュー / 右選択）
   ============================================================ */
.goods-order-layout {
  display: grid;
  /* 750 - 16*2(padding) - 16(gap) = 702 → 列幅比 295px : 407px（703 基準） */
  grid-template-columns: calc((100% - 16px) * 295 / 703) calc((100% - 16px) * 407 / 703);
  column-gap: 16px;
  margin: 30px 0 0;
}

.goods-order-layout_options {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}

.goods-order-layout_preview {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
}

/* 右カラム（ボディカラー〜カート）の高さに合わせて左プレビューを追従 */
.goods-order-layout--sticky .goods-preview_section {
  position: sticky;
  top: 16px;
}

/* ============================================================
   プレビュー + 選びなおす
   ============================================================ */
.goods-preview_section {
  margin: 0;
}

.goods-preview_layout_heading {
  margin: 0;
}

.goods-preview {
  margin: 14px 0 0;
  background-color: #F5F5F5;
  padding: 16px;
  box-sizing: border-box;
}

.goods-preview_goods {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.goods-preview_goods_body {
  display: flex;
  gap: 8px;
}

.goods-preview_goods_body--inmen {
  margin: 10px 0 0;
}

.goods-preview_goods_img_wrapper {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  background-color: #fff;
  border: 1px solid #CCC;
  padding: 4px;
  box-sizing: border-box;
  position: relative;
}

.goods-preview_goods_inmen_img {
  position: absolute;
  left: 0;
  top: 0;
}

.goods-preview_goods_inmen_img--background {
  z-index: 0;
}

.goods-preview_goods_inmen_img--text {
  z-index: 10;
}

.goods-preview_goods_text {
  flex: 1;
  min-width: 0;
  margin: 0;
}

.goods-preview_goods_text_title {
  font-size: 14px;
  font-weight: normal;
  line-height: 1.4;
  color: #333;
  margin: 8px 0 0;
}

.goods-preview_goods_text_title--first {
  margin: 0;
}

.goods-preview_goods_text_detail {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
  color: #333;
}

.goods-preview_goods_text_detail--body-color {
  min-height: calc(1.4em * 2);
}

.goods-preview_goods_side {
  margin: 4px 0 0;
  padding: 10px 0 0;
  border-top: 1px solid #CCC;
}

.goods-preview_goods_side_text_title {
  margin: 0;
}

.goods-preview_goods_side_img {
  display: block;
  max-width: 100%;
  background-color: #fff;
  border: 1px solid #CCC;
  box-sizing: border-box;
  margin: 8px 0 0;
}

.order-option_reset {
  margin: 14px 0 0;
}

.goods-order-cart {
  margin: 14px 0 0;
  text-align: center;
}

.goods-order-cart input {
  width: 100%;
  height: auto;
}

.order-option_reset_heading {
  margin: 0;
}

.order-option_reset_buttons {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0 0 10px;
}

.order-option_reset_button {
  position: relative;
  flex: 0 0 auto;
  display: inline-block;
  font-size: 14px;
  line-height: 1.4;
  color: #2683BC;
  box-sizing: border-box;
  padding: 0 0 0 20px;
}

.order-option_reset_button::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 3px solid #2683BC;
  border-right: 3px solid #2683BC;
  transform: rotate(-45deg);
  position: absolute;
  top: 38%;
  left: 0px;
}

/* ============================================================
     商品スペック
     ============================================================ */
.goods-spec_list {
  display: grid;
  grid-template-columns: 40% 1fr;
  margin: 14px 0 0;
  border: 1px solid #CCC;
  box-sizing: border-box;
}

.goods-spec_term,
.goods-spec_detail {
  margin: 0;
  padding: 12px 10px;
  border-bottom: 1px solid #CCC;
  font-size: 16px;
  color: #333;
  line-height: 1.4;
  box-sizing: border-box;
}

.goods-spec_term {
  display: flex;
  align-items: center;
  background-color: #F0F0F0;
  font-weight: bold;
  border-right: 1px solid #CCC;
}

.goods-spec_detail {
  background-color: #fff;
}

.goods-spec_list > .goods-spec_term:nth-last-child(2),
.goods-spec_list > .goods-spec_detail:last-child {
  border-bottom: 0;
}

.goods-spec_link {
  color: #2683BC;
}

.goods-spec_link::before {
  content: "▼";
  font-size: 12px;
}

.goods-spec_ink_colors {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.goods-spec_ink_color {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  box-sizing: border-box;
}

.goods-spec_ink_color--shu {
  background-color: #e83517;
}

/* 商品・印面・名入れの詳細（PC 2カラム・常時表示） */
.goods-detail_panel {
  display: grid;
  grid-template-columns: calc((100% - 28px) / 2) calc((100% - 28px) / 2);
  column-gap: 28px;
  align-items: stretch;
}

.goods-detail_panel_side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
}

/* ============================================================
     販売価格
     ============================================================ */
.goods-price_text {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
  font-weight: bold;
}

/* ============================================================
   カートボタン
   ============================================================ */
.goods-preview_goods_text_price--pc {
  padding: 32px 0 0;
}

.goods-order-cart_item {
  width: 53%;
  margin-inline: auto;
}

/* ============================================================
   説明文
   ============================================================ */
.goods-detail_text {
  font-size: 16px;
  color: #333;
  line-height: 1.4;
  margin: 0;
}

.goods-detail_intro {
  border-top: 0;
  border-bottom: 0;
  padding: 0;
  margin: 36px 0 0;
}

.goods-detail_intro_body {
  background-color: #F3F3F3;
  padding: 16px;
  box-sizing: border-box;
}




/* ============================================================
   同梱不可商品についてのご案内
   ============================================================ */
.goods-order-attention_body {
  display: grid;
  grid-template-columns: calc((100% - 8px) / 2) calc((100% - 8px) / 2);
  column-gap: 8px;
  align-items: start;
}

.goods-order-attention_img {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.goods-order-attention_text {
  margin: 0;
}

.goods-order-attention_text--bold {
  font-weight: bold;
}

/* ============================================================
   見本セクション
   ============================================================ */
.goods-sample_detail_text {
  margin: 14px 0 0;
}

.goods-sample_items {
  margin: 14px 0 0;
}

.goods-sample_item {
  margin: 0;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  text-align: center;
}

.goods-sample_item_img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto 4px;
  border: 1px solid #CCC;
  box-sizing: border-box;
}

.goods-sample_item_label {
  color: #333;
  font-size: 14px;
}

.goods-sample_items--font {
  grid-template-columns: repeat(5, 1fr);
}

.goods-sample_items--layout {
  grid-template-columns: repeat(6, 1fr);
}

.goods-sample_items--carving {
  grid-template-columns: repeat(2, 1fr);
}

.goods-sample_detail_link_list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.goods-sample_detail_link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #2683BC;
  box-sizing: border-box;
}

.goods-sample_detail_link::before {
  content: "";
  flex-shrink: 0;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #999;
}

.goods-sample_item_font_sample_list {
  padding: 0;
  list-style: none;
}

.goods-sample_item_font_sample_list--margin {
  margin: 14px 0 0;
}

.goods-sample_item_font_sample_list_item {
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}

.goods-sample_item_font_sample {
  max-width: 20px;
  height: auto;
  vertical-align: middle;
  object-fit: contain;
  box-sizing: border-box;
}

.goods-sample_item_text {
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}

.goods-sample_item_badge_english {
    padding: 4px 6px;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.4;
    color: #fff;
    background-color: #FF3D00;
    border-radius: 4px;
    white-space: nowrap;
    margin: 0 4px 0 0;
  }

.goods-sample_item_disclaimer {
  margin: 24px 0 0;
  font-size: 14px;
}

.goods-sample_item_disclaimer_title {
  margin: 16px 0 0;
}

.goods-sample_item_disclaimer_content {
  list-style: none;
}

/* ============================================================
   注意
   ============================================================ */
.goods-attention_content.naire-section--border-bottom {
  border-bottom: 0;
}

.goods-attention_ink-refill_body {
  display: grid;
  grid-template-columns: calc((100% - 8px) / 2) calc((100% - 8px) / 2);
  column-gap: 8px;
  align-items: start;
  margin: 14px 0 0;
}

/* ============================================================
   名入れ最大文字数・方向
   ============================================================ */
.goods-name-carving_body {
  display: grid;
  grid-template-columns: calc((100% - 8px) / 2) calc((100% - 8px) / 2);
  column-gap: 8px;
  align-items: start;
}

.goods-name-carving_term {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  line-height: 1.4;
}

.goods-name-carving_term:not(:first-child) {
  margin: 16px 0 0;
}

.goods-name-carving_desc {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin: 4px 0 0;
}

.goods-name-carving_notes {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.goods-attention_ink-refill_img {
  margin: 0;
  border: 1px solid #CCC;
  box-sizing: border-box;
}

.goods-attention_ink-refill_text {
  margin: 0;
}

.goods-attention_list {
  list-style: none;
}

/* ============================================================
     商品リンク（サプライ・同シリーズ共通）
     ============================================================ */
.goods-goodslink_list {
  list-style: none;
  padding: 0;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: calc((100% - 15px) / 2) calc((100% - 15px) / 2);
  column-gap: 15px;
  row-gap: 10px;
}

.goods-goodslink_item {
  margin: 0;
  height: 100%;
}

.goods-goodslink_item_body {
  display: flex;
  gap: 8px;
  height: 100%;
}

.goods-goodslink_item_thumb-link {
  display: block;
  width: 100%;
  text-decoration: none;
}

.goods-goodslink_item_title-link {
  display: block;
  width: 100%;
  text-decoration: none;
}

.goods-goodslink_item_link {
  display: flex;
  gap: 8px;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.goods-goodslink_item_img-wrap {
  flex: 0 0 34%;
  width: 34%;
  max-width: 120px;
  align-self: flex-start;
  background-color: #fff;
}

.goods-goodslink_item_img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  border: 1px solid #CCC;
  box-sizing: border-box;
}

.goods-goodslink_item_detail {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  height: 100%;
}

.goods-goodslink_item_title {
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
  color: #333;
}

.goods-goodslink_item_price {
  margin: auto 0 0;
  line-height: 1.4;
  font-weight: bold;
  color: #D93A38;
  align-self: flex-end;
}

.goods-goodslink_item_price_value {
  font-size: 20px;
}

.goods-goodslink_item_price_unit {
  font-size: 14px;
  margin: 0 0 0 2px;
}

/* サプライ・オプション品：カートボタン */
.goods-goodslink_item_cart {
  margin: 8px 0 0;
  width: 100%;
  text-align: right;
}

form.goods-goodslink_item_cart button.goods-goodslink_cart_button {
  font-family: inherit;
  width: 100%;
  max-width: 160px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

form.goods-goodslink_item_cart button.goods-goodslink_cart_button img {
  display: block;
  width: 100%;
  height: auto;
}

/* 同シリーズ：詳細ページリンク */
.goods-goodslink_item_page-link {
  margin: 8px 0 0;
  align-self: flex-end;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  color: #009953;
  text-decoration: underline;
}

/* ============================================================
     一覧へ戻るリンク
     ============================================================ */
.naire-back-link_section {
  margin: 32px 0 0;
}

.naire-back-link_section_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

.naire-back-link {
  position: relative;
  width: 65%;
  padding: 12px 40px;
  background-image: linear-gradient(to bottom, #fefefe, #e5e5e5);
  border: 1px solid #CCC;
  border-radius: 4px;
  color: #333;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
}


/* ============================================================
   名入れボールペン　/shop/item/naire-ballpen/
   ============================================================ */

.engraving-text-input-title_sub_row {
  font-size: 16px;
  font-weight: bold;
  margin: 0 8px 0 0;
}

.engraving-text_length {
  font-size: 14px;
}

.engraving-text-input-title_sub--na1 {
  margin: 16px 0 0;
}

.engraving-text-input-title_sub--na2 {
  margin: 16px 0 0;
}