@charset "UTF-8";
/* ///////////////////////////////////////////
  value.scss
  変数・mixinに関する設定
/////////////////////////////////////////// */
/*====================================
  カラー
=====================================*/
/*====================================
  ランドセルカラーバリエーション
====================================*/
/*====================================
  画像
=====================================*/
/*====================================
  font
=====================================*/
/*====================================
  レイアウト・パーツ
=====================================*/
/* ======================
波形（区切り）
====================== */
/* ======================
背景
====================== */
/* /////////////////////////////////
  Media Queries
///////////////////////////////// */
/*====================================
  要素のサイズセット
=====================================*/
main[class*=page--item] .item__order {
  display: grid;
  max-width: 1280px;
  margin-inline: auto;
  position: relative;
}
@media only screen and (max-width: 834px) {
  main[class*=page--item] .item__order {
    padding-inline: 20px;
  }
}
@media print, screen and (min-width: 835px) {
  main[class*=page--item] .item__order {
    padding-inline: 80px;
  }
}
@media only screen and (max-width: 834px) {
  main[class*=page--item] .item__order {
    padding-bottom: 40px;
  }
}
@media print, screen and (min-width: 835px) {
  main[class*=page--item] .item__order {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 834px) {
  main[class*=page--item] .item__order {
    grid-template: "head" max-content "slider" 1fr "form" auto/auto;
    gap: 20px;
  }
}
@media only screen and (min-width: 835px) and (max-width: 1219px) {
  main[class*=page--item] .item__order {
    grid-template: "slider head" 1fr "slider form" auto/calc(50% - 20px) calc(50% - 20px);
    gap: 40px;
  }
}
@media print, screen and (min-width: 1220px) {
  main[class*=page--item] .item__order {
    grid-template: "slider head" 1fr "slider form" auto/calc(50% - 40px) calc(50% - 40px);
    gap: 40px 80px;
  }
}
main[class*=page--item] .item__order .item__order__head {
  grid-area: head;
  display: grid;
  position: sticky;
  background: #ffffff;
  z-index: 900;
}
@media only screen and (max-width: 834px) {
  main[class*=page--item] .item__order .item__order__head {
    top: var(--header-height-sp);
    grid-template: "ttl" auto "type" auto "data" auto/auto 1fr;
    gap: 5px;
  }
}
@media only screen and (min-width: 835px) and (max-width: 1219px) {
  main[class*=page--item] .item__order .item__order__head {
    top: var(--header-height);
    grid-template: "ttl ttl" auto "btn type" auto "data data" auto/auto 1fr;
    column-gap: 8px;
  }
}
@media print, screen and (min-width: 1220px) {
  main[class*=page--item] .item__order .item__order__head {
    top: var(--header-height);
    grid-template: "ttl btn type" auto "data data data" auto/auto auto 1fr;
    column-gap: 8px;
  }
}
main[class*=page--item] .item__order .item__order__head .order-head__ttl {
  grid-area: ttl;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 834px) {
  main[class*=page--item] .item__order .item__order__head .order-head__ttl {
    font-size: 1.8rem;
  }
}
@media print, screen and (min-width: 835px) {
  main[class*=page--item] .item__order .item__order__head .order-head__ttl {
    font-size: 2.4rem;
  }
}
main[class*=page--item] .item__order .item__order__head .order-head__ttl .type {
  margin-left: 0.5em;
  border-radius: 4px;
  padding: 0.25em 0.5em;
  line-height: 1.2;
}
@media only screen and (max-width: 834px) {
  main[class*=page--item] .item__order .item__order__head .order-head__ttl .type {
    font-size: 1.4rem;
  }
}
@media print, screen and (min-width: 835px) {
  main[class*=page--item] .item__order .item__order__head .order-head__ttl .type {
    font-size: 1.6rem;
  }
}
main[class*=page--item] .item__order .item__order__head .order-head__ttl .type--y {
  color: #ffffff;
  background: #91baff;
}
main[class*=page--item] .item__order .item__order__head .order-head__ttl .type--m {
  color: #ffffff;
  background: #c08abd;
}
main[class*=page--item] .item__order .item__order__head .order-head__data {
  grid-area: data;
  display: grid;
  grid-template: "price spec" auto/max-content 1fr;
}
@media only screen and (max-width: 834px) {
  main[class*=page--item] .item__order .item__order__head .order-head__data {
    gap: 10px;
  }
}
@media print, screen and (min-width: 835px) {
  main[class*=page--item] .item__order .item__order__head .order-head__data {
    gap: 20px;
  }
}
main[class*=page--item] .item__order .item__order__head .order-head__data .price {
  grid-area: price;
  font-size: 1.2rem;
}
main[class*=page--item] .item__order .item__order__head .order-head__data .price .big {
  font-weight: bold;
}
@media only screen and (max-width: 834px) {
  main[class*=page--item] .item__order .item__order__head .order-head__data .price .big {
    font-size: 1.8rem;
  }
}
@media print, screen and (min-width: 835px) {
  main[class*=page--item] .item__order .item__order__head .order-head__data .price .big {
    font-size: 2rem;
  }
}
main[class*=page--item] .item__order .item__order__head .order-head__data .spec {
  grid-area: spec;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media only screen and (max-width: 834px) {
  main[class*=page--item] .item__order .item__order__head .order-head__data .spec {
    overflow: scroll;
  }
}
@media print, screen and (min-width: 835px) {
  main[class*=page--item] .item__order .item__order__head .order-head__data .spec {
    flex-wrap: wrap;
  }
}
main[class*=page--item] .item__order .item__order__head .order-head__data .spec .spec__tag {
  display: inline-block;
  font-size: 1.1rem;
  background: #f5f5f5;
}
@media only screen and (max-width: 834px) {
  main[class*=page--item] .item__order .item__order__head .order-head__data .spec .spec__tag {
    word-break: keep-all;
    white-space: nowrap;
  }
}
main[class*=page--item] .item__order .item__order__head .order-head__data .spec .spec__tag .cow,
main[class*=page--item] .item__order .item__order__head .order-head__data .spec .spec__tag .cla,
main[class*=page--item] .item__order .item__order__head .order-head__data .spec .spec__tag .cord,
main[class*=page--item] .item__order .item__order__head .order-head__data .spec .spec__tag .yama,
main[class*=page--item] .item__order .item__order__head .order-head__data .spec .spec__tag .cube,
main[class*=page--item] .item__order .item__order__head .order-head__data .spec .spec__tag .pika {
  position: relative;
  display: inline-block;
  border-radius: 4px;
  padding: 0.25em 0.5em 0.25em calc(0.5em + 18px);
}
main[class*=page--item] .item__order .item__order__head .order-head__data .spec .spec__tag .cow::before,
main[class*=page--item] .item__order .item__order__head .order-head__data .spec .spec__tag .cla::before,
main[class*=page--item] .item__order .item__order__head .order-head__data .spec .spec__tag .cord::before,
main[class*=page--item] .item__order .item__order__head .order-head__data .spec .spec__tag .yama::before,
main[class*=page--item] .item__order .item__order__head .order-head__data .spec .spec__tag .cube::before,
main[class*=page--item] .item__order .item__order__head .order-head__data .spec .spec__tag .pika::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.25em;
  translate: 0 -50%;
  width: 18px;
  aspect-ratio: 1/1;
  background-size: contain;
}
main[class*=page--item] .item__order .item__order__head .order-head__data .spec .spec__tag .cow::before {
  background-image: url(./../images/common/icon_tag-cow.svg);
}
main[class*=page--item] .item__order .item__order__head .order-head__data .spec .spec__tag .cla::before {
  background-image: url(./../images/common/icon_tag-cla.svg);
}
main[class*=page--item] .item__order .item__order__head .order-head__data .spec .spec__tag .cord::before {
  background-image: url(./../images/common/icon_tag-cord.svg);
}
main[class*=page--item] .item__order .item__order__head .order-head__data .spec .spec__tag .yama::before {
  background-image: url(./../images/common/icon_tag-yamagata.svg);
}
main[class*=page--item] .item__order .item__order__head .order-head__data .spec .spec__tag .cube::before {
  background-image: url(./../images/common/icon_tag-cube.svg);
}
main[class*=page--item] .item__order .item__order__head .order-head__data .spec .spec__tag .pika::before {
  background-image: url(./../images/common/icon_tag-yumepika.svg);
}
main[class*=page--item] .item__order .item__order__head .order-head__btn {
  grid-area: btn;
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  place-content: center start;
}
main[class*=page--item] .item__order .item__order__head .popover-btn {
  position: relative;
  padding: 4px 24px 4px 0;
  color: #91baff;
  font-size: 1.1rem;
  filter: brightness(0.7);
  text-decoration: underline #c2e4ff;
}
main[class*=page--item] .item__order .item__order__head .popover-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  width: 20px;
  height: 20px;
  background: url(./../images/common/icon_info.svg) center no-repeat;
}
main[class*=page--item] .item__order .item__order__head .popover-btn:hover {
  filter: brightness(1);
}
main[class*=page--item] .item__order .item__order__head .order-head__type {
  grid-area: type;
  position: relative;
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  column-gap: 4px;
}
main[class*=page--item] .item__order .item__order__head .order-head__type .type-ttl {
  position: relative;
  padding-right: 30px;
  font-size: 1.4rem;
  text-decoration: #707070 wavy underline;
  word-break: keep-all;
}
main[class*=page--item] .item__order .item__order__head .order-head__type .type-popover-btn {
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  padding: 0;
}
main[class*=page--item] .item__order .item__order__head .order-head__type .type-item {
  display: inline-block;
  border: 1px dashed #707070;
  border-radius: 50%;
  width: calc(1lh + 2px);
  aspect-ratio: 1/1;
  color: #707070;
  word-break: keep-all;
  text-align: center;
}
main[class*=page--item] .item__order .item__order__head .order-head__type .type-item:has(a) {
  cursor: pointer;
  opacity: 0.7;
}
main[class*=page--item] .item__order .item__order__head .order-head__type .type-item:has(a):hover {
  opacity: 1;
}
main[class*=page--item] .item__order .item__order__head .order-head__type .type-item--active {
  position: relative;
  border: 1px solid var(--type-color);
  background: var(--type-color);
  color: #ffffff;
}
main[class*=page--item] .item__order .item__order__head .order-head__type .type-item--active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  border: 1px solid var(--type-color);
  border-radius: 50%;
}
main[class*=page--item] .item__order .item__order__head .order-head__type .type-item--y {
  --type-color: #91baff;
  border: 1px solid var(--type-color);
  background: var(--type-color);
  color: #ffffff;
}
main[class*=page--item] .item__order .item__order__head .order-head__type .type-item--m {
  --type-color: #c08abd;
  border: 1px solid var(--type-color);
  background: var(--type-color);
  color: #ffffff;
}
main[class*=page--item] .item__order .item__order__head .order-head__type .type-link {
  display: block;
}
main[class*=page--item] .item__order .item__order__head .order-head__type .type-hint {
  position: absolute;
  bottom: 0;
  left: 0;
  translate: 0 100%;
  border: none;
  border-radius: 4px;
  padding: 10px;
  background: #444444;
  color: #ffffff;
  line-height: 1.2;
  box-shadow: 0 2px 4px rgba(68, 68, 68, 0.16);
  z-index: 100;
}
main[class*=page--item] .item__order .item__order__head .order-head__type .type-hint::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 10px;
  translate: 0 -100%;
  height: 8.6602540378px;
  width: 10px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: #444444;
  line-height: 1.2;
}
main[class*=page--item] .item__order .item__order__head .order-head__type .type-hint__list {
  display: grid;
  row-gap: 5px;
  margin-top: 10px;
}
main[class*=page--item] .item__order .item__order__head .order-head__type .type-hint__item-group {
  display: grid;
  grid-template-columns: max-content 1fr;
}
main[class*=page--item] .item__order .item__order__head .order-head__type .type-hint__item-group dt + dd {
  position: relative;
  padding-left: 1em;
}
main[class*=page--item] .item__order .item__order__head .order-head__type .type-hint__item-group dt + dd::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.3em;
  translate: 0 -50%;
  width: 0.4em;
  aspect-ratio: 1/0.8;
  border-block: 1px solid #ffffff;
}
main[class*=page--item] .item__order .item__order__head .order-head__type .type-hint__close-btn {
  position: absolute;
  top: 4px;
  right: 4px;
  border: none;
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 1;
}
main[class*=page--item] .item__order .item__order__slide {
  position: relative;
  grid-area: slider;
  display: grid;
  grid-template-columns: minmax(0, 540px);
}
@media only screen and (max-width: 834px) {
  main[class*=page--item] .item__order .item__order__slide {
    place-content: flex-start center;
  }
}
@media print, screen and (min-width: 835px) {
  main[class*=page--item] .item__order .item__order__slide {
    grid-row: span 2;
  }
}
main[class*=page--item] .item__order .item__order__slide .order-slider {
  height: max-content;
}
@media print, screen and (min-width: 835px) {
  main[class*=page--item] .item__order .item__order__slide .order-slider {
    position: sticky;
    top: var(--header-height);
  }
}
main[class*=page--item] .item__order .item__order__slide .order-slider .order-slider__wrap {
  z-index: 100;
}
@media only screen and (max-width: 834px) {
  main[class*=page--item] .item__order .item__order__slide .order-slider .order-slider__wrap {
    width: 100%;
  }
}
main[class*=page--item] .item__order .item__order__slide .order-slider .order-slider__wrap .main {
  width: 100%;
}
@media only screen and (max-width: 834px) {
  main[class*=page--item] .item__order .item__order__slide .order-slider .order-slider__wrap .main {
    max-width: 100%;
  }
}
@media print, screen and (min-width: 835px) {
  main[class*=page--item] .item__order .item__order__slide .order-slider .order-slider__wrap .main {
    aspect-ratio: 1/1;
  }
}
main[class*=page--item] .item__order .item__order__slide .order-slider .order-slider__wrap .main .order-slider__slide {
  width: 100%;
  height: 100%;
}
main[class*=page--item] .item__order .item__order__slide .order-slider .order-slider__wrap .main .item {
  position: relative;
  padding: 20px 40px 60px;
}
main[class*=page--item] .item__order .item__order__slide .order-slider .order-slider__wrap .main .caption {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  height: 40px;
  text-align: center;
  line-height: 1.2;
}
main[class*=page--item] .item__order .item__order__slide .order-slider .order-slider__wrap .thumb {
  margin-top: 10px;
}
main[class*=page--item] .item__order .item__order__slide .order-slider .order-slider__wrap .thumb .slick-track {
  display: flex;
  gap: 4px;
}
main[class*=page--item] .item__order .item__order__slide .order-slider .order-slider__wrap .thumb.fix .slick-track {
  transform: unset !important;
}
main[class*=page--item] .item__order .item__order__slide .order-slider .order-slider__wrap .thumb .slick-current {
  position: relative;
}
main[class*=page--item] .item__order .item__order__slide .order-slider .order-slider__wrap .thumb .slick-current::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 3px solid #d3befa;
}
main[class*=page--item] .item__order .item__order__slide .order-slider .order-slider__wrap .thumb .slick-track {
  margin-left: 0;
}
main[class*=page--item] .item__order .item__order__slide .slide:has(.slide-caption) {
  padding-inline: 30px;
  aspect-ratio: 1/1;
}
main[class*=page--item] .item__order .item__order__slide .slide:has(.slide-caption) .slide-caption {
  text-align: center;
}
main[class*=page--item] .item__order .item__order__form {
  grid-area: form;
  position: relative;
}
main[class*=page--item] .item__order .item__order__form > form > table {
  display: grid;
  grid-template: "color" auto "op" auto "wrap" auto/1fr;
  gap: 20px 80px;
}
main[class*=page--item] .item__order .item__order__form > form > table > tbody {
  display: contents;
}
main[class*=page--item] .item__order .item__order__form tr:has(select[name=selection01]) {
  grid-area: wrap;
}
main[class*=page--item] .item__order .item__order__form tr:has(select[name=selection01]) > td {
  display: flex;
  flex-direction: column;
}
main[class*=page--item] .item__order .item__order__form tr:has(select[name=selection01]) > td select {
  height: 40px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 2px solid #707070;
  padding-inline: 0.5em;
}
main[class*=page--item] .item__order .item__order__form tr:has(select[name=selection01]) > td br {
  display: contents;
}
main[class*=page--item] .item__order .item__order__form tr:has([name*=option]) {
  grid-area: op;
}
main[class*=page--item] .item__order .item__order__form tr:has([name*=option]) > td {
  display: flex;
  flex-direction: column;
}
main[class*=page--item] .item__order .item__order__form tr:has([name*=option]) > td select,
main[class*=page--item] .item__order .item__order__form tr:has([name*=option]) > td input {
  width: 100%;
  height: 40px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 2px solid #707070;
  padding-inline: 0.5em;
  font-size: 1.6rem;
}
@media only screen and (max-width: 834px) {
  main[class*=page--item] .item__order .item__order__form tr:has([name*=option]) > td select::placeholder,
  main[class*=page--item] .item__order .item__order__form tr:has([name*=option]) > td input::placeholder {
    font-size: 1.4rem;
  }
}
main[class*=page--item] .item__order .item__order__form tr:has([name*=option]) > td br {
  display: contents;
}
main[class*=page--item] .item__order .item__order__form .option01,
main[class*=page--item] .item__order .item__order__form .option03,
main[class*=page--item] .item__order .item__order__form .option04,
main[class*=page--item] .item__order .item__order__form .option05,
main[class*=page--item] .item__order .item__order__form .selection01 {
  position: relative;
}
main[class*=page--item] .item__order .item__order__form .option01::before,
main[class*=page--item] .item__order .item__order__form .option03::before,
main[class*=page--item] .item__order .item__order__form .option04::before,
main[class*=page--item] .item__order .item__order__form .option05::before,
main[class*=page--item] .item__order .item__order__form .selection01::before {
  content: "必須";
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  width: 40px;
  height: 80%;
  border-radius: 4px;
  background: #ffafcc;
  color: #ffffff;
  font-size: 1.3rem;
  text-align: center;
}
main[class*=page--item] .item__order .item__order__form .close {
  display: none;
}
main[class*=page--item] .item__order .item__order__form :where(input[name=option02], .option02) {
  display: none;
}
main[class*=page--item] .item__order .item__order__form :where(input[name=option02], .option02).active {
  display: block;
}
main[class*=page--item] .item__order .item__order__form .val_error {
  display: block;
  position: relative;
  color: #ffffff;
  background: #df2c37;
  margin-bottom: 0.5em;
  padding-inline: 1em;
}
main[class*=page--item] .item__order .item__order__form .val_error::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 20px;
  translate: 0 -100%;
  height: 12.124355653px;
  width: 8px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: #df2c37;
}
main[class*=page--item] .item__order .item__order__form tr:has([name=variation]) {
  grid-area: color;
  display: grid;
}
main[class*=page--item] .item__order .item__order__form tr:has([name=variation]) > td > table {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border: none;
  width: 100%;
}
@media only screen and (max-width: 834px) {
  main[class*=page--item] .item__order .item__order__form tr:has([name=variation]) > td > table {
    gap: 20px 10px;
  }
}
@media print, screen and (min-width: 835px) {
  main[class*=page--item] .item__order .item__order__form tr:has([name=variation]) > td > table {
    gap: 40px 20px;
  }
}
main[class*=page--item] .item__order .item__order__form tr:has([name=variation]) > td > table td {
  border: none;
}
main[class*=page--item] .item__order .item__order__form tr:has([name=variation]) > td > table > tbody {
  display: contents;
}
main[class*=page--item] .item__order .item__order__form tr:has([name=variation]) > td > table > tbody tr {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  text-align: center;
}
main[class*=page--item] .item__order .item__order__form tr:has([name=variation]) > td > table > tbody tr input[name=variation] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 32px; /* 大きさ調整 */
  height: 32px;
  border: 2px solid #333; /* 枠線の色 */
  border-radius: 50%; /* 丸くする */
  display: inline-block;
  position: relative;
  cursor: pointer;
}
main[class*=page--item] .item__order .item__order__form tr:has([name=variation]) > td > table > tbody tr input[name=variation]:checked::before {
  content: "";
  width: 18px;
  height: 18px;
  background-color: #333; /* 内側の色 */
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
main[class*=page--item] .item__order .item__order__form tr:has([name=variation]) > td > table > tbody .few {
  position: relative;
}
main[class*=page--item] .item__order .item__order__form tr:has([name=variation]) > td > table > tbody .few::after {
  content: "残り\aわずか";
  position: absolute;
  top: -20px;
  right: -10px;
  width: max-content;
  border-radius: 4px 4px 4px 0;
  background: #fff8f2;
  padding: 0.5em 1rem;
  font-size: 1.1rem;
  line-height: 1.2;
  white-space: pre-wrap;
  pointer-events: none;
  z-index: 0;
}
main[class*=page--item] .item__order .item__order__form tr:has([name=variation]) > td > table > tbody .few label {
  z-index: 10;
}
main[class*=page--item] .item__order .item__order__form tr:has([name=variation]) > td > table > tbody .sold {
  position: relative;
}
main[class*=page--item] .item__order .item__order__form tr:has([name=variation]) > td > table > tbody .sold::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  rotate: -45deg;
  width: 100%;
  height: 1px;
  background-color: #444444;
  pointer-events: none;
  z-index: 10;
}
main[class*=page--item] .item__order .item__order__form tr:has([name=variation]) > td > table > tbody .sold::after {
  content: "完売";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  display: grid;
  place-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #efefef;
  font-size: 1.1rem;
  white-space: pre-wrap;
  pointer-events: none;
  z-index: 10;
}
main[class*=page--item] .item__order .item__order__form tr:has([name=variation]) > td > table > tbody .sold label {
  opacity: 0.7;
}
main[class*=page--item] .item__order .item__order__form tr:has([name=variation]) > td > table > tbody tr:first-child {
  width: 100%;
  font-size: 2.2rem;
}
main[class*=page--item] .item__order .item__order__form tr:has([name=variation]) > td > table > tbody tr:nth-child(n+2) {
  grid-column: span 1;
}
@media only screen and (max-width: 834px) {
  main[class*=page--item] .item__order .item__order__form tr:has([name=variation]) > td > table > tbody tr:nth-child(n+2) {
    width: 96px;
    font-size: 1.3rem;
  }
}
@media print, screen and (min-width: 835px) {
  main[class*=page--item] .item__order .item__order__form tr:has([name=variation]) > td > table > tbody tr:nth-child(n+2) {
    width: 140px;
    padding: 10px;
  }
}
main[class*=page--item] .item__order .item__order__form tr:has([name=variation]) > td > table > tbody tr:nth-child(n+2):hover {
  opacity: 0.7;
}
main[class*=page--item] .item__order .item__order__form tr:has([name=variation]) > td > table > tbody tr:nth-child(n+2) label {
  line-height: 1.2;
  cursor: pointer;
}
main[class*=page--item] .item__order .item__order__form tr:has([name=variation]) > td > table > tbody tr:nth-child(n+2) .min {
  display: inline-block;
  font-size: 1.1rem;
  letter-spacing: 0;
}
main[class*=page--item] .item__order .item__order__form tr:has([name=variation]) > td > table > tbody tr:nth-child(n+2) .block {
  display: block;
}
main[class*=page--item] .item__order .item__order__form tr:has([name=variation]) > td > table > tbody tr:nth-child(n+2):has(input[type=radio]:checked) {
  outline: 4px solid var(--bd-color);
  border-radius: 15px;
  translate: 0 -10px;
}
main[class*=page--item] .item__order .item__order__form tr:has([name=variation]) > td > table > tbody tr:nth-child(n+2) input[type=radio] {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
main[class*=page--item] .item__order .item__order__form tr:has([name=variation]) > td > table > tbody td:has(input[tupe=radio]) {
  visibility: hidden;
}
main[class*=page--item] .item__order .item__order__form tr:has(input[type=submit]) {
  text-align: center;
  width: 100%;
  z-index: 800;
}
@media only screen and (max-width: 834px) {
  main[class*=page--item] .item__order .item__order__form tr:has(input[type=submit]) {
    height: 40px;
  }
}
@media print, screen and (min-width: 835px) {
  main[class*=page--item] .item__order .item__order__form tr:has(input[type=submit]) {
    height: 60px;
  }
}
main[class*=page--item] .item__order .item__order__form tr:has(input[type=submit]) td:has(input[name=cnt]) {
  display: none;
}
main[class*=page--item] .item__order .item__order__form tr:has(input[type=submit]) td:has(input[type=submit]) {
  position: relative;
  display: inline-block;
}
main[class*=page--item] .item__order .item__order__form tr:has(input[type=submit]) td:has(input[type=submit])::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1em;
  translate: 0 -50%;
  width: 25px;
  aspect-ratio: 1/1;
  background: url(./../images/common/icon_cart--white.svg) center no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 10;
}
main[class*=page--item] .item__order .item__order__form tr:has(input[type=submit]) td:has(input[type=submit]) input[type=submit] {
  width: 100%;
  max-width: 400px;
  border-radius: 100vmax;
  padding: 0.5em 1.5em 0.5em 2.5em;
  background: #ffafcc;
  color: #ffffff;
  border: none;
  z-index: 100;
}
@media only screen and (max-width: 834px) {
  main[class*=page--item] .item__order .item__order__form tr:has(input[type=submit]) td:has(input[type=submit]) input[type=submit] {
    font-size: 1.8rem;
    box-shadow: 0 4px 8px rgba(0, 0, 255, 0.16);
  }
}
@media print, screen and (min-width: 835px) {
  main[class*=page--item] .item__order .item__order__form tr:has(input[type=submit]) td:has(input[type=submit]) input[type=submit] {
    font-size: 2.2rem;
  }
}
main[class*=page--item] .item__order .item__order__form tr:has(input[type=submit]) td:has(input[type=submit]) input[type=submit]:hover {
  background: #ff94b4;
}
main[class*=page--item] .item__order .item__order__form tr:has(input[type=submit]) td:has(input[type=submit]) input[type=submit].is-sold {
  background: #d9d9d9;
  pointer-events: none;
}
main[class*=page--item] .item__order .popover__close-btn {
  display: grid;
  place-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.8);
}
@media only screen and (max-width: 834px) {
  main[class*=page--item] .item__order .popover__close-btn {
    position: fixed;
    top: 0;
    right: 0;
  }
}
@media print, screen and (min-width: 835px) {
  main[class*=page--item] .item__order .popover__close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
  }
}
main[class*=page--item] .item__order .popover__close-btn .close {
  position: relative;
  padding-top: 20px;
  font-size: 1.1rem;
}
main[class*=page--item] .item__order .popover__close-btn .close::before, main[class*=page--item] .item__order .popover__close-btn .close::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 50%;
  translate: 50% 0;
  width: 14px;
  height: 1px;
  background: #444444;
}
main[class*=page--item] .item__order .popover__close-btn .close::before {
  rotate: 45deg;
}
main[class*=page--item] .item__order .popover__close-btn .close::after {
  rotate: -45deg;
}
main[class*=page--item] .item__order .popover__content {
  border: none;
  border-radius: 4px;
  max-height: 100vh;
  overflow: scroll;
  transition: all 0.3s ease, display 0s ease-out allow-discrete;
  opacity: 1;
}
@starting-style {
  main[class*=page--item] .item__order .popover__content {
    opacity: 0;
  }
}
@media only screen and (max-width: 834px) {
  main[class*=page--item] .item__order .popover__content {
    padding: 40px 20px;
  }
}
@media print, screen and (min-width: 835px) {
  main[class*=page--item] .item__order .popover__content {
    padding: 40px;
  }
}
main[class*=page--item] .item__order .popover__content::backdrop {
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease, display 0s ease-out allow-discrete;
  opacity: 1;
}
@starting-style {
  main[class*=page--item] .item__order .popover__content::backdrop {
    background: transparent;
    opacity: 0;
  }
}
main[class*=page--item] .item__order .popover__content .popover__content-ttl {
  position: relative;
  display: block;
  text-align: center;
}
@media only screen and (max-width: 834px) {
  main[class*=page--item] .item__order .popover__content .popover__content-ttl {
    font-size: 1.8rem;
  }
}
@media print, screen and (min-width: 835px) {
  main[class*=page--item] .item__order .popover__content .popover__content-ttl {
    font-size: 2.4rem;
  }
}
main[class*=page--item] .item__order .popover__content .popover__content-ttl .bracket {
  position: relative;
  display: inline-block;
  padding: 0 2em;
  text-align: center;
}
main[class*=page--item] .item__order .popover__content .popover__content-ttl .bracket::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  display: block;
}
@media only screen and (max-width: 834px) {
  main[class*=page--item] .item__order .popover__content .popover__content-ttl .bracket::before {
    width: 15px;
    height: 30px;
    background: url(./../images/common/icon_bracket.svg) 5px/10px no-repeat;
    background-size: contain;
  }
}
@media print, screen and (min-width: 835px) {
  main[class*=page--item] .item__order .popover__content .popover__content-ttl .bracket::before {
    width: 25px;
    height: 50px;
    background: url(./../images/common/icon_bracket.svg) 15px/10px no-repeat;
    background-size: contain;
  }
}
main[class*=page--item] .item__order .popover__content .popover__content-ttl .bracket::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%) rotate(180deg);
  display: block;
}
@media only screen and (max-width: 834px) {
  main[class*=page--item] .item__order .popover__content .popover__content-ttl .bracket::after {
    width: 15px;
    height: 30px;
    background: url(./../images/common/icon_bracket.svg) 5px/10px no-repeat;
    background-size: contain;
  }
}
@media print, screen and (min-width: 835px) {
  main[class*=page--item] .item__order .popover__content .popover__content-ttl .bracket::after {
    width: 25px;
    height: 50px;
    background: url(./../images/common/icon_bracket.svg) 15px/10px no-repeat;
    background-size: contain;
  }
}
main[class*=page--item] .item__order .popover__content .popover__content-desc {
  text-align: center;
  margin-top: 10px;
  word-break: auto-phrase;
}
main[class*=page--item] .item__order .popover__content .popover__content-list {
  display: grid;
  gap: 20px;
  margin-top: 20px;
  justify-content: center;
}
@media print, screen and (min-width: 835px) {
  main[class*=page--item] .item__order .popover__content .popover__content-list {
    grid-template-columns: 1fr 1fr;
  }
}
main[class*=page--item] .item__order .popover__content .popover__content-item {
  max-width: 320px;
}
main[class*=page--item] .item__order .popover__figure {
  border-radius: 4px;
  text-align: center;
  height: 100%;
}
main[class*=page--item] .item__order .popover__figure--m {
  border: 8px solid #c08abd;
  background: #c08abd;
}
main[class*=page--item] .item__order .popover__figure--y {
  border: 8px solid #91baff;
  background: #91baff;
}
main[class*=page--item] .item__order .popover__figure-caption {
  display: block;
  text-align: center;
  color: #ffffff;
}
main[class*=page--item] .item__order .popover__figure-caption .type-icon {
  position: relative;
  padding-left: 1lh;
}
main[class*=page--item] .item__order .popover__figure-caption .type-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: calc(1lh + 2px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 1.1rem;
  text-align: center;
}
main[class*=page--item] .item__order .popover__figure-caption .type-icon--m {
  background: #c08abd;
}
main[class*=page--item] .item__order .popover__figure-caption .type-icon--m::before {
  content: "M";
}
main[class*=page--item] .item__order .popover__figure-caption .type-icon--y {
  background: #91baff;
}
main[class*=page--item] .item__order .popover__figure-caption .type-icon--y::before {
  content: "Y";
}
main[class*=page--item] .item__order .item__order__form--fujitabag tr:has([name=variation]) > td > table {
  gap: 20px 10px;
  justify-content: space-between;
}
@media only screen and (max-width: 834px) {
  main[class*=page--item] .item__order .item__order__form--fujitabag tr:has([name=variation]) > td > table > tbody tr:nth-child(n+2) {
    width: 85px;
  }
}
@media print, screen and (min-width: 835px) {
  main[class*=page--item] .item__order .item__order__form--fujitabag tr:has([name=variation]) > td > table > tbody tr:nth-child(n+2) {
    width: 120px;
  }
}
main[class*=page--item] .item__order .item__order__form--fujitabag tr:has([name=variation]) > td > table > tbody tr:nth-child(n+2):has(input[type=radio]:checked) {
  outline-width: 2px;
  border-radius: 0;
}
main[class*=page--item] .item__order .item__order__form--fujitabag tr:has(input[type=submit]) td:has(input[type=submit]) input[type=submit] {
  border-radius: 0;
  background: var(--btn-color);
}
main[class*=page--item] .item__order .item__order__form--fujitabag tr:has(input[type=submit]) td:has(input[type=submit]) input[type=submit]:hover {
  background: var(--btn-color);
  opacity: 0.7;
}
main[class*=page--item] .nav {
  position: fixed;
  left: 50%;
  translate: -50% 0;
  width: 100%;
  z-index: 1000;
}
@media only screen and (max-width: 834px) {
  main[class*=page--item] .nav {
    bottom: 0;
    display: grid;
    grid-template: "nav01 nav04" auto "nav02 nav04" auto "nav03 nav04" auto/minmax(140px, 160px) 1fr;
    padding-block: 0.5em;
    max-width: 560px;
  }
}
@media print, screen and (min-width: 835px) {
  main[class*=page--item] .nav {
    bottom: 20px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
    max-width: calc(100vw - 160px);
    height: 60px;
  }
}
main[class*=page--item] .nav::after {
  content: "";
  position: absolute;
  top: 50%;
  background: #fff5f8;
  z-index: -10;
}
@media only screen and (max-width: 834px) {
  main[class*=page--item] .nav::after {
    left: 50%;
    translate: -50% -50%;
    width: 100vw;
    height: 100%;
  }
}
@media print, screen and (min-width: 835px) {
  main[class*=page--item] .nav::after {
    left: 0;
    translate: 0 -50%;
    width: 100%;
    height: 40px;
    border-radius: 100vmax;
  }
}
main[class*=page--item] .nav .nav01,
main[class*=page--item] .nav .nav02,
main[class*=page--item] .nav .nav03 {
  position: relative;
  padding-inline: 1em 2.5em;
}
@media only screen and (max-width: 834px) {
  main[class*=page--item] .nav .nav01,
  main[class*=page--item] .nav .nav02,
  main[class*=page--item] .nav .nav03 {
    font-size: 1.1rem;
    line-height: 1.1;
  }
}
main[class*=page--item] .nav .nav01::after,
main[class*=page--item] .nav .nav02::after,
main[class*=page--item] .nav .nav03::after {
  content: "";
  display: block;
  content: "";
  width: 0.6em;
  height: 0.6em;
  display: inline-block;
  border-style: solid;
  border-width: 2px 2px 0 0;
  border-color: #ffafcc;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1em;
  margin: auto 0;
}
main[class*=page--item] .nav .nav01 {
  grid-area: nav01;
}
main[class*=page--item] .nav .nav02 {
  grid-area: nav02;
}
main[class*=page--item] .nav .nav03 {
  grid-area: nav03;
}
main[class*=page--item] .nav .nav04 {
  grid-area: nav04;
}
main[class*=page--item] .nav .nav04 .btn {
  position: relative;
  width: 100%;
  max-width: 400px;
  border-radius: 100vmax;
  padding: 0.5em 1.5em 0.5em 2.5em;
  background: #ffafcc;
  color: #ffffff;
  border: none;
  text-align: center;
  word-break: keep-all;
  z-index: 100;
}
@media only screen and (max-width: 834px) {
  main[class*=page--item] .nav .nav04 .btn {
    font-size: 1.8rem;
    box-shadow: 0 4px 8px rgba(0, 0, 255, 0.16);
  }
}
@media print, screen and (min-width: 835px) {
  main[class*=page--item] .nav .nav04 .btn {
    font-size: 2.2rem;
  }
}
main[class*=page--item] .nav .nav04 .btn:hover {
  background: #ff94b4;
}
main[class*=page--item] .nav .nav04 .btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1em;
  translate: 0 -50%;
  width: 25px;
  aspect-ratio: 1/1;
  background: url(./../images/common/icon_cart--white.svg) center no-repeat;
  background-size: contain;
  pointer-events: none;
}
main[class*=page--item] .nav .nav04 .btn.is-sold {
  background: #d9d9d9;
  pointer-events: none;
}
main[class*=page--item] .nav .nav04 .btn--fujitabag {
  border-radius: 0;
  background: var(--btn-color);
}
main[class*=page--item] .nav .nav04 .btn--fujitabag:hover {
  background: var(--btn-color);
  opacity: 0.7;
}
@media print, screen and (min-width: 835px) {
  main[class*=page--item] .nav--fujitabag {
    bottom: 0;
    height: 80px;
  }
}
main[class*=page--item] .nav--fujitabag::after {
  background: #ffffff;
  box-shadow: 0 -2px 4px rgba(68, 68, 68, 0.16);
}
@media print, screen and (min-width: 835px) {
  main[class*=page--item] .nav--fujitabag::after {
    left: 50%;
    translate: -50% -50%;
    border-radius: 0;
    width: 100vw;
    height: 100%;
  }
}
main[class*=page--item] .nav--fujitabag .nav01::after,
main[class*=page--item] .nav--fujitabag .nav02::after,
main[class*=page--item] .nav--fujitabag .nav03::after {
  display: block;
  content: "";
  width: 0.6em;
  height: 0.6em;
  display: inline-block;
  border-style: solid;
  border-width: 2px 2px 0 0;
  border-color: #444444;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1em;
  margin: auto 0;
}

/* ///////////////////////////////////////////
  page.scss
  下層ページに関する記述
/////////////////////////////////////////// */
/*====================================
商品詳細（page--item）用のカスタム変数
=====================================*/
#petitheart-milkydream {
  --text-color: #ff94b4;
  --bg-color: #eff8fb;
  --slider-shadow: #c2e4ff;
  --bd-color: #ffc6db;
  --btn-color: #ffafcc;
  --hover-color: #ff94b4;
}

#petitheart {
  --text-color: #ff94b4;
  --bg-color: #fff5f8;
  --slider-shadow: #ffc6db;
  --bd-color: #ffc6db;
  --btn-color: #ffafcc;
  --hover-color: #ff94b4;
}

#tripleheart {
  --text-color: #cbb2d9;
  --bg-color: #f9f8fc;
  --slider-shadow: #d3befa;
  --bd-color: #ffc6db;
  --btn-color: #ffafcc;
  --hover-color: #ff94b4;
}

#trad-flash {
  --text-color: #cbb2d9;
  --bg-color: #f9f8fc;
  --slider-shadow: #d3befa;
  --bd-color: #c2e4ff;
  --btn-color: #a2d2ff;
  --hover-color: #91baff;
}

#blackcaps-flash {
  --text-color: #91baff;
  --bg-color: #f9f8fc;
  --slider-shadow: #d3befa;
  --bd-color: #c2e4ff;
  --btn-color: #a2d2ff;
  --hover-color: #91baff;
}

#rainbowforce {
  --text-color: #91baff;
  --bg-color: #f9f8fc;
  --slider-shadow: #c2e4ff;
  --bd-color: #c2e4ff;
  --btn-color: #a2d2ff;
  --hover-color: #91baff;
}

#thunderwing {
  --text-color: #ff94b4;
  --bg-color: #f9f8fc;
  --slider-shadow: #d3befa;
  --bd-color: #c2e4ff;
  --btn-color: #a2d2ff;
  --hover-color: #91baff;
}

#loveheart {
  --text-color: #91baff;
  --bg-color: #f9f8fc;
  --slider-shadow: #d3befa;
  --bd-color: #c2e4ff;
  --btn-color: #a2d2ff;
  --hover-color: #91baff;
}

#dreamlove {
  --text-color: #ff94b4;
  --bg-color: #eff8fb;
  --slider-shadow: #c2e4ff;
  --bd-color: #ffc6db;
  --btn-color: #ffafcc;
  --hover-color: #ff94b4;
}

#aprica {
  --text-color: #ff94b4;
  --bg-color: #fff5f8;
  --slider-shadow: #ffc6db;
  --bd-color: #ffc6db;
  --btn-color: #ffafcc;
  --hover-color: #ff94b4;
}

#blackcaps {
  --text-color: #91baff;
  --bg-color: #f9f8fc;
  --slider-shadow: #d3befa;
  --bd-color: #c2e4ff;
  --btn-color: #a2d2ff;
  --hover-color: #91baff;
}

#bluechrist {
  --text-color: #91baff;
  --bg-color: #eff8fb;
  --slider-shadow: #c2e4ff;
  --bd-color: #c2e4ff;
  --btn-color: #a2d2ff;
  --hover-color: #91baff;
}

#galaxy {
  --text-color: #91baff;
  --bg-color: #efefef;
  --slider-shadow: #707070;
  --bd-color: #c2e4ff;
  --btn-color: #a2d2ff;
  --hover-color: #91baff;
}

#delight {
  --text-color: #91baff;
  --bg-color: #f6f5cb;
  --slider-shadow: #ebe57d;
  --bd-color: #c2e4ff;
  --btn-color: #a2d2ff;
  --hover-color: #91baff;
}

#trad {
  --text-color: #91baff;
  --bg-color: #e4e5c8;
  --slider-shadow: #bcbe74;
  --bd-color: #c2e4ff;
  --btn-color: #a2d2ff;
  --hover-color: #91baff;
}

#sunshinepretty {
  --text-color: #91baff;
  --bg-color: #fff8f2;
  --slider-shadow: #ffd787;
  --bd-color: #ffd787;
  --btn-color: #ffd787;
  --hover-color: #ffbb54;
}

#graceland {
  --text-color: #cbb2d9;
  --bg-color: #eff8fb;
  --slider-shadow: #c2e4ff;
  --bd-color: #d3befa;
  --btn-color: #cdb4db;
  --hover-color: #c08abd;
}

#anciel {
  --text-color: #91baff;
  --bg-color: #eff9eb;
  --slider-shadow: #e2ed80;
  --bd-color: #c2e4ff;
  --btn-color: #a2d2ff;
  --hover-color: #91baff;
}

#dreamcrew {
  --text-color: #91baff;
  --bg-color: #eff8fb;
  --slider-shadow: #c2e4ff;
  --bd-color: #c2e4ff;
  --btn-color: #a2d2ff;
  --hover-color: #91baff;
}

#sunshineglad {
  --text-color: #ff94b4;
  --bg-color: #ece8d4;
  --slider-shadow: #d4c99d;
  --bd-color: #ffd787;
  --btn-color: #ffd787;
  --hover-color: #ffbb54;
}

#premium {
  --text-color: #444444;
  --bg-color: #e4e6e1;
  --slider-shadow: #1b374e;
  --bd-color: #c2e4ff;
  --btn-color: #a2d2ff;
  --hover-color: #91baff;
}

main[class*=miracle-touch] {
  --type-color: #c08abd;
}

main[class*=y-bero] {
  --type-color: #91baff;
}

/*====================================
itemのスタイリング
=====================================*/
main[class^=page--item] .item__info {
  display: block;
  max-width: 1320px;
  margin-inline: auto;
  position: relative;
}
@media only screen and (max-width: 834px) {
  main[class^=page--item] .item__info {
    padding-inline: 20px;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__info {
    padding-inline: 80px;
  }
}
@media only screen and (max-width: 834px) {
  main[class^=page--item] .item__info {
    padding-top: 40px;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__info {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 834px) {
  main[class^=page--item] .item__info {
    padding-bottom: 40px;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__info {
    padding-bottom: 80px;
  }
}
main[class^=page--item] .item__info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  width: 100vw;
  height: 100%;
  background: var(--bg-color);
  z-index: -100;
}
main[class^=page--item] .item__info .item__info__head {
  display: grid;
}
@media only screen and (max-width: 834px) {
  main[class^=page--item] .item__info .item__info__head {
    padding-bottom: 60px;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__info .item__info__head {
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 834px) {
  main[class^=page--item] .item__info .item__info__head {
    grid-template: "img" auto "txt" auto/1fr;
    row-gap: 20px;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__info .item__info__head {
    grid-template: "img txt" auto/calc(50% - 40px) calc(50% - 40px);
    gap: 80px;
  }
}
main[class^=page--item] .item__info .item__info__head .info__txt {
  grid-area: txt;
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
@media only screen and (max-width: 834px) {
  main[class^=page--item] .item__info .item__info__head .info__txt {
    padding: 20px;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__info .item__info__head .info__txt {
    margin-top: 80px;
    padding: 80px 80px 80px 0;
  }
}
main[class^=page--item] .item__info .item__info__head .info__txt::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% + 120px);
  height: 100%;
  background: #ffffff;
  z-index: -10;
}
@media only screen and (max-width: 834px) {
  main[class^=page--item] .item__info .item__info__head .info__txt::after {
    border-radius: 30px;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__info .item__info__head .info__txt::after {
    border-radius: 40px;
  }
}
main[class^=page--item] .item__info .item__info__head .info__txt .logo {
  order: -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
@media only screen and (max-width: 834px) {
  main[class^=page--item] .item__info .item__info__head .info__txt .ttl {
    font-size: 1.8rem;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__info .item__info__head .info__txt .ttl {
    font-size: 2.4rem;
  }
}
main[class^=page--item] .item__info .item__info__head .info__txt .lead {
  max-width: 420px;
  border-bottom: 1px solid #707070;
  padding-bottom: 1em;
  line-height: 1.4;
}
@media only screen and (max-width: 834px) {
  main[class^=page--item] .item__info .item__info__head .info__txt .lead {
    font-size: 1.8rem;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__info .item__info__head .info__txt .lead {
    font-size: 2.2rem;
  }
}
main[class^=page--item] .item__info .item__info__head .info__txt .desc {
  max-width: 420px;
}
main[class^=page--item] .item__info .item__info__head .info__txt .spec {
  container-type: inline-size;
  overflow: auto;
  min-width: 200px;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 8px 20px;
  margin-top: 10px;
  border-radius: 15px;
  background: #f5f5f5;
  padding: 20px;
  letter-spacing: 0;
}
main[class^=page--item] .item__info .item__info__head .info__txt .spec .spec__row {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 2;
}
@container (width < 420px) {
  main[class^=page--item] .item__info .item__info__head .info__txt .spec .spec__row {
    grid-template-columns: auto;
  }
}
main[class^=page--item] .item__info .item__info__head .info__txt .spec .spec-detail {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 0 10px;
  letter-spacing: 0;
}
main[class^=page--item] .item__info .item__info__head .info__txt .spec .spec-detail dt {
  position: relative;
  display: grid;
  place-content: center;
  padding-inline: 0.5em;
  color: #ffffff;
  font-size: 1.2rem;
  z-index: 0;
}
main[class^=page--item] .item__info .item__info__head .info__txt .spec .spec-detail dt::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  height: 1.2em;
  border-radius: 2px;
  background: #707070;
  z-index: -10;
}
main[class^=page--item] .item__info .item__info__head .info__txt .spec .spec-detail dd {
  line-height: 1.2;
}
@media only screen and (max-width: 834px) {
  main[class^=page--item] .item__info .item__info__head .info__txt .spec .spec-detail dd {
    font-size: 1.2rem;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__info .item__info__head .info__txt .spec .spec-detail dd {
    font-size: 1.4rem;
  }
}
@container (width < 280px) {
  main[class^=page--item] .item__info .item__info__head .info__txt .spec .spec-detail {
    grid-template-columns: auto;
  }
}
main[class^=page--item] .item__info .item__info__head .info__txt .spec .big {
  font-size: 120%;
  margin-inline: 0.1em;
}
main[class^=page--item] .item__info .item__info__head .info__img {
  grid-area: img;
  /* ======================
  slick sliderのスタイリング
  ====================== */
}
main[class^=page--item] .item__info .item__info__head .info__img .info__slider {
  width: 100%;
  max-width: 540px; /* スライドの画像サイズに合わせる */
}
main[class^=page--item] .item__info .item__info__head .info__img .info__slider .info__slider__wrap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}
@media only screen and (max-width: 834px) {
  main[class^=page--item] .item__info .item__info__head .info__img .info__slider .info__slider__wrap {
    padding-bottom: 90px;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__info .item__info__head .info__img .info__slider .info__slider__wrap {
    padding-bottom: 100px;
  }
}
main[class^=page--item] .item__info .item__info__head .info__img .info__slider .info__slider__wrap::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--slider-shadow);
  z-index: -10;
}
@media only screen and (max-width: 834px) {
  main[class^=page--item] .item__info .item__info__head .info__img .info__slider .info__slider__wrap::after {
    border-radius: 30px;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__info .item__info__head .info__img .info__slider .info__slider__wrap::after {
    border-radius: 40px;
  }
}
main[class^=page--item] .item__info .item__info__head .info__img .info__slider .info__slider__wrap .info__slider__slide {
  aspect-ratio: 1/1;
}
main[class^=page--item] .item__info .item__info__head .info__img .slick-list {
  overflow: hidden;
}
@media only screen and (max-width: 834px) {
  main[class^=page--item] .item__info .item__info__head .info__img .slick-list {
    border-radius: 30px;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__info .item__info__head .info__img .slick-list {
    border-radius: 40px;
  }
}
main[class^=page--item] .item__info .item__info__head .info__img .slick-arrow {
  position: absolute;
  bottom: 0;
  width: 60px;
  aspect-ratio: 1/1;
  background: url(./../images/common/btn_arrow.svg) center no-repeat;
  background-size: contain;
  border: transparent;
}
@media only screen and (max-width: 834px) {
  main[class^=page--item] .item__info .item__info__head .info__img .slick-arrow.slick-prev {
    right: 75px;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__info .item__info__head .info__img .slick-arrow.slick-prev {
    right: 160px;
  }
}
main[class^=page--item] .item__info .item__info__head .info__img .slick-arrow.slick-next {
  rotate: 180deg;
}
@media only screen and (max-width: 834px) {
  main[class^=page--item] .item__info .item__info__head .info__img .slick-arrow.slick-next {
    right: 0;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__info .item__info__head .info__img .slick-arrow.slick-next {
    right: 80px;
  }
}
main[class^=page--item] .item__info .item__info__feature {
  display: grid;
  container-type: inline-size;
  resize: horizontal;
  overflow: auto;
  min-width: 200px;
}
@media only screen and (max-width: 834px) {
  main[class^=page--item] .item__info .item__info__feature {
    grid-template: "ttl" auto "list" auto "video" max-content/1fr;
    row-gap: 20px;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__info .item__info__feature {
    grid-template: "video ttl" auto "video list" 1fr/360px 1fr;
    gap: 40px 80px;
  }
}
@container (width < 980px) {
  main[class^=page--item] .item__info .item__info__feature .feature__list {
    grid-template: "btn" auto "img" auto/1fr !important;
    gap: 20px;
  }
  main[class^=page--item] .item__info .item__info__feature .feature__list-btn {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(120px, auto)) !important;
    gap: 10px !important;
  }
  main[class^=page--item] .item__info .item__info__feature .feature__list-btn label {
    height: 100% !important;
    font-size: 1.6rem !important;
  }
}
main[class^=page--item] .item__info .item__info__feature .feature__ttl {
  grid-area: ttl;
}
@media only screen and (max-width: 834px) {
  main[class^=page--item] .item__info .item__info__feature .feature__ttl {
    font-size: 2rem;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__info .item__info__feature .feature__ttl {
    position: relative;
    padding-top: 120px;
    text-align: right;
    font-size: 3.1rem;
  }
  main[class^=page--item] .item__info .item__info__feature .feature__ttl::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 120px;
    aspect-ratio: 700/120;
    background: url(../../2024/images/pages/item/feature_ttl.svg) right center no-repeat;
    background-size: contain;
  }
}
main[class^=page--item] .item__info .item__info__feature .feature__list {
  grid-area: list;
  display: grid;
}
@media only screen and (max-width: 834px) {
  main[class^=page--item] .item__info .item__info__feature .feature__list {
    grid-template: "btn" auto "img" auto/1fr;
    gap: 20px;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__info .item__info__feature .feature__list {
    grid-template: "img btn" auto/300px 1fr;
    gap: 40px;
  }
}
main[class^=page--item] .item__info .item__info__feature .feature__list .feature__list-btn {
  grid-area: btn;
}
@media only screen and (max-width: 834px) {
  main[class^=page--item] .item__info .item__info__feature .feature__list .feature__list-btn {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, auto));
    gap: 10px;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__info .item__info__feature .feature__list .feature__list-btn {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
main[class^=page--item] .item__info .item__info__feature .feature__list .feature__list-btn > li {
  position: relative;
}
main[class^=page--item] .item__info .item__info__feature .feature__list .feature__list-btn input[type=radio] {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}
main[class^=page--item] .item__info .item__info__feature .feature__list .feature__list-btn input[type=radio]:checked ~ label {
  background: var(--bd-color);
}
main[class^=page--item] .item__info .item__info__feature .feature__list .feature__list-btn input[type=radio]:checked ~ label::before {
  background: var(--hover-color);
}
main[class^=page--item] .item__info .item__info__feature .feature__list .feature__list-btn label {
  position: relative;
  display: grid;
  place-content: center;
  margin-bottom: 0;
  border-radius: 6px;
  background: #ffffff;
}
@media only screen and (max-width: 834px) {
  main[class^=page--item] .item__info .item__info__feature .feature__list .feature__list-btn label {
    text-align: center;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__info .item__info__feature .feature__list .feature__list-btn label {
    padding: 0.25em 1em 0.25em 1.5em;
  }
}
@media only screen and (max-width: 834px) {
  main[class^=page--item] .item__info .item__info__feature .feature__list .feature__list-btn label .em {
    font-size: 1.4rem;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__info .item__info__feature .feature__list .feature__list-btn label .em {
    display: contents;
  }
}
@media only screen and (max-width: 834px) {
  main[class^=page--item] .item__info .item__info__feature .feature__list .feature__list-btn label {
    height: 100%;
    font-size: 1.2rem;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__info .item__info__feature .feature__list .feature__list-btn label {
    font-size: 2.2rem;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__info .item__info__feature .feature__list .feature__list-btn label::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0.75em;
    translate: 0 -50%;
    height: 12.124355653px;
    width: 10px;
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
    background: #ffffff;
    transition: background 0.3 s ease;
  }
}
main[class^=page--item] .item__info .item__info__feature .feature__list .feature__list-img {
  position: relative;
  grid-area: img;
  aspect-ratio: 1/1;
}
@media only screen and (max-width: 834px) {
  main[class^=page--item] .item__info .item__info__feature .feature__list .feature__list-img {
    max-width: 540px;
    left: 50%;
    translate: -50% 0;
  }
}
main[class^=page--item] .item__info .item__info__feature .feature__list .feature__list-img > li {
  position: absolute;
  inset: 0;
}
main[class^=page--item] .item__info .item__info__feature .feature__list .feature__list-img .feature-img {
  clip-path: inset(0% round 40px);
}
main[class^=page--item] .item__info .item__info__feature .feature__list .feature__list-img .feature-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  translate: 50% 50%;
  width: 120px;
  border: 8px solid var(--bd-color);
  background: var(--bg-color);
  border-radius: 50%;
  aspect-ratio: 1/1;
  font-size: 1.2rem;
}
main[class^=page--item] .item__info .item__info__feature .feature__list .feature__list-img .feature-btn::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  translate: -50% 0;
  width: 10px;
  height: 13.8564064606px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: var(--bd-color);
}
main[class^=page--item] .item__info .item__info__feature .feature__video {
  grid-area: video;
  overflow: hidden;
}
@media only screen and (max-width: 834px) {
  main[class^=page--item] .item__info .item__info__feature .feature__video {
    border-radius: 30px;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__info .item__info__feature .feature__video {
    border-radius: 40px;
  }
}
@media only screen and (max-width: 834px) {
  main[class^=page--item] .item__info .item__info__feature .feature__video {
    aspect-ratio: 1080/1350;
    max-width: 320px;
    justify-self: center;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__info .item__info__feature .feature__video {
    aspect-ratio: 1080/1920;
    align-self: end;
  }
}
main[class^=page--item] .item__info .item__info__feature .feature__video video {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  height: 100%;
}
@media only screen and (max-width: 834px) {
  main[class^=page--item] .item__info .item__info__video {
    margin-top: 40px;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__info .item__info__video {
    margin-top: 80px;
  }
}
main[class^=page--item] .item__info .item__info__video .video__list {
  grid-area: list;
  display: grid;
}
@media only screen and (max-width: 834px) {
  main[class^=page--item] .item__info .item__info__video .video__list {
    grid-template: "ttl" max-content "btn" auto "img" auto/1fr;
    gap: 20px 40px;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__info .item__info__video .video__list {
    grid-template: "ttl img" max-content "btn img" 1fr/400fr 720fr;
    gap: 20px 40px;
  }
}
main[class^=page--item] .item__info .item__info__video .video__list .video__list-ttl {
  position: relative;
  grid-area: ttl;
  align-self: center;
  padding-bottom: 0.5em;
}
@media only screen and (max-width: 834px) {
  main[class^=page--item] .item__info .item__info__video .video__list .video__list-ttl {
    font-size: 2rem;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__info .item__info__video .video__list .video__list-ttl {
    font-size: 3.1rem;
  }
  main[class^=page--item] .item__info .item__info__video .video__list .video__list-ttl::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 10px;
    background: url(./../images/common/parts_linewave.svg) right center repeat-x;
  }
}
main[class^=page--item] .item__info .item__info__video .video__list .video__list-btn {
  grid-area: btn;
  display: grid;
  align-self: start;
}
@media only screen and (max-width: 834px) {
  main[class^=page--item] .item__info .item__info__video .video__list .video__list-btn {
    grid-template-columns: repeat(auto-fill, minmax(50px, auto));
    gap: 10px;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__info .item__info__video .video__list .video__list-btn {
    grid-template-columns: repeat(auto-fill, minmax(120px, auto));
    gap: 20px;
  }
}
main[class^=page--item] .item__info .item__info__video .video__list .video__list-btn > li {
  position: relative;
  display: grid;
  place-content: center;
}
main[class^=page--item] .item__info .item__info__video .video__list .video__list-btn input[type=radio] {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}
main[class^=page--item] .item__info .item__info__video .video__list .video__list-btn input[type=radio]:checked ~ label {
  background: var(--bg-color);
  outline: 4px solid var(--bd-color);
}
main[class^=page--item] .item__info .item__info__video .video__list .video__list-btn label {
  position: relative;
  margin-bottom: 0;
  aspect-ratio: 1/1;
  border-radius: 50%;
  outline: 2px solid #ffffff;
}
main[class^=page--item] .item__info .item__info__video .video__list .video__list-btn label img {
  border-radius: 50%;
  overflow: hidden;
}
main[class^=page--item] .item__info .item__info__video .video__list .video__list-btn label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% + 4px);
  translate: -50% -50%;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: #ffffff;
  opacity: 0.7;
}
@media only screen and (max-width: 834px) {
  main[class^=page--item] .item__info .item__info__video .video__list .video__list-btn label::before {
    height: 17.3205080757px;
    width: 14px;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__info .item__info__video .video__list .video__list-btn label::before {
    height: 34.6410161514px;
    width: 30px;
  }
}
main[class^=page--item] .item__info .item__info__video .video__list .video__list-img {
  position: relative;
  grid-area: img;
  aspect-ratio: 16/9;
  overflow: hidden;
}
@media only screen and (max-width: 834px) {
  main[class^=page--item] .item__info .item__info__video .video__list .video__list-img {
    border-radius: 30px;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__info .item__info__video .video__list .video__list-img {
    border-radius: 40px;
  }
}
main[class^=page--item] .item__info .item__info__video .video__list .video__list-img > li {
  position: absolute;
  inset: 0;
}
main[class^=page--item] .item__info .item__info__video .video__list .video__list-img > li video {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
main[class^=page--item] .item__info .is-active {
  visibility: visible;
  opacity: 1;
}
main[class^=page--item] .item__info .hidden {
  visibility: hidden;
  opacity: 0;
}
main[class^=page--item] .item__option {
  display: block;
  max-width: 1320px;
  margin-inline: auto;
  position: relative;
}
@media only screen and (max-width: 834px) {
  main[class^=page--item] .item__option {
    padding-inline: 20px;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__option {
    padding-inline: 80px;
  }
}
@media only screen and (max-width: 834px) {
  main[class^=page--item] .item__option {
    padding-top: 40px;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__option {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 834px) {
  main[class^=page--item] .item__option {
    padding-bottom: 100px;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__option {
    padding-bottom: 250px;
  }
}
main[class^=page--item] .item__option::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 50%;
  translate: -50% -100%;
  display: block;
  width: 100vw;
  height: 3.6603221083vw;
  background: url(./../images/common/divider_wave--white.svg) center repeat-x;
}
main[class^=page--item] .item__option .item__option__list {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 834px) {
  main[class^=page--item] .item__option .item__option__list {
    margin-top: 20px;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__option .item__option__list {
    margin-top: 40px;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__option .item__option__list {
    gap: 120px;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__option .item__option__item:nth-child(1) .option__txt {
    translate: 0 80px;
  }
}
main[class^=page--item] .item__option .item__option__item:nth-child(1) .option__txt::before {
  background: url(./../images/pages/item/option_no1.svg) left center no-repeat;
  background-size: contain;
}
main[class^=page--item] .item__option .item__option__item:nth-child(2) {
  position: relative;
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__option .item__option__item:nth-child(2) {
    grid-template-areas: "img txt";
  }
}
main[class^=page--item] .item__option .item__option__item:nth-child(2)::before {
  content: "2026年度のネームプレート受付は\a終了いたしました";
  white-space: pre-wrap;
  position: absolute;
  display: grid;
  place-content: center;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  text-align: center;
  z-index: 10;
}
@media only screen and (max-width: 834px) {
  main[class^=page--item] .item__option .item__option__item:nth-child(2)::before {
    inset: -10px;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__option .item__option__item:nth-child(2)::before {
    inset: -40px;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__option .item__option__item:nth-child(2) .option__txt {
    padding: 40px 40px 40px 0;
  }
}
main[class^=page--item] .item__option .item__option__item:nth-child(2) .option__txt::before {
  background: url(./../images/pages/item/option_no2.svg) left center no-repeat;
  background-size: contain;
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__option .item__option__item:nth-child(2) .option__txt::before {
    left: auto;
    right: 0;
  }
}
main[class^=page--item] .item__option .item__option__item:nth-child(2) .option__txt::after {
  left: auto;
  right: 0;
  background: #fff5f8;
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__option .item__option__item:nth-child(2) .option__img {
    translate: 0 80px;
  }
}
main[class^=page--item] .item__option .item__option__item:nth-child(2) .option__img::after {
  background: #ffc6db;
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__option .item__option__item:nth-child(2) .option__img::after {
    left: auto;
    right: 0;
    translate: 20px 20px;
  }
}
main[class^=page--item] .item__option .option {
  display: grid;
}
@media only screen and (max-width: 834px) {
  main[class^=page--item] .item__option .option {
    grid-template: "img" auto "txt" auto/1fr;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__option .option {
    grid-template: "txt img" auto/1fr 1fr;
    gap: 80px;
  }
}
main[class^=page--item] .item__option .option .option__txt {
  grid-area: txt;
  position: relative;
}
@media only screen and (max-width: 834px) {
  main[class^=page--item] .item__option .option .option__txt {
    border-radius: 30px;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__option .option .option__txt {
    border-radius: 40px;
  }
}
@media only screen and (max-width: 834px) {
  main[class^=page--item] .item__option .option .option__txt {
    padding: 40px 20px 20px 20px;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__option .option .option__txt {
    padding: 40px 0 40px 40px;
  }
}
main[class^=page--item] .item__option .option .option__txt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  translate: 0 -100%;
  width: 160px;
  height: 20px;
}
main[class^=page--item] .item__option .option .option__txt::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 40px;
  background: #fff8f2;
  z-index: -10;
}
@media only screen and (max-width: 834px) {
  main[class^=page--item] .item__option .option .option__txt::after {
    width: 100%;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__option .option .option__txt::after {
    width: calc(100% + 120px);
  }
}
@media only screen and (max-width: 834px) {
  main[class^=page--item] .item__option .option .option__txt .option__ttl {
    font-size: 1.6rem;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__option .option .option__txt .option__ttl {
    font-size: 2.2rem;
  }
}
main[class^=page--item] .item__option .option .option__txt .option__ttl .sub {
  display: inline-block;
  margin-right: 1em;
  padding: 0.25em 0.5em;
  background: #ffffff;
  border-radius: 4px;
  line-height: 1;
}
@media only screen and (max-width: 834px) {
  main[class^=page--item] .item__option .option .option__txt .option__ttl .sub {
    font-size: 1.3rem;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__option .option .option__txt .option__ttl .sub {
    font-size: 1.6rem;
  }
}
main[class^=page--item] .item__option .option .option__txt .option__desc {
  display: block;
}
@media only screen and (max-width: 834px) {
  main[class^=page--item] .item__option .option .option__txt .option__desc {
    margin-top: 20px;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__option .option .option__txt .option__desc {
    margin-top: 40px;
  }
}
main[class^=page--item] .item__option .option .option__txt .option__desc .price {
  display: block;
  font-size: 1.2rem;
}
main[class^=page--item] .item__option .option .option__txt .option__desc .price .big {
  font-size: 3.1rem;
}
main[class^=page--item] .item__option .option .option__txt .option__desc .spec {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 4px 20px;
}
@media only screen and (max-width: 834px) {
  main[class^=page--item] .item__option .option .option__txt .note {
    margin-top: 20px;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__option .option .option__txt .note {
    margin-top: 40px;
  }
}
main[class^=page--item] .item__option .option .option__txt .option__btn {
  text-align: right;
}
@media only screen and (max-width: 834px) {
  main[class^=page--item] .item__option .option .option__txt .option__btn {
    margin-top: 20px;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__option .option .option__txt .option__btn {
    margin-top: 40px;
  }
}
main[class^=page--item] .item__option .option .option__img {
  grid-area: img;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 834px) {
  main[class^=page--item] .item__option .option .option__img {
    justify-self: end;
    width: 50%;
    translate: 0 40px;
  }
}
main[class^=page--item] .item__option .option .option__img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1/1;
  background: #ffd787;
  z-index: -10;
}
@media only screen and (max-width: 834px) {
  main[class^=page--item] .item__option .option .option__img::after {
    border-radius: 10px;
    translate: 10px 10px;
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__option .option .option__img::after {
    border-radius: 40px;
    translate: -20px 20px;
  }
}
@media only screen and (max-width: 834px) {
  main[class^=page--item] .item__option .option .option__img img {
    clip-path: inset(0 round 10px);
  }
}
@media print, screen and (min-width: 835px) {
  main[class^=page--item] .item__option .option .option__img img {
    clip-path: inset(0 round 40px);
  }
}/*# sourceMappingURL=item.css.map */