@charset "UTF-8";
/*
====================================================================
 Fonts
====================================================================
*/
/* Noto Serif Bold */
@font-face {
  font-display: swap;
  font-family: "Noto Serif";
  font-style: normal;
  font-weight: 600;
  src: local(""), url("./fonts/noto-serif-jp-bold.woff2") format("woff2");
}
/* Noto Serif Medium */
@font-face {
  font-display: swap;
  font-family: "Noto Serif";
  font-style: normal;
  font-weight: 500;
  src: local(""), url("./fonts/noto-serif-jp-medium.woff2") format("woff2");
}
/* Cormorant Bold */
@font-face {
  font-display: swap;
  font-family: "Cormorant";
  font-style: normal;
  font-weight: 600;
  src: local(""), url("./fonts/cormorant-bold.woff2") format("woff2");
}
/* Cormorant Medium */
@font-face {
  font-display: swap;
  font-family: "Cormorant";
  font-style: normal;
  font-weight: 500;
  src: local(""), url("./fonts/cormorant-bold.woff2") format("woff2");
}
/* Bodoni Regular */
@font-face {
  font-display: swap;
  font-family: "Bodoni Moda";
  font-style: normal;
  font-weight: 400;
  src: local(""), url("./fonts/bodoni-moda-regular.woff2") format("woff2");
}
/*
====================================================================
 Colors
====================================================================
*/
/*
====================================================================
 Mixins
====================================================================
*/
/*
====================================================================
 FLOW
====================================================================
*/
.section__body {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s, transform 1s;
}

.in-viewport .section__body {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.page-section01 {
  position: relative;
  padding-bottom: 0;
}
.page-section01::before {
  content: "";
  display: block;
  position: absolute;
  width: calc(50% + 310px);
  height: calc(100% - 240px);
  background-color: #f8f5f3;
  top: 0;
  left: 0;
}
.page-section01 h2 {
  margin-bottom: 70px;
}
.page-section01 h2 .jp {
  padding: 0 80px;
}

.step-list__item {
  margin-top: 50px;
  background-color: white;
  border: 1px solid #333;
  border-radius: 4px;
  position: relative;
  counter-increment: number;
  padding: 40px 35px 40px 58px;
}
.step-list__number {
  position: absolute;
  width: 60px;
  left: 28px;
  top: -13px;
  font-family: "Hiragino Mincho ProN", "Noto Serif", serif;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
}
.step-list__number::before {
  content: "0" counter(number);
  display: block;
  position: static;
  width: auto;
  height: auto;
  font-size: 26px;
  z-index: 2;
}
.step-list__number::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: white;
  top: 12px;
}
.step-list__content {
  display: grid;
  grid-template-columns: 224px 1fr;
  grid-template-rows: auto 1fr;
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 14px;
  position: relative;
  padding-left: 74px;
}
.step-list__content::before {
  content: "";
  display: block;
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #c9a412;
  left: -7px;
}
.step-list__content::after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: calc(100% + 60px);
  background-color: #c9a412;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1s;
  transition-delay: 0.5s;
}
.step-list__item:first-child .step-list__content::after {
  transition-delay: 1.5s;
}
.step-list__item.in-viewport .step-list__content::after {
  transform: scaleY(1);
}
.step-list__item:nth-child(7) .step-list__content::after {
  content: none;
}
.step-list__content h3 {
  font-family: "Hiragino Mincho ProN", "Noto Serif", serif;
  font-weight: 600;
  font-size: 20px;
}
.step-list figure {
  grid-row: 1/3;
}

.kerning {
  letter-spacing: -0.015em;
}

.note {
  display: block;
  font-weight: 600;
  color: #c9a412;
}

.attention {
  margin-top: 20px;
  padding: 15px 40px;
  border: 2px dotted #c9a412;
  border-radius: 4px;
}
.attention h4 {
  text-align: center;
  font-weight: 600;
}
.attention h4::before, .attention h4::after {
  content: "■";
  display: inline;
  position: static;
  width: 100%;
  height: 100%;
  color: #c9a412;
}

/*----------------------------------------------------------------*/
@media (max-width: 767px) {
  /*----------------------------------------------------------------*/
  /*
  ====================================================================
   SP / FLOW
  ====================================================================
  */
  .page-section01 {
    padding-bottom: 40px;
    background-color: #f8f5f3;
  }
  .page-section01::before {
    content: none;
  }
  .page-section01 h2 {
    width: 100%;
    margin-bottom: 65px;
  }
  .page-section01 h2 .en img {
    height: 34px;
  }
  .page-section01 h2 .jp {
    padding: 0;
  }
  .step-list__item {
    margin-top: 60px;
    padding: 0;
  }
  .step-list__number {
    width: 56px;
    left: 8px;
    top: -16px;
    font-size: 19px;
  }
  .step-list__number::before {
    font-size: 38px;
  }
  .step-list__number::after {
    background-color: white;
    top: 15px;
  }
  .step-list__content {
    display: flex;
    flex-direction: column;
    -moz-column-gap: unset;
         column-gap: unset;
    row-gap: 20px;
    padding: 20px 24px 30px 24px;
  }
  .step-list__content::before {
    left: 30px;
    bottom: -7px;
  }
  .step-list__item:nth-child(7) .step-list__content::before {
    content: none;
  }
  .step-list__content::after {
    height: 40px;
    transition-delay: 0s !important;
    left: 37px;
    bottom: -40px;
  }
  .step-list h3 {
    text-align: center;
  }
  .step-list figure, .step-list p {
    order: 2;
  }
  .attention {
    margin-top: 30px;
    padding: 20px;
  }
  .common-section-contents {
    padding-top: 50px;
  }
  /*----------------------------------------------------------------*/
}
/*----------------------------------------------------------------*//*# sourceMappingURL=flow.css.map */