:root {
  --main: #39a102;
  --text: #202020;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--text); background: #fff; font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif; line-height: 1.65; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.insurance-lp { overflow: hidden; }
#products { scroll-margin-top: 100px; }
.section-inner { width: min(1024px, calc(100% - 40px)); margin-inline: auto; }
.section-inner--wide { width: min(1024px, calc(100% - 40px)); }
.section-block { padding: 2.5em 0; }
.section-title { margin: 0 0 34px; text-align: center; font-size: clamp(24px, 3vw, 35px); line-height: 1.35; }
.section-title em { color: #39a102; font-style: normal; }

.pc {display: block;}
.sp {display: none;}

.hero {
  background-image: linear-gradient(0deg, #fffcd7 70%, #cee6a2 70%, #9ccf6d 72%, #39a102 72%);
}
.hero__inner {
  position: relative;
  width: min(1024px, 100%);
  min-height: 376px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 236px;
  align-items: stretch;
}
.hero__main {
  min-width: 0;
  padding: 0 0 2em;
}
.hero__copy {
  margin: 0;
  line-height: 0;
}
.hero__copy picture,
.hero__copy img {
  display: block;
  width: 100%;
}
.hero__copy img {
  height: auto;
  max-height: 376px;
  object-fit: cover;
  object-position: left top;
}
.hero__lead {
  text-align: center;
  font-size: clamp(13px, 1.2vw, 17px);
  font-weight: 700;
  line-height: 1.55;
}
.hero__result {
  position: relative;
  overflow: visible;
  margin-bottom: 20px;
  z-index: 2;
  min-height: 376px;
  padding: 25px;
  color: #fff;
  background:#272727;
  border-left: 3px solid #b89a3b;
  border-right: 3px solid #b89a3b;
  text-align: center;
}
.hero__result::after {
  content: "";
  position: absolute;
  left: -3px;
  bottom: -42px;
  width: calc(100% + 6px);
  height: 42px;
  box-sizing: border-box;

  border-left: 3px solid #b89a3b;
  border-right: 3px solid #b89a3b;
  background: #272727;

  clip-path: polygon(
    0 0,
    0 100%,
    50% 25%,
    100% 100%,
    100% 0
  );
}
.hero__result-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
  border: 12px solid #35b20b;
  border-radius: 50%;
  color: #35b20b;
  background: #2b2b2b;
  box-shadow: 0 0 0 4px #2b2b2b;
}
.hero__result-icon span {
  font-size: 34px;
  line-height: 1;
  padding-top: 3px;
}
.hero__result-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0 2px;
  font-weight: 800;
  font-size: 17px;
  white-space: nowrap;
}
.hero__result-label::before,
.hero__result-label::after {
  content: "";
  flex: 1;
  height: 2px;
  background: #b89a3b;
}
.hero__result-number {
  margin: 0.5em 0 1.5em;
  color: #f1d93f;
  line-height: 1;
  text-shadow: 0 2px 2px rgba(0,0,0,.4);
}
.hero__result-number strong {
  font-family: serif;
  font-size: 40px;
  font-weight: bold;
}
.hero__result-number span {
  margin-left: 4px;
  font-size: 18px;
  font-weight: 900;
}
.hero__result-note {
  padding-top: 7px;
  border-top: 2px solid #b89a3b;
  font-size: 12px;
  line-height: 1.2;
}
.hero__result-text {
  margin: 20px 0 0;
  font-weight: 800;
  font-size: 16px;
}

.summary { margin: 3em 0; }
.summary__grid { display: grid; grid-template-columns: repeat(5, 1fr); margin: 0; padding: 0; list-style: none; border: 2px solid #39a102; border-radius: 12px; overflow: hidden; background: #fff; }
.summary-card { min-height: 112px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 12px 8px; text-align: center; }
.summary-card + .summary-card { border-left: 1px solid #d4d4d4; }
.summary-card__label { color: var(--main); font-size: 15px; font-weight: 800; line-height: 1.35; }
.summary-card__value { font-size: 20px; line-height: 1.1; }
.summary-card__value small { font-size: .65em; }

.btn { 
	display: inline-flex; 
	align-items: center; 
	justify-content: center; 
	gap: 14px; 
	min-height: 58px; 
	padding: 0 34px; 
	border-radius: 999px; 
	text-decoration: none; 
	font-weight: 800; 
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }

.insurance-lp .btn:hover { transform: translateY(2px); }

.btn,
.product-card__btn a {
  position: relative;
}

.btn::after {
  content: "";
  display: block;
  flex: 0 0 auto;
  width: 0.55em;
  height: 0.55em;
  margin-left: 0.15em;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .2s ease;
}

.product-card__btn a::after {
  content: "";
  position: absolute;
  right: 1em;
  flex: 0 0 auto;
  width: 0.55em;
  height: 0.55em;
  margin-left: 0.15em;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .2s ease;
}

.btn--primary { min-width: 360px; color: #fff; background: linear-gradient(180deg, #2ca83c, #117821); }
.btn--outline { color: var(--main); border: 2px solid #39a102; background: #fff; }

.btn--external::after {
  content: "";
  width: 0.8em;
  height: 0.8em;
  margin-left: 0.2em;
  border: 0;
  background:
    linear-gradient(currentColor, currentColor) right top / 70% 2px no-repeat,
    linear-gradient(currentColor, currentColor) right top / 2px 70% no-repeat,
    linear-gradient(currentColor, currentColor) left bottom / 72% 2px no-repeat,
    linear-gradient(currentColor, currentColor) left bottom / 2px 72% no-repeat;
  transform: none;
}

.risk { background: linear-gradient(180deg, #f5f5f5, #dfdfdf); }
.risk__content { display: grid; grid-template-columns: 1.7fr .9fr; gap: 38px; align-items: center; }
.risk__cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.risk-card { margin: 0; text-align: center; }
.risk-card img { width: 100%; aspect-ratio: 1.35; object-fit: cover; border-radius: 8px; }
.risk-card p { margin: 10px 0 0; font-size: 13px; font-weight: 700; line-height: 1.45; }
.risk__text p { font-size: 15px; margin: 0 0 14px;}

.points__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.point-card { position: relative; padding: 32px 18px 20px; border: 1px solid #d7e2d2; border-radius: 14px; background: linear-gradient(180deg, #fff, #f7fbf5); text-align: center; }
.point-card__num { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); width: 50px; height: 50px; display: grid; place-items: center; color: #fff; background: #39a102; border-radius: 50%; font-size: 20px; font-weight: 800; }
.point-card h3 { margin: 1em 0; color: var(--main); font-size: 20px; line-height: 1.35; }
.point-card p { margin: 0; text-align: left; font-size: 14px; }
.points__notice {
  margin: 24px auto 0;
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}

.center-link { margin-top: 30px; text-align: center; }
.points__lead { margin: 28px auto 0; text-align: center; font-weight: 700;}
.points__lead strong { background: linear-gradient(transparent 62%, #fff4a7 62%); }

.comparison { background: #f5f5f5; }
.comparison__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.compare-card { overflow: hidden; border: 1px solid #979797; border-radius: 14px; background: #fff; }
.compare-card h3 { margin: 0; padding: 14px 18px; text-align: center; font-size: 19px; }

.compare-card--normal h3 { background: #cdcdcd; }
.compare-card--insured { border-color: #39a102; }
.compare-card--insured h3 { color: #fff; background: #39a102; }
.compare-card__body { display: grid; grid-template-columns: 1fr 1fr; align-items: center; padding: 1em; }
.compare-card__body img {
    max-width: 100%;
    margin-inline: auto;
}
.compare-card__body p { margin: 0; padding: 0 0 0 1.25em; font-size: 15px }
.compare-card__body ul { margin: 0; padding-left: 1.25em; font-weight: 800; }
.compare-card__body li { 
  margin: 10px 0; 
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.5em;
}

.compare-card__body li::before {
  content: "";
  position: absolute;
  left: 0.2em;
  top: 0.3em;
  width: 0.4em;
  height: 0.8em;
  border-right: 2px solid #39a102;
  border-bottom: 2px solid #39a102;
  transform: rotate(45deg);
}

.products { padding: 58px 0 90px; background: #39a102; }
.products__header { color: #fff; text-align: center; }
.products__header h2 { margin: 0.5em 0; font-size: clamp(24px, 3vw, 40px); line-height: 1.3; }
.products__header h2 span { font-size: .7em; }
.products__header p { margin: 0.5em 0; }

.product-card__vehicles { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 8px; padding: 1em; justify-content: center; }
.vehicle-tag { padding: 5px 9px; border-radius: 999px; background: #f1f1f1; font-size: 13px; }

.product-card__btn_area {
	display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
    width: 100%;
	gap: 15px;
}

.product-card__btn { display: flex; justify-content: center; width: 100%;}

.product-card__btn a { 
    width: 100%;
	padding: 1em;
    background-color: var(--main);
    color: #FFF;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
    border-radius: 5px;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    user-select: none;
	font-weight: 700;
 }

.products__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 2em 0;
}

.product-card {
width: calc(50% - 10px);
display: -webkit-box;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
flex-direction: column;
flex-wrap: wrap;
background-size: 160% auto;
background-position: top;
background-repeat: no-repeat;
background-color: #fff;
box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
box-sizing: border-box;
padding: 20px;
margin: 20px 0;
align-items: center;
position: relative;
border-radius: 10px;
overflow: hidden;
justify-content: space-evenly
}

.bg_summer{background-image: url("/PC/ja/asset/img/nw/feature/tire_insurance/2607/bg_s.webp");}
.bg_winter{background-image: url("/PC/ja/asset/img/nw/feature/tire_insurance/2607/bg_w.webp");}
.bg_as{background-image: url("/PC/ja/asset/img/nw/feature/tire_insurance/2607/bg_as.webp");}

.product_logo {width: 46%;}

.product_wrapper {
	width: 100%;
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-align: end;
	align-items: flex-end;
}

.product_spec {
    background-color: #39a102;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    text-align: center;
    font-weight: 600;
    padding: 6px;
    margin: 6px auto;
}

.summer {background-color: #fe523f;}
.winter {background-color: #1877f2;} 
.as {background-color: #00b900;}

.product_name {
display: block;
width: 100%;
margin: 0;
}

.product_name h3{
text-align: center;
font-size: 22px;
font-weight: bold;
line-height: 1.3;
text-shadow: 0 0 2px #ffffff, 0 0 4px #ffffff, 0 0 13px #ffffff;
margin-bottom: 0.25em;
}

.product_name h2 {
text-align: center;
font-size: 18px;
text-shadow: 0 0 2px #ffffff, 0 0 4px #ffffff, 0 0 13px #ffffff;
}

.product_name h2 span{
display: inline-block;
}

.product_img {
    height: auto;
    display: block;
    margin: 1em auto;
}

.product_img img{
	height: 320px;
    width: 360px;
    object-fit: cover;
    object-position: top;
}

.product_info_spec_hd {
 display: block;
 width: 100%;
 max-width: 465px;
 color: var(--main);
 font-size: 18px;
 text-align: center;
 font-weight: 600;
 line-height: 1.5;
 margin: 10px 0;
}

.product_info_spec_hd span{
 display: inline-block;

}
.product_info_spec_text {
 display: block;
 width: 100%;
 max-width: 460px;
 font-size: 14px;
 line-height: 1.8;
 text-align: justify;
 border-bottom: 1px solid #ccc;
 text-align: center;
 padding: 0 0 1em;
}

.product-card--new::after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    display: block;
    width: 110px;
    height: 104px;
    background-image: url(/PC/ja/asset/img/nw/feature/tire_insurance/2607/new_icon.webp);
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin: 0 auto;
}

@media (max-width: 1024px) {
  .hero { 
	border-top-width: 8px; 
    background-image: linear-gradient(0deg, #fffcd7 77%, #cee6a2 77%, #9ccf6d 79%, #39a102 79%);
}
  .hero__inner { min-height: auto; display: block; }
  .hero__main { padding: 0}
  .hero__copy img {
        width: 70%;
        max-height: none;
        object-fit: contain;
        margin: 0 auto;
    }
  .hero__lead { margin: 0 12em; font-size: 13px; }
  .hero__lead br { display: none; }
  .hero__result {
    width: 100%; 
    min-height: 0;
    margin: 0 auto;
    padding: 16px 18px 20px;
    display: grid;
    grid-template-columns: 62px 1fr;
    grid-template-areas:
      "icon label"
      "icon number"
      "icon note"
      "text text";
    align-items: center;
    gap: 3px 14px;
    text-align: left;
  }
  .hero__result::after { bottom: -22px; height: 44px; }
  .hero__result::after { display: none; }
  .hero__result-icon { grid-area: icon; width: 62px; height: 62px; margin: 0; border-width: 9px; }
  .hero__result-icon span { font-size: 26px; }
  .hero__result-label { grid-area: label; margin: 0; font-size: 14px; }
  .hero__result-number { grid-area: number; margin: 0 auto; }
  .hero__result-number strong { font-size: 35px; }
  .hero__result-note { grid-area: note; margin: 4px 0 0; padding-top: 4px; font-size: 10px; text-align: end;}
  .hero__result-text { grid-area: text; margin: 12px 0 0; text-align: center; font-size: 14px; }
  .hero__result-text br { display: none; }
	
  .summary__grid { grid-template-columns: repeat(5, 1fr); }
  .risk__content { grid-template-columns: 1fr; }
  .points__grid { grid-template-columns: repeat(2, 1fr); }
  .point-card {min-height: auto;}
  .points__grid > :nth-child(5):last-child {
	grid-column: 1 / -1;
        justify-self: stretch;
  }  
  .point-card p {text-align: center;}
  .compare-card__body img {max-width: 70%;  margin-inline: auto; }
  .compare-card__body p {
	  padding: 0 0 0 1.25em;
      text-align: left;
  }
	
  .product_img img {
    height: 240px;
    width: 270px;
    object-fit: cover;
    object-position: top;
}
  }
@media (max-width: 768px) {
  .sp {display: block; }
  .pc {display: none; }
  .hero { 
	border-top-width: 8px; 
    background-image: linear-gradient(0deg, #fffcd7 82%, #cee6a2 82%, #9ccf6d 84%, #39a102 84%);
	}
  .hero__lead { 
	    margin: 0 auto;
        font-size: 14px;
        padding: 1.5em;}
	
  .section-inner, .section-inner--wide { width: min(100% - 24px, 680px); }
  .section-block { padding: 44px 0; }

  .summary{margin-top: 1.5em}
  .summary__grid { grid-template-columns: repeat(2, 1fr); }
  .summary__grid > :nth-child(5):last-child {
    grid-column: 1 / -1;
    justify-self: stretch;
  }
  .summary-card{min-height: 60px; padding: 8px;}
  .summary-card:nth-child(3), .summary-card:nth-child(5) { border-left: 0; }
  .summary-card:nth-child(n+3) { border-top: 1px solid #d4d4d4; }
  .summary-card:nth-child(4) { border-left: 1px solid #d4d4d4; }
  .cta-row { flex-direction: column; gap: 14px; }
  .btn--primary { width: 100%; min-width: 0; }
  .risk__cards { grid-template-columns: repeat(2, 1fr); }
  .risk__text p {margin: 0 1em;}
  .points__grid { grid-template-columns: 1fr; gap: 1.5em;}
  .points__lead { padding: 1em;}
  .point-card {min-height: auto;}
  .point-card:last-child { grid-column: auto; }
  .comparison__grid { grid-template-columns: 1fr; }
  .compare-card__body { grid-template-columns: 1fr; }
  .compare-card__body p {padding: 1.25em;}
  .compare-card__body ul {
	  padding: 1.25em 0 0 0;
      margin: 0 auto;;}
  .products__header p {margin: 0.5em;}
  .product-card {width: 100%}
  .product_img img {
    height: 230px;
    width: 260px;
} 
  .product-card__vehicles, .product-card__btn { grid-column: auto; }

.product-card__btn a {
  gap: 14px;
}

  .btn,
  .product-card__btn a {
    gap: 12px;
  }

  .btn::after,
  .product-card__btn a::after {
    width: 0.5em;
    height: 0.5em;
  }
  }
@media (max-width: 425px) {
  .hero__copy img { width: 100%; max-height: none; object-fit: contain; }
  }
	
/* =========================================================
   商品選択モーダル
========================================================= */

/* モーダル表示中の背景スクロールを停止 */
body.is-productmodal-open {
  overflow: hidden;
}

/* モーダル全体 */
.product-select-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 24px;

  visibility: hidden;
  opacity: 0;
  pointer-events: none;

  transition:
    visibility 0.25s ease,
    opacity 0.25s ease;
}

/* モーダル表示時 */
.product-select-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

/* 背景オーバーレイ */
.product-select-modal__overlay {
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.68);
  cursor: pointer;
}

/* モーダル本体 */
.product-select-modal__dialog {
  position: relative;
  z-index: 1;

  width: min(620px, 100%);
  max-height: calc(100vh - 48px);
  max-height: calc(100dvh - 48px);

  margin: 0;
  padding: 34px;

  overflow-y: auto;
  overscroll-behavior: contain;

  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.3);

  outline: none;

  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s ease;
}

/* モーダル表示時のアニメーション */
.product-select-modal.is-open
.product-select-modal__dialog {
  transform: translateY(0) scale(1);
}

/* =========================================================
   閉じるボタン
========================================================= */

.product-select-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;

  width: 42px;
  height: 42px;
  padding: 0;

  border: 0;
  border-radius: 50%;

  background: #f1f1f1;
  cursor: pointer;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.product-select-modal__close::before,
.product-select-modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;

  width: 20px;
  height: 2px;

  background: #333;
}

.product-select-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.product-select-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.product-select-modal__close:hover,
.product-select-modal__close:focus-visible {
  background: #e4e4e4;
  transform: rotate(4deg);
}

.product-select-modal__close:focus-visible {
  outline: 3px solid rgba(57, 161, 2, 0.25);
  outline-offset: 2px;
}

/* =========================================================
   モーダル見出し
========================================================= */

.product-select-modal__header {
  padding: 0 46px;
  text-align: center;
}

.product-select-modal__title {
  margin: 0;

  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.35;
}

.product-select-modal__product-name {
  margin: 8px 0 0;
  color: var(--main);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

/* =========================================================
   商品画像
========================================================= */

.product-select-modal__product {
  display: flex;
  justify-content: center;

  margin: 20px 0 18px;
}

.product-select-modal__image {
  width: min(240px, 58vw);
  height: 150px;

  object-fit: contain;
}

/* =========================================================
   選択肢
========================================================= */

.product-select-modal__choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.product-select-modal__choice {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

  min-height: 94px;
  padding: 18px 48px 18px 20px;

  border: 2px solid var(--main);
  border-radius: 10px;

  color: var(--main);
  background: #fff;

  text-decoration: none;

  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

/* 選択肢の矢印 */
.product-select-modal__choice::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;

  width: 10px;
  height: 10px;

  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;

  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.2s ease;
}

.product-select-modal__choice:hover,
.product-select-modal__choice:focus-visible {
  color: #fff;
  background: var(--main);

  box-shadow: 0 8px 18px rgba(57, 161, 2, 0.2);
  transform: translateY(-2px);
}

.product-select-modal__choice:hover::after,
.product-select-modal__choice:focus-visible::after {
  transform: translate(4px, -50%) rotate(45deg);
}

.product-select-modal__choice:focus-visible {
  outline: 3px solid rgba(57, 161, 2, 0.25);
  outline-offset: 2px;
}

.product-select-modal__choice-label {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.4;
}

/* =========================================================
   注釈
========================================================= */

/* =========================================================
   スマートフォン
========================================================= */

@media (max-width: 768px) {
  .product-select-modal {
    align-items: center;
    justify-content: center;
    padding: 3em 16px 16px 16px;
  }

  .product-select-modal__dialog {
    width: 100%;
    max-height: calc(100vh - 32px);
    padding: 28px 18px 22px;
    border-radius: 14px;

    transform: translateY(16px) scale(0.98);
  }

  .product-select-modal.is-open
  .product-select-modal__dialog {
    transform: translateY(0) scale(1);
  }

  .product-select-modal__close {
    top: 10px;
    right: 10px;

    width: 38px;
    height: 38px;
  }

  .product-select-modal__close::before,
  .product-select-modal__close::after {
    width: 18px;
  }

  .product-select-modal__header {
    padding: 0 34px;
  }

  .product-select-modal__title {
    font-size: 21px;
  }

  .product-select-modal__product-name {
    font-size: 13px;
  }

  .product-select-modal__product {
    margin: 14px 0;
  }

  .product-select-modal__image {
    width: min(240px, 62vw);
   height: 140px;
  }

  .product-select-modal__choices {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .product-select-modal__choice {
      min-height: 47px;
      padding: 0 44px 0 16px;
    }

  .product-select-modal__choice::after {
    right: 18px;

    width: 9px;
    height: 9px;
  }

  .product-select-modal__choice-label {
    font-size: 15px;
  }

  .product-select-modal__choice-sub {
    font-size: 11px;
  }
}

/* =========================================================
   高さが低い画面
========================================================= */

@media (max-height: 600px) {
  .product-select-modal {
    padding: 12px;
  }

  .product-select-modal__dialog {
    max-height: calc(100vh - 24px);
    max-height: calc(100dvh - 24px);
    padding-top: 24px;
    padding-bottom: 20px;
  }

  .product-select-modal__product {
    margin: 10px 0;
  }

  .product-select-modal__image {
    height: 90px;
  }

  .product-select-modal__choice {
    min-height: 54px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

/* =========================================================
   アニメーションを減らす設定
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .product-select-modal,
  .product-select-modal__dialog,
  .product-select-modal__close,
  .product-select-modal__choice,
  .product-select-modal__choice::after {
    transition: none;
  }
}
