@charset "UTF-8";
html {
  font-size: 16px;
  color: #181818;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

img:not([alt]) {
  filter: blur(10px);
}

input,
button,
select,
textarea {
  font: inherit;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  resize: none;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

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

.section-title {
  font-size: 40px;
  font-weight: 800;
  font-family: "Albert Sans", sans-serif;
  line-height: 180%;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }
}

.section-subtitle {
  font-size: 20px;
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 0.1em;
  color: #808080;
}
@media screen and (max-width: 768px) {
  .section-subtitle {
    font-size: 16px;
  }
}

.line-btn__link {
  position: relative;
  width: 280px;
  height: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #01BE56;
  border-radius: 70px;
  border: 1px solid #fff;
  padding-left: 50px;
}

.line-btn__link::before {
  position: absolute;
  content: "";
  background-image: url(../img/line-btn_icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 36px;
  height: 36px;
  left: 30px;
}

.line-btn__comment {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
}

.line-btn__text {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: center;
}

.inner {
  max-width: 970px;
  padding-left: 25px;
  padding-right: 25px;
  margin: 0 auto;
}

.md-none {
  display: block;
}
@media screen and (max-width: 768px) {
  .md-none {
    display: none;
  }
}

.md-show {
  display: none;
}
@media screen and (max-width: 768px) {
  .md-show {
    display: block;
  }
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 4000;
  opacity: 0;
  visibility: hidden;
  pointer-events: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background-color: #FFF;
}
@media screen and (max-width: 768px) {
  .header {
    background-color: transparent;
  }
}

.header__inner {
  display: flex;
  align-items: center;
  padding: 0 40px;
  height: inherit;
}

.header__name {
  width: 145px;
  display: flex;
  align-items: center;
  margin-right: auto;
  height: inherit;
}
.header__nav {
  height: inherit;
}

.header__items {
  display: flex;
  align-items: center;
  height: inherit;
}

.header__item {
  height: inherit;
}

.header__item:not(:first-child) {
  margin-left: 40px;
}

.header__link {
  font-size: 18px;
  font-weight: 700;
  font-family: "Albert Sans", sans-serif;
  letter-spacing: 0.1em;
  line-height: 180%;
  display: flex;
  align-items: center;
  color: #181818;
  height: inherit;
}

.header__link:hover {
  opacity: 0.3;
  transition: opacity 0.3s;
}

.hamburger {
  position: fixed;
  z-index: 9999;
  top: 26px;
  right: 26px;
  width: 36px;
  height: 16.5px;
  cursor: pointer;
}

.hamburger span {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 1.5px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  background-color: #181818;
}

.hamburger span:first-child {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 6px;
  transition: opacity 0.3s;
}

.hamburger span:nth-child(3) {
  top: 12px;
}

.hamburger.is-active span:first-child {
  top: 5px;
  transform: rotate(-15deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  top: 5px;
  transform: rotate(15deg);
}

.drawer-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  /* 左に隙間を指定 */
  left: 13.0666666667vw;
  /* 幅指定は不要 */
  /* width: 100%;  ← 削除 */
  background-color: #F7F7F7;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  /* 初期状態：ビューの右外へ */
  transform: translateX(100%);
  transition: transform 0.6s ease;
  z-index: 5000;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.drawer-menu.is-active {
  /* これだけでスライドイン */
  transform: translateX(0);
}

.drawer-menu__inner {
  display: flex;
  justify-content: center;
  width: 100%;
}

.drawer-menu__items {
  display: flex;
  flex-direction: column;
  margin-top: 80px;
}

.drawer-menu__item {
  display: inline-block;
}

.drawer-menu__item:not(:first-child) {
  margin-top: 16px;
}

.drawer-menu__link {
  font-size: 24px;
  font-weight: 700;
  font-family: "Albert Sans", sans-serif;
  letter-spacing: 0.1em;
  line-height: 180%;
  color: #181818;
}

.drawer-shape {
  width: 100%;
  margin-top: 24px;
}

.sns__items {
  width: 100%;
  position: absolute;
  bottom: 42.1333333333vw;
  display: flex;
  justify-content: center;
}

.sns__item + .sns__item {
  margin-left: 4.8vw;
}

.sns-icon {
  width: 48px;
  margin-top: 24px;
}

.fv {
  margin-top: 64px;
}
@media screen and (max-width: 768px) {
  .fv {
    margin-top: unset;
  }
}

.fv__inner {
  position: relative;
}

.fv-contents__wrap {
  position: absolute;
  top: 12.5vw;
  left: 5.859375vw;
}
@media screen and (max-width: 768px) {
  .fv-contents__wrap {
    top: 21.3333333333vw;
    left: 0;
    right: 0;
    width: 100%;
  }
}

.fv-logo {
  width: 40.3125vw;
}
@media screen and (max-width: 768px) {
  .fv-logo {
    width: 77.3333333333vw;
    margin: 0 auto;
  }
}

.fv__text {
  font-size: 2.1875vw;
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 0.1em;
  color: #000000;
  margin-top: 3.125vw;
}
@media screen and (max-width: 768px) {
  .fv__text {
    font-size: 16px;
    margin-top: 16px;
    text-align: center;
  }
}

.fv-btn__wrap {
  margin-top: 3.125vw;
}
@media screen and (max-width: 768px) {
  .fv-btn__wrap {
    position: absolute;
    bottom: 56px;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 768px) {
  .fv-btn__wrap.md-none {
    display: none;
  }
}

.fv-btn__link {
  font-size: 16px;
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 0.1em;
  color: #01649E;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 64px;
  border: 2px solid #FFFFFF;
  border-radius: 70px;
  background-color: #E1EAEF;
}
@media screen and (max-width: 768px) {
  .fv-btn__link {
    width: 240px;
    height: 44px;
    border: 1px solid #FFFFFF;
    border-radius: 50px;
  }
}

.intro {
  position: relative;
  background-color: #F7F7F7;
  padding-top: 140px;
  padding-bottom: 140px;
}
@media screen and (max-width: 768px) {
  .intro {
    padding-top: 79px;
    padding-bottom: 79px;
  }
}

.intro-title {
  width: 529px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .intro-title {
    width: 318px;
  }
}

.intro__items {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .intro__items {
    margin-top: 40px;
  }
}

.intro__item {
  display: flex;
}
@media screen and (max-width: 768px) {
  .intro__item {
    display: block;
  }
}

.intro__item:nth-child(2) {
  align-items: end;
}

@media screen and (min-width: 1440px) {
  .intro__item:nth-child(2) {
    margin-top: 40px;
  }
}
@media screen and (max-width: 895px) {
  .intro__item:nth-child(2) {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .intro-text__wrap {
    padding-left: 17px;
    padding-right: 17px;
  }
}

.intro__item:first-child .intro-text__wrap {
  position: relative;
  z-index: 10;
  max-width: 689px;
  padding-right: min(8.359375vw, 107px);
}
@media screen and (max-width: 768px) {
  .intro__item:first-child .intro-text__wrap {
    padding: 0 17px;
  }
}

.intro__item:nth-child(2) .intro-text__wrap {
  position: relative;
  z-index: 10;
  width: 60.2%;
  padding-left: min(6.015625vw, 77px);
}
@media screen and (max-width: 768px) {
  .intro__item:nth-child(2) .intro-text__wrap {
    width: 100%;
    margin-top: 40px;
    z-index: 40;
    padding: 0 17px;
  }
}

.intro__text {
  font-size: 16px;
  font-weight: 700;
  line-height: 240%;
  letter-spacing: 0.14em;
}
@media screen and (max-width: 768px) {
  .intro__text {
    font-size: 14px;
  }
}

.intro__text + .intro__text {
  margin-top: 2.5vw;
}
@media screen and (max-width: 768px) {
  .intro__text + .intro__text {
    margin-top: 16px;
  }
}

.intro__item:first-child .intro-img {
  max-width: 231px;
  position: relative;
  z-index: 10;
}

.intro__item:nth-child(2) .intro-img {
  max-width: 366px;
}
@media screen and (max-width: 768px) {
  .intro__item:nth-child(2) .intro-img {
    position: relative;
    margin-top: 40px;
    max-width: unset;
    margin-right: unset;
    z-index: 20;
  }
}

.intro-end__text {
  position: relative;
  z-index: 10;
  font-size: 24px;
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 0.14em;
  color: #01649E;
  margin-top: 100px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .intro-end__text {
    font-size: 20px;
    margin-top: 40px;
    justify-content: start;
    padding: 0 12.5px;
  }
}

.intro-shape {
  position: absolute;
  top: 282px;
}

@media screen and (max-width: 1440px) {
  .intro-shape {
    top: 19.5833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .intro-shape {
    top: 100px;
  }
}
@media screen and (min-width: 2140px) {
  .intro-shape {
    top: 0;
  }
}
.sp_intro-shape01 {
  position: absolute;
  top: 43.4666666667vw;
}

.sp_intro-shape02 {
  position: absolute;
  top: 189.3333333333vw;
  top: 710px;
  z-index: 30;
}

.intro .line-btn__wrap {
  position: absolute;
  top: 9.375vw;
  right: 24px;
}
@media screen and (max-width: 768px) {
  .intro .line-btn__wrap {
    display: none;
  }
}

.about {
  padding-top: 140px;
  padding-bottom: 116px;
}
@media screen and (max-width: 768px) {
  .about {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.about__items {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .about__items {
    margin-top: 40px;
  }
}

.about__item {
  position: relative;
  background-color: #E1EAEF;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .about__item {
    display: block;
  }
}

.about__item + .about__item {
  margin-top: 32px;
}

.about__item:first-child .about-contents__wrap {
  max-width: 501px;
  padding: 45px 0 45px 60px;
}

@media screen and (max-width: 1280px) {
  .about__item:first-child .about-contents__wrap {
    width: 46.875vw;
  }
}
@media screen and (max-width: 768px) {
  .about__item:first-child .about-contents__wrap {
    width: 100%;
    padding: 32px 20px 0;
  }
}
.about__item:nth-child(2) .about-contents__wrap {
  padding: 49px 0 49px 60px;
  max-width: 603px;
}

@media screen and (max-width: 1280px) {
  .about__item:nth-child(2) .about-contents__wrap {
    width: 50.78125vw;
  }
}
@media screen and (max-width: 768px) {
  .about__item:nth-child(2) .about-contents__wrap {
    width: 100%;
    padding: 32px 20px 0;
  }
}
.about__item:nth-child(3) .about-contents__wrap {
  padding: 38px 0 38px 60px;
  max-width: 522px;
}

@media screen and (max-width: 1280px) {
  .about__item:nth-child(3) .about-contents__wrap {
    width: 50.78125vw;
  }
}
@media screen and (max-width: 768px) {
  .about__item:nth-child(3) .about-contents__wrap {
    width: 100%;
    padding: 32px 20px 0;
  }
}
.about-contents__title {
  font-size: 19.5px;
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .about-contents__title {
    line-height: 180%;
  }
}

.about-contents__subtitle {
  font-size: 16px;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 0.06em;
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .about-contents__subtitle {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .about__item:nth-child(2) .about-contents__subtitle {
    margin-top: 12px;
  }
}

@media screen and (max-width: 768px) {
  .about__item:nth-child(3) .about-contents__subtitle {
    margin-top: 18px;
  }
}

.contents-text__wrap {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .contents-text__wrap {
    margin-top: 16px;
  }
}

.about__item:nth-child(3) .contents-text__wrap {
  max-width: 395px;
}
@media screen and (max-width: 768px) {
  .about__item:nth-child(3) .contents-text__wrap {
    max-width: unset;
  }
}

.about-contents__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .about-contents__text {
    font-size: 14px;
  }
}

.about__item:first-child .about-contents__text,
.about__item:nth-child(3) .about-contents__text {
  text-indent: -1em;
  padding-left: 1em;
}

.about-contents__text + .about-contents__text {
  margin-top: 8px;
}

.about__item:first-child .about-img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  max-width: 448px;
  width: 48.69%;
}
@media screen and (max-width: 768px) {
  .about__item:first-child .about-img {
    position: unset;
    top: unset;
    transform: unset;
    width: 86.6666666667vw;
    padding-top: 23px;
    margin: 0 auto;
  }
}

.about__item:nth-child(2) .about-img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  max-width: 419px;
  width: 45.78%;
  border-bottom-right-radius: 20px;
}
@media screen and (max-width: 768px) {
  .about__item:nth-child(2) .about-img {
    position: unset;
    top: unset;
    transform: unset;
    width: 86.6666666667vw;
    margin: 0 auto;
  }
}

.about__item:nth-child(3) .about-img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  max-width: 335px;
  width: 36.4%;
  right: 40px;
}
@media screen and (max-width: 768px) {
  .about__item:nth-child(3) .about-img {
    position: unset;
    top: unset;
    right: unset;
    transform: unset;
    width: 65.3333333333vw;
    margin: 0 auto;
    margin-top: 21.5px;
  }
}

.voice {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #F7F7F7;
}
@media screen and (max-width: 768px) {
  .voice {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.voice .section-title__wrap {
  margin-bottom: 88px;
}
@media screen and (max-width: 768px) {
  .voice .section-title__wrap {
    margin-bottom: 40px;
  }
}

.slide {
  margin: 0;
  padding: 0;
  overflow-x: visible;
}

@media (max-width: 969px) {
  .slide {
    width: calc(100% + 50px);
    margin: 0 -25px;
    padding: 0 25px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}
.slide::-webkit-scrollbar {
  display: none;
}

.slide__track {
  overflow: visible !important;
}

.slide__list {
  display: flex;
  flex-wrap: nowrap;
  -moz-column-gap: 40px;
       column-gap: 40px;
  align-items: stretch;
}

@media (max-width: 969px) {
  .slide__list {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    -moz-column-gap: 40px;
         column-gap: 40px;
    scroll-snap-type: x mandatory;
  }
}
@media (max-width: 768px) {
  .slide__list {
    -moz-column-gap: 32px;
         column-gap: 32px;
  }
}
@media (max-width: 969px) {
  .slide__list::after {
    content: "";
    flex: 0 0 25px;
    margin-left: -40px;
  }
}
@media (max-width: 768px) {
  .slide__list:after {
    margin-left: -32px;
  }
}
.slide__slide {
  display: flex;
  flex-direction: column;
  flex: 0 0 280px;
}

@media (max-width: 969px) {
  .slide__slide {
    flex: 0 0 280px;
    scroll-snap-align: start;
  }
}
.voice-contents__wrap {
  position: relative;
  background-color: #FFFFFF;
  border-radius: 0 0 20px 20px;
  padding: 33px 24px 29px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.voice__information {
  font-size: 12px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.06em;
}

.voice__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.06em;
  margin-top: 24px;
}

.slide__slide:first-child .voice-comment {
  width: 182px;
  position: absolute;
  top: -44px;
  left: 24px;
}

.slide__slide:nth-child(2) .voice-comment {
  width: 220px;
  position: absolute;
  top: -44px;
  left: 24px;
}

.slide__slide:nth-child(3) .voice-comment {
  width: 240px;
  position: absolute;
  top: -44px;
  left: 24px;
}

.summary {
  background-image: url(../img/bg_summary.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 140px;
  padding-bottom: 140px;
}
@media screen and (max-width: 768px) {
  .summary {
    background-image: url(../img/sp_bg_summary.jpg);
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.summary-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 0.2em;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .summary-title {
    font-size: 24px;
    line-height: 180%;
  }
}

.summary-contents__wrap {
  display: flex;
  margin-top: 56px;
}
@media screen and (max-width: 768px) {
  .summary-contents__wrap {
    display: block;
    margin-top: 40px;
  }
}

.summary-text__wrap {
  padding-right: 19px;
  width: 61%;
  max-width: 557px;
}
@media screen and (max-width: 768px) {
  .summary-text__wrap {
    padding-right: unset;
    width: 100%;
    max-width: unset;
  }
}

.summary__text {
  font-size: 16px;
  font-weight: 700;
  line-height: 240%;
  letter-spacing: 0.2em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .summary__text {
    font-size: 14px;
    letter-spacing: 0.16em;
  }
}

.summary__text + .summary__text {
  margin-top: 32px;
}

.summary-img {
  max-width: 366px;
}
@media screen and (max-width: 768px) {
  .summary-img {
    width: 100%;
    max-width: unset;
    margin-top: 40px;
  }
}

.summary-logo {
  width: 263px;
  padding-top: 85px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .summary-logo {
    width: 231px;
    padding-top: 32px;
  }
}

.step {
  padding-top: 140px;
  padding-bottom: 140px;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .step {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.step__inner {
  max-width: 1114px;
  padding-left: 25px;
  padding-right: 25px;
  margin: 0 auto;
}

.section-title__wrap {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .section-title__wrap {
    margin-bottom: 40px;
  }
}

.step-slide {
  margin: 0;
  padding: 0;
  overflow-x: visible;
}

@media (max-width: 1113px) {
  .step-slide {
    width: calc(100% + 50px);
    margin: 0 -25px;
    padding: 0 25px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}
.step-slide::-webkit-scrollbar {
  display: none;
}

.step-slide__track {
  overflow: visible !important;
}

.step-slide__list {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
}

@media (max-width: 1113px) {
  .step-slide__list {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    -moz-column-gap: 88px;
         column-gap: 88px;
    scroll-snap-type: x mandatory;
  }
}
@media (max-width: 1113px) {
  .step-slide__list::after {
    content: "";
    flex: 0 0 25px;
    margin-left: -88px;
  }
}
.step-slide__slide {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 0 200px;
  margin-right: 88px;
}

@media (max-width: 1113px) {
  .step-slide__slide {
    flex: 0 0 200px;
    scroll-snap-align: start;
    margin: 0;
  }
}
.step-slide__slide:after {
  position: absolute;
  content: "";
  background-image: url(../img/step-arrow.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 40px;
  height: 18px;
  top: 140px;
  right: -64px;
}

.step-slide__slide.arrow-none {
  margin-right: unset;
}

.step-slide__slide.arrow-none:after {
  position: relative;
  background-image: none;
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.06em;
  text-align: center;
}

.step-img {
  width: 200px;
  margin-top: 24px;
}

.step-text__wrap {
  margin-top: 24px;
}

.step__text {
  font-size: 12px;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 0.1em;
}

.step__text + .step__text {
  margin-top: 20px;
}

.counseling {
  padding: 40px 60px;
  background-color: #F7F7F7;
  border-radius: 20px;
  margin-top: 78px;
}
@media screen and (max-width: 768px) {
  .counseling {
    padding: 20px;
    margin-top: 40px;
  }
}

.counseling-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .counseling-title {
    font-size: 20px;
    line-height: 180%;
  }
}

.counseling-text__wrap {
  margin-top: 28px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .counseling-text__wrap {
    margin-top: 16px;
    text-align: left;
  }
}

.counseling__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .counseling__text {
    font-size: 14px;
  }
}

.counseling__text + .counseling__text {
  margin-top: 16px;
}

#step .line-btn__wrap {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #step .line-btn__wrap {
    margin-top: 16px;
  }
}

.faq {
  padding-top: 140px;
  padding-bottom: 140px;
  background-color: #E1EAEF;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}
@media screen and (max-width: 768px) {
  .faq {
    padding-top: 80px;
    padding-bottom: 80px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }
}

.faq__inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .faq__inner {
    display: block;
  }
}

.faq .section-title__wrap {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .faq .section-title__wrap {
    text-align: center;
  }
}

.accordion {
  max-width: 560px;
  width: 60.869%;
}
@media screen and (max-width: 768px) {
  .accordion {
    max-width: unset;
    width: 100%;
    margin-top: 40px;
  }
}

.accordion__item + .accordion__item {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .accordion__item + .accordion__item {
    margin-top: 32px;
  }
}

.accordion__title {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.1em;
  padding: 14px 68px 14px 40px;
  cursor: pointer;
  color: #fff;
  background-color: #01649E;
  border-top-left-radius: 30px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .accordion__title {
    font-size: 14px;
    padding: 4px 37px 4px 23px;
    border-top-left-radius: 20px;
  }
}

.accordion__title::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  font-size: 26px;
  line-height: 1;
  color: #fff;
  transition: transform 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .accordion__title::after {
    font-size: 18px;
    right: 14px;
  }
}

.accordion__title.is-open::after {
  content: "−";
}

.question {
  font-size: 24px;
  font-weight: 500;
  font-family: "Albert Sans", sans-serif;
  line-height: 150%;
  letter-spacing: 0.2em;
  color: #FFFFFF;
  margin-right: 8px;
}
@media screen and (max-width: 768px) {
  .question {
    font-size: 20px;
    margin-right: 5px;
  }
}

.accordion__content {
  display: none;
  padding: 24px 40px;
  background-color: #FFFFFF;
  border-bottom-right-radius: 30px;
}
@media screen and (max-width: 768px) {
  .accordion__content {
    padding: 12px 23px;
    border-bottom-right-radius: 20px;
  }
}

.accordion__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .accordion__text {
    font-size: 14px;
  }
}

.footer {
  padding-top: 140px;
  padding-bottom: 140px;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-top: 80px;
    padding-bottom: 48px;
  }
}

.footer_sns-icon__wrap {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  border-bottom: 1px solid #181818;
  padding-bottom: 48px;
  gap: 18px;
}

.footer-sns-icon {
  width: 48px;
}

.footer-link__items {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
@media screen and (max-width: 768px) {
  .footer-link__items {
    flex-direction: column;
    text-align: center;
  }
}

.footer-link__item {
  font-size: 16px;
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .footer-link__item {
    font-size: 10px;
  }
}

.footer-link__item a {
  color: #181818;
}

.footer-link__item:not(:first-child) {
  margin-left: 24px;
}
@media screen and (max-width: 768px) {
  .footer-link__item:not(:first-child) {
    margin-left: unset;
    margin-top: 16px;
  }
}

.accomplice-number {
  font-size: 12px;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 0.2em;
  margin-top: 80px;
  text-align: center;
}

.copyright {
  font-size: 10px;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 0.2em;
  margin-top: 10px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .copyright {
    display: none;
  }
}