/* fonts */
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400..800&display=swap");
:root {
  --color-primary: #f6f5f2;
  --color-secondary: #dddad0;
  --color-bk: #2b2b2b;
  --color-wh: #ffffff;
  --color-line-be: #e8e6df;
  --color-line-gy: #cecece;
  --color-line-bk: #2b2b2b;
  --font-family-general: "Yu Mincho", "YuMincho", serif;
  --font-family-en: "EB Garamond", serif;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  width: 100vw;
  background-color: var(--color-wh);
  line-height: 1.6;
  -webkit-text-size-adjust: none;
  font-family: var(--font-family-general);
  font-size: 1.5rem;
  color: var(--color-bk);
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

a {
  text-decoration: none;
  color: var(--color-bk);
  transition: 0.3s;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

img {
  vertical-align: bottom;
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }

  .sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}
.en {
  font-family: var(--font-family-en);
}

.btn {
  margin-block: 80px 0;
  margin-inline: auto;
  width: 288px;
}
@media screen and (max-width: 767px) {
  .btn {
    margin-block: 64px 0;
    width: 255px;
  }
}
.btn a {
  display: block;
  background-color: var(--color-bk);
  padding-block: 16px;
  padding-inline: 16px;
  color: var(--color-wh);
  font-size: 1.6rem;
  text-align: center;
  border-radius: 40px;
}
@media screen and (max-width: 767px) {
  .btn a {
    font-size: 1.4rem;
  }
}
@media (hover: hover) {
  .btn a:hover {
    opacity: 1;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
  }
}

.full-img {
  margin-top: 96px;
}
@media screen and (max-width: 767px) {
  .full-img {
    margin-top: 80px;
    margin-left: -20px;
    margin-right: -20px;
  }
}

.text-align-center {
  text-align: center;
}

.width-20 {
  width: 20%;
}

.width-25 {
  width: 25%;
}

.width-35 {
  width: 35%;
}

.width-45 {
  width: 45%;
}

.width-50 {
  width: 50%;
}

.width-60 {
  width: 60%;
}

.width-75 {
  width: 75%;
}

.width-80 {
  width: 80%;
}

.width-100 {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .sp-width-35 {
    width: 35%;
  }

  .sp-width-40 {
    width: 40%;
  }

  .sp-width-60 {
    width: 60%;
  }

  .sp-width-65 {
    width: 65%;
  }

  .sp-width-100 {
    width: 100%;
  }
}
/* header */
.header {
  position: relative;
}
.header .header-logo {
  position: absolute;
  top: 0;
  left: 40px;
  z-index: 10;
}
@media screen and (max-width: 1020px) {
  .header .header-logo {
    left: 0;
    width: 120px;
  }
}
.header .header-logo a {
  display: block;
  padding: 40px;
  background-color: var(--color-wh);
}
@media screen and (max-width: 1020px) {
  .header .header-logo a {
    padding: 20px;
  }
}
.header .header-menu {
  display: flex;
  justify-content: flex-end;
  padding: 36px 40px 30px;
}
@media screen and (max-width: 1020px) {
  .header .header-menu {
    padding: 24px 20px;
  }
}
.header .header-menu .header-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1020px) {
  .header .header-menu .header-nav {
    gap: 20px;
  }
}
.header .header-menu .header-nav .header-nav__list {
  display: flex;
  gap: 28px;
  list-style: none;
}
@media screen and (max-width: 1020px) {
  .header .header-menu .header-nav .header-nav__list {
    display: none;
  }
}
.header .header-menu .header-nav .header-nav__list .header-nav__item {
  font-weight: 500;
}
.header .header-menu .header-nav .header-shop-links .header-shop-links__list {
  display: flex;
  gap: 16px;
  list-style: none;
}
@media screen and (max-width: 1020px) {
  .header .header-menu .header-nav .header-shop-links .header-shop-links__list {
    gap: 12px;
  }
}

.sp-menu-trig {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 30px;
  z-index: 5;
  cursor: pointer;
}
@media screen and (min-width: 1021px) {
  .sp-menu-trig {
    display: none;
  }
}
.sp-menu-trig .line-box {
  position: relative;
  width: 28px;
  height: 10px;
}
.sp-menu-trig .line-box > span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-bk);
  position: absolute;
  left: 0;
  transition: 0.3s;
}
.sp-menu-trig .line-box > span.line-01 {
  top: 0;
}
.sp-menu-trig .line-box > span.line-02 {
  top: 10px;
}
.sp-menu-trig .menu-img {
  position: relative;
}
.sp-menu-trig .menu-img > img {
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.3s;
}
.sp-menu-trig .menu-img > img.is-close {
  opacity: 0;
}
.sp-menu-trig.is-active .line-box > span.line-01 {
  transform: rotate(25deg);
  top: 5px;
}
.sp-menu-trig.is-active .line-box > span.line-02 {
  transform: rotate(-25deg);
  top: 5px;
}
.sp-menu-trig.is-active .menu-img > img.is-open {
  opacity: 0;
}
.sp-menu-trig.is-active .menu-img > img.is-close {
  opacity: 1;
}

.sp-menu-content {
  overflow: hidden;
  transition: height 0.3s ease-out;
  height: 0;
  position: absolute;
  top: 86px;
  left: 0;
  z-index: 4;
  width: 100%;
  background-color: var(--color-primary);
}
@media screen and (min-width: 1021px) {
  .sp-menu-content {
    display: none;
  }
}
.sp-menu-content .sp-menu-content__inner {
  padding: 96px 40px;
}
.sp-menu-content .sp-menu-content__inner .sp-header-nav .sp-header-nav__list {
  list-style: none;
}
.sp-menu-content .sp-menu-content__inner .sp-header-nav .sp-header-nav__list .sp-header-nav__item {
  margin-block: 28px 0;
}
.sp-menu-content .sp-menu-content__inner .sp-header-nav .sp-header-nav__list .sp-header-nav__item:first-child {
  margin-top: 0;
}
.sp-menu-content .sp-menu-content__inner .sp-header-nav .sp-header-nav__list .sp-header-nav__item > a {
  font-size: 1.6rem;
  font-weight: 600;
}
.sp-menu-content .sp-menu-content__inner .sp-header-nav .sp-header-nav__list .sp-header-nav__item .sp-header-nav__category__list {
  list-style: none;
  padding-left: 1em;
}
.sp-menu-content .sp-menu-content__inner .sp-header-nav .sp-header-nav__list .sp-header-nav__item .sp-header-nav__category__list .sp-header-nav__category__item {
  margin-top: 16px;
  font-size: 1.4rem;
  font-weight: 500;
}
.sp-menu-content .sp-menu-content__inner .sp-menu-sns {
  margin-block: 40px 0;
  display: flex;
  justify-content: center;
  gap: 16px;
}
.sp-menu-content .sp-menu-content__inner .sp-menu-sns > a {
  width: 40px;
}
.sp-menu-content .sp-menu-content__inner .sp-menu-sns > a > img {
  width: 100%;
}
.sp-menu-content .sp-menu-content__inner .sp-menu-links__list {
  margin-block: 40px 0;
  border-top: 1px solid var(--color-line-gy);
  padding-block: 40px 0;
  padding-inline: 20px;
  list-style: none;
}
.sp-menu-content .sp-menu-content__inner .sp-menu-links__list .footer-links__item {
  margin-block: 16px 0;
}
.sp-menu-content .sp-menu-content__inner .sp-menu-links__list .footer-links__item:first-child {
  margin-top: 0;
}
.sp-menu-content .sp-menu-content__inner .sp-menu-links__list .footer-links__item > a {
  font-size: 1.3rem;
  font-weight: 500;
}

/* footer */
.footer {
  padding-block: 96px;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-block: 64px 48px;
  }
}
.footer .footer-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 40px;
}
@media screen and (max-width: 767px) {
  .footer .footer-inner {
    padding-inline: 20px;
  }
}
.footer .footer-inner .footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-block: 0 64px;
}
@media screen and (max-width: 767px) {
  .footer .footer-inner .footer-top {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer-inner .footer-top .footer-logo {
    text-align: center;
  }
}
.footer .footer-inner .footer-top .footer-address {
  margin-block: 48px 0;
  line-height: 2;
  font-size: 1.4rem;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  .footer .footer-inner .footer-top .footer-address {
    text-align: center;
  }
}
.footer .footer-inner .footer-top .footer-sns {
  margin-block: 64px 0;
  display: flex;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .footer .footer-inner .footer-top .footer-sns {
    margin-block: 40px 0;
    justify-content: center;
  }
  .footer .footer-inner .footer-top .footer-sns img {
    width: 40px;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer-inner .footer-top .footer-top__end {
    width: 100%;
    padding-inline: 20px;
  }
}
.footer .footer-inner .footer-top .footer-menu {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .footer .footer-inner .footer-top .footer-menu {
    width: 100%;
    gap: 24px;
    justify-content: space-between;
  }
}
.footer .footer-inner .footer-top .footer-menu .footer-menu__list {
  list-style: none;
}
.footer .footer-inner .footer-top .footer-menu .footer-menu__list .footer-menu__item {
  font-size: 1.5rem;
  font-weight: 600;
  position: relative;
  padding-left: 16px;
}
@media screen and (max-width: 767px) {
  .footer .footer-inner .footer-top .footer-menu .footer-menu__list .footer-menu__item {
    font-size: 1.4rem;
  }
}
.footer .footer-inner .footer-top .footer-menu .footer-menu__list .footer-menu__item::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: var(--color-bk);
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 0;
}
.footer .footer-inner .footer-top .footer-menu .footer-menu__list .footer-menu__item + .footer-menu__item {
  margin-top: 16px;
}
.footer .footer-inner .footer-top .footer-menu .footer-menu__list .footer-menu__item .footer-menu__category__list {
  list-style: none;
  margin-top: 16px;
}
.footer .footer-inner .footer-top .footer-menu .footer-menu__list .footer-menu__item .footer-menu__category__list .footer-menu__category__item {
  margin-top: 8px;
  font-weight: 400;
  font-size: 1.3rem;
}
.footer .footer-inner .footer-top .footer-menu .footer-menu__list .footer-menu__item .footer-menu__category__list .footer-menu__category__item:first-child {
  margin-top: 0;
}
.footer .footer-inner .footer-btm {
  border-top: 1px solid var(--color-line-gy);
  padding-block: 28px 0;
  display: flex;
  gap: 40px;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer .footer-inner .footer-btm {
    flex-direction: column;
  }
}
.footer .footer-inner .footer-btm .footer-links__list {
  display: flex;
  gap: 40px;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .footer .footer-inner .footer-btm .footer-links__list {
    flex-direction: column;
    gap: 16px;
  }
}
.footer .footer-inner .footer-btm .footer-links__list .footer-links__item {
  font-size: 1.2rem;
}
.footer .footer-inner .footer-btm .footer-copyright {
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .footer .footer-inner .footer-btm .footer-copyright {
    align-self: center;
  }
}

/* contents */
.main-visual {
  height: 664px;
  position: relative;
  z-index: 3;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .main-visual {
    height: auto;
  }
}
.main-visual .bg-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  min-height: 100%;
}
@media screen and (max-width: 767px) {
  .main-visual .bg-img {
    position: static;
    transform: none;
    width: 100%;
  }
}
.main-visual .text-img {
  position: absolute;
  right: 68px;
  bottom: 56px;
  max-width: 336px;
}

.section {
  padding-block: 120px;
}
@media screen and (max-width: 767px) {
  .section {
    padding-block: 64px;
  }
}
.section#pickup {
  background-image: url(../img/bg-sakura-01.svg);
  background-repeat: no-repeat;
  background-position: left 80px top 120px;
}
@media screen and (max-width: 767px) {
  .section#pickup {
    background-position: left 20px top 30px;
    background-size: 19.7% auto;
  }
}
.section#best-selling {
  background-image: url(../img/bg-sakura-02.svg);
  background-repeat: no-repeat;
  background-position: right 80px top 52px;
}
@media screen and (max-width: 767px) {
  .section#best-selling {
    background-position: right 20px top 30px;
    background-size: 21.8% auto;
  }
}
.section#recommend {
  background-image: url(../img/bg-sakura-03.svg), url(../img/bg-sakura-04.svg);
  background-repeat: no-repeat;
  background-position: left 60px top 40px, right 60px bottom 54px;
}
@media screen and (max-width: 767px) {
  .section#recommend {
    background-position: left 20px top 30px, right 20px bottom 30px;
    background-size: 30.7% auto, 23% auto;
  }
}
.section.border {
  position: relative;
}
.section.border::after {
  content: "";
  display: block;
  width: 1120px;
  height: 1px;
  background-color: var(--color-line-be);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .section.border::after {
    width: calc(100% - 40px);
  }
}
.section.bgcolor {
  position: relative;
}
.section.bgcolor::after {
  content: "";
  display: block;
  width: 100%;
  height: 580px;
  background-color: var(--color-primary);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.section.bg-be {
  background-color: var(--color-primary);
}
.section h2.section-title {
  max-width: 1200px;
  margin-inline: auto;
  margin-block: 0 64px;
  padding-block: 52px 0;
  padding-inline: 40px;
  background: url(../img/title-logo.svg) no-repeat center top;
  text-align: center;
  font-size: 4.4rem;
  font-weight: 600;
  letter-spacing: 8px;
}
@media screen and (max-width: 767px) {
  .section h2.section-title {
    margin-block: 0 48px;
    padding-block: 48px 0;
    padding-inline: 20px;
    background-size: 24px 24px;
    font-size: 3rem;
    letter-spacing: 4px;
  }
}
.section h2.section-title span {
  display: block;
  font-size: 1.8rem;
  letter-spacing: 3px;
}
@media screen and (max-width: 767px) {
  .section h2.section-title span {
    font-size: 1.4rem;
  }
}
.section h3.section-title {
  max-width: 1200px;
  margin-inline: auto;
  margin-block: 0 56px;
  padding-inline: 40px;
  text-align: center;
  font-size: 2.7rem;
  font-weight: 500;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .section h3.section-title {
    margin-block: 0 48px;
    padding-inline: 20px;
    font-size: 2.4rem;
  }
}
.section .section-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 40px;
}
@media screen and (max-width: 767px) {
  .section .section-inner {
    padding-inline: 20px;
  }
}
.section .section-inner .lead-paragraph {
  text-align: center;
  line-height: 2.8;
}
@media screen and (max-width: 767px) {
  .section .section-inner .lead-paragraph {
    font-size: 1.3rem;
    line-height: 2.4;
  }
}
.section .section-inner .products-name {
  margin-top: 20px;
  font-size: 1.8rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .section .section-inner .products-name {
    margin-top: 16px;
    font-size: 2rem;
  }
  .section .section-inner .products-name.sp-small {
    font-size: 1.4rem;
  }
}
.section .section-inner .products-price {
  color: #936562;
  font-size: 2rem;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .section .section-inner .products-price {
    font-size: 1.6rem;
  }
}
.section .section-inner .products-price > span {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .section .section-inner .products-price > span {
    font-size: 1.2rem;
  }
}
.section .section-inner .producers-area {
  display: inline-block;
  margin-top: 20px;
  font-size: 1.2rem;
  padding: 2px 14px 1px;
  border: 1px solid var(--color-line-bk);
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .section .section-inner .producers-area {
    padding: 4px 14px 3px;
  }
}
.section .section-inner .producers-area + .products-name {
  margin-top: 16px;
}
.section .section-inner .producers-name {
  margin-top: 16px;
  font-size: 2.4rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .section .section-inner .producers-name {
    font-size: 2rem;
  }
}
.section .section-inner .producers-name > span {
  font-size: 1.8rem;
}
.section .section-inner .producers-products {
  margin-top: 16px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .section .section-inner .producers-products {
    margin-top: 12px;
    font-size: 1.4rem;
  }
}
.section .section-inner .products-description {
  margin-top: 12px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .section .section-inner .products-description {
    font-size: 1.4rem;
  }
}
.section .section-inner .products-feature {
  margin-top: 28px;
}
.section .section-inner .category__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  list-style: none;
}
@media screen and (max-width: 1020px) {
  .section .section-inner .category__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .section .section-inner .category__list {
    grid-template-columns: 1fr;
  }
}
.section .section-inner .category__list .category__item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--color-wh);
  border: 1px solid var(--color-line-be);
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .section .section-inner .category__list .category__item > a {
    font-size: 1.8rem;
  }
}
.section .section-inner .category__list .category__item > a .category__name {
  display: block;
  padding-inline: 28px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .section .section-inner .category__list .category__item > a .category__name {
    padding-inline: 20px;
  }
}
.section .section-inner .category__list .category__item > a > img {
  max-width: 160px;
}
@media screen and (max-width: 767px) {
  .section .section-inner .category__list .category__item > a > img {
    max-width: 100px;
  }
}
.section#about {
  background-image: url(../img/bg-sakura-05.svg);
  background-repeat: no-repeat;
  background-position: center top 120px;
}
@media screen and (max-width: 767px) {
  .section#about {
    background-image: url(../img/bg-sakura-05_sp.svg);
    background-position: right 0 top 60px;
    background-size: 96% auto;
  }
}
.section#about .section-inner .section-title {
  text-align: left;
  padding-left: 0;
}
.section#about .section-inner .lead-paragraph {
  text-align: left;
}

.guide-contents__list {
  background-color: var(--color-wh);
  padding: 80px;
}
@media screen and (max-width: 767px) {
  .guide-contents__list {
    padding: 40px 24px;
  }
}
.guide-contents__list .guide-contents__item {
  border-bottom: 1px solid var(--color-line-bk);
}
.guide-contents__list .guide-contents__item:first-child {
  border-top: 1px solid var(--color-line-bk);
}
.guide-contents__list .guide-contents__item .title {
  font-size: 2.4rem;
  font-weight: 600;
  padding: 36px 40px 36px 0;
}
@media screen and (max-width: 767px) {
  .guide-contents__list .guide-contents__item .title {
    font-size: 2rem;
    padding: 24px 20px 24px 0;
  }
}
.guide-contents__list .guide-contents__item .detail .detail__inner {
  padding-block: 0 80px;
}
@media screen and (max-width: 767px) {
  .guide-contents__list .guide-contents__item .detail .detail__inner {
    padding-block: 0 40px;
  }
}
.guide-contents__list .guide-contents__item .detail .detail__inner .detail-title {
  font-size: 2rem;
  font-weight: 600;
  padding-left: 19px;
  border-left: 3px solid var(--color-secondary);
  margin-block: 40px 20px;
}
@media screen and (max-width: 767px) {
  .guide-contents__list .guide-contents__item .detail .detail__inner .detail-title {
    font-size: 1.8rem;
    padding-left: 12px;
  }
}
.guide-contents__list .guide-contents__item .detail .detail__inner .detail-title:first-child {
  margin-block: 0 20px;
}
.guide-contents__list .guide-contents__item .detail .detail__inner .detail-sub-title {
  font-size: 1.7rem;
  font-weight: 600;
  margin-block: 40px 20px;
}
@media screen and (max-width: 767px) {
  .guide-contents__list .guide-contents__item .detail .detail__inner .detail-sub-title {
    font-size: 1.6rem;
  }
}
.guide-contents__list .guide-contents__item .detail .detail__inner .detail-paragraph {
  margin-block: 20px;
}
.guide-contents__list .guide-contents__item .detail .detail__inner .detail-links__list {
  margin-block: 20px 12px;
  list-style: none;
}
.guide-contents__list .guide-contents__item .detail .detail__inner .detail-links__list .detail-links__item > a {
  display: inline-block;
  padding-left: 22px;
  background: url(../img/icon-link-arrow.svg) no-repeat left center;
  text-decoration: underline;
}
.guide-contents__list .guide-contents__item .detail .detail__inner .detail-notice__list {
  margin-block: 20px 0;
  list-style: none;
}
.guide-contents__list .guide-contents__item .detail .detail__inner .detail-notice__list .detail-notice__item {
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .guide-contents__list .guide-contents__item .detail .detail__inner .detail-notice__list .detail-notice__item {
    margin-top: 12px;
  }
}
.guide-contents__list .guide-contents__item .detail .detail__inner .detail-flow__list {
  list-style: none;
  counter-reset: number 0;
}
.guide-contents__list .guide-contents__item .detail .detail__inner .detail-flow__list .detail-flow__item {
  display: flex;
  align-items: center;
  width: 100%;
  padding-block: 24px;
  padding-inline: 0 20px;
  border-top: 1px solid var(--color-line-be);
}
@media screen and (max-width: 767px) {
  .guide-contents__list .guide-contents__item .detail .detail__inner .detail-flow__list .detail-flow__item {
    flex-wrap: wrap;
    padding-inline: 0 0;
  }
}
.guide-contents__list .guide-contents__item .detail .detail__inner .detail-flow__list .detail-flow__item:first-child {
  border-top: none;
}
.guide-contents__list .guide-contents__item .detail .detail__inner .detail-flow__list .detail-flow__item .detail-flow-num {
  margin-right: 24px;
}
@media screen and (max-width: 767px) {
  .guide-contents__list .guide-contents__item .detail .detail__inner .detail-flow__list .detail-flow__item .detail-flow-num {
    margin-right: 16px;
  }
}
.guide-contents__list .guide-contents__item .detail .detail__inner .detail-flow__list .detail-flow__item .detail-flow-num > span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  width: 56px;
  height: 56px;
  background-color: var(--color-primary);
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .guide-contents__list .guide-contents__item .detail .detail__inner .detail-flow__list .detail-flow__item .detail-flow-num > span {
    font-size: 1.4rem;
    width: 48px;
    height: 48px;
  }
}
.guide-contents__list .guide-contents__item .detail .detail__inner .detail-flow__list .detail-flow__item .detail-flow-num > span::after {
  counter-increment: number 1;
  content: counter(number) " ";
}
.guide-contents__list .guide-contents__item .detail .detail__inner .detail-flow__list .detail-flow__item .detail-flow-title {
  font-size: 2rem;
  font-weight: 600;
  min-width: 200px;
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  .guide-contents__list .guide-contents__item .detail .detail__inner .detail-flow__list .detail-flow__item .detail-flow-title {
    min-width: inherit;
    width: calc(100% - 64px);
    margin-right: 0;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .guide-contents__list .guide-contents__item .detail .detail__inner .detail-flow__list .detail-flow__item .detail-flow-paragraph {
    width: 100%;
    margin-top: 16px;
  }
}
.guide-contents__list .guide-contents__item .detail .detail__inner .detail-color-box {
  background-color: var(--color-primary);
  padding: 16px 20px;
  margin-block: 20px;
}
.guide-contents__list .guide-contents__item .detail .detail__inner .detail-general__list {
  list-style: none;
}
.guide-contents__list .guide-contents__item .detail .detail__inner .detail-general__list .detail-general__item {
  padding-left: 10px;
  position: relative;
  font-size: 1.5rem;
  margin-top: 8px;
}
.guide-contents__list .guide-contents__item .detail .detail__inner .detail-general__list .detail-general__item:first-child {
  margin-top: 0;
}
.guide-contents__list .guide-contents__item .detail .detail__inner .detail-general__list .detail-general__item::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background-color: var(--color-bk);
  border-radius: 50%;
  position: absolute;
  top: 9px;
  left: 0;
}
.guide-contents__list .guide-contents__item .detail .detail__inner .detail-general-small__list {
  list-style: none;
}
.guide-contents__list .guide-contents__item .detail .detail__inner .detail-general-small__list .detail-general-small__item {
  padding-left: 10px;
  position: relative;
  font-size: 1.3rem;
  margin-top: 8px;
}
.guide-contents__list .guide-contents__item .detail .detail__inner .detail-general-small__list .detail-general-small__item:first-child {
  margin-top: 0;
}
.guide-contents__list .guide-contents__item .detail .detail__inner .detail-general-small__list .detail-general-small__item::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: var(--color-bk);
  border-radius: 50%;
  position: absolute;
  top: 6px;
  left: 0;
}
.guide-contents__list .guide-contents__item .detail .detail__inner .detail-time__list {
  display: flex;
  gap: 8px;
  margin-block: 20px;
}
@media screen and (max-width: 767px) {
  .guide-contents__list .guide-contents__item .detail .detail__inner .detail-time__list {
    flex-wrap: wrap;
  }
}
.guide-contents__list .guide-contents__item .detail .detail__inner .detail-time__list .detail-time__item {
  padding: 2px 14px;
  border: 1px solid var(--color-line-bk);
  font-size: 1.2rem;
  border-radius: 20px;
}
.guide-contents__list .guide-contents__item .detail .detail__inner .detail-credit__list {
  display: flex;
  gap: 12px;
  margin-block: 20px;
}
@media screen and (max-width: 767px) {
  .guide-contents__list .guide-contents__item .detail .detail__inner .detail-credit__list {
    flex-wrap: wrap;
    gap: 8px;
  }
}
@media screen and (max-width: 767px) {
  .guide-contents__list .guide-contents__item .detail .detail__inner .detail-credit__list .detail-credit__item {
    width: 80px;
  }
}
.guide-contents__list .guide-contents__item .detail .detail__inner .detail-table-bank + .detail-notice__list {
  margin-block: 20px;
}
.guide-contents__list .guide-contents__item .detail .detail__inner .detail-table-bank th,
.guide-contents__list .guide-contents__item .detail .detail__inner .detail-table-bank td {
  text-align: left;
  font-weight: 400;
}
.guide-contents__list .guide-contents__item .detail .detail__inner .detail-table-bank th {
  width: 64px;
}
.guide-contents__list .guide-contents__item .detail .detail__inner .detail-table-01 {
  border-collapse: collapse;
  margin-block: 32px;
}
.guide-contents__list .guide-contents__item .detail .detail__inner .detail-table-01 thead tr th {
  background-color: var(--color-primary);
  border: 1px solid var(--color-line-be);
  padding: 12px 20px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .guide-contents__list .guide-contents__item .detail .detail__inner .detail-table-01 thead tr th {
    font-size: 1.3rem;
    padding: 8px 12px;
  }
}
.guide-contents__list .guide-contents__item .detail .detail__inner .detail-table-01 tbody tr td {
  border: 1px solid var(--color-line-be);
  padding: 12px 20px;
}
@media screen and (max-width: 767px) {
  .guide-contents__list .guide-contents__item .detail .detail__inner .detail-table-01 tbody tr td {
    font-size: 1.3rem;
    padding: 8px 12px;
  }
}
@media screen and (max-width: 767px) {
  .guide-contents__list .guide-contents__item .detail .detail__inner .detail-table-01-sp {
    border-collapse: collapse;
    margin-block: 20px;
    table-layout: fixed;
  }
  .guide-contents__list .guide-contents__item .detail .detail__inner .detail-table-01-sp th,
.guide-contents__list .guide-contents__item .detail .detail__inner .detail-table-01-sp td {
    border: 1px solid var(--color-line-be);
    padding: 16px 8px;
    font-size: 1.2rem;
  }
  .guide-contents__list .guide-contents__item .detail .detail__inner .detail-table-01-sp th {
    background-color: var(--color-primary);
    font-weight: 500;
    width: 84px;
  }
  .guide-contents__list .guide-contents__item .detail .detail__inner .detail-table-01-sp td .detail-general__list .detail-general__item {
    font-size: 1.2rem;
  }
}
.guide-contents__list .guide-contents__item .detail .detail__inner .detail-table-02 {
  border-collapse: collapse;
}
.guide-contents__list .guide-contents__item .detail .detail__inner .detail-table-02 th,
.guide-contents__list .guide-contents__item .detail .detail__inner .detail-table-02 td {
  border-top: 1px solid var(--color-line-be);
  padding: 20px 0;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .guide-contents__list .guide-contents__item .detail .detail__inner .detail-table-02 th,
.guide-contents__list .guide-contents__item .detail .detail__inner .detail-table-02 td {
    display: block;
    padding: 20px 0 0;
  }
}
.guide-contents__list .guide-contents__item .detail .detail__inner .detail-table-02 th {
  text-align: left;
  font-weight: 500;
  width: 160px;
}
@media screen and (max-width: 767px) {
  .guide-contents__list .guide-contents__item .detail .detail__inner .detail-table-02 th {
    width: 100%;
    font-weight: 600;
  }
}
@media screen and (max-width: 767px) {
  .guide-contents__list .guide-contents__item .detail .detail__inner .detail-table-02 td {
    border-top: none;
    padding: 12px 0 20px;
  }
}

.js-accordion-box.is-active .js-accordion-trig {
  cursor: pointer;
  background: url(../img/icon-accordion-close.svg) no-repeat right center;
}
@media screen and (max-width: 767px) {
  .js-accordion-box.is-active .js-accordion-trig {
    background-size: 28px 28px;
  }
}
.js-accordion-box .js-accordion-trig {
  cursor: pointer;
  background: url(../img/icon-accordion-open.svg) no-repeat right center;
}
@media screen and (max-width: 767px) {
  .js-accordion-box .js-accordion-trig {
    background-size: 28px 28px;
  }
}
.js-accordion-box .js-accordion-content {
  overflow: hidden;
  transition: height 0.3s ease-out;
  height: 0;
}

.splide {
  position: relative;
}
@media screen and (max-width: 767px) {
  .splide {
    padding-inline: 20px;
  }
}
@media screen and (max-width: 767px) {
  .splide .splide__track {
    overflow: inherit;
  }
}
.splide .splide__slide > a {
  display: block;
}
.splide .splide__slide > a > img {
  width: 100%;
}
.splide .splide-prev,
.splide .splide-next {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  background-color: rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .splide .splide-prev,
.splide .splide-next {
    width: 48px;
    height: 48px;
  }
}
@media (hover: hover) {
  .splide .splide-prev:hover,
.splide .splide-next:hover {
    width: 80px;
    height: 80px;
  }
}
@media screen and (hover: hover) and (max-width: 767px) {
  .splide .splide-prev:hover,
.splide .splide-next:hover {
    width: 48px;
    height: 48px;
  }
}
.splide .splide-prev::after,
.splide .splide-next::after {
  content: "";
  display: block;
  width: 9px;
  height: 15px;
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
}
.splide .splide-prev svg,
.splide .splide-next svg {
  display: none;
}
.splide .splide-prev {
  left: -40px;
}
@media screen and (max-width: 767px) {
  .splide .splide-prev {
    left: -10px;
  }
}
@media (hover: hover) {
  .splide .splide-prev:hover {
    margin-left: -8px;
  }
}
@media screen and (hover: hover) and (max-width: 767px) {
  .splide .splide-prev:hover {
    margin-left: 0;
  }
}
.splide .splide-prev::after {
  background: url(../img/btn-slide-prev.svg) no-repeat center center;
  left: 50%;
  transform: translate(-50%, -50%);
}
.splide .splide-next {
  right: -40px;
}
@media screen and (max-width: 767px) {
  .splide .splide-next {
    right: -10px;
  }
}
@media (hover: hover) {
  .splide .splide-next:hover {
    margin-right: -8px;
  }
}
@media screen and (hover: hover) and (max-width: 767px) {
  .splide .splide-next:hover {
    margin-right: 0;
  }
}
.splide .splide-next::after {
  background: url(../img/btn-slide-next.svg) no-repeat center center;
  left: 50%;
  transform: translate(-50%, -50%);
}
.splide:not(.is-overflow) .splide__arrows {
  display: none;
}

/*# sourceMappingURL=style.css.map */
