@charset "UTF-8"; /**/
/*
## ご利用の流れ
*/
.section-flow {
  background: #f7f5ef;
  background: linear-gradient(180deg, rgb(0 0 0 / 0%) 0%, #f7f5ef 50%);
}

.flow-list li {
  background: #fff;
  border-radius: var(--m-xs);
  padding: var(--m-r);
  position: relative;
  align-items: center;
  grid-column: 1 / 12;
}

.flow-list li:nth-of-type(even) {
  grid-column: 2 / -1;
}

.flow-list li:nth-child(even) .text_box {
  margin-left: 1rem;
}

.flow-list li:nth-child(even) figure {
  order: 1;
}

.flow-list li:not(:last-child)::after {
  content: "";
  display: block;
  background: linear-gradient(0deg, var(--c-sub), transparent);
  height: calc(4vmax / 2);
  width: calc(12vmax / 2);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  bottom: calc(clamp(3rem, 6vw, 6rem) / -1.5);
  left: 50%;
  transform: translateX(-50%);
}

.flow-list .u-en {
  display: block;
  transform: rotate(-2deg);
  transform-origin: left bottom;
  width: fit-content;
  color: var(--c-accent);
  font-family: var(--f-cursive);
  font-size: var(--f-xxl);
  margin-bottom: var(--m-s);
  letter-spacing: 0.1rem;
  line-height: 1;
}

.flow-list figure {
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  width: 100%;
  height: 100%;
  grid-column: span 5;
}

.flow-list figure img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}

.flow-list .text_box {
  grid-column: span 7;
}

.flow-list .text_box .text {
  font-size: var(--f-s);
  line-height: 1.8;
}

.flow-list .text_box dl {
  background-color: #f5f5f5;
  border-radius: .5rem;
  margin-top: 1rem;
  font-size: var(--f-xs);
  padding: 1rem;
  line-height: 1.5;
  color: #666;
}

.flow-list .text_box dl dt {
  font-weight: bold;
}

.flow-list .text_box dl dd {
  margin: 0.5rem 0;
}

.flow-list .def {
  display: grid;
  grid-template-columns: fit-content(140px) auto;
  align-items: baseline;
  width: fit-content;
  border-left: 1px solid currentColor;
  padding-left: var(--m-s);
  margin-bottom: var(--m-m);
  gap: 0.5rem 1rem;
  margin-top: var(--m-r);
  line-height: 1.5;
  font-size: var(--f-xs);
}

.flow-list .def dt {
  font-weight: var(--w-b);
}

.flow-list .def dd small {
  display: block;
}

.menu-note {
  text-decoration-line: underline;
  text-decoration-color: rgb(255 209 87 / 30%);
  text-decoration-thickness: 0.3em;
  text-underline-offset: -0.1em;
  text-decoration-skip-ink: none;
  text-align: center;
  margin: 0 auto;
  font-size: var(--f-r);
  grid-column: -1 / 1;
}

.menu-note .title {
  font-size: var(--f-l);
  font-weight: var(--w-b);
  margin-bottom: 1rem;
}

@media screen and (max-width: 1024px) {
}

@media screen and (max-width: 767px) {
  .flow-list li {
    flex-direction: column;
  }

  .flow-list li:nth-child(odd) {
    margin-right: initial;
  }

  .flow-list li:nth-child(even) {
    margin-left: initial;
  }

  .flow-list li:nth-child(even) figure {
    order: 1;
  }

  .flow-list li .text_box {
    order: 2;
    margin-left: initial!important;
  }
}
