@charset "UTF-8";

/* -------------------------------------------------------------

* COMPONENT *
  A-1__HEADLINE
  A-2__BUTTON
  A-3__TEXT
  A-4__MESSAGE
  A-5__IMAGE
  A-6__PAGER
  A-7__FAQ
  A-8__SELECT BOX
  A-9__BREADCRUMB
  A-10__PROGRESSBAR
  A-11__CARD
  A-12__LIST
  A-13__GOODS
  A-14__TEXT-BOX
  A-15__FRAME
  A-16_SWIPER
  A-17__TOC
  A-18__STEPBOX
  A-19__HASHTAG

* ACTION *
  B-1__MODAL
  B-2__OPEN/CLOSE
  B-3__OPEN/CLOSE-2

* PAGE *
  C-1__PAGE HEADER
  C-2__BOX

* TABLE *

-------------------------------------------------------------- */

/* ----------------------------------------------------------- 
 *
 * COMPONENT *
 *
 * ----------------------------------------------------------- */

/* ----------------------------------------
* A-1__HEADLINE
* ----------------------------------------- */

.c-headline-01 {
  position: relative;
  text-align: center;
}

.c-headline-01 span {
  display: inline-block;
  color: var(--color-primary);
  font-size: var(--size-xl);
  font-family: "Zen Maru Gothic", serif;
  font-weight: 900;
  font-style: normal;
  line-height: 1.3;
}

.c-headline-01.is-white span {
  color: var(--color-white);
  text-shadow: 0px 6px 8px rgba(0, 0, 0, 0.4);
}

.c-headline-02 {
  position: relative;
  text-align: center;
}

.c-headline-02 span {
  display: inline-block;
  color: var(--color-primary);
  font-size: var(--size-m);
  font-family: "Zen Maru Gothic", serif;
  font-weight: 900;
  font-style: normal;
  line-height: 1.3;
}

.c-headline-02.is-white span {
  color: var(--color-white);
  text-shadow: 0px 6px 8px rgba(0, 0, 0, 0.4);
}

.c-headline-02::before {
  position: absolute;
  content: "";
  width: 100px;
  border-bottom: 4px solid var(--color-primary);
  left: 50%;
  transform: translateX(-50%);
  bottom: -12px;
}

.c-headline-03 {
  border-bottom: 2px solid var(--color-primary);
  padding: 6px;
}

.c-headline-03 span {
  display: inline-block;
  color: var(--color-primary);
  font-weight: bold;
  font-size: var(--size-s);
  line-height: 1.2;
}

.c-headline-04 {
  text-align: center;
}

.c-headline-04 span {
  display: inline-block;
  color: var(--color-primary);
  font-weight: bold;
  font-size: var(--size-s);
  line-height: 1.2;
}

.c-headline-05 span {
  display: inline-block;
  color: var(--color-accent);
  font-weight: bold;
  font-size: var(--size-m);
  line-height: 1.2;
}

.c-headline-06 span {
  padding: 12px 0;
}

.c-headline-06 span {
  display: inline-block;
  color: var(--color-text);
  font-weight: bold;
  font-size: var(--size-s);
  line-height: 1.2;
  padding-left: 8px;
}

.c-headline-06::before {
  content: "";
  border: 2px solid var(--color-primary);
}

.c-headline-icon {
  color: var(--color-text);
  font-size: var(--size-ms);
  font-weight: bold;
  display: flex;
  align-items: center;
}

.c-headline-icon.goods-icon::before {
  content: '';
  display: inline-block;
  width: 60px;
  height: 60px;
  background-size: contain;
  background-repeat: no-repeat;
  padding-right: 12px;
}

.c-headline-icon.goods-icon[data-icon="goods-1"]::before {
  background-image: url('../img/goods/tab-goods-1_off.svg');
}

.c-headline-icon.goods-icon[data-icon="goods-2"]::before {
  background-image: url('../img/goods/tab-goods-2_off.svg');
}

.c-headline-icon.goods-icon[data-icon="goods-3"]::before {
  background-image: url('../img/goods/tab-goods-3_off.svg');
}

.c-headline-icon.goods-icon[data-icon="goods-4"]::before {
  background-image: url('../img/goods/tab-goods-4_off.svg');
}

@media screen and (max-width: 900px) {
  .c-headline-icon {
    padding-left: 12px;
  }
}

@media screen and (max-width: 375px) {
  .c-headline-icon {
    font-size: var(--size-s);
  }
}

/* ----------------------------------------
* A-2__BUTTON
* ----------------------------------------- */

.c-form-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.c-btn a,
.c-btn-flex .c-btn a,
.c-btn button,
.c-btn-flex .c-btn button,
.c-form-btn {
  display: block;
  display: table;
  width: 100%;
  min-width: 200px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-white);
  font-size: var(--size-default);
  line-height: 1.2;
  vertical-align: middle;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 6px;
  text-align: center;
  overflow: hidden;
  padding: 12px;
  box-sizing: border-box;
}

.c-btn-flex .c-btn a,
.c-btn-flex .c-btn button,
.c-form-btn {
  min-width: 200px;
  width: 100%;
}

.c-btn-large a,
.c-btn-large button {
  display: block;
  display: table;
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-white);
  font-size: var(--size-default);
  line-height: 1.2;
  vertical-align: middle;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 6px;
  text-align: center;
  overflow: hidden;
  padding: 12px;
}

.c-btn-flex {
  display: flex;
  justify-content: center;
}

.c-btn-flex .c-btn {
  margin: 12px;
}

.c-btn.is-round a,
.c-btn.is-round button {
  border-radius: 25px;
}

.c-btn a,
.c-btn-flex .c-btn a,
.c-btn button,
.c-btn-flex .c-btn button,
.c-form-btn {
  font-weight: bold;
  color: var(--color-white);
  padding: 16px 12px;
}

.c-form-btn.is-secondary a {
  color: var(--color-text);
}

.c-btn.is-text-small a,
.c-btn-flex .c-btn.is-text-small a,
.c-btn.is-text-small button,
.c-btn-flex .c-btn.is-text-small button {
  font-size: var(--size-sss);
}

@media screen and (max-width: 900px) {
  .c-btn.is-text-small a,
  .c-btn-flex .c-btn.is-text-small a,
  .c-btn.is-text-small button,
  .c-btn-flex .c-btn.is-text-small button {
    font-size: var(--size-ss);
  }
}

.c-btn a:hover,
.c-btn-large a:hover,
.c-btn button:hover,
.c-btn-flex .c-btn button:hover,
.c-form-btn:hover {
  cursor: pointer;
}

.c-btn.is-ok a,
.c-btn.is-primary a,
.c-btn-large.is-ok a,
.c-btn.is-ok button,
.c-btn-large.is-ok button,
.c-form-btn {
  background: var(--color-primary);
  border: 1px solid var(--color-gray);
}

.c-btn.is-accent a,
.c-btn-large.is-accent a,
.c-btn.is-accent button,
.c-btn-large.is-accent button,
.c-form-btn.is-accent {
  background: var(--color-accent);
  border: 1px solid var(--color-gray);
  color: var(--color-text);
}

.c-btn.is-danger a,
.c-btn-large.is-danger a,
.c-btn.is-danger button,
.c-btn-large.is-danger button,
.c-form-btn.is-danger {
  background: var(--color-alert);
  border: 1px solid var(--color-alert);
}

.c-btn.is-ok a,
.c-btn-large.is-ok a,
.c-btn.is-ok button,
.c-btn.is-accent button,
.c-btn-large.is-ok button,
.c-form-btn.is-ok {
  color: var(--color-white);
}

.c-btn.is-border a,
.c-btn-large.is-border a,
.c-btn.is-border button,
.c-btn-large.is-border button,
.c-form-btn.is-border {
  background: var(--color-white);
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}

.c-btn.is-secondary a,
.c-btn-large.is-secondary a,
.c-btn.is-secondary button,
.c-btn-large.is-secondary button,
.c-form-btn.is-secondary {
  background: var(--color-white);
  border: 1px solid var(--color-darkgray);
}

.c-btn.is-secondary a,
.c-btn-large.is-secondary a,
.c-btn.is-secondary button,
.c-btn-large.is-secondary button,
.c-form-btn.is-secondary {
  color: var(--color-darkgray);
}

.c-btn.is-arrow-r a,
.c-btn.is-arrow-l a,
.c-btn.is-arrow-down a,
.c-btn-large.is-arrow-r a,
.c-btn-large.is-arrow-l a,
.c-btn-large.is-arrow-down a,
.c-btn.is-arrow-r button,
.c-btn.is-arrow-l button,
.c-btn.is-arrow-down button,
.c-btn-large.is-arrow-r button,
.c-btn-large.is-arrow-l button,
.c-btn-large.is-arrow-down button,
.c-form-btn.is-arrow-r,
.c-form-btn.is-arrow-l {
  display: block;
  position: relative;
}

.c-btn.is-arrow-r a::after,
.c-btn-large.is-arrow-r a::after,
.c-btn.is-arrow-down a::after,
.c-btn-large.is-arrow-down a::after,
.c-btn.is-arrow-r button::after,
.c-btn-large.is-arrow-r button::after,
.c-btn.is-arrow-down button::after,
.c-btn-large.is-arrow-down button::after,
.c-form-btn.is-arrow-r::after {
  content: '';
  position: absolute;
  top: calc(50% - 1px);
  right: 16px;
  width: 6px;
  height: 6px;
  border-width: 2px 2px 0 0;
  border-style: solid;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  transition: right 0.3s ease;
}

.c-btn.is-arrow-l a::after,
.c-btn-large.is-arrow-l a::after,
.c-btn.is-arrow-l button::after,
.c-btn-large.is-arrow-l button::after,
.c-form-btn.is-arrow-l::after {
  content: '';
  position: absolute;
  top: calc(50% - 1px);
  left: 12px;
  width: 6px;
  height: 6px;
  border-width: 0 0 2px 2px;
  border-style: solid;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  transition: left 0.3s ease;
}

.c-btn.is-arrow-down a::after,
.c-btn-large.is-arrow-down a::after,
.c-btn.is-arrow-down button::after,
.c-btn-large.is-arrow-down button::after {
  content: '';
  position: absolute;
  top: calc(50% - 1px);
  right: 12px;
  width: 6px;
  height: 6px;
  border-width: 0 2px 2px 0;
  border-style: solid;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
}

.c-btn-search {
  text-align: right;
}

.c-btn-search button {
  padding: 2px 20px;
  color: var(--color-link);
  border: 1px solid var(--color-link);
  border-radius: 20px;
}

@media screen and (max-width: 900px) {
  .c-btn-search {
    padding-right: 12px;
  }
}

@media screen and (max-width: 768px) {
  .c-btn-flex {
    display: block;
  }

  .c-btn-flex .c-btn a,
  .c-btn-flex .c-btn button {
    min-width: 160px;
  }

  .c-btn-flex .c-btn {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 12px;
  }
}

@media screen and (max-width: 320px) {
  .c-btn a,
  .c-btn-flex .c-btn a,
  .c-btn button,
  .c-btn-flex .c-btn button {
    max-width: 296px;
  }
}

/* btnのhover */
@media (any-hover: hover) {
  .c-btn a:hover,
  .c-btn-large a:hover,
  .c-btn button:hover,
  .c-btn-flex .c-btn button:hover,
  .c-form-btn:hover {
    cursor: pointer;
  }

  .c-btn a:hover,
  .c-btn-large a:hover,
  .c-btn button:hover,
  .c-btn-flex .c-btn button:hover,
  .form .form-btn.is-ok:hover,
  .form .form-btn.is-secondary:hover,
  .c-form-btn:hover {
    text-decoration: underline;
  }

  .c-btn.is-arrow-r a:hover::after,
  .c-btn-large.is-arrow-r a:hover::after,
  .c-btn.is-arrow-r button:hover::after,
  .c-btn-large.is-arrow-r button:hover::after {
    right: 12px;
    transition: right 0.3s ease;
  }
  
  .c-btn.is-arrow-l a:hover::after,
  .c-btn-large.is-arrow-l a:hover::after,
  .c-btn.is-arrow-l button:hover::after,
  .c-btn-large.is-arrow-l button:hover::after {
    left: 8px;
    transition: left 0.2s ease;
  }
}

/* ----------------------------------------
* A-3__TEXT
* ----------------------------------------- */

.c-text {
  color: var(--color-text);
  font-size: var(--size-default);
  padding: 8px;
}

.is-textsize-xxl {
  font-size: var(--size-xxl);
}

.is-textsize-xl {
  font-size: var(--size-xl);
}

.is-textsize-l {
  font-size: var(--size-l);
}

.is-textsize-m {
  font-size: var(--size-m);
}

.is-textsize-ms {
  font-size: var(--size-ms);
}

.is-textsize-s {
  font-size: var(--size-s);
}

.is-textsize-ss {
  font-size: var(--size-ss);
}

.is-textsize-sss {
  font-size: var(--size-sss);
}

.is-textsize-ssss {
  font-size: var(--size-ssss);
}

.is-textsize-default {
  font-size: var(--size-default);
}

.is-text-bold {
  font-weight: bold;
}

.c-text.is-center,
.c-text .is-center,
.is-center {
  text-align: center;
}

.c-text a {
  text-decoration: underline;
}

.c-text.is-textcolor-red,
.c-text .is-textcolor-red,
.is-textcolor-red {
  color: var(--color-alert);
}

.c-text.is-textcolor-white,
.c-text .is-textcolor-white {
  color: var(--color-white);
}

.c-text.is-textcolor-primary,
.c-text .is-textcolor-primary,
.is-textcolor-primary {
  color: var(--color-primary);
}

.c-text.is-textcolor-accent,
.c-text .is-textcolor-accent,
.is-textcolor-accent {
  color: var(--color-accent);
}

.c-text-variable {
  container: layout / inline-size;
}

.c-text-variable p {
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

.text-underline {
  text-decoration: underline;
}

/* ----------------------------------------
* A-4__MESSAGE
* ----------------------------------------- */
.c-msg {
  background-color: var(--color-white);
}

.c-msg_text {
  color: var(--color-text);
  font-size: var(--size-ss);
  line-height: 1.6;
  padding: 8px;
}

.c-msg a {
  text-decoration: underline;
}

.c-msg.is-center {
  text-align: center;
}

.c-msg.is-note {
  background-color: var(--color-white);
  border: 1px solid var(--color-gray);
}

.c-msg.is-ok {
  background-color: var(--color-bg-base);
}

.c-msg.is-caution {
  background-color: #fffce8;
}

.c-msg.is-notice {
  background-color: var(--color-alert-bg);
}

.c-msg.is-notice .c-msg_text {
  color: var(--color-alert);
}

.c-msg.is-list {
  background-color: var(--color-white);
  border: 1px solid var(--color-lightgray);
}
.c-msg.is-list li {
  line-height: 1.2;
  margin-bottom: 8px;
}

.c-msg-top-important, .c-msg-top-important-most {
  max-width: var(--width-l);
  margin-right: auto;
  margin-left: auto;
  margin-top: 20px;
  padding: 8px 12px;
}

.c-msg-top-important p, .c-msg-top-important-most p {
  font-size: var(--size-ss);
  line-height: 1.3;
}

.c-msg-top-important {
  background-color: var(--color-alert-bg);
}

.c-msg-top-important p {
  color: var(--color-alert);
}

.c-msg-top-important a, .c-msg-top-important-most a {
  text-decoration: underline;
}

.c-msg-top-important-most {
  background-color: var(--color-alert);
}

.c-msg-top-important-most p, .c-msg-top-important-most a {
  color: var(--color-white);
}

@media screen and (max-width: 900px) {
  .c-msg-important .c-msg-important_text {
    line-height: 1.2;
  }
  .c-msg-top-important, .c-msg-top-important-most {
    margin-right: 12px;
    margin-left: 12px;
  }
}

/* ----------------------------------------
 * A-5__IMAGE
 * ----------------------------------------- */

.c-img-container {
  padding: 1em 0;
  text-align: center;
}

.c-img_item-l {
  width: 100%;
  max-width: var(--width-l);
  height: auto;
}
/*
.c-img_item-m {
  width: 80%;
  max-width: var(--width-m);
  height: auto;
}
*/
.c-img_item-m {
  width: 60%;
  max-width: var(--width-m);
  height: auto;
}

.c-img_item-s {
  width: 60%;
  max-width: var(--width-s);
  height: auto;
}

.c-img_item-ss {
  width: 30%;
  max-width: var(--width-s);
  height: auto;
}

@media screen and (max-width: 768px) {
  .c-img_item-s,
  .c-img_item-ss {
    width: 60%;
    max-width: var(--width-s);
  }
}

/* ----------------------------------------
 * A-6__PAGER
 * ----------------------------------------- */

.c-pager,
.c-pager-2,
.c-pager-3 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-pager li {
  margin: 0 6px;
}

.c-pager_link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-white);
  border: 1px solid var(--color-primary);
  font-size: var(--size-s);
  display: grid;
  place-content: center;
}

.c-pager_link a,
.c-pager_link span {
  display: block;
  color: var(--color-primary);
  display: grid;
  place-items: center center;
  font-size: var(--size-default);
}

.c-pager_link:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transition: background-color 0.4s;
}

.c-pager_link:hover a {
  color: var(--color-white);
  transition: color 0.4s;
}

.c-pager_arrow-l a img,
.c-pager_arrow-r a img,
.c-pager_arrow-l div img,
.c-pager_arrow-r div img {
  width: 28px;
  height: 28px;
}

.c-pager_link .active {
  font-weight: bold;
  background-color: var(--color-primary);
  color: var(--color-white);
}

.c-pager-2_text {
  font-size: var(--size-default);
  padding: 0 32px;
}

.c-pager-3 {
  gap: 80px;
}

.c-pager-3 .c-pager_arrow-r a,
.c-pager-3 .c-pager_arrow-l a,
.c-pager-3 .c-pager_arrow-r div,
.c-pager-3 .c-pager_arrow-l div {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: underline;
}

.c-pager-3 .c-pager_arrow-r div,
.c-pager-3 .c-pager_arrow-l div {
  text-decoration: none;
  color: var(--color-lightgray);
}

.c-pager-3 .c-pager_arrow-r a p,
.c-pager-3 .c-pager_arrow-r div p {
  padding-right: 12px;
}

.c-pager-3 .c-pager_arrow-l a p,
.c-pager-3 .c-pager_arrow-l div p {
  padding-left: 12px;
}

/* ----------------------------------------
 * A-7__FAQ
 * ----------------------------------------- */

.c-faq article {
  padding: var(--size-m) 0;
}

.c-faq_item {
  background-color: var(--color-bg-base);
  border-radius: 12px;
  padding: 12px;
  margin: 12px 0;
}

.c-faq_item .c-faq_item-q,
.c-faq_item .c-faq_item-a {
  font-size: var(--size-default);
  margin-bottom: 12px;
}

.c-faq_item .c-faq_item-q {
  color: var(--color-text);
  font-weight: bold;
}

.c-faq_item .c-faq_item-q::before,
.c-faq_item .c-faq_item-a::before {
  display: inline-block;
  font-size: var(--size-default);
  font-weight: bold;
  text-align: center;
  padding-right: 4px;
}

.c-faq_item .c-faq_item-q::before {
  content: "Q";
  color: var(--color-text);
}

.c-faq_item .c-faq_item-a::before {
  content: "A";
  color: var(--color-alert);
}

.c-faq_item .c-faq_item-q a,
.c-faq_item .c-faq_item-a a {
  color: var(--color-link);
  text-decoration: underline;
}

.c-faq_back-link {
  text-align: right;
}

.c-faq_back-link a {
  display: inline-block;
  margin-left: auto;
  font-size: var(--size-ssss);
  color: var(--color-link);
  text-decoration: underline;
}

/* --------------------------------------------
 * A-8__SELECT BOX
 * ----------------------------------------- */

 .c-selectbox-container {
  padding: 20px 0;
}

.c-selectbox-label {
  display: block;
  font-size: var(--size-sss);
  margin-bottom: 4px;
}

.c-selectbox {
  position: relative;
}

.c-selectbox::after {
  content: '';
  position: absolute;
  top: calc(50% - 1px);
  right: 18px;
  width: 4px;
  height: 4px;
  color: var(--color-darkgray);
  border-width: 0 1px 1px 0;
  border-style: solid;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
}

.c-selectbox select {
  appearance: none;
  min-width: 160px;
  padding: 0 12px;
  border: 1px solid var(--color-gray);
  border-radius: 25px;
  color: var(--color-secondary-600);
  font-size: var(--size-ss);
  cursor: pointer;
  height:100%;
}

.c-select-btn {
  display: inline-block;
  text-align: center;
  margin-left: 12px;
}

.c-select-btn button {
  padding: 4px 12px;
  border: 1px solid var(--color-gray);
  border-radius: 4px;
  background-color: var(--color-extralightgray);
  color: var(--color-text);
  font-size: var(--size-sss);
  cursor: pointer;
}

/* --------------------------------------------
 * A-9__BREADCRUMB
 * ----------------------------------------- */

.c-breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: block;
  overflow-x: hidden;
  text-overflow: ellipsis;
  margin-right: auto;
  margin-left: auto;
  padding: 8px;
  background-color: var(--color-white);
  margin-bottom: -1px;
}

.c-breadcrumb_item {
  display: inline-block;
  position: relative;
  padding-right: 14px;
  font-size: var(--size-sss);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.c-breadcrumb_item::before {
  content: "›";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  font-size: var(--size-ss);
  text-align: center;
  line-height: 1;
}

.c-breadcrumb_item:last-child {
  margin-right: 0;
  padding-right: 0;
}

.c-breadcrumb_item:last-child::before {
  content: normal;
}

.about-page .c-breadcrumb-container,
.about-point .c-breadcrumb-container {
  padding-top: 140px;
}

@media screen and (max-width: 900px) {
  .about-page .c-breadcrumb-container,
  .about-point .c-breadcrumb-container {
    padding-top: 64px;
  }
}

/* ----------------------------------------
 * A-10__PROGRESSBAR
 * ----------------------------------------- */

.c-progressbar {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
}

.c-progressbar li {
  position: relative;
  text-align: center;
  color: var(--color-darkgray);
  font-size: var(--size-sss);
}

.c-progressbar li::before {
  position: relative;
  display: block;
  width: 12px;
  height: 12px;
  margin: 7px auto 4px auto;
  content: '';
  text-align: center;
  border-radius: 50%;
  background-color: var(--color-lightgray);
  z-index: 1;
}

.c-progressbar li::after {
  position: absolute;
  top: 12px;
  left: -50%;
  width: 100%;
  height: 2px;
  content: '';
  background-color: var(--color-lightgray);
  z-index: 0;
}

.c-progressbar li:first-child:after {
  content: none;
}

.c-progressbar .is-active,
.c-progressbar .is-complete {
  color: var(--color-primary);
  font-weight: bold;
}

.c-progressbar .is-active:before,
.c-progressbar .is-complete:before {
  background-color: var(--color-primary);
}

.c-progressbar .is-active:after,
.c-progressbar .is-complete:after {
  background-color: var(--color-primary);
}

/* ----------------------------------------
* A-11__CARD
* ----------------------------------------- */

.c-card {
  border: 1px solid var(--color-primary);
  background-color: var(--color-white);
  border-radius: 6px;
}

.c-card_title {
  background-color: var(--color-primary);
  text-align: center;
  padding: 4px;
  color: var(--color-white);
}

.c-card_inner {
  min-height: 100px;
  padding: 12px;
}

.c-card_table {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  line-height: 1.2;
}

.c-card_table tr td {
  padding: 4px;
}

.c-card.is-orange {
  border: 1px solid var(--color-bg-orange);
}
.c-card.is-orange .c-card_title {
  background-color: var(--color-bg-orange);
  color: var(--color-text);
}

/* ----------------------------------------
* A-12__LIST
* ----------------------------------------- */

/* ----------------------------------------
* A-13__GOODS
* ----------------------------------------- */

.c-goods {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(calc(25% - 24px), 2fr));
  grid-column-gap: 12px;
  grid-row-gap: 40px;
  justify-items: center;
}

.c-goods_item {
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  border: 1px solid var(--color-extralightgray);
  border-radius: 6px;
  padding: 8px;
}

.c-goods_item a {
  display: block;
}

.c-goods_item-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  background-color: var(--color-extralightgray);
}

.c-goods_item-name {
  font-size: var(--size-default);
  color: var(--color-text);
  margin-top: 6px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  height: clamp(2.25rem, 2.143rem + 0.48vw, 2.5rem);
  line-height: 1.2;
  text-align: left;
}

.c-goods_item-stock {
  font-size: var(--size-ssss);
  color: var(--color-darkgray);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 8px 0 4px 0;
  text-align: right;
}

.c-goods_item-point {
  font-weight: bold;
  font-size: var(--size-s);
  color: var(--color-primary);
}

@media screen and (max-width: 900px) {
  .c-goods {
    grid-template-columns: repeat(auto-fill, minmax(calc(33.3% - 12px), 2fr));
  }

  .c-goods_item-point {
    font-size: var(--size-m);
    line-height: 1.0;
  }

  .c-goods_item-point span {
    display: inline-block;
  }
}

@media screen and (max-width: 768px) {
  .c-goods {
    grid-template-columns: repeat(auto-fill, minmax(calc(50% - 12px), 2fr));
    grid-column-gap: 8px;
    grid-row-gap: 20px;
  }
}

/* NEWマーク */
.c-goods_item-img {
  position: relative;
}

.c-goods_item-img .tag-new {
  position: absolute;
  top: -2px;
  right: 0;
}

.tag-new::before {
  content: "NEW";
  color: var(--color-text);
  font-size: var(--size-sss);
  font-weight: bold;
  background-color: var(--color-accent);
  padding: 2px 4px;
}

/* ----------------------
 * カートに入れるボタン
 * ---------------------- */

.add-to-cart {
  margin-top: 12px;
}

.add-to-cart_select {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: var(--color-text);
}

.add-to-cart_select label {
  display: block;
  min-width: 40px;
  font-size: var(--size-ss);
  padding-right: 8px;
}

.add-to-cart_select select {
  display: block;
  width: 80%;
  max-width: 120px;
  border-radius: 4px;
  border: 1px solid var(--color-lightgray);
  text-align: center;
  color: var(--color-text);
  background-color: var(--color-white);
  padding: 6px;
}

.add-to-cart_btn button {
  display: block;
  width: 100%;
  background-color: var(--color-primary);
  text-align: center;
  font-weight: bold;
  padding: 10px;
  border-radius: 4px;
  color: var(--color-white);
}

.add-to-cart_btn .no-stock {
  background-color: #6D6D6D;
}

.add-to-cart_select {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 12px;
  color: var(--color-text);
}

.add-to-cart_select::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 12px;
  width: 4px;
  height: 4px;
  border-width: 0 1px 1px 0;
  border-style: solid;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
}



/* ----------------------
 * グッズ詳細
 * ---------------------- */
.c-goods-summary {
  margin-bottom: 12px;
}

.c-goods-summary-container .add-to-cart {
  display: flex;
  align-items: baseline;
  justify-self: flex-end;
  gap: 20px;
}

.c-goods-summary-container .add-to-cart button {
  min-width: 200px;
}

.c-goods-summary-container .add-to-cart_select {
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.c-goods-summary-container .add-to-cart_select select {
  width: 180px;
  max-width: 180px;
}

.c-goods-summary_img img {
  aspect-ratio: 1/1;
  object-fit: contain;
}
.c-goods-summary_img img {
  background-color: var(--color-extralightgray);
}

.c-goods-summary .c-goods-summary_goodsname {
  color: var(--color-text);
  font-weight: bold;
  font-size: var(--size-m);
  line-height: 1.2;
}

.c-goods-summary .c-goods-summary_explain {
  background-color: var(--color-extralightgray);
  border-radius: 4px;
  font-size: var(--size-ss);
  margin-top: 24px;
  padding: 12px;
}

.c-goods-summary .c-goods-summary_explain dl dt {
  color: var(--color-text);
  font-weight: bold;
  font-size: var(--size-sss);
}

.c-goods-summary .c-goods-summary_explain dl dd {
  color: var(--color-text);
  font-size: var(--size-ss);
  padding: 8px;
}

.c-goods-summary .c-goods-summary_point {
  font-size: var(--size-m);
  font-weight: bold;
  color: var(--color-primary);
  text-align: right;
  margin-top: 4px;
}

.c-goods-summary .c-goods-summary_stock {
  font-size: var(--size-sss);
  color: var(--color-text);
}

.c-goods-summary_mfr {
  font-size: var(--size-sss);
  margin: 4px 0;
}

.c-goods-summary_mfr a {
  text-decoration: underline;
  color: var(--color-link);
}

@media screen and (max-width: 900px) {
  .c-goods-container .goods {
    grid-template-columns: repeat(auto-fill, minmax(calc(50% - 12px), 2fr));
  }

  .c-goods-summary .c-goods-summary_explain {
    font-size: var(--size-s);
  }

  .c-goods-summary .c-goods-summary_point {
    font-size: var(--size-l);
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 480px) {
  .c-goods-summary-container .add-to-cart {
    display: block;
  }

  .c-goods-summary-container .add-to-cart {
    width: 100%;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .c-goods-summary-container .add-to-cart_select {
    width: 100%;
    justify-content: flex-end;
  }
}

/* ----------------------------------------
* A-14__TEXT-BOX
* ----------------------------------------- */

.c-textbox-01 {
  display: block;
}

.c-textbox-01_inner {
  position: relative;
  width: 240px;
  height: 240px;
  background-color: var(--color-white);
  border: 3px solid var(--color-accent);
  padding: 12px;
  transition: transform 0.3s ease-in;
}

.c-textbox-01_inner::before,
.c-textbox-01_inner::after {
  content: '';
  width: 0;
  height: 0;
  display: block;
  border-style: solid;
  border-width: 12px;
  position: absolute;
}

.c-textbox-01_inner::before {
  top: -2px;
  left: -2px;
  border-color: var(--color-accent) transparent transparent var(--color-accent);
}

.c-textbox-01_inner::after {
  bottom: -2px;
  right: -2px;
  border-color: transparent var(--color-accent) var(--color-accent) transparent;
}

.c-textbox-01_inner:hover {
  border: 3px solid var(--color-primary);
  transform: translateY(-4px);
  transition: transform 0.3s ease-in;
}

.c-textbox-01_inner:hover::before {
  border-color: var(--color-primary) transparent transparent
    var(--color-primary);
}

.c-textbox-01_inner:hover::after {
  border-color: transparent var(--color-primary) var(--color-primary)
    transparent;
}

.c-textbox-01_inner:hover .c-textbox-01_inner-title {
  color: var(--color-primary);
}

.c-textbox-01_inner-title {
  font-size: var(--size-l);
  font-weight: bold;
  color: var(--color-accent);
  line-height: 1.3;
  padding: 12px 0;
  text-align: center;
}

.c-textbox-01_inner-title span {
  display: inline-block;
}

.c-textbox-01_inner-text {
  font-size: var(--size-m);
  color: var(--color-text);
  line-height: 1.3;
}

/* 02 */
.c-textbox-02 {
  display: block;
  padding: 12px;
}

.c-textbox-02_inner {
  width: 240px;
  height: 100%;
  padding: 12px;
  background-color: var(--color-white);
  box-shadow: 0 0 12px rgba(14, 126, 229, 0.4);
}

.c-textbox-02_inner-title {
  padding: 12px 0;
  font-size: var(--size-l);
  font-weight: bold;
  color: var(--color-accent);
  line-height: 1.3;
  text-align: center;
}

.c-textbox-02_inner-title span {
  display: inline-block;
}

.c-textbox-02_inner-text {
  font-size: var(--size-m);
  color: var(--color-text);
  line-height: 1.3;
}

/* ----------------------------------------
* A-15__FRAME
* ----------------------------------------- */

.c-frame {
  display: flex;
  gap: 20px;
  margin-left: auto;
  margin-right: auto;
}

.c-frame_item {
  width: 100%;
  min-height: 270px;
  background-color: var(--color-bg-base);
  border: 6px solid var(--color-bg-lightblue);
  border-radius: 20px;
  padding: 12px;
  margin-bottom: 12px;
}

.c-frame_item.available-point {
  width: 100%;
  height: min-content;
  background-image: url('../img/common/bg-point.png');
  background-origin: border-box;
  background-size: 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.c-frame_item-title {
  font-size: var(--size-ss);
  font-weight: bold;
  color: var(--color-primary);
}

.c-frame_item-title.is-text-center {
  text-align: center;
}

.c-frame_item-text {
  margin: 8px 0;
  color: var(--color-text);
  line-height: 1.3;
}

.c-frame .collected-points {
  font-size: var(--size-m);
  font-weight: bold;
  color: var(--color-text);
  text-align: center;
}

@media screen and (max-width: 768px) {
  .c-frame {
    display: block;
  }
  .c-frame_item {
    min-height: 0;
  }

  .c-frame_item-title {
    font-size: var(--size-s);
    font-weight: bold;
    color: var(--color-primary);
  }
}

/* ----------------------------------------
* A-16__SWIPER
* ----------------------------------------- */
/* .swiper-button-prev,
.swiper-button-next {
  height: 32px !important;
  width: 32px !important;
} */

.swiper-button-prev::after,
.swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  width: 32px;
  height: 32px;
  margin: auto;
  color: transparent;
}

.swiper-button-prev::after {
  background-image: url(../img/common/icons/icon_arrow-prev.svg);
}

.swiper-button-next::after {
  background-image: url(../img/common/icons/icon_arrow-next.svg);
}

.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction  {
  bottom: 0;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 6px;
}

.swiper-button-pause {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 99;
  bottom: -16px;
  left: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.swiper-wrapper {
  padding-bottom: 12px;
}

.swiper-wrapper.c-goods-summary_img {
  padding-bottom: 30px;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.slide-container .swiper-slide img {
  border-radius: 20px;
  box-shadow: 0px 4px 6px 0 rgba(0, 36, 162, 0.2);
}

/* スライド　MV */
.slide-container {
  position: relative;
  max-width: var(--width-max);
}

.slide-container .swiper-button-prev,
.slide-container .swiper-button-next {
  position: absolute;
  top: calc(50% + 50px);
}

.slide-container .swiper-main {
  padding-top: 160px;
}

.swiper-main .swiper-button-prev,
.swiper-main .swiper-button-next {
  height: 32px !important;
  width: 32px !important;
}

.swiper-main .swiper-button-prev::after,
.swiper-main .swiper-button-next::after {
  width: 32px;
  height: 32px;
}

/* スライド　小バナー */
.swiper-small .swiper-button-prev,
.swiper-small .swiper-button-next {
  height: 24px !important;
  width: 24px !important;
}
.swiper-small .swiper-button-prev::after,
.swiper-small .swiper-button-next::after {
  width: 24px;
  height: 24px;
}

.slide-container .swiper-small .swiper-button-prev,
.slide-container .swiper-small .swiper-button-next {
  position: absolute;
  top: 50%;
}

.swiper-small {
  --add-bottom: 16px;
  padding-bottom: var(--add-bottom);
}

.swiper-small .swiper-slide {
  width: 80%;
  text-align: center;
}

.swiper-small .swiper-slide img {
  width: 80%;
}

@media screen and (max-width: 900px) {
  .slide-container {
    padding: 0 12px;
  }
  .slide-container .swiper-button-prev,
  .slide-container .swiper-button-next{
    display: none;
  }
  .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 5px;
  }
}

/* ----------------------------------------
* A-17__TOC
* ----------------------------------------- */
.c-toc {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  grid-gap: 8px;
  margin-left: auto;
  margin-right: auto;
}

.c-toc_item a {
  display: block;
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  font-size: var(--size-default);
  padding: 8px;
  text-align: center;
}

.c-toc_item a:hover {
  text-decoration: underline;
}

.c-toc_item.is-arrow-b {
  position: relative;
}
.c-toc_item.is-arrow-b::after {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  right: 12px;
  width: 4px;
  height: 4px;
  border: 1px solid;
  border-color: transparent transparent var(--color-primary) var(--color-primary);
  transform: rotate(-45deg);
}

/* ----------------------------------------
* A-18__STEPBOX
* ----------------------------------------- */

.c-step {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-gap: 24px;
}

.c-step_item {
  position: relative;
  background-color: var(--color-white);
  filter: drop-shadow(0 3px 4px rgba(0,0,0,.1));
  border-radius: 12px;
  padding: 20px 12px 12px 12px;
}

.c-step_item-title {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 900;
  font-size: var(--size-s);
  color: var(--color-white);
  background-color: var(--color-primary);
  border-radius: 0 0 12px 0;
  padding: 0 20px 4px 20px;
}

.c-step_item-img {
  text-align: center;
}

.c-step_item-img img {
  width: 100%;
  max-width: 160px;
  text-align: center;
}

.c-step_item-text {
  font-size: var(--size-ss);
  margin-top: 12px;
}

.c-step_item-text a {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .c-step {
    display: block;
    padding: 0 20px;
  }

  .c-step_item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 32px 12px 12px 12px;
  }

  .c-step_item-text {
    margin-top: 0;
    margin-left: 24px;
  }

  .c-step_item-img {
    width: 30%;
  }

  .c-step_item-text {
    width: 70%;
  }
}


/* ----------------------------------------
* A-19__HASHTAG
* ----------------------------------------- */
.c-hashtag-container {
  display: flex;
  align-items: center;
}

.c-hashtag-title {
  min-width: 80px;
  font-size: var(--size-sss);
  font-weight: bold;
  color: var(--color-primary);
  padding-right: 4px;
}

.c-hashtag li {
  display: inline-block;
  min-width: 50px;
  margin: 2px 4px;
  text-align: center;
  line-height: 1;
}

.c-hashtag li a {
  display: inline-block;
  font-size: var(--size-ssss);
  color: var(--color-link);
  background-color: var(--color-white);
  border: 1px solid var(--color-primary);
  border-radius: 12px;
  padding: 2px 10px;
}

.c-hashtag li a:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transition: background-color 0.4s ease;
}

/* ----------------------------------------------------------- 
 *
 * ACTION *
 *
 * ----------------------------------------------------------- */

/* --------------------------------------------
 * B-1__MODAL
 * ----------------------------------------- */

/* micromodal */
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}
  
.modal__container {
  position: relative;
  background-color: var(--color-white);
  padding: 20px;
  width: 90%;
  max-width: 500px;
  max-height: 500px;
  min-height: 240px;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
  z-index: 90;
}

.modal__container.goods-search {
  max-height: 85vh;
  padding: 40px 0 12px 0;
}
 
.modal__close {
  position: absolute;
  display: inline-block;
  width: 40px;
  height: 40px;
  top: 0;
  right: 0;
}

.modal__close span {
  display: inline-block;
  width: 40px;
  height: 40px;
  font-size: var(--size-l);
  color: var(--color-text);
}

@keyframes mmfadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
  
@keyframes mmfadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}
  
@keyframes mmslideIn {
  from { transform: translateY(15%); }
  to { transform: translateY(0); }
}
  
@keyframes mmslideOut {
  from { transform: translateY(0); }
  to { transform: translateY(-10%); }
}
  
.micromodal-slide {
  display: none;
}
  
.micromodal-slide.is-open {
  display: block;
}
  
.micromodal-slide[aria-hidden="false"] .modal__overlay {
  animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}
  
.micromodal-slide[aria-hidden="false"] .modal__container {
  animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}
  
.micromodal-slide[aria-hidden="true"] .modal__overlay {
  animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}
  
.micromodal-slide[aria-hidden="true"] .modal__container {
  animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}
  
.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

/* --------------------------------------------
 * B-2__OPEN/CLOSE
 * ----------------------------------------- */
.open_box {
  display: block;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}

.open_box.open {
  height: auto;
  max-height: none;
  opacity: 1;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}

/* --------------------------------------------
 * B-3__OPEN/CLOSE-2
 * ----------------------------------------- */

.c-box_hidden {
  position: relative;
}

.c-box_hidden {
  text-align: center;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 70%);
  transition: background-color 0.3s ease;
}

.c-box_hidden button {
  background-color: var(--color-white);
  border: 1px solid var(--color-primary);
  border-radius: 20px;
  color: var(--color-primary);
  font-size: var(--size-ssss);
  width: 100%;
  max-width: 200px;
  padding: 4px 20px;
  margin-bottom: 20px;
}

.c-box_hidden input {
  display: none;
}

.c-box_hidden .c-box_inner {
  overflow: hidden;
  height: 116px;
  transition: all 1s ease;
  background-color: var(--color-white);
  padding: 20px;
  border-radius: 8px;
}

.c-box_hidden input:checked ~ .c-box_inner {
  height: auto;
  transition: all 1s ease;
  padding-bottom: 60px;
}

.c-box_hidden .c-box_inner {
  transition: height 0.8s ease, padding 0.8s ease;
}

/* 商品 非表示表示 */
.c-box-goods_hidden {
  position: relative;
  text-align: center;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 70%);
  transition: background-color 0.3s ease;
}

.c-box-goods_inner {
  overflow: hidden;
  transition: all 0.8s ease;
  background-color: var(--color-white);
  padding: 20px;
  border-radius: 8px;
}

.c-goods_item.hidden {
  display: none;
}

.c-box-goods_inner.open .c-goods_item.hidden {
  display: list-item;
}

.c-box-goods-btn {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding-right: 24px;
}

.c-box-goods-btn button {
  width: 140px;
  background-color: var(--color-white);
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: 20px;
  padding: 4px;
  font-size: var(--size-ssss);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.c-box-goods-btn button:hover {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
}

.c-box-goods-btn input[type="checkbox"] {
  display: none;
}


/* ----------------------------------------------------------- 
 *
 * PAGE *
 *
 * ----------------------------------------------------------- */

/* --------------------------------------------
 * C-1__PAGE HEADER
 * ----------------------------------------- */

.c-page-header {
  background-color: var(--color-white);
  background-image: radial-gradient(var(--color-primary) 0.5px, transparent 0.5px), radial-gradient(var(--color-primary) 0.5px, var(--color-white) 0.5px);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
}

.c-page-header_inner {
  padding: var(--responsive);
}

.c-page-header_inner .c-page-header_title {
  font-size: var(--size-m);
  font-weight: bold;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 12px;
}

.c-page-header_inner .c-page-header_description {
  font-size: var(--size-s);
  color: var(--color-darkgray);
}

/* ----------------------------------------------------------- 
 *
 * TABLE *
 *
 * ----------------------------------------------------------- */

.table-align_right {
  text-align: right;
}

/* コメント SPのみ表示 */
.table-comment {
  display: none;
}

@media screen and (max-width: 767px) {
  .table-comment {
    display: block;
    color: var(--color-darkgray);
    font-weight: bold;
    font-size: var(--size-ss);
    text-align: center;
    margin-bottom: 12px;
    margin-top: 12px;
  }
}

/* ----------------------------------------
* table基本
* ----------------------------------------- */

.c-table-base {
  width: 100%;
  border-collapse: collapse;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.c-table-base th {
  min-width: 100px;
  vertical-align: middle;
  line-height: 1.2;
  font-size: var(--size-ss);
  padding: 12px;
}

.c-table-base td {
  color: var(--color-text);
  padding: 6px;
}

.c-table-base .table-text {
  font-size: var(--size-s);
  text-align: left;
}

/* ----------------------------------------
* table 01
* ----------------------------------------- */

.c-table-base.is-style-01 {
  width: 100%;
  text-align: left;
}

.c-table-base.is-style-01 tr th {
  font-size: var(--size-ss);
  color: var(--color-darkgray);
  padding: 4px 4px 8px 4px;
  text-align: center;
}

.c-table-base.is-style-01.mypage-top tbody tr th {
  font-size: var(--size-sss);
  color: var(--color-darkgray);
  font-weight: normal;
  padding: 4px 4px 8px 4px;
  text-align: center;
}

.c-table-base.is-style-01 tr td {
  padding: 4px;
  text-align: center;
}

.c-table-base.is-style-01 tr:nth-child(2n) {
  background-color: var(--color-extralightgray);
}


/* ----------------------------------------
* table scroll
* ----------------------------------------- */
.l-table-container.scroll {
  overflow-x: auto;
  padding-bottom: 12px;
  padding-top: 12px;
  width: 100%;
}

.l-table-container.scroll td {
  min-width: 135px;
  line-height: 1.2;
}

/* ----------------------------------------
* table 02
* ----------------------------------------- */
.c-table-base.is-style-02 th {
  color: var(--color-primary);
  padding: 4px 0;
}

/* 「会員ランク制度について」ページ 付与例 */
.l-table-container.scroll .c-table-base.is-style-02.fuyo th {
  font-size: var(--size-sss);
}

.l-table-container.scroll .c-table-base.is-style-02.fuyo td {
  min-width: 100px;
}

.c-table-base.is-style-02.fuyo tr {
  border-bottom: 1px solid var(--color-extralightgray);
}

.c-table-base.is-style-02.fuyo tr:last-child {
  border-top: 3px solid var(--color-extralightgray);
  border-bottom: 3px solid var(--color-extralightgray);
}

.c-table-base.is-style-02.fuyo td {
  vertical-align: middle;
}

.c-table-base.is-style-02.fuyo td:first-child {
  color: var(--color-primary);
  height: 60px;
}

/* ----------------------------------------
* table 03
* ----------------------------------------- */

.c-table-base.is-style-03 tr {
  border-top: 1px solid var(--color-extralightgray);
  text-align: left;
}

.c-table-base.is-style-03 tr:last-child {
  border-bottom: 1px solid var(--color-extralightgray);
}

.c-table-base.is-style-03 th {
  width: 30%;
  min-width: 160px;
  font-size: var(--size-ss);
  background-color: var(--color-extralightgray);
}

@media screen and (max-width: 900px) {
  .c-table-base.is-style-03 th,
  .c-table-base.is-style-03 td {
    display: block;
    width: 100%;
    padding: 6px;
  }

  .c-table-base.is-style-03 tr {
    border: none;
  }

  .c-table-base.is-style-03 tr:last-child {
    border-bottom: none;
  }
}

/* ----------------------------------------
* table icon
* ----------------------------------------- */

.c-table-base.is-style-icon {
  width: 100%;
  text-align: left;
}

.c-table-base.is-style-icon tr th {
  padding: 4px 0;
  text-align: center;
}

.c-table-base.is-style-icon.keizoku tr th {
  border-top: 1px solid var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  padding: 4px 0;
}

.c-table-base.is-style-icon tr td {
  padding: 4px 0;
  vertical-align: middle;
  font-size: var(--size-ss);
  text-align: center;
}

.c-table-base.is-style-icon tr:nth-child(2n) {
  background-color: var(--color-extralightgray);
}

.c-table-base.is-style-icon .icon span {
  font-size: var(--size-ss);
}

.c-table-base.is-style-icon .icon img {
  width: 18px;
  height: auto;
  vertical-align: -3px;
}

/* 「会員ランク制度について」ページ 継続ポイント */
.c-table-base.is-style-icon.keizoku .tr-head {
  vertical-align: middle;
  background-color: var(--color-white);
}

.c-table-base.is-style-icon.keizoku .tr-border {
  border-bottom: 2px solid var(--color-lightgray);
}

.c-table-base.is-style-icon.tokuten th ,
.c-table-base.is-style-icon.keizoku th {
  min-width: 90px;
}

.c-table-profile-summary {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  border-collapse: collapse;
}

.c-table-profile-summary th {
  min-width: clamp(7.5rem, 7.273rem + 1.14vw, 8.125rem);
  color: var(--color-text);
  line-height: 1.2;
  font-size: var(--size-ss);
  font-weight: normal;
  text-align: left;
  padding: 2px;
}

.c-table-profile-summary td {
  color: var(--color-text);
  line-height: 1.2;
  font-size: var(--size-ss);
  font-weight: normal;
  text-align: left;
  padding: 1px;
}

.c-table-profile-summary_address {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.5em;
  max-height: 4.5em;
}

/* ----------------------------------------
* table 04
* ----------------------------------------- */

.c-table-base.is-style-04 tr {
  border-top: 1px solid var(--color-extralightgray);
  text-align: left;
}

.c-table-base.is-style-04 tr:last-child {
  border-bottom: 1px solid var(--color-extralightgray);
}

.c-table-base.is-style-04 th {
  width: 30%;
  min-width: 160px;
  font-size: var(--size-ss);
  background-color: var(--color-extralightgray);
}

.c-table-base.is-style-04 th {
  font-size: var(--size-ss);
}

.c-table-base.is-style-04 th,
.c-table-base.is-style-04 td {
  display: block;
  width: 100%;
  padding: 6px;
}

.c-table-base.is-style-04 td {
  padding: 6px 6px 12px 6px;
}

.c-table-base.is-style-04 tr {
  border: none;
}

.c-table-base.is-style-04 tr:last-child {
  border-bottom: none;
}

.c-race-schedule-list {
  display: grid;
  grid-template-columns: 36% 64%;
  column-gap: 24px;
}

.c-race-schedule-list dt {
  text-align: right;
}

.c-race-schedule-list dd {
  text-align: left;
}

@media (max-width: 768px) {
  .c-race-schedule-list {
    column-gap: 12px;
    font-size: var(--size-sss);
  }
}