@charset "UTF-8";
/*------------------------------------------------------------------------
// Base
  ├ reset
  ├ base
  └ form
------------------------------------------------------------------------*/
/*----------------------------------------
	reset
----------------------------------------*/
*,
::before,
::after {
  box-sizing: border-box;
}

* {
  font-size: inherit;
  line-height: inherit;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header, main, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

header, footer, article, section, aside, main, nav, menu, figure, figcaption {
  display: block;
}

span, small, strong, em, b, i {
  color: inherit;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

ul,
ol {
  list-style: none;
}

img {
  border: 0;
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

input, select {
  vertical-align: middle;
}

input, textarea {
  margin: 0;
  padding: 0;
}

address {
  font-style: normal;
}

q::before,
q::after {
  display: none;
}

/*----------------------------------------
	base
----------------------------------------*/
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  min-width: 375px;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.75;
  color: #222222;
  background: #FFFFFF;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.5;
}

a {
  color: #222222;
  text-decoration: underline;
  transition: all 0.3s;
}

img {
  width: 100%;
  height: auto;
}
img.self-size {
  max-width: 100%;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  display: block;
  width: 100%;
  border: 0;
  font-family: inherit;
  font-weight: inherit;
}

/*------------------------------------------------------------------------
// Layout
  ├ header
  ├ hamburger
  ├ main-menu
  ├ footer
  ├ main-contents
  ├ container
  └ grid
------------------------------------------------------------------------*/
/* header
------------------------------------------------------ */
.header {
  position: fixed;
  z-index: 99;
  top: 0;
  width: 100%;
  padding: 10px 0;
  background: #fff;
}
.header-inner {
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: content-box;
}

.header__logo {
  width: 171px;
  height: 35px;
}

.header__btn {
  position: fixed;
  bottom: 15px;
  left: 50%;
  translate: -50%;
  width: calc(100% - 60px);
  max-width: 333px;
}

@media (min-width: 768px) {
  .header {
    padding: 20px 0;
  }
  .header-inner {
    padding: 0 25px;
  }
  .header__logo {
    width: 220px;
    height: 45px;
  }
  .header-controls {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .header__btn {
    position: static;
    inset: 0;
    translate: 0;
    width: 260px;
  }
  .header__btn .btn {
    padding: 10px 11px 12px;
  }
}
/* hamburger
------------------------------------------------------ */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .hamburger:hover, .hamburger:focus-visible {
    opacity: 0.7;
  }
}
@media (min-width: 768px) {
  .hamburger {
    width: 50px;
    height: 50px;
  }
}

.hamburger__line {
  position: relative;
  width: 23px;
  height: 2px;
}
@media (min-width: 768px) {
  .hamburger__line {
    width: 28px;
  }
}
.hamburger__line::before, .hamburger__line::after {
  position: absolute;
  content: "";
  display: block;
  width: 23px;
  height: 2px;
}
@media (min-width: 768px) {
  .hamburger__line::before, .hamburger__line::after {
    width: 28px;
  }
}

/* 開く状態のスタイル */
.hamburger._open {
  background: #0f141a;
}
.hamburger._open .hamburger__line {
  background: #fff;
}
.hamburger._open .hamburger__line::before {
  top: -7px;
  background: #fff;
}
@media (min-width: 768px) {
  .hamburger._open .hamburger__line::before {
    top: -9px;
  }
}
.hamburger._open .hamburger__line::after {
  bottom: -7px;
  background: #fff;
}
@media (min-width: 768px) {
  .hamburger._open .hamburger__line::after {
    bottom: -9px;
  }
}

/* 閉じる状態のスタイル */
.hamburger._close {
  background: #fff;
}
.hamburger._close .hamburger__line {
  background: transparent;
}
.hamburger._close .hamburger__line:before {
  top: 0;
  rotate: 45deg;
  background: #0f141a;
}
.hamburger._close .hamburger__line::after {
  bottom: 0;
  rotate: -45deg;
  background: #0f141a;
}

/* main-menu
------------------------------------------------------ */
.main-menu {
  visibility: hidden;
  position: fixed;
  z-index: 999;
  top: 0;
  right: -100%;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  height: 100%;
  color: #fff;
  background: #0f141a;
  transition: all 0.6s;
}
.main-menu-inner {
  padding: 30px;
}

.main-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-menu__logo {
  width: 195px;
  height: 40px;
}

.main-menu__list {
  margin-top: 48px;
  padding-left: 17px;
}

.main-menu__item {
  line-height: 1;
}
.main-menu__item:not(:first-child) {
  margin-top: 34px;
}

.main-menu__link {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
  color: inherit;
  text-decoration: none;
}
@media (any-hover: hover) {
  .main-menu__link:hover {
    opacity: 0.7;
  }
}

.main-menu__btn {
  margin-top: 54px;
  max-width: 333px;
}

@media (min-width: 768px) {
  .main-menu {
    width: 50%;
  }
}
/* 開いた状態のスタイル */
.main-menu[aria-hidden=false] {
  visibility: visible;
  right: 0;
}

.overlay {
  display: none;
  position: fixed;
  z-index: 998;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

/* footer
------------------------------------------------------ */
.footer {
  color: #fff;
  background: #0f141a;
  padding: 40px 0 95px;
}
.footer-inner {
  max-width: 900px;
  margin-inline: auto;
  padding-left: 30px;
  padding-right: 30px;
  box-sizing: content-box;
}

.footer__logo {
  width: 234px;
  height: 48px;
  margin-inline: auto;
}

.footer-menu {
  max-width: 330px;
  margin-top: 32px;
  margin-inline: auto;
}

.footer-menu__item:not(:first-child) {
  margin-top: 18px;
}

.footer-menu__link {
  font-size: 16px;
  line-height: 1.4375;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: #fff;
}
@media (any-hover: hover) {
  .footer-menu__link:hover {
    opacity: 0.7;
  }
}

.footer__btn {
  display: none;
}

.footer__banner {
  width: 250px;
  margin-top: 22px;
  margin-inline: auto;
}
@media (any-hover: hover) {
  .footer__banner .banner-link:hover {
    opacity: 0.7;
  }
}

.footer-bottom {
  margin-top: 50px;
}

.footer-sub-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11px 22px;
}

.footer-sub-menu__item {
  line-height: 1;
}

.footer-sub-menu__link {
  font-size: 13px;
  line-height: 1.4615384615;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: #fff;
}
@media (any-hover: hover) {
  .footer-sub-menu__link:hover {
    opacity: 0.7;
  }
}

.footer__copyright {
  margin-top: 40px;
  font-size: 14px;
  line-height: 1.4285714286;
  letter-spacing: 0.1em;
  text-align: center;
}

@media (min-width: 768px) {
  .footer {
    padding-top: 72px;
    padding-bottom: 47px;
  }
  .footer-content {
    display: grid;
    grid-template-areas: "logo button" "menu banner";
    gap: 27px;
    justify-content: space-between;
  }
  .footer__logo {
    grid-area: logo;
    width: 300px;
    height: 64px;
    margin-left: 0;
  }
  .footer-menu {
    grid-area: menu;
    margin-top: 0;
    margin-left: 0;
  }
  .footer__btn {
    grid-area: button;
    display: block;
    width: 300px;
  }
  .footer__banner {
    grid-area: banner;
    margin-top: 0;
  }
  .footer-bottom {
    margin-top: 72px;
  }
}
@media (min-width: 992px) {
  .footer-content {
    grid-template-areas: "logo menu button" "logo menu banner";
    gap: 54px 27px;
  }
  .footer-bottom {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    gap: 33px;
  }
  .footer-sub-menu {
    gap: 33px;
  }
  .footer__copyright {
    margin-top: 0;
  }
}
/* main-contents
------------------------------------------------------ */
.main-contents {
  padding-top: 145px;
  padding-bottom: 145px;
}
@media (min-width: 768px) {
  .main-contents {
    padding-top: 188px;
    padding-bottom: 188px;
  }
}

.main-contents._top {
  padding-top: 130px;
  padding-bottom: 108px;
}
@media (min-width: 768px) {
  .main-contents._top {
    padding-top: 140px;
    padding-bottom: 202px;
  }
}

/* container
------------------------------------------------------ */
.container {
  max-width: 900px;
  margin-inline: auto;
  padding-left: 30px;
  padding-right: 30px;
  box-sizing: content-box;
}
@media (min-width: 768px) {
  .container {
    padding-left: 50px;
    padding-right: 50px;
  }
}

/* grid
------------------------------------------------------ */
.grid {
  display: grid;
  gap: 50px;
}

.grid--3col {
  max-width: 400px;
  margin-inline: auto;
}
@media (min-width: 992px) {
  .grid--3col {
    max-width: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}

/*------------------------------------------------------------------------
// Component（general）
  ├ btn
  ├ heading
  ├ tag
  └ table
------------------------------------------------------------------------*/
/* button
------------------------------------------------------ */
/* button共通 */
.btn {
  display: inline-block;
  width: 100%;
  padding: 10px;
  border-radius: 100vmax;
  font-size: 16px;
  line-height: 1.4375;
  text-align: center;
  text-decoration: none;
  color: #000;
  background: #fff;
  border: 1px solid;
  cursor: pointer;
  transition: all 0.3s;
}
@media (any-hover: hover) {
  .btn:focus, .btn:hover {
    color: #fff;
    background: #0f141a;
  }
}

/* 白黒反転 */
.btn--reverse {
  color: #fff;
  border-color: #fff;
  background: #0f141a;
}
@media (any-hover: hover) {
  .btn--reverse:focus, .btn--reverse:hover {
    color: #000;
    background: #fff;
    border-color: #000;
  }
}

/* お問い合わせボタン */
.btn--contact {
  padding: 13px 13.5px 14px;
  font-size: 18px;
  line-height: 1.4444444444;
  font-weight: 500;
}

/* LINE予約ボタン */
.btn--line {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 11.5px;
  font-size: 18px;
  line-height: 1.4444444444;
  font-weight: 500;
  color: #fff;
  border-color: #000;
  background: #0f141a;
}
@media (any-hover: hover) {
  .btn--line:focus, .btn--line:hover {
    color: #000;
    background: #fff;
  }
}

.btn-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  vertical-align: middle;
  margin-right: 20px;
}

/* 中央配置ボタン */
.btn-center {
  width: 260px;
  margin-inline: auto;
}

/* heading
------------------------------------------------------ */
.heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.heading + * {
  margin-top: 40px;
}

.heading__sub {
  font-size: 1.125em;
  line-height: 1.4444444444;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000000;
}

.heading__main {
  font-size: 1.5em;
  font-weight: bold;
  line-height: 1.4583333333;
  color: #000000;
}

@media (min-width: 768px) {
  .heading {
    gap: 8px;
  }
  .heading + * {
    margin-top: 54px;
  }
  .heading__sub {
    font-size: 1.25em;
    line-height: 1.45;
  }
  .heading__main {
    font-size: 2em;
    line-height: 1.4375;
  }
}
/* id属性でのページ内リンク位置調整 */
.heading[id] {
  padding-top: 100px;
  margin-top: -100px;
}
@media (min-width: 768px) {
  .heading[id] {
    padding-top: 120px;
    margin-top: -120px;
  }
}

/* tag
------------------------------------------------------ */
.tag {
  display: inline-block;
  min-width: 62px;
  padding: 3px 10px;
  border-radius: 5px;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  background: #0f141a;
}

/* table
------------------------------------------------------ */
.table {
  width: 100%;
}
.table th {
  width: 38.8888888889%;
  padding: 10px;
  border: 1px solid #0f141a;
  background: #F5F5F5;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .table th {
    padding: 12.5px 30px;
  }
}
.table td {
  padding: 10px;
  border: 1px solid #0f141a;
  background: #fff;
  text-align: left;
  line-height: 1.5;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .table td {
    padding: 12.5px 30px;
  }
}

/* 料金表 */
.price-table {
  overflow: hidden;
  width: 100%;
  border-collapse: separate;
  border-radius: 10px;
  border: 1px solid #0f141a;
}
.price-table thead th {
  font-size: 16px;
  line-height: 1.4375;
  text-align: center;
  color: #fff;
  background: #0f141a;
}
.price-table thead th span {
  display: block;
  margin-bottom: 7px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4444444444;
}
.price-table tbody tr:not(:first-child) th, .price-table tbody tr:not(:first-child) td {
  border-top: 1px solid #0f141a;
}
.price-table th {
  width: 50%;
  padding: 10px 0;
  background: #F5F5F5;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  vertical-align: middle;
}
.price-table td {
  padding: 10px 0;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  vertical-align: middle;
}
.price-table td:empty::before {
  content: "ー";
}

/*------------------------------------------------------------------------
// Component（original）
  ├ profile
  ├ plan
  ├ memberdata
  ├ interview
  ├ news
  ├ faq
  ├ counseling
  ├ post-body
  ├ fv
  ├ about
  ├ point
  └ flow
------------------------------------------------------------------------*/
/* point
------------------------------------------------------ */
.profile._counselor {
  padding-bottom: 60px;
}

.profile._fp {
  padding-top: 47px;
}

.profile + .profile {
  border-top: 1px solid #000;
}

.profile-box {
  max-width: 400px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.profile-box__img {
  flex-shrink: 0;
}
.profile-box__img img {
  aspect-ratio: 338/272;
  -o-object-fit: cover;
     object-fit: cover;
}

.profile-box__name {
  font-size: 1.125em;
  font-weight: 500;
  line-height: 1.4444444444;
  color: #000000;
}

.profile-box__data {
  margin-top: 44px;
}
.profile-box__data + * {
  margin-top: 45px;
}
.profile-box__data dt {
  font-size: 1.125em;
  font-weight: 500;
  line-height: 1.4444444444;
  color: #000000;
}
.profile-box__data dt:not(:first-child) {
  margin-top: 40px;
}
.profile-box__data dd {
  margin-top: 0.875em;
  font-size: 1em;
  line-height: 1.4375;
}

@media (min-width: 768px) {
  .profile._counselor {
    padding-bottom: 110px;
  }
  .profile._fp {
    padding-top: 80px;
  }
  .profile-box {
    max-width: 100%;
    flex-direction: row;
    gap: 46px;
  }
  .profile-box__data dt:not(:first-child) {
    margin-top: 64px;
  }
}
/* plan
------------------------------------------------------ */
.plan {
  padding-bottom: 66px;
}

.plan__caption {
  margin-top: 20px;
  font-size: 0.875em;
  line-height: 1.4285714286;
}
@media (min-width: 768px) {
  .plan__caption {
    margin-top: 32px;
  }
}

/* memberdata
------------------------------------------------------ */
.memberdata__lead {
  line-height: 1.4375;
}
.memberdata__lead + * {
  margin-top: 47px;
}

.memberdata__list {
  margin-top: 40px;
}

.memberdata-card {
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #0f141a;
}

.memberdata-card__title {
  padding: 4px 0 5px;
  border-top-left-radius: 9px;
  border-top-right-radius: 9px;
  font-size: 18px;
  line-height: 1.4444444444;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  background: #0f141a;
}

.memberdata-card__text {
  padding: 4px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
}
.memberdata-card__text span {
  font-size: 14px;
  font-weight: normal;
}

.memberdata-card__img {
  margin: -1px;
}
.memberdata-card__img img {
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
}

.memberdata-card__list {
  padding: 16px 17px 17px;
  font-size: 18px;
  font-weight: bold;
  line-height: 2.5;
  letter-spacing: 0.1em;
}

.memberdata__text {
  max-width: 400px;
  margin-inline: auto;
  margin-top: 15px;
  font-weight: 500;
  line-height: 1.4375;
}
@media (min-width: 768px) {
  .memberdata__text {
    max-width: 100%;
  }
}

.memberdata__caption {
  margin-top: 33px;
  font-size: 0.875em;
  line-height: 1.4285714286;
}
@media (min-width: 768px) {
  .memberdata__caption {
    margin-top: 48px;
  }
}

/* interview
------------------------------------------------------ */
.interview {
  padding-top: 80px;
  padding-bottom: 88px;
}
@media (min-width: 768px) {
  .interview {
    padding-top: 104px;
    padding-bottom: 90px;
  }
}

.interview-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 44px;
  margin-inline: calc(50% - 50vw);
}
.interview-list + * {
  margin-top: 32px;
}
@media (min-width: 900px) {
  .interview-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 74px;
    margin-inline: 0;
  }
}

.interview-card {
  overflow: hidden;
  width: 280px;
  border-radius: 10px;
  border: 1px solid #0f141a;
}
.interview-card-inner {
  display: flex;
  flex-direction: column-reverse;
  border-radius: inherit;
  text-decoration: none;
}

.interview-card__thumb {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  margin: -1px;
}
.interview-card__thumb img {
  aspect-ratio: 280/230;
  -o-object-fit: cover;
     object-fit: cover;
}

.interview-card__body {
  background: #fff;
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  min-height: 90px;
  padding: 16px;
}
.interview-card__body p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.4375;
  color: #000000;
}

/* slickの設定 */
.slick-slide {
  margin: 0 12px;
}

.slick-dots {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
  padding-left: 30px;
  padding-right: 30px;
}
.slick-dots button {
  color: transparent;
  display: block;
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #D9D9D9;
  outline: none;
}
.slick-dots .slick-active button {
  background: #D9D9D9;
}

/* news
------------------------------------------------------ */
.news {
  padding-top: 88px;
  padding-bottom: 96px;
}

.news-list {
  margin-top: 15px;
}
.news-list + * {
  margin-top: 43px;
}

.news-list__item {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 10px;
  padding: 20px 0;
  border-bottom: 1px solid #000;
}
.news-list__item + .news-list__item {
  margin-top: 16px;
}

.news-list__date {
  display: inline-block;
  margin-right: 14px;
  font-size: 16px;
  line-height: 1.4375;
  letter-spacing: 0.1em;
}

.news-list__body {
  width: 100%;
}

.news-list__link {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.4375;
  letter-spacing: 0.1em;
  text-decoration: none;
}
@media (any-hover: hover) {
  .news-list__link:hover {
    opacity: 0.7;
  }
}

@media (min-width: 768px) {
  .news {
    padding-top: 90px;
    padding-bottom: 93px;
  }
  .news-list {
    margin-top: 43px;
  }
  .news-list + * {
    margin-top: 40px;
  }
  .news-list__item {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
  .news-list__item + * {
    margin-top: 30px;
  }
  .news-list__meta {
    flex-shrink: 0;
  }
  .news-list__date {
    margin-right: 18px;
  }
  .news-list__body {
    width: calc(100% - 170px);
  }
  .news-list__link {
    font-size: 1.25em;
    line-height: 1.45;
  }
}
/* faq
------------------------------------------------------ */
.faq {
  padding-top: 96px;
}

.faq__list {
  margin-top: 28px;
}
.faq__list + * {
  margin-top: 42px;
}

@media (min-width: 768px) {
  .faq {
    padding-top: 93px;
  }
  .faq___list {
    margin-top: 58px;
  }
}
.faq-accordion {
  border-bottom: 1px solid #000;
}

.faq-accordion__inner {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 25px 0;
}
.faq-accordion__inner:has(.faq-accordion__text) {
  border-top: 1px dashed #000;
}

.faq-accordion__icon {
  flex-shrink: 0;
  display: block;
  width: 30px;
  height: 30px;
  padding: 5px 4px 3px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  color: #fff;
  background: #0f141a;
}
@media (min-width: 768px) {
  .faq-accordion__icon {
    padding: 4px;
  }
}

.faq-accordion__action {
  flex-shrink: 0;
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  margin-left: auto;
}
.faq-accordion__action::before, .faq-accordion__action::after {
  position: absolute;
  inset: 0;
  margin: auto;
  content: "";
  display: block;
  width: 50%;
  height: 0;
  border-top: 2px solid;
}
.faq-accordion__action::after {
  rotate: 90deg;
}
.faq-accordion__toggle[aria-expanded=true] .faq-accordion__action::after {
  rotate: 0deg;
  border-top: 0;
}

.faq-accordion__toggle {
  cursor: pointer;
}

.faq-accordion__title {
  flex-grow: 1;
  font-weight: 500;
}

.faq-accordion__panel {
  display: none;
}

.faq__text {
  flex-grow: 1;
}

/* counseling
------------------------------------------------------ */
.counseling {
  padding-bottom: 56px;
}

.counseling-box {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.counseling-box__text {
  line-height: 1.4375;
}

.counseling-box__btn {
  flex-shrink: 0;
  max-width: 333px;
}

.counseling-box__btn-caption {
  margin-top: 10px;
  font-size: 0.875em;
  line-height: 1.4285714286;
  color: #000;
}

@media (min-width: 768px) {
  .counseling {
    padding-bottom: 108px;
  }
  .counseling-box {
    flex-direction: row;
  }
}
/* 本文投稿エリア
------------------------------------------------------ */
.post-body > *:not(h3, h4, h5, h6) {
  margin-top: 1.4375em;
}
.post-body h3 {
  margin-top: 44px;
  font-size: 1.125em;
  font-weight: bold;
  line-height: 1.4444444444;
  color: #000000;
}
@media (min-width: 768px) {
  .post-body h3 {
    margin-top: 60px;
    font-size: 1.5em;
  }
}
.post-body p {
  line-height: 1.4375;
}

/* privacy
------------------------------------------------------ */
.privacy__lead {
  line-height: 1.4375;
}

/* fv
------------------------------------------------------ */
.fv {
  margin-inline: calc(50% - 50vw);
  height: calc(100dvh - 130px);
  min-height: 132.3155216285vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.fv-content {
  max-width: calc(100% - 40px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.fv__copy {
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.272264631vw;
  padding-left: 3.0534351145vw;
  font-size: 9.1603053435vw;
  font-weight: 500;
  line-height: 1.4444444444;
  color: #000000;
}

.fv__img {
  margin-inline: -35px;
}

@media (min-width: 768px) {
  .fv {
    height: auto;
    min-height: auto;
  }
  .fv-content {
    max-width: 1240px;
    flex-direction: row;
    align-items: center;
    gap: min(4.1666666667vw, 60px);
    box-sizing: content-box;
  }
  .fv__copy {
    padding-left: 0;
    gap: min(0.3472222222vw, 5px);
    font-size: min(4.1666666667vw, 60px);
    line-height: 1.45;
  }
  .fv__img {
    width: min(48.6111111111vw, 700px);
    margin-inline: 0;
  }
}
/* about
------------------------------------------------------ */
.about {
  position: relative;
  margin-top: 34px;
  margin-inline: calc(50% - 50vw);
}

.about-content {
  max-width: 1240px;
  margin-inline: auto;
  border-radius: 25px;
  color: #fff;
  background: #0f141a;
}

.about-content-inner {
  max-width: 900px;
  padding: 42px 30px 45px;
  margin-inline: auto;
}

.about__title {
  font-size: 1.5em;
  font-weight: bold;
  line-height: 1.4583333333;
}

.about__text {
  max-width: 756px;
  margin-top: 1.3125em;
  font-weight: 500;
  line-height: 1.875;
}

@media (min-width: 768px) {
  .about {
    margin-top: 52px;
    padding: 0 50px;
  }
  .about-content-inner {
    padding: 63px 63px 75px;
  }
  .about__title {
    max-width: 900px;
    font-size: 2em;
    line-height: 1.4375;
  }
  .about__text {
    margin-top: 1.5em;
    font-size: 1.5em;
    line-height: 1.7916666667;
  }
}
/* point
------------------------------------------------------ */
.point {
  padding-top: 53px;
  padding-bottom: 68px;
}

.point-box {
  max-width: 400px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.point-box + .point-box {
  margin-top: 48px;
}

.point-box__thumb {
  flex-shrink: 0;
  max-width: 330px;
}
.point-box__thumb img {
  aspect-ratio: 330/240;
  -o-object-fit: cover;
     object-fit: cover;
}

.point-box__body {
  flex-grow: 1;
}

.point-box__title {
  font-size: 1.125em;
  font-weight: bold;
  line-height: 1.4444444444;
}

.point-box__text {
  margin-top: 0.5em;
}

.point-box__btn {
  width: 260px;
  margin-top: 12px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .point {
    padding-top: 98px;
    padding-bottom: 147px;
  }
  .point-box {
    max-width: 100%;
    flex-direction: row;
    align-items: flex-start;
    gap: 35px;
  }
  .point-box:nth-of-type(even) {
    flex-direction: row-reverse;
  }
  .point-box + .point-box {
    margin-top: 110px;
  }
  .point-box__title {
    font-size: 1.5em;
    line-height: 1.4583333333;
  }
  .point-box__text {
    max-width: 500px;
  }
  .point-box__btn {
    margin-top: 22px;
  }
}
/* flow
------------------------------------------------------ */
.flow {
  margin-inline: calc(50% - 50vw);
}
.flow .heading > * {
  color: #fff !important;
}

.flow-content {
  max-width: 1240px;
  margin-inline: auto;
  border-radius: 25px;
  color: #fff;
  background: #0f141a;
}

.flow-content-inner {
  max-width: 900px;
  padding: 53px 30px 93px;
  margin-inline: auto;
}

.flow-list {
  margin-left: 10px;
  padding-left: 45px;
}
.flow-list + * {
  margin-top: 23px;
}

.flow-list__item {
  counter-reset: 0;
  counter-increment: number;
}
.flow-list__item:not(:first-child) {
  margin-top: 36px;
}
.flow-list__item:not(:last-child) {
  position: relative;
}
.flow-list__item:not(:last-child)::after {
  position: absolute;
  top: 30px;
  left: -30px;
  content: "";
  display: block;
  width: 1px;
  height: calc(100% + 6px);
  background: #fff;
}

.flow-list__title {
  position: relative;
  font-size: 1.125em;
  font-weight: 500;
  line-height: 1.4444444444;
}
.flow-list__title::before {
  position: absolute;
  top: 0;
  left: -45px;
  content: counter(number);
  display: block;
  width: 30px;
  height: 30px;
  padding: 1px 4px 3px;
  border-radius: 50px;
  border: 2px solid;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
}

.flow-list__text {
  margin-top: 0.75em;
}

@media (min-width: 768px) {
  .flow {
    padding: 0 50px;
  }
  .flow-content-inner {
    padding: 90px 63px 110px;
  }
  .flow-list + * {
    margin-top: 60px;
  }
  .flow-list__title {
    font-size: 1.25em;
    line-height: 1.5;
  }
  .flow-list__item:not(:first-child) {
    margin-top: 48px;
  }
  .flow-list__item:not(:last-child)::after {
    height: calc(100% + 18px);
  }
}
/*------------------------------------------------------------------------
// Utilities
------------------------------------------------------------------------*/
/* スクリーンリーダーから隠す */
.visually-hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  margin: -1px;
}

/* レスポンシブ表示切り替え */
@media (max-width: 767px) {
  .sp-hidden {
    display: none;
  }
}

@media (min-width: 768px) {
  .pc-hidden {
    display: none;
  }
}

/* 調整 */
.pt-0 {
  padding-top: 0 !important;
}

/* animation
------------------------------------------------------ */
.js-animate {
  opacity: 0;
}

/* 下からスライドイン */
.js-mask {
  overflow: hidden;
  display: block;
}
.js-mask > * {
  display: block;
  transform: translateY(1.5em);
}

.is-active[data-animation=slideInUp] {
  animation: slideInUp 0.6s ease-out forwards;
  opacity: 1;
}
@keyframes slideInUp {
  from {
    transform: translateY(1.5em);
  }
  to {
    transform: translateY(0);
  }
}

/* 下からフェードイン */
.is-active[data-animation=fadeInUp] {
  animation: fadeInUp 0.4s ease-out forwards;
  opacity: 0;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=common.css.map */