@charset "UTF-8";
/* --------------------------------------------------------
-----------------------------------------------------------
 common
-----------------------------------------------------------
----------------------------------------------------------- */
/*
-----------------------------------------------------------
 p-anchor
----------------------------------------------------------- */
.p-anchor .inner-p-anchor {
  display: flex;
}

.p-anchor ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 0.9rem 0;
  margin-bottom: 4rem;
}

.p-anchor ul li {
  width: calc((100% - 0.9rem) / 2);
  min-height: 4rem;
}

.p-anchor ul li a {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: center;
  font-weight: normal;
  background: #FFF;
  text-decoration: none;
  height: 100%;
  font-size: 1.3rem;
  line-height: 1.3;
  padding: 1rem 0.3rem 1rem 2.2rem;
  border-radius: 0.4rem;
  letter-spacing: 0;
}

.p-anchor ul li a::before {
  border-color: var(--color04) transparent transparent transparent;
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.6rem 0.5rem 0 0.5rem;
  display: block;
  top: 0;
  left: 0.8rem;
  bottom: 0.1rem;
  margin: auto 0;
}

/*
-----------------------------------------------------------
 p-section
----------------------------------------------------------- */
.p-section {
  background: #FFF;
  padding: 1.8rem 1.5rem 2rem;
  border-radius: 0.6rem;
}

.p-section + .p-section {
  margin-top: 4rem;
}

.p-section__title {
  font-family: var(--font-family02);
  color: var(--color04);
  font-weight: bold;
  border-left: 2px solid;
  line-height: 1.4;
  font-size: 1.9rem;
  margin-bottom: 2.2rem;
  padding: 0.5rem 0 0.5rem 0.8rem;
}

.p-section a {
  color: var(--color-link);
  text-decoration: underline;
}

@media screen and (min-width: 751px) {
  .p-section a:hover {
    text-decoration: none;
  }
}
/* p-section__note
----------------------------------------------------------- */
.p-section__note {
  color: var(--color-text-sub);
  text-indent: -1em;
  margin-left: 1em;
  font-size: 92%;
  line-height: 1.6;
  margin-top: 0.5rem;
}
.p-section__note::before {
  content: "※";
}

.p-section__note-bold {
  font-weight: bold;
  color: #8c7d73;
}

/* p-section__sub
----------------------------------------------------------- */
* ~ .p-section__sub {
  margin-top: 4rem;
}

.p-section__sub-title {
  position: relative;
  font-weight: bold;
  margin-bottom: 0.8rem;
  line-height: 1.4;
  font-size: 1.6rem;
  padding-left: 2rem;
}
.p-section__sub-title::before {
  position: absolute;
  background: #c1c1c1;
  content: "";
  height: 0.1rem;
  width: 1.5rem;
  top: 1rem;
  left: 0;
}

.p-section__sub-body ul {
  list-style: disc;
  list-style-position: outside;
  margin: 0.7rem 0;
  padding-left: 1.2em;
  line-height: 1.45;
}

.p-section__sub-body li + li {
  margin-top: 0.5rem;
}

/* p-section__table
----------------------------------------------------------- */
.p-section__table {
  table-layout: fixed;
  overflow: hidden;
  border-radius: 0.4rem;
  font-size: 1.2rem;
  width: 100%;
  border-spacing: 0;
  line-height: 1.45;
  letter-spacing: 0;
  border: 1px solid #ddd7c5;
  border-collapse: separate;
}

.p-section__table th,
.p-section__table td {
  vertical-align: middle;
  text-align: center;
  border: 1px solid #ddd7c5;
  border-left: none;
  border-top: none;
  background: #FFF;
  padding: 0.7rem 0.3rem;
}

.p-section__table th {
  background: #f0ece1;
}

.p-section__table th:last-child,
.p-section__table td:last-child {
  border-right: none;
}

.p-section__table tbody tr:last-child > * {
  border-bottom: none;
}

.p-section__table span {
  display: inline-block;
}

/* p-section__shipping-table
----------------------------------------------------------- */
.p-section__shipping-table {
  margin-top: 1rem;
}

.p-section__shipping-table th:first-child {
  width: 5em;
}

/* --------------------------------------------------------
-----------------------------------------------------------
 #calendar
-----------------------------------------------------------
----------------------------------------------------------- */
#calendar {
  font-family: "Helvetica Neue", arial, ryo-gothic-plusn, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: normal;
}

#calendar .fc-scrollgrid {
  background: #FFF;
}

#calendar .fc-col-header-cell-cushion,
#calendar .fc-daygrid-day-number,
#calendar .fc-event {
  pointer-events: none;
  color: inherit;
  text-decoration: none;
  white-space: normal;
  line-height: 1.3;
  padding: 0.2rem 0.4rem;
  font-size: 1rem;
}

#calendar .fc-event-title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

#calendar .fc-toolbar-chunk > div {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

#calendar .fc-toolbar.fc-header-toolbar {
  margin-bottom: 0.7em;
}

#calendar .fc-button-primary {
  border: none;
  background: var(--color04);
  font-size: 1.2rem;
}
#calendar .fc-button-primary:disabled {
  background: #dddddd;
  color: #888;
  opacity: 1;
}

#calendar .fc-toolbar-title {
  font-size: 2rem;
  line-height: 1.45;
}

#calendar .fc-day:not(.fc-day-fri):not(.fc-day-thu) {
  width: 13%;
}

#calendar .fc-scrollgrid-section-sticky > * {
  background: #f7f7f7;
  color: #666;
}

/* --------------------------------------------------------
-----------------------------------------------------------
 p-flow-list
-----------------------------------------------------------
----------------------------------------------------------- */
.p-flow-list {
  width: 93%;
  max-width: 380px;
  margin: 0 auto;
}

.p-flow-list__item {
  text-align: center;
}

.p-flow-list__item + .p-flow-list__item {
  position: relative;
  padding-top: 3.3rem;
  margin-top: 1.2rem;
}
.p-flow-list__item + .p-flow-list__item::before {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.5rem 3.5rem 0 3.5rem;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-color: #eadcc8 transparent transparent transparent;
}

.p-flow-list__item-img {
  background: var(--color01);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-position: center;
  -webkit-mask-position: center;
  margin-bottom: 1rem;
  height: 9rem;
}

.p-flow-list__item01 .p-flow-list__item-img {
  -webkit-mask-image: url(/img/guide/icon-items.svg);
  mask-image: url(/img/guide/icon-items.svg);
}

.p-flow-list__item02 .p-flow-list__item-img {
  -webkit-mask-image: url(/img/guide/icon-checkout.svg);
  mask-image: url(/img/guide/icon-checkout.svg);
}

.p-flow-list__item03 .p-flow-list__item-img {
  -webkit-mask-image: url(/img/guide/icon-package.svg);
  mask-image: url(/img/guide/icon-package.svg);
}

.p-flow-list__item-title {
  font-weight: bold;
  font-size: 1.7rem;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

.p-flow-list__item-body-inner {
  display: inline-block;
  text-align: left;
}

/* --------------------------------------------------------
-----------------------------------------------------------
 p-schedule
-----------------------------------------------------------
----------------------------------------------------------- */
.p-schedule__top {
  margin-bottom: 3rem;
}

.p-schedule__table-width01 {
  width: 18%;
}

/*
-----------------------------------------------------------
 p-schedule__table
----------------------------------------------------------- */
.p-schedule__table {
  table-layout: fixed;
  border-collapse: separate;
  overflow: hidden;
  border: 1px solid #dadada;
  width: 100%;
  border-radius: 0.4rem;
  font-size: 1.2rem;
  border-spacing: 0;
  line-height: 1.45;
  letter-spacing: 0;
  margin: 1rem 0;
}

.p-schedule__table th,
.p-schedule__table td {
  text-align: center;
  vertical-align: middle;
  border: 1px solid #dadada;
  border-left: none;
  border-top: none;
  padding: 0.8rem 0.7rem;
}

.p-schedule__table th {
  background: #f0eeea;
}

.p-schedule__table td {
  background: #FFF;
}

.p-schedule__table th:last-child,
.p-schedule__table td:last-child {
  border-right: none;
}

.p-schedule__table tbody tr:last-child > * {
  border-bottom: none;
}

.p-schedule__table span {
  display: inline-block;
}

.p-schedule__table .p-schedule__table-width01 {
  width: 19%;
}

.p-schedule__table .p-schedule__table-width02 {
  width: 34%;
}

.p-schedule__table .p-schedule__table-week01 {
  color: #FFF;
  background-color: rgb(51, 182, 121);
}

.p-schedule__table .p-schedule__table-week02 {
  color: #FFF;
  background-color: rgb(246, 191, 38);
}

.p-schedule__table .p-schedule__table-week03 {
  color: #FFF;
  background-color: rgb(230, 124, 115);
}

.p-schedule__table .p-schedule__table-week04 {
  background-color: rgb(121, 134, 203);
  color: #FFF;
}

/* --------------------------------------------------------
-----------------------------------------------------------
 p-unsupported
-----------------------------------------------------------
----------------------------------------------------------- */
.p-unsupported__area {
  background: #f7f1e8;
  padding: 1rem;
  margin-bottom: 0.8rem;
  font-weight: bold;
  font-size: 92%;
  border-radius: 0.4rem;
}