/* =======================================================
common
======================================================= */
.c-hgroup--line {
  margin-bottom: 3rem;
  text-align: center;
}
.c-hgroup--line-txt {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  line-height: calc(24/20);
}
.c-hgroup--line-txt::before, .c-hgroup--line-txt::after {
  width: 1.5rem;
  height: 1.5rem;
  content: "";
  background: url("../images/common/hgroup-txt-deco-line.svg") top center/contain no-repeat;
}
.c-hgroup--line-txt::after {
  transform: scale(-1, 1);
}
.c-hgroup--line-ttl {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: calc(48/40);
  letter-spacing: 0.08em;
}

@media screen and (max-width: 750px) {
  .c-hgroup--line-txt {
    margin-bottom: 2rem;
    font-size: 1.5rem;
  }
  .c-hgroup--line-txt::before, .c-hgroup--line-txt::after {
    width: 1.75rem;
    height: 1.75rem;
  }
  .c-hgroup--line-ttl {
    font-size: 2.25rem;
  }
}
/* =======================================================
before
======================================================= */
.ly-before {
  padding-top: 6rem;
}

.bl-before-ttl {
  margin-bottom: 3rem;
  font-size: 1.75rem;
  line-height: calc(48/28);
  text-align: center;
  letter-spacing: 0.08em;
}
.bl-before-ttl-deco {
  font-size: 2.5rem;
  line-height: calc(48/40);
}
.bl-before-box {
  padding: 6rem 0;
  background: url("../images/entry/before-bg.webp") top center/cover no-repeat;
}
.bl-before-box .bl-box-inner {
  position: relative;
}
.bl-before-box .bl-box-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
.bl-before-box .bl-box-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  font-size: 1.75rem;
  line-height: 1;
}
.bl-before-box .bl-box-item::before {
  width: 1.875rem;
  height: 1.75rem;
  content: "";
  background: url("../images/entry/before-check.svg") top center/contain no-repeat;
}
.bl-before-box .bl-box-imgwrapper {
  position: absolute;
  top: 0;
  left: 21.25rem;
  display: flex;
  width: 12.5rem;
}

@media screen and (max-width: 750px) {
  .bl-before-ttl {
    font-size: 2.5rem;
  }
  .bl-before-ttl-deco {
    font-size: 3rem;
  }
  .bl-before-box {
    padding: 8rem 0;
    background: url("../images/entry/before-bg-sp.webp") top center/cover no-repeat;
  }
  .bl-before-box .bl-box-item {
    gap: 1.25rem;
    font-size: 2rem;
  }
  .bl-before-box .bl-box-item::before {
    width: 2rem;
    height: 2rem;
  }
  .bl-before-box .bl-box-imgwrapper {
    top: -0.1875rem;
    left: 24.5rem;
    width: 14.25rem;
  }
  .bl-before-box .bl-box-btn {
    position: relative;
    z-index: 2;
  }
}
/* =======================================================
step
======================================================= */
.ly-step {
  padding: 8rem 0 9rem;
}

.bl-step-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.9375rem;
  margin-bottom: 2rem;
}
.bl-step-item {
  position: relative;
  border: 0.0625rem solid var(--color-accent);
}
.bl-step-item:not(:last-of-type)::after {
  position: absolute;
  top: 50%;
  right: -2.25rem;
  width: 0;
  height: 0;
  content: "";
  border-color: transparent transparent transparent var(--color-accent);
  border-style: solid;
  border-width: 1.125rem 0 1.125rem 1.5rem;
  transform: translateY(-50%);
}
.bl-step-item .bl-item-ttl {
  display: grid;
  place-content: center;
  padding: 2rem 0;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-accent);
  text-align: center;
  background: var(--color-contrast);
}
.bl-step-item .bl-item-ttl-inner {
  line-height: calc(24/20);
}
.bl-step-item .bl-item-ttl-deco {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: calc(20/14);
}
.bl-step-item .bl-item-ttl-deco-strong {
  font-size: 1.25rem;
  line-height: 1;
}
.bl-step-item .bl-item-body {
  padding: 1.5rem 3.5rem 2.25rem;
}
.bl-step-item .bl-item-imgwrapper {
  width: 8.75rem;
  margin: 0 auto 1.5rem;
}
.bl-step-item .bl-item-txt {
  text-align: center;
}
.bl-step .el-att {
  line-height: calc(26/14);
}
.bl-step .el-att-wrapper {
  margin-bottom: 2.5rem;
}
.bl-step-btn {
  margin: 0 auto;
}

@media screen and (max-width: 750px) {
  .ly-step {
    padding: 8rem 0;
  }
  .bl-step-list {
    grid-template-columns: auto;
    gap: 5.25rem;
    margin-bottom: 3rem;
  }
  .bl-step-item {
    border-width: 0.125rem;
  }
  .bl-step-item:not(:last-of-type)::after {
    top: initial;
    right: initial;
    bottom: -3.75rem;
    left: 50%;
    width: 0;
    height: 0;
    border-color: var(--color-accent) transparent transparent;
    border-style: solid;
    border-width: 2.25rem 1.6875rem 0;
    transform: translateX(-50%);
  }
  .bl-step-item .bl-item-ttl {
    font-size: 1.875rem;
  }
  .bl-step-item .bl-item-ttl-deco {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
  }
  .bl-step-item .bl-item-ttl-deco-strong {
    font-size: 1.875rem;
  }
  .bl-step-item .bl-item-body {
    padding: 2rem 2.5rem 3rem;
  }
  .bl-step-item .bl-item-imgwrapper {
    width: 13.125rem;
    margin: 0 auto 2rem;
  }
  .bl-step .el-att-wrapper {
    margin-bottom: 3rem;
  }
  .bl-step-btn {
    margin: 0 auto;
  }
}
/* =======================================================
about
======================================================= */
.bl-about-ttl {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: calc(48/40);
  text-align: center;
  letter-spacing: 0.08em;
}
.bl-about-intro {
  margin-bottom: 3rem;
  text-align: center;
}
.bl-about-box {
  padding: 8rem 0;
  background: url("../images/entry/about-bg.webp") top center/cover no-repeat;
}
.bl-about-box .bl-box-inner {
  width: 57rem;
  margin: 0 auto;
}
.bl-about-box .bl-box-hgroup-txt {
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.bl-about-box .bl-box-hgroup-ttl {
  font-size: 2rem;
  line-height: 1;
}
.bl-about-box .bl-box-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.bl-about-box .bl-box-item {
  display: grid;
  place-content: center;
  align-self: start;
  min-height: 8.75rem;
  font-size: 1.25rem;
  line-height: calc(28/20);
  text-align: center;
  background: var(--color-white);
  outline: 0.0625rem solid var(--color-accent);
  outline-offset: -0.625rem;
}
.bl-about-box .bl-box-item:nth-of-type(2) {
  margin-top: 3.5rem;
}

@media screen and (max-width: 750px) {
  .bl-about-ttl {
    margin-bottom: 2.5rem;
  }
  .bl-about-box {
    padding: 8rem 0;
    background: url("../images/entry/about-bg-sp.webp") top center/cover no-repeat;
  }
  .bl-about-box .bl-box-inner {
    width: 43.125rem;
  }
  .bl-about-box .bl-box-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.125rem;
    justify-content: center;
  }
  .bl-about-box .bl-box-item {
    width: calc((100% - 1.125rem) / 2);
    min-height: 10rem;
    font-size: 1.625rem;
  }
  .bl-about-box .bl-box-item:nth-of-type(2) {
    margin-top: 0;
  }
}
/* =======================================================
guide
======================================================= */
.ly-guide {
  padding: 8rem 0;
}