:root {
  --rem: calc(1rem / 16);
  --leading-trim: calc((1em - 1lh) / 2);
  --border-01: rgb(35 24 21 / .5);
  --duration: .25s;
  interpolate-size: allow-keywords;
}

@media (max-width: 640px) {
  :root {
    --sm-vw: calc(100vw / 375);
    --section-gap: calc(40 * var(--sm-vw));
  }
}

@media (min-width: 640.98px) {
  :root {
    --section-gap: 80px;
  }
}





/* modules
-------------------------------------------------------------------------------- */
.lp-m-sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  inline-size: 1px;
  block-size: 1px;
  white-space: nowrap;
  word-wrap: normal;
  clip-path: inset(50%);
}

.lp-m-indent {
  padding-left: calc(var(--indent, 1) * 1em);
  text-indent: calc(var(--indent, 1) * -1em);
}

.lp-m-bracket-indent {
  margin-inline-start: calc(var(--indent, .5) * -1em);
}

.lp-m-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lp-m-heading.\--image {
  padding-block: 14px 10px;
  text-align: center;
}

.lp-m-heading.\--image > img {
  block-size: auto;
}

.lp-m-heading.\--text {
  margin-bottom: 12px;
  padding: 12px 0;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background-color: var(--color-04);
  background-image: none;
}

.lp-m-section-gap {
  padding-block: var(--section-gap) !important;
}

@media (max-width: 640px) {
  .lp-m-heading.\--text {
    font-size: calc(18 * var(--sm-vw));
  }
}

@media (min-width: 640.98px) {
  .lp-m-heading.\--text {
    font-size: 24px;
  }
}





/* contents news
-------------------------------------------------------------------------------- */
#lp-news .lp-news_items {
  display: grid;
}

#lp-news .lp-news_item {
  position: relative;
  margin: unset;
}

#lp-news .lp-news_link {
  transition-property: opacity;
}

#lp-news .lp-news_media {
  inline-size: 100%;
}

#lp-news .lp-news_time {
  display: block;
}

#lp-news .lp-news_title {
  min-block-size: unset;
  padding-block-end: unset;
}

@media (max-width: 640px) {
  #lp-news .lp-news_items {
    row-gap: 1em;
  }

  #lp-news .lp-news_item {
    overflow: hidden;
  }

  #lp-news .lp-news_link {
    display: grid;
    grid-template-columns: calc(100 * var(--sm-vw)) 1fr;
    column-gap: 1em;
  }

  #lp-news .lp-news_media {
    grid-area: span 2 / 1;
    inline-size: calc(100 * var(--sm-vw));
    block-size: auto ;
    margin-block-end: unset;
  }

  #lp-news .lp-news_image {
    inline-size: 100%;
    block-size: 100%;
    background-size: contain;
  }

  #lp-news .lp-news_category {
    grid-area: 1 / 2;
    inline-size: max-content;
  }

  #lp-news .lp-news_info {
    display: grid;
    grid-area: 2 / 2;
  }

  #lp-news .lp-news_title {
    font-size: calc(14 * var(--sm-vw));
  }
}

@media (min-width: 640.98px) {
  #lp-news .lp-news_items {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 8px;
  }

  #lp-news .lp-news_item {
    inline-size: 250px;
  }
}





/* contents special
-------------------------------------------------------------------------------- */
.lp-special {
  display: grid;
  gap: 1em;
}

.lp-special_item {
  display: grid;
  gap: 0;
  background-color: #fff;
}

.lp-special_term {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding-block: .5em;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  word-break: auto-phrase;
  color: #fff;
  background-color: var(--color-03);
}

.lp-special_image {
  inline-size: 100%;
  block-size: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.lp-special_text {
  padding: 1em;
  line-height: 1.4;
  text-align: justify;
}

@media (max-width: 640px) {
  .lp-special_term {
    font-size: calc(16 * var(--sm-vw));
  }

  .lp-special_text {
    font-size: calc(14 * var(--sm-vw));
  }
}

@media (min-width: 640.98px) {
  .lp-special {
    grid-template-columns: repeat(3, 1fr);
  }

  .lp-special_item {
    grid-template-rows: subgrid;
    grid-row: span 2;
  }

  .lp-special_term {
    font-size: 20px;
  }

  .lp-special_text {
    font-size: 16px;
  }
}





/* contents special
-------------------------------------------------------------------------------- */
.lp-point_list {
  display: grid;
  gap: 1em;
}

.lp-point_item {
  position: relative;
  display: grid;
  background-color: var(--color-02);
  list-style: "";
}

.lp-point_body {
  display: grid;
  grid-auto-rows: min-content;
}

.lp-point_body > span {
  position: relative;
  z-index: 0;
  padding-block: .25em calc(.25em + 1px);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.lp-point_heading {
  font-weight: 700;
}

.lp-point_text {
  text-align: justify;
}

.lp-point_image {
  block-size: 100%;
  object-fit: cover;
}

@media (max-width: 640px) {
  .lp-point_item {
    padding: 1em;
    font-size: calc(14 * var(--sm-vw));
  }

  .lp-point_body {
    row-gap: .5em;
    padding-block-end: 1em;
  }

  .lp-point_body > span {
    box-sizing: border-box;
    inline-size: calc(100% + 2em);
    margin-inline: -1em;
    margin-block: -1em auto;
    padding-inline: 1em;
    padding-block: calc(.25em + 2px) .25em;
    background-color: var(--color-03);
  }

  .lp-point_heading {
    font-size: calc(16 * var(--sm-vw));
  }

  .lp-point_text {
    margin-block-end: var(--leading-trim);
    font-size: calc(14 * var(--sm-vw));
  }

  .lp-point_image {
    inline-size: 100%;
  }
}

@media (min-width: 640.98px) {
  .lp-point_list {
    grid-auto-rows: 1fr;
  }

  .lp-point_item {
    grid-template-columns: auto max-content;
    column-gap: 2em;
    padding: 2em;
  }

  .lp-point_body {
    row-gap: 1em;
  }

  .lp-point_body > span {
    inline-size: fit-content;
    padding-inline: 1.5em;
    padding-block: .25em;
    font-size: 20px;
  }

  .lp-point_body > span::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-color: var(--color-03);
    content: "";
    transform: skew(-14deg);
  }

  .lp-point_heading {
    font-size: 24px;
  }

  .lp-point_text {
    font-size: 16px;
  }

  .lp-point_media {
    inline-size: 300px;
  }

  .lp-point_image {
    inline-size: 100%;
  }
}





/* contents reason
-------------------------------------------------------------------------------- */
.lp-reason * {
  box-sizing: border-box;
}

.lp-reason {
  display: grid;
  gap: 1em;
}

.lp-reason_item {
  display: grid;
  gap: 1em;
  padding: 1em;
  background-color: var(--color-02);
}

.lp-reason_image {
  inline-size: 100%;
  block-size: auto;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.lp-reason_term {
  font-weight: 700;
  text-align: center;
}

.lp-reason_desc {
  display: grid;
  align-content: start;
  gap: 1em;
  line-height: 1.4;
  text-align: justify;
}

@media (max-width: 640px) {
  .lp-reason_term {
    font-size: calc(16 * var(--sm-vw));
  }

  .lp-reason_text {
    font-size: calc(14 * var(--sm-vw));
  }
}

@media (min-width: 640.98px) {
  .lp-reason {
    grid-template-columns: repeat(3, 1fr);
  }

  .lp-reason_item {
    grid-template-rows: subgrid;
    grid-row: span 2;
  }

  .lp-reason_term {
    font-size: 20px;
  }

  .lp-reason_text {
    font-size: 16px;
  }
}





/* contents space
-------------------------------------------------------------------------------- */
.lp-space_image {
  inline-size: 100%;
  block-size: auto;
}





/* contents representative
-------------------------------------------------------------------------------- */
.lp-representative {
  display: grid;
  gap: 1em;
}

.lp-representative_image {
  inline-size: 100%;
  block-size: 100%;
  aspect-ratio: 4 / 4.5;
  object-fit: cover;
  object-position: top;
}

.lp-representative_text {
  display: grid;
  align-content: start;
  gap: 1lh;
  text-align: justify;
}

.lp-representative_decimal {
  padding-inline-start: 1.5em;
}

.lp-representative_decimal > li {
  list-style-type: decimal;
}

@media (max-width: 640px) {
  .lp-representative_text {
    font-size: calc(14 * var(--sm-vw));
  }
}

@media (min-width: 640.98px) {
  .lp-representative {
    grid-template-columns: 1fr 1.5fr;
  }

  .lp-representative_text {
    margin-block-start: var(--leading-trim);
    font-size: 16px;
  }
}





/* contents price
-------------------------------------------------------------------------------- */
.lp-price_table {
  inline-size: 100%;
  border-collapse: collapse;
}

.lp-price_table ~ .lp-price_table {
  margin-block-start: 1em;
}

.lp-price_table caption {
  position: relative;
  margin-block-end: -1px;
  font-weight: 700;
  text-align: start;
  color: #fff;
  border: 1px solid var(--color-03);
  background-color: var(--color-03);
}

.lp-price_table caption::before {
  position: absolute;
  inset-inline-start: 0;
  inset-block: 0;
  background-color: #fff;
  content: "";
}

.lp-price_table :is(td, th) {
  font-feature-settings: "halt" 1;
  border: 1px solid var(--color-03);
}

.lp-price_table thead th {
  text-align: center;
}

.lp-price_table th {
  text-align: start;
  background-color: color-mix(in srgb, var(--color-03) 20%, white 80%);
}

.lp-price_table td {
  background-color: #fff;
}

.lp-price_col {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: .5em;
}

.lp-price_price-wrapper {
  display: grid;
  grid-template-columns: 6em auto;
  align-items: baseline;
  column-gap: .5em;
}

.lp-price_price-wrapper.del {
  text-decoration-color: red;
  text-decoration-thickness: 2px;
}

.lp-price_campaign {
  grid-column: span 2;
  color: red;
  font-weight: 700;
}

.lp-price_price-wrapper b {
  display: grid;
  inline-size: min-content;
  padding-inline-start: 1em;
  line-height: 1.2;
  text-indent: -1em;
  word-break: auto-phrase;
}

.lp-price_price-wrapper .price {
  font-weight: 900;
  font-size: 120%;
  text-align: end;
}

.lp-price_price-wrapper .tax {
  font-weight: 300;
  font-size: 80%;
}

@media (max-width: 640px) {
  .lp-price_table {
    font-size: 14px;
  }

  .lp-price_table :is(caption, td, th) {
    padding: .5em;
  }

  .lp-price_table caption {
    padding-inline-start: 1em;
  }

  .lp-price_table caption::before {
    inline-size: calc(4 * var(--sm-vw));
    margin: calc(2 * var(--sm-vw));
  }

  .lp-price_table thead th:first-of-type {
    inline-size: 40%;
  }
}

@media (min-width: 640.98px) {
  .lp-price_table {
    font-size: 16px;
    table-layout: fixed;
  }

  .lp-price_table :is(caption, td, th) {
    padding: 1em;
  }

  .lp-price_table caption::before {
    inline-size: 4px;
    margin: 2px;
  }
}





/* contents class
-------------------------------------------------------------------------------- */
.lp-class_list {
  display: grid;
}

.lp-class_item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
  border: 1px solid var(--border-01);
  background-color: #fff;
}

.lp-class_item:is(:nth-of-type(2)) .lp-class_term {
  color: var(--color-04);
}

.lp-class_term {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: .5em 1em;
  font-weight: 900;
  color: #fff;
  border-bottom: 1px solid var(--border-01);
  background-color: var(--_class-color);
}

.lp-class_term span {
  mix-blend-mode: luminosity;
}

.lp-class_term span:first-of-type {
  align-self: start;
}

.lp-class_term span:last-of-type {
  align-self: end;
  margin-inline-start: auto;
  font-size: 75%;
}

.lp-class_desc {
  padding: 1em;
  font-feature-settings: "palt" 1;
}

.lp-class_desc p {
  padding-inline-start: 1.5em;
  text-align: justify;
  text-indent: -1.5em;
}

.lp-class_desc p ~ p {
  padding-block-start: .5em;
}

.lp-class_annotation {
  margin-block-start: 1lh;
}

@media (max-width: 640px) {
  .lp-class {
    font-size: calc(14 * var(--sm-vw));
  }

  .lp-class_list {
    row-gap: 1em;
  }

  .lp-class_item {
    font-size: calc(14 / var(--max) * 100vw);
  }
}

@media (min-width: 640.98px) {
  .lp-class {
    font-size: 16px;
  }

  .lp-class_list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1em;
  }
}





/* contents faq
-------------------------------------------------------------------------------- */
.sec-faq_wrapper {
  display: grid;
  row-gap: 1em;
}

.sec-faq details {
  background-color: var(--color-02);
}

.sec-faq details::details-content {
  overflow: clip;
  block-size: 0;
  transition: block-size var(--duration) ease-in-out, content-visibility var(--duration) allow-discrete;
}

.sec-faq details[open]::details-content {
  block-size: auto;
}

.sec-faq details[open] > summary > span::after {
  scale: 0 1;
}

.sec-faq summary {
  display: flex;
  justify-content: space-between;
  column-gap: .5em;
  padding: 1em;
  font-weight: 700;
  cursor: pointer;
  list-style-type: none;
}

.sec-faq summary::before {
  font-family: "M PLUS 1p", sans-serif;
  color: var(--color-04);
  content: "Q";
}

.sec-faq summary::-webkit-details-marker {
  display: none;
}

.sec-faq summary > span {
  position: relative;
  margin-inline-start: auto;
  margin-block: auto;
  aspect-ratio: 1;
}

.sec-faq summary > span::before,
.sec-faq summary > span::after {
  position: absolute;
  inset-block: 0;
  inline-size: 100%;
  block-size: 1px;
  margin-block: auto;
  background-color: currentColor;
  content: "";
}

.sec-faq summary > span::after {
  transition: scale var(--duration) ease-in-out;
  rotate: 90deg;
}

.sec-faq summary + p {
  display: flex;
  column-gap: .5em;
  padding: 0 1em 1em;
}

.sec-faq summary + p::before {
  font-family: "M PLUS 1p", sans-serif;
  color: var(--color-07);
  content: "A";
}

@media (max-width: 640px) {
  .sec-faq_wrapper {
    font-size: calc(14 * var(--sm-vw));
  }

  .sec-faq summary > span {
    block-size: 1rem;
  }

  .sec-faq summary + p {
    text-align: justify;
  }
}

@media (min-width: 640.98px) {
  .sec-faq_wrapper {
    font-size: 24px;
  }

  .sec-faq summary > span {
    block-size: 24px;
  }
}





/* contents shop information
-------------------------------------------------------------------------------- */
.sec-shop-info_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
}

.sec-shop-info a {
  color: inherit;
}

.sec-shop-info .list {
  display: grid;
  grid-auto-rows: min-content;
  align-content: end;
}

.sec-shop-info .list_item {
  border-block-end: 1px solid var(--border-01);
}

.sec-shop-info .list_term {
  padding-block-end: .5em;
  font-weight: 700;
}

.sec-shop-info .list_desc {
  padding-inline-start: 1em;
  padding-block-end: .25em;
  font-weight: 400;
}

.sec-shop-info iframe {
  block-size: auto;
}

@media (max-width: 640px) {
  .sec-shop-info_wrapper .list {
    row-gap: 1em;
    inline-size: 100%;
  }

  .sec-shop-info_wrapper .list_term {
    font-size: calc(14 * var(--sm-vw));
  }

  .sec-shop-info_wrapper .list_desc {
    font-size: calc(12 * var(--sm-vw));
  }

  .sec-shop-info_wrapper iframe {
    inline-size: 100%;
    aspect-ratio: 4 / 3;
  }
}

@media (min-width: 640.98px) {
  .sec-shop-info_wrapper {
    font-size: 16px;
  }

  .sec-shop-info_wrapper .list {
    row-gap: 2em;
    inline-size: calc(50% - 2em);
  }

  .sec-shop-info_wrapper iframe {
    inline-size: 50%;
    aspect-ratio: 16 / 9;
  }
}





/* override
-------------------------------------------------------------------------------- */
@media (max-width: 640px) {
  ul.under-nav li a.c-free-t,
  .gNav .gNav__list .gold {
    background-color: #da0a12 !important;
  }

}

@media (min-width: 768px) {
  .head_area .pc #header .inner_head .menu li:last-of-type {
    background-color: #da0a12 !important;
  }
}





/* utilities
-------------------------------------------------------------------------------- */
.fw700 { font-weight: 700; }
.fw900 { font-weight: 900; }

.block { display: block; }

.tar { text-align: right; }

@media (max-width: 767.98px) {
  .sm   { display: block; }
  .smf  { display: flex; }
  .smg  { display: grid; }
  .smib { display: inline-block; }
  .smc  { display: contents; }
  :is(.md, .mdf, .mdg, .mdib) { display: none; }

  .mbs40_sm { margin-block-start: calc(40 * var(--rem)); }
}

@media (min-width: 768px) {
  .md   { display: block; }
  .mdf  { display: flex; }
  .mdg  { display: grid; }
  .mdib { display: inline-block; }
  .mdc  { display: contents; }
  :is(.sm, .smf, .smg, .smib) { display: none; }

  .mbs80_md { margin-block-start: calc(80 * var(--rem)); }
}
