@charset "UTF-8";

:root {
  /* 色管理用の変数 */
  --white-color: #ffffff;
  --black-color: #333333;
  --gray-color: #f8f8f8;
  --gray-color02: #fafafa;
  --gray-color03: #eff9f7;
  /* ↓追加 */
  --gray-color04: #e9e8e8;
  --primary-color: #4bbea4;
  --primary-color02: #48bda3;
  --primary-color03: #00a47f;
  --primary-color04: #44b79d;
  --primary-color05: #71ffdf;
  --primary-color06: #06b678;
  /* ↑追加ここまで↑ */
  --accent-color: #a7d4ca;
  --secondary-color: #b3cfe5;
}

:root {
  /* コンテンツ幅管理用の変数 */
  --content-width-sm: 800px;
  --content-width: 936px;
  --content-width-lg: 1080px;
}

:root {
  /* z-index管理用の変数 */
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-page-top: 50;
  --z-index-header: 100;
  --z-index-menu: 150;
  --z-index-modal: 200;
}

body {
  color: var(--black-color);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

/* =========================================
  # utility
========================================= */

@media screen and (min-width: 375px) {
  .u_sm-dn {
    display: none;
  }
}

@media screen and (min-width: 1080px) {
  .u_lg-dn {
    display: none;
  }
}

.u_pc-br {
  display: none;
}

@media screen and (min-width: 768px) {
  .u_pc-br {
    display: inline;
  }
}

@media screen and (min-width: 1080px) {
  .u_lg-dn-line {
    display: none;
  }
}

@media screen and (min-width: 1250px) {
  .u_lg-dn-line {
    display: block;
  }
}

/* =========================================
  # layout (contents・header・footer)
========================================= */

.l_container-sm,
.l_container-lg,
.l_container {
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
}

.l_container-sm {
  max-width: calc(var(--content-width-sm) + 32px);
}

.l_container {
  max-width: calc(var(--content-width) + 32px);
}

.l_container-lg {
  max-width: calc(var(--content-width-lg) + 32px);
}

.l_contents {
  padding: 98px 0;
}

@media screen and (min-width: 1080px) {
  .l_contents {
    padding: 87px 0 120px;
  }
}

/* header */

.l_header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-index-header);
  width: 100%;
  height: 69px;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (min-width: 1080px) {
  .l_header {
    padding: 24px;
    background: var(--white-color);
    height: 100px;
  }
}

@media screen and (min-width: 1440px) {
  .l_header {
    padding: 50px 35px;
  }
}

.l_header-single {
  background: var(--white-color);
}

.l_header-logo {
  width: 50px;
}

@media screen and (min-width: 1080px) {
  .l_header-group {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    padding-top: 8px;
  }
}

@media screen and (min-width: 1200px) {
  .l_header-group {
    flex-direction: row;
    align-items: center;
    gap: 24px;
    padding-bottom: 16px;
  }
}

.l_header-nav {
  padding-left: 60px;
}

@media screen and (min-width: 1080px) {
  .l_header-nav {
    padding-left: 0;
  }
}

.l_header-nav_list {
  font-size: 18px;
  height: 100%;
  background: var(--white-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

@media screen and (min-width: 1080px) {
  .l_header-nav_list {
    font-size: 16px;
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
  }
}

@media screen and (min-width: 1400px) {
  .l_header-nav_list {
    gap: 28px;
  }
}

.l_header-nav_item {
  list-style: none;
  display: inline-block;
}

.l_header-nav_link,
.l_footer-nav_link {
  position: relative;
  padding-bottom: 5px;
}

.l_header-nav_link::after,
.l_footer-nav_link::after {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  content: "";
  width: 0%;
  height: 2px;
  background: #000;
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.l_header-nav_link:hover::after,
.l_footer-nav_link:hover::after {
  width: 100%;
}

/* header_LINE */

@media screen and (min-width: 1080px) {
  .l_header_btn-line-wrapper {
    display: inline-block;
    padding-bottom: 8px;
  }
}

@media screen and (min-width: 1250px) {
  .l_header_btn-line-wrapper {
    padding-bottom: 0;
  }
}

.l_header_btn-line {
  width: 174px;
  height: 47px;
  border-radius: 100vh;
  display: flex;
  justify-content: center;
  background: linear-gradient(90deg, #68ff63 0%, #3cb371 50%, #0ed007 100%);
  background-size: 200% 100%;
  background-position: 0 0;
  transition: background-position 0.3s ease;
  border: none;
  color: #fff;
  font-weight: bold;
  font-size: 12px;
  text-align: center;
  align-items: center;
}

.l_header_btn-line:hover {
  background-position: 100% 0;
}

@media screen and (min-width: 1080px) {
  .l_header_btn-line {
    display: none;
  }
}

.l_header_btn-line.tag {
  display: none;
}

@media screen and (min-width: 1080px) {
  .l_header_btn-line.tag {
    display: block;
    width: 200px;
    height: 40px;
    padding-top: 10px;
  }
}

@media screen and (min-width: 1250px) {
  .l_header_btn-line.tag {
    width: 174px;
    height: 47px;
    padding-top: 5px;
  }
}

/* footer */

.l_footer {
  background: var(--gray-color03);
  padding: 56px 8px 0 8px;
}

@media screen and (min-width: 1080px) {
  .l_footer {
    padding: 56px 64px 0 60px;
  }
}

.l_footer-nav {
  border-bottom: 1px solid rgba(68, 68, 68, 0.3);
  padding-bottom: 23px;
}

.l_footer-nav_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.l_footer-nav_link {
  font-size: 12px;
  border-right: 1px solid rgba(68, 68, 68, 0.3);
  padding: 0 8px 5px 8px;
}

@media screen and (min-width: 1080px) {
  .l_footer-nav_link {
    font-size: 14px;
  }
}

.l_footer-nav_item:last-child .l_footer-nav_link {
  border-right: none;
}

.l_footer-icon-area {
  display: flex;
  gap: 16px;
  justify-content: center;
  padding-top: 23px;
}

.l_footer-icon_link {
  width: 50px;
  height: 50px;
}

.l_footer-copyright {
  font-size: 12px;
  text-align: center;
  padding: 23px 0 13px 0;
}

/* scroll-margin-top */

@media screen and (min-width: 1080px) {
  #l_top_issues_link {
    scroll-margin-top: 100px;
  }
}

@media screen and (min-width: 1080px) {
  #top_strenght_link {
    scroll-margin-top: 25px;
  }
}

@media screen and (min-width: 1080px) {
  #top_about_link {
    scroll-margin-top: 100px;
  }
}

@media screen and (min-width: 1080px) {
  #top_service_link {
    scroll-margin-top: 100px;
  }
}

@media screen and (min-width: 1080px) {
  #top_price_link {
    scroll-margin-top: 100px;
  }
}

@media screen and (min-width: 1080px) {
  #top_frow_link {
    scroll-margin-top: 100px;
  }
}

@media screen and (min-width: 1080px) {
  #top_voice_link {
    scroll-margin-top: 100px;
  }
}

@media screen and (min-width: 1080px) {
  #top_faq_link {
    scroll-margin-top: 100px;
  }
}

/* =========================================
  # module (hamburger・btn)
========================================= */

/* hamburger */

.m_hamburger {
  display: block;
  width: 28px;
  height: 16px;
  position: relative;
  /* z-index: var(--z-index-modal); */
  z-index: 1001;
  border: none;
}

@media screen and (min-width: 1080px) {
  .m_hamburger {
    display: none;
  }
}

.m_hamburger-bar {
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  background: var(--white-color);
}

.m_hamburger-bar-single {
  background: var(--black-color);
}

.m_hamburger-bar:nth-child(1) {
  top: 0;
}

.m_hamburger-bar:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.m_hamburger-bar:nth-child(3) {
  top: 100%;
  transform: translateY(-100%);
}

/* single */

.m_single_section-title {
  font-size: 20px;
  color: var(--primary-color02);
  text-align: left;
  position: relative;
  padding: 0 16px;
}

@media screen and (min-width: 1080px) {
  .m_single_section-title {
    width: 1080px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1080px) {
  .m_single_section-title {
    font-size: 32px;
  }
}

.m_single_section-title::before {
  width: 100%;
  font-size: 60px;
  color: var(--gray-color04);
  font-weight: bold;
  letter-spacing: -0.13em;
  position: absolute;
  top: -8px;
  left: 16px;
  z-index: var(--z-index-back);
}

@media screen and (min-width: 1080px) {
  .m_single_section-title::before {
    font-size: 88px;
    letter-spacing: 0.1em;
  }
}

.m_single_section-title__concept::before {
  content: "CONCEPT";
  width: 343px;
}

/* LINEお問い合わせ以外のボタン */

.m_btn-wrapper {
  width: 181px;
  height: 50px;
  margin-left: auto;
  margin-right: auto;
}

.m_btn-instructor {
  margin-top: 450px;
}

@media screen and (min-width: 768px) {
  .m_btn-instructor {
    margin-top: 60px;
  }
}

.m_btn-top-about {
  margin-top: 36px;
}

@media screen and (min-width: 768px) {
  .m_btn-top-about {
    margin-top: 0;
  }
}

.m_btn-concept {
  margin-top: 36px;
}

@media screen and (min-width: 1080px) {
  .m_btn-concept {
    margin-top: 60px;
  }
}

.m_btn-top-voice {
  margin-top: 36px;
}

@media screen and (min-width: 1080px) {
  .m_btn-top-voice {
    margin-top: 42px;
  }
}

.m_btn {
  width: 100%;
  height: 100%;
  border-radius: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white-color);
  color: var(--primary-color03);
  border: 1px solid var(--primary-color03);
  padding: 12px 27px 12px 50px;
  box-shadow: 0 4px 4px #00000040;
}

.m_btn:hover {
  background: var(--primary-color03);
  color: var(--white-color);
}

.m_btn__left {
  position: relative;
}

.m_btn__left::before {
  content: "";
  width: 6px;
  height: 6px;
  border-width: 2px;
  border-style: solid none none solid;
  border-color: var(--primary-color03);
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%) rotate(-45deg);
}

.m_btn__left:hover::before {
  border-color: var(--white-color);
}

.m_btn__right {
  position: relative;
  padding: 12px 43px 12px 21px;
}

.m_btn__right::after {
  content: "";
  width: 6px;
  height: 6px;
  border-width: 2px;
  border-style: solid none none solid;
  border-color: var(--primary-color03);
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%) rotate(135deg);
}

.m_btn__right:hover::after {
  border-color: var(--white-color);
}

/* footerの直前のLINEのボタン */

.m_footer_latest-btn-wrapper {
  background: var(--gray-color03);
  padding: 1px 0 32px 0;
}

@media screen and (min-width: 1080px) {
  .m_footer_latest-btn-wrapper {
    padding-bottom: 87px;
  }
}

.top_footer_latest-btn-wrapper {
  padding: 1px 0 32px 0;
}

@media screen and (min-width: 1080px) {
  .top_footer_latest-btn-wrapper {
    padding-bottom: 87px;
  }
}

.m_footer_latest-btn {
  width: 307px;
  height: 95px;
  margin: 64px auto 0;
  border-radius: 100vh;
  display: flex;
  flex-direction: column; /* ←縦並びにする */
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #68ff63 0%, #3cb371 50%, #0ed007 100%);
  background-size: 200% 100%;
  background-position: 0 0;
  border: none;
  transition: background-position 0.3s ease;
  color: #fff;
  box-shadow: 0 4px 4px #00000040;
  text-align: center; /* ←中央揃え */
}

.m_footer_latest-btn:hover {
  background-position: 100% 0;
}

/* 「無料相談・体験予約」 */
.top-main {
  font-size: 16px;
}

/* 「ができる」 */
.top-sub {
  font-size: 14px;
}

/* 「LINE公式アカウント」 */
.line-main {
  font-size: 18px;
  font-weight: bold;
}

/* 「はこちら！」 */
.line-sub {
  font-size: 16px;
}

/* =========================================
  # top (index.html)
========================================= */

/* scroll-down */

.top_container {
  display: none;
}

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

.top_scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-family: serif;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}

.top_circle-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 50%;
  position: relative;
  margin-bottom: 12px;
  margin-inline: auto;
  animation: pulse 2s infinite;
}

/* 縦線 */
.top_circle-arrow::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 50%;
  width: 0.5px;
  height: 16px;
  background-color: #fff;
  transform: translateX(-50%);
}

/* 矢印 */
.top_circle-arrow::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-right: 0.5px solid #fff;
  border-bottom: 0.5px solid #fff;
  transform: translateX(-50%) rotate(45deg);
}

/* .top_circle-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
} */

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* section */

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

.top_section-title {
  font-size: 32px;
  color: rgba(68, 68, 68, 0.5);
  letter-spacing: 0.05em;
}

.top_section-sub-title {
  display: inline-block;
  font-size: 16px;
  color: var(--white-color);
  letter-spacing: 0.05em;
  padding: 3px 30px;
  background: rgba(0, 164, 127, 0.7);
  border-radius: 50px;
}

@media screen and (min-width: 1080px) {
  .top_section-sub-title {
    font-size: 20px;
    padding: 6px 60px;
  }
}

/* kv */

.top_kv {
  height: 100vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url("../img/top_kv_sp.webp") center/cover;
}

@media screen and (min-width: 1080px) {
  .top_kv {
    height: 100vh;
    background:
      linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
      url("../img/top_kv_pc.webp") center/cover;
  }
}

.top_kv-inner {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top_kv_box1 {
  padding-top: 103px;
}

@media screen and (min-width: 1080px) {
  .top_kv_box1 {
    text-align: right;
    padding-top: 158px;
    padding-right: 105px;
  }
}

.top_kv_copy {
  font-size: 20px;
  font-weight: bold;
  color: var(--white-color);
  letter-spacing: 0.05em;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  margin-left: 24px;
}

@media screen and (min-width: 768px) {
  .top_kv_copy {
    font-size: 28px;
    margin-left: 40px;
  }
}

@media screen and (min-width: 1080px) {
  .top_kv_copy {
    font-size: 40px;
    margin-left: 0px;
    margin-right: 168px;
  }
}

.top_kv_copy-under {
  padding-left: 40px;
}

@media screen and (min-width: 1080px) {
  .top_kv_copy-under {
    padding-left: 0px;
    margin-right: -64px;
  }
}

.top_kv_copy-txt {
  display: inline-block;
  background: linear-gradient(90deg, #44b79d 0%, rgba(113, 255, 223, 0.3) 100%);
  background-repeat: no-repeat;
  background-size: 100% 40%;
  background-position: 0 90%;
  padding: 0 5px 0 10px;
}

@media screen and (min-width: 1080px) {
  .top_kv_copy-txt {
    padding: 0 5px 0 0;
  }
}

.top_kv_copy-small1 {
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .top_kv_copy-small1 {
    font-size: 16px;
  }
}

@media screen and (min-width: 1080px) {
  .top_kv_copy-small1 {
    font-size: 20px;
  }
}

.top_kv_copy-small2 {
  font-size: 16px;
}

@media screen and (min-width: 768px) {
  .top_kv_copy-small2 {
    font-size: 20px;
  }
}

@media screen and (min-width: 1080px) {
  .top_kv_copy-small2 {
    font-size: 24px;
  }
}

.top_kv_sub_copy {
  font-size: 24px;
  font-weight: bold;
  color: var(--white-color);
  letter-spacing: 0.05em;
  display: inline-block;
  margin-left: 32px;
  padding-top: 6px;
  position: relative;
  text-shadow:
    0 4px 4px rgba(0, 0, 0, 0.25),
    1px 1px 0 rgba(127, 198, 175, 0.3),
    -1px -1px 0 rgba(127, 198, 175, 0.3),
    -1px 1px 0 rgba(127, 198, 175, 0.3),
    1px -1px 0 rgba(127, 198, 175, 0.3);
}

@media screen and (min-width: 768px) {
  .top_kv_sub_copy {
    font-size: 32px;
    margin-left: 48px;
  }
}

@media screen and (min-width: 1080px) {
  .top_kv_sub_copy {
    font-size: 40px;
    margin-left: 0px;
  }
}

.top_kv_sub_copy::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  height: 1px;
  background: var(--white-color);

  box-shadow: 0 0 0 1px rgba(127, 198, 175, 0.3);
}

.top_kv_box2 {
  position: relative;
  max-width: 343px;
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .top_kv_box2 {
    min-width: 522px;
  }
}

@media screen and (min-width: 1080px) {
  .top_kv_box2 {
    min-width: 646px;
    padding-bottom: 120px;
  }
}

.top_kv_reserve {
  position: absolute;
  top: -20px;
  bottom: auto;
  z-index: var(--z-index-page-top);
  display: inline-block;
  padding: 6px 14px;
  background: var(--white-color);
  border-radius: 10px;
}

.top_kv_reserve-copy {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.05em;
  display: inline-block;
  color: rgba(0, 164, 127, 1);
  border-bottom: 1px solid rgba(0, 164, 127, 1);
}

@media screen and (min-width: 768px) {
  .top_kv_reserve-copy {
    font-size: 16px;
  }
}

@media screen and (min-width: 1080px) {
  .top_kv_reserve-copy {
    font-size: 20px;
  }
}

.top_kv_reserve-txt {
  padding: 20px 11px 13px;
  background: linear-gradient(90deg, #44b79d 0%, rgba(113, 255, 223, 0.3) 100%);
  border-radius: 10px;
  width: 100%;
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .top_kv_reserve-txt {
    padding: 40px 36px 32px;
  }
}

.top_kv_reserve-ttl {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: var(--white-color);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  display: inline-block;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .top_kv_reserve-ttl {
    font-size: 24px;
  }
}

@media screen and (min-width: 1080px) {
  .top_kv_reserve-ttl {
    font-size: 32px;
  }
}

.top_kv_btn-wrapper {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .top_kv_btn-wrapper {
    margin-top: 24px;
  }
}

.top_kv_btn-line {
  width: 174px;
  height: 47px;
  border-radius: 100vh;
  display: flex;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-align: center;
  align-items: center;
  background: linear-gradient(90deg, #68ff63 0%, #3cb371 50%, #0ed007 100%);
  background-size: 200% 100%;
  background-position: 0 0;
  border: none;
  transition: background-position 0.3s ease;
}

.top_kv_btn-line:hover {
  background-position: 100% 0;
}

@media screen and (min-width: 768px) {
  .top_kv_btn-line {
    width: 297px;
    height: 80px;
    font-size: 20px;
  }
}

/* issues */

.top_issues {
  padding: 70px 0 49px;
  background: var(--gray-color03);
  position: relative;
}

.top_issues::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);

  width: 0;
  height: 0;

  border-left: 50vw solid transparent;
  border-right: 50vw solid transparent;
  border-top: 60px solid var(--gray-color03);
}

@media screen and (min-width: 1080px) {
  .top_issues::after {
    border-top: 75px solid var(--gray-color03);
  }
}

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

.top_issues-copy-inner {
  position: relative;
  display: inline-block;
}

.top_issues-copy-inner::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -2em;

  width: 40px;
  height: 40px;

  background: url("../img/issues_line-left.svg") no-repeat center / contain;
}

.top_issues-copy-inner::after {
  content: "";
  position: absolute;
  top: -10px;
  right: -2em;

  width: 40px;
  height: 40px;

  background: url("../img/issues_line-right.svg") no-repeat center / contain;
}

.top_issues-copy-txt {
  font-size: 20px;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 768px) {
  .top_issues-copy-txt {
    font-size: 24px;
  }
}

@media screen and (min-width: 1080px) {
  .top_issues-copy-txt {
    font-size: 28px;
  }
}

.top_issues_list {
  padding: 32px 34px;
  position: relative;
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .top_issues_list {
    padding: 56px 34px;
  }
}

.top_issues_list::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 14px;

  width: 9px;
  height: 9px;
  border-radius: 100px;
  background: #c0b2b0;
}

.top_issues_list::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 14px;

  width: 9px;
  height: 9px;
  border-radius: 100px;
  background: #c0b2b0;
}

.top_issues_list-wrapper {
  margin: 40px auto 0;
  background: #f5f5f5;
  border: 1px solid #8c8282;
  border-radius: 16px;
  box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.25);
  position: relative;
  max-width: 313px;
}

@media screen and (min-width: 768px) {
  .top_issues_list-wrapper {
    max-width: 424px;
  }
}

@media screen and (min-width: 1080px) {
  .top_issues_list-wrapper {
    max-width: 537px;
    position: relative;
  }
}

@media screen and (min-width: 1080px) {
  .top_issues_list-wrapper::before {
    position: absolute;
    content: "";
    display: inline-block;
    width: 155px;
    height: 221px;
    bottom: 0;
    left: 0;
    transform: translateX(-200px);
    background-image: url(../img/issues1.svg);
    background-size: contain;
    background-repeat: no-repeat;
  }
}

@media screen and (min-width: 1080px) {
  .top_issues_list-wrapper::after {
    position: absolute;
    content: "";
    display: inline-block;
    width: 155px;
    height: 221px;
    bottom: 0;
    right: 0;
    transform: translateX(200px);
    background-image: url(../img/issues2.svg);
    background-size: contain;
    background-repeat: no-repeat;
  }
}

.top_issues-arrow {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);

  width: 50px;
  height: 78px;
}

.top_issues_item {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.2;
  position: relative;
  padding-left: 24px;
  margin: 0 auto;
  max-width: 250px;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .top_issues_item {
    font-size: 18px;
    max-width: 300px;
  }
}

@media screen and (min-width: 1080px) {
  .top_issues_item {
    font-size: 22px;
    max-width: 350px;
    padding-left: 40px;
  }
}

.top_issues_item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);

  width: 18px;
  height: 18px;
  background: url("../img/issues_check.svg") no-repeat center / contain;
}

@media screen and (min-width: 1080px) {
  .top_issues_item::before {
    left: 10px;
  }
}

.top_issues_item:not(:first-child) {
  margin-top: 9px;
}

.top_issues-resolve {
  margin-top: 55px;
  text-align: center;
  line-height: 1.4;
}

.top_issues-resolve-txt {
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

@media screen and (min-width: 1080px) {
  .top_issues-resolve-txt {
    font-size: 18px;
  }
}

.top_issues-big {
  font-size: 20px;
}

@media screen and (min-width: 768px) {
  .top_issues-big {
    font-size: 24px;
  }
}

@media screen and (min-width: 1080px) {
  .top_issues-big {
    font-size: 28px;
  }
}

.top_issues-color {
  color: rgba(0, 164, 127, 0.7);
}

.top_issues-big_color {
  font-size: 20px;
  color: rgba(0, 164, 127, 1);
}

@media screen and (min-width: 768px) {
  .top_issues-big_color {
    font-size: 24px;
  }
}

@media screen and (min-width: 1080px) {
  .top_issues-big_color {
    font-size: 28px;
  }
}

.top_issues-regulation {
  line-height: 1.6;
  margin-top: 12px;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 1080px) {
  .top_issues-regulation {
    font-size: 18px;
  }
}

.top_issues-border {
  border-bottom: 2px solid #868686;
}

/* strenght */

.top_strenght {
  background: #fbfbfb;
}

.top_strenght_contents {
  padding: 158px 0 69px;
}

@media screen and (min-width: 1080px) {
  .top_strenght_contents {
    padding: 162px 0 120px;
  }
}

.top_strenght_list {
  margin-top: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 72px;
}

@media screen and (min-width: 1080px) {
  .top_strenght_list {
    flex-direction: row;
    align-items: stretch;
    gap: 24px;
  }
}

.top_strenght_item {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 343px;
  height: 413px;
  background: rgba(239, 249, 247, 1);
}

.top_service_item_thumb {
  width: 343px;
  height: 183px;
  object-fit: cover;
}

.top_strenght_item-number {
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  color: var(--primary-color03);
  font-size: 40px;
  letter-spacing: 0.05em;
  text-shadow: 0px 4px 4px #00000040;
}

.top_strenght-text {
  padding: 20px 16px 62px;
}

.top_strenght-heading {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
}

.top_strenght-description {
  margin-top: 16px;
  letter-spacing: 0.05em;
  text-align: left;
}

/* about */

.top_about {
  background: var(--gray-color03);
}

.top_about_contents {
  padding: 62px 0 98px;
}

.top_about_instructor-contents {
  margin-top: 78px;
}

@media screen and (min-width: 768px) {
  .top_about_instructor-contents {
    display: flex;
    align-items: stretch;
  }
}

.top_about_concept-title {
  font-size: 18px;
  letter-spacing: 0.05em;
  color: var(--primary-color03);
}

@media screen and (min-width: 768px) {
  .top_about_concept-title {
    font-size: 20px;
  }
}

.top_about_text-wrapper {
  letter-spacing: 0.05em;
  text-align: center;
}

.top_about_text-main {
  font-size: 14px;
  font-weight: bold;
  margin-top: 17px;
}

@media screen and (min-width: 768px) {
  .top_about_text-main {
    font-size: 20px;
  }
}

.top_about_text-sub {
  font-size: 15px;
  text-align: left;
  margin-top: 22px;
}

@media screen and (min-width: 768px) {
  .top_about_text-sub {
    font-size: 18px;
  }
}

@media screen and (min-width: 768px) {
  .top_about_text-sub {
    text-align: center;
  }
}

.top_about_sub-text-sp {
  margin-top: 26px;
  font-weight: 300;
}

@media screen and (min-width: 768px) {
  .top_about_sub-text-sp {
    display: none;
  }
}

.top_about_sub-text-pc {
  display: none;
}

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

.top_about_sub-pc {
  margin-top: 16px;
  font-size: 18px;
  letter-spacing: 0.05em;
  font-weight: 300;
}

.top_about_sub-item {
  position: relative;
  padding-left: 1em;
}

.top_about_sub-item::before {
  content: "・";
  position: absolute;
  left: 0;
}

.top_about_instructor-texts {
  width: 90%;
  background: var(--white-color);
  margin: -15px auto 0;
  border-radius: 16px;
  padding: 60px 16px 36px 16px;
  position: relative;
  z-index: var(--z-index-default);
}

@media screen and (min-width: 768px) {
  .top_about_instructor-texts {
    position: relative;
    transform: none;
    padding: 24px;
    width: 55%;
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) {
  .m_btn-top-about {
    position: absolute;
    right: 22px;
    bottom: -24px;
    margin-top: 0;
  }
}

/* service */

.top_service {
  background: var(--gray-color);
}

.top_service_card-wrapper {
  margin-top: 70px;
}

@media screen and (min-width: 768px) {
  .top_service_card-wrapper {
    margin-top: 95px;
    display: flex;
    gap: 80px;
  }
}

.top_service_card {
  background: var(--gray-color03);
  text-align: center;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  position: relative;
}

.top_service_card:not(:first-child) {
  margin-top: 70px;
}

@media screen and (min-width: 768px) {
  .top_service_card:not(:first-child) {
    margin-top: 0px;
  }
}

.top_service_card-icon-wrapper {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 60px;
  height: 60px;
  background: var(--white-color);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .top_service_card-icon-wrapper {
    width: 70px;
    height: 70px;
  }
}

.top_service_card-icon {
  width: 30px;
  height: 30px;
}

@media screen and (min-width: 768px) {
  .top_service_card-icon {
    width: 35px;
    height: 35px;
  }
}

.top_service-title {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
  padding-top: 60px;
}

.top_service-text {
  font-size: 16px;
  letter-spacing: 0.05em;
  padding: 16px 16px 32px;
  text-align: left;
}

/* price */

.top_price {
  background: var(--gray-color03);
}

.top_price_card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 56px;
}

@media screen and (min-width: 1080px) {
  .top_price_card-wrapper {
    flex-direction: row;
    gap: 25px;
  }
}

.top_price_card {
  background: #fefefe;
  border: 1px solid rgba(0, 164, 127, 0.7);
  border-radius: 14px;
  position: relative;
  width: 343px;
  margin-left: auto;
  margin-right: auto;
}

.top_price_point {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.top_price_point-text {
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--white-color);
  background: var(--primary-color03);
  padding: 6px 14px;
  display: inline-block;
  border-radius: 100px;
}

.top_price_heading {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 11px;
  padding: 32px 0 0 20px;
}

.top_price-title-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top_price-title {
  font-weight: bold;
  letter-spacing: 0.05em;
}

.top_price-sub-title {
  font-size: 12px;
  letter-spacing: 0.05em;
}

.top_price_card-icon-wrapper {
  width: 36px;
  height: 36px;
  background: rgba(184, 224, 74, 0.13);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top_price_card-icon {
  width: 24px;
  height: 24px;
}

.top_price-money {
  padding: 8px 0 0 32px;
  position: relative;
}

.top_price-money::after {
  content: "";
  position: absolute;
  left: 20px;
  bottom: 0;
  width: 311px;
  height: 1px;
  background: rgba(0, 0, 0, 0.3);
}

.top_price-money-text {
  font-size: 18px;
  letter-spacing: 0.05em;
}

.top_price-green {
  font-size: 40px;
  color: var(--primary-color03);
}

.top_price_list {
  margin: 12px 0 32px 40px;
}

.top_price_item {
  font-size: 14px;
  letter-spacing: 0.05em;
  position: relative;
  padding-left: 16px;
}

.top_price_item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);

  width: 6px;
  height: 6px;
  background: rgba(0, 164, 127, 0.7);
}

.top_price_item_nondot {
  font-size: 14px;
  padding-left: 16px;
}

.top_price_item-accent {
  font-size: 12px;
  font-weight: bold;
}

.top_price_pay_list-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.top_price_pay_item {
  letter-spacing: 0.05em;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .top_price_pay_item {
    font-size: 18px;
  }
}

/* frow */

.top_frow {
  background: var(--gray-color);
}

.top_frow_list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}

@media screen and (min-width: 1080px) {
  .top_frow_list {
    flex-direction: row;
    position: relative;
    gap: 12px;
    width: 948px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1300px) {
  .top_frow_list {
    gap: 5px;
    width: 1080px;
  }
}

.top_frow_list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);

  width: 84px;
  height: 1210px;
  background: url("../img/frow_arrrow.svg") no-repeat center / contain;
}

@media screen and (min-width: 1080px) {
  .top_frow_list::before {
    display: none;
  }
}

@media screen and (min-width: 1080px) {
  .top_frow_list::after {
    content: "";
    position: absolute;
    bottom: -74px;
    left: 50%;
    transform: translateX(-50%);

    width: 948px;
    height: 74px;
    background: url("../img/frow_arrrow-pc.svg") no-repeat center / contain;
  }
}

@media screen and (min-width: 1300px) {
  .top_frow_list::after {
    bottom: -84px;
    width: 1080px;
    height: 84px;
  }
}

.top_frow_list-wrapper {
  margin-top: 80px;
}

.top_frow_item {
  border: 1px solid rgba(0, 164, 127, 0.7);
  border-radius: 8px;
  background: var(--white-color);
  position: relative;
  max-width: 345px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .top_frow_item {
    max-width: 500px;
  }
}

@media screen and (min-width: 1080px) {
  .top_frow_item {
    max-width: 180px;
    height: 282px;
  }
}

@media screen and (min-width: 1300px) {
  .top_frow_item {
    max-width: 212px;
    height: 275px;
  }
}

.top_frow_step {
  font-size: 14px;
  letter-spacing: 0.05em;
  color: rgba(0, 164, 127, 0.7);
  padding: 8px 22px;
  background: var(--white-color);
  border: 1px solid rgba(0, 164, 127, 0.7);
  border-radius: 8px;
  display: inline-block;
  position: absolute;
  top: -20px;
  left: 25px;
}

.top_frow_title {
  font-weight: bold;
  letter-spacing: 0.05em;
  padding: 32px 0 0 24px;
}

@media screen and (min-width: 768px) {
  .top_frow_title {
    padding: 40px 0 0 28px;
  }
}

@media screen and (min-width: 1080px) {
  .top_frow_title {
    font-size: 14px;
    padding: 31px 0 0 12px;
  }
}

@media screen and (min-width: 1300px) {
  .top_frow_title {
    font-size: 16px;
    padding: 32px 0 0 15px;
  }
}

.top_frow_text {
  font-size: 14px;
  letter-spacing: 0.05em;
  padding: 16px 24px 24px 24px;
}

@media screen and (min-width: 768px) {
  .top_frow_text {
    padding: 24px 28px 28px 28px;
  }
}

@media screen and (min-width: 1080px) {
  .top_frow_text {
    padding: 12px 12px 20px 12px;
  }
}

@media screen and (min-width: 1300px) {
  .top_frow_text {
    padding: 11px 14px 31px 15px;
  }
}

.top_frow_contact-wrapper {
  margin-top: 128px;
  text-align: center;
}

.top_frow_contact {
  letter-spacing: 0.05em;
}

@media screen and (min-width: 768px) {
  .top_frow_contact {
    font-size: 18px;
  }
}

.top_frow_free {
  text-align: center;
}

.top_frow_free-text {
  margin: 20px auto 0;
  display: inline-block;
  font-weight: bold;
  color: rgba(0, 164, 127, 0.7);
  letter-spacing: 0.05em;
  position: relative;
}

@media screen and (min-width: 768px) {
  .top_frow_free-text {
    font-size: 20px;
  }
}

.top_frow_free-text::before {
  content: "";
  position: absolute;
  top: 0px;
  left: -2em;

  width: 20px;
  height: 20px;

  background: url("../img/issues_line-left.svg") no-repeat center / contain;
}

@media screen and (min-width: 768px) {
  .top_frow_free-text::before {
    top: 10px;
  }
}

.top_frow_free-text::after {
  content: "";
  position: absolute;
  top: 0px;
  right: -2em;

  width: 20px;
  height: 20px;

  background: url("../img/issues_line-right.svg") no-repeat center / contain;
}

@media screen and (min-width: 768px) {
  .top_frow_free-text::after {
    top: 10px;
  }
}

/* voice */

.top_voice {
  background: var(--gray-color03);
}

.top_voice-wrapper {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .top_voice-wrapper {
    margin-top: 60px;
  }
}

/* faq */

.top_faq_contents {
  padding: 98px 0 48px;
}

@media screen and (min-width: 1080px) {
  .top_faq_contents {
    padding: 87px 0 0;
  }
}

.top_faq_list-wrapper {
  margin-top: 40px;
  padding: 0 16px;
}

.top_faq_item:not(:first-child) {
  margin-top: 50px;
}

.top_faq-question,
.top_faq-answer {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

@media screen and (min-width: 1080px) {
  .top_faq-question,
  .top_faq-answer {
    gap: 16px;
  }
}

.top_faq-answer {
  margin-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 164, 127, 0.7);
}

.top_faq-label {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  line-height: 1;
  font-size: 16px;
}

.top_faq-label__q {
  border: 1px solid rgba(0, 164, 127, 0.7);
  color: rgba(0, 164, 127, 0.7);
}

.top_faq-label__a {
  background: rgba(0, 164, 127, 0.7);
  color: var(--white-color);
}

.top_faq-text {
  letter-spacing: 0.05em;
}

.top_faq-text {
  letter-spacing: 0.05em;
}

.top_faq_list {
  list-style: disc;
}

.top_faq-answer ul {
  list-style: disc;
  padding-left: 1.5em;
}

.top_faq-answer ol {
  list-style: decimal;
  padding-left: 1.5em;
}

/* =========================================
  # about (about.html)
========================================= */

/* about_instructor */

.about_instructor {
  margin-top: 69px;
}

@media screen and (min-width: 1080px) {
  .about_instructor {
    margin-top: 90px;
  }
}

.about_instructor_contents {
  padding-top: 13px;
}

.single_section-title__instructor::before {
  content: "INSTRUCTOR";
  width: 343px;
}

.about_body {
  background: var(--gray-color03);
}

.about_instructor-body {
  margin: 93px 0 87px 0;
  padding: 24px 0 98px 0;
}

@media screen and (min-width: 768px) {
  .about_instructor-body {
    padding-top: 40px;
  }
}

@media screen and (min-width: 1080px) {
  .about_instructor-body {
    padding: 60px 0 120px 0;
  }
}

.about_instructor-contents {
  position: relative;
}

@media screen and (min-width: 768px) {
  .about_instructor-contents {
    display: flex;
    align-items: stretch;
  }
}

.about_instructor-img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--gray-color03);
}

@media screen and (min-width: 768px) {
  .about_instructor-img-wrapper {
    width: 45%;
    display: flex;
  }
}

.about_instructor-img {
  width: 100%;
  object-fit: contain;
  border-radius: 40px;
}

@media screen and (min-width: 768px) {
  .about_instructor-img {
    border-radius: 16px;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.about_picture-name {
  color: var(--primary-color03);
  position: absolute;
  top: 30px;
  left: 20px;
}

.about_picture-name-sub {
  font-size: 14px;
}

@media screen and (min-width: 550px) {
  .about_picture-name-sub {
    font-size: 18px;
  }
}

@media screen and (min-width: 768px) {
  .about_picture-name-sub {
    font-size: 14px;
  }
}

@media screen and (min-width: 850px) {
  .about_picture-name-sub {
    font-size: 18px;
  }
}

.picture-name {
  text-shadow: 0 4px 4px #00000040;
}

.about_picture-name-main {
  letter-spacing: 0.3em;
}

@media screen and (min-width: 550px) {
  .about_picture-name-main {
    font-size: 24px;
  }
}

@media screen and (min-width: 768px) {
  .about_picture-name-main {
    font-size: 16px;
  }
}

@media screen and (min-width: 850px) {
  .about_picture-name-main {
    font-size: 20px;
  }
}

@media screen and (min-width: 1080px) {
  .about_picture-name-main {
    font-size: 24px;
  }
}

.about_instructor-texts {
  width: 90%;
  background: var(--white-color);
  margin: 0 auto;
  border-radius: 16px;
  padding: 60px 16px 36px 16px;
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 768px) {
  .about_instructor-texts {
    position: static;
    transform: none;
    padding: 24px;
    width: 55%;
  }
}

.about_instructor-texts-group {
  margin-bottom: 24px;
}

.about_instructor-texts-group:last-child {
  margin-bottom: 0;
}

.about_texts-main {
  color: var(--primary-color03);
  margin-bottom: 8px;
  display: block;
  position: relative;
}

@media screen and (min-width: 1080px) {
  .about_texts-main {
    font-size: 20px;
    margin-bottom: 32px;
  }
}

.about_texts-main::after {
  content: "";
  width: 100px;
  height: 2px;
  background: linear-gradient(
    to right,
    var(--primary-color04),
    rgba(113, 255, 223, 0.3)
  );
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 16px;
}

.about_instructor-texts-sub {
  font-size: 14px;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 1080px) {
  .about_instructor-texts-sub {
    font-size: 16px;
  }
}

/* concept */

.about_concept-body {
  margin-top: 119px;
  padding-top: 26px;
}

.about_concept_text-box {
  background: var(--white-color);
  margin-bottom: 17px;
  border-radius: 16px;
  padding: 32px 16px;
}

@media screen and (min-width: 1080px) {
  .about_concept_text-box {
    padding: 40px 176px;
  }
}

@media screen and (min-width: 1080px) {
  .about_concept_text-box-pc {
    margin: 60px 0;
  }
}

.about_concept_text-box .middle {
  font-size: 14px;
}

@media screen and (min-width: 1080px) {
  .about_concept_text-box .middle {
    font-size: 20px;
  }
}

.about_concept_text-box-text {
  text-align: center;
  margin-bottom: 16px;
}

@media screen and (min-width: 1080px) {
  .about_concept_text-box-text {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.about_concept_text-box-text span,
.about_concept_text-box-text-message span {
  font-size: 12px;
}

@media screen and (min-width: 1080px) {
  .about_concept_text-box-text span,
  .about_concept_text-box-text-message span {
    font-size: 16px;
  }
}

.about_concept_text-box-text-small {
  font-size: 12px;
  margin-top: 16px;
}

@media screen and (min-width: 768px) {
  .about_concept_text-box-text-small {
    text-align: center;
  }
}

@media screen and (min-width: 1080px) {
  .about_concept_text-box-text-small {
    font-size: 16px;
  }
}

@media screen and (min-width: 1080px) {
  .about_concept_text-box-text-small.pc {
    text-align: center;
  }
}

.about_concept_text-box-text-message {
  font-size: 14px;
  font-weight: bold;
  color: var(--primary-color06);
  text-align: center;
  margin-bottom: 16px;
  margin-top: 32px;
}

@media screen and (min-width: 1080px) {
  .about_concept_text-box-text-message {
    font-size: 20px;
    font-weight: normal;
  }
}

.about_concept_text-box-text-message.first-message {
  margin-top: 16px;
}

.about_concept_text-box .last {
  font-weight: normal;
}

/* =========================================
  # voices (voices.html)
========================================= */

.voice {
  margin-top: 96px;
}

.single_section-title__voice::before {
  content: "VOICE";
  width: 343px;
}

.voice_des {
  font-size: 14px;
  margin: 56px 0;
}

@media screen and (min-width: 1080px) {
  .voice_des {
    font-size: 16px;
  }
}

.voice_body {
  background: var(--gray-color03);
  padding-top: 60px;
}

@media screen and (min-width: 1080px) {
  .voice_body {
    padding-top: 120px;
  }
}

.m_posts {
  gap: 24px;
  display: flex;
  flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
  .m_posts {
    gap: 40px 24px;
  }
}

@media screen and (min-width: 1080px) {
  .m_posts {
    gap: 60px 24px;
  }
}

.m_voice-article {
  background: var(--white-color);
  border: 1px solid var(--primary-color02);
  border-radius: 16px;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .m_voice-article {
    width: calc((100% - 24px) / 2);
  }
}

@media screen and (min-width: 1080px) {
  .m_voice-article {
    width: calc((100% - 24px * 2) / 3);
  }
}

.m_voice-article-label {
  background: var(--accent-color);
  color: var(--white-color);
  display: inline-block;
  padding: 8px 16px;
  border-radius: 8px;
}

.m_voice-article-label.online {
  background-color: var(--secondary-color);
}

.m_voice-article-group {
  padding: 16px 16px 32px 16px;
}

.m_voice-article-img-wrapper {
  width: 70px;
  height: 70px;
}

.m_voice-article-top {
  display: flex;
  align-items: center;
  padding: 16px 0;
}

.m_voice-article-img {
  width: 100%;
}

.m_voice-article-des {
  padding-left: 40px;
}

.m_voice-article-des-txt {
  border-top: 1px solid var(--black-color);
  padding-top: 16px;
}

/* 「続きを読む」「閉じる」の開閉 */

.read-more-btn,
.close-btn-inline {
  font-weight: lighter;
  cursor: pointer;
  margin-left: 5px;
  border-bottom: 1px solid #c0c0c0;
  white-space: nowrap;
  display: inline;
  position: relative;
}

.read-more-btn::after {
  content: "";
  width: 8px;
  height: 8px;
  border-width: 2px;
  border-style: solid none none solid;
  border-color: var(--black-color);
  position: absolute;
  top: 35%;
  right: -16px;
  transform: rotate(225deg);
  animation: arrowMove 1.2s ease-in-out infinite;
  animation-play-state: paused;
}

.m_voice-article:hover .read-more-btn::after {
  animation-play-state: running;
}

@keyframes arrowMove {
  0% {
    transform: rotate(225deg) translate(0, 0);
  }

  50% {
    transform: rotate(225deg) translate(-3px, -3px);
  }

  100% {
    transform: rotate(225deg) translate(0, 0);
  }
}

.close-btn-inline::after {
  content: "";
  width: 8px;
  height: 8px;
  border-width: 2px;
  border-style: solid none none solid;
  border-color: var(--black-color);
  position: absolute;
  top: 50%;
  right: -16px;
  transform: rotate(45deg);
}

.read-more {
  display: inline;
}

.read-more .content {
  display: block; /* 開いたときは下に出す */
}

.read-more .content {
  display: none;
}

.read-more[open] .content {
  display: block;
}

/* マーカー消す */
.read-more summary {
  list-style: none;
  cursor: pointer;
  display: inline;
}

.read-more summary::-webkit-details-marker {
  display: none;
}

.open-btn {
  position: relative;
  display: inline-block;
}

.open-btn::after {
  content: "";
  width: 8px;
  height: 8px;
  border-width: 2px;
  border-style: none none solid solid;
  border-color: var(--black-color);
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-60%) rotate(-45deg);
}

.open-btn,
.close-btn {
  display: inline-block;
  border-bottom: 1px solid #c8c8c8;
  font-weight: lighter;
}

/* 閉じる */
.close-btn {
  color: var(--black-color);
  cursor: pointer;
  position: relative;
}

.close-btn::after {
  content: "";
  width: 8px;
  height: 8px;
  border-width: 2px;
  border-style: solid solid none none;
  border-color: var(--black-color);
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-30%) rotate(-45deg);
}

/* 開いたら「続きを読む」消す */
.read-more[open] .open-btn {
  display: none;
}

.voice_pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  gap: 8px;
  background: var(--gray-color03);
}

@media screen and (min-width: 1080px) {
  .voice_pagination {
    margin-top: 60px;
  }
}

.voice_pagination_numbers {
  font-size: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary-color03);
  background: var(--white-color);
  color: var(--primary-color03);
}

.voice_pagination_numbers__current {
  color: var(--white-color);
  border-color: var(--primary-color03);
  background: var(--primary-color03);
}

.voice_pagination_numbers__next {
  position: relative;
}

.voice_pagination_numbers__next::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--primary-color03);
  border-right: 1px solid var(--primary-color03);
  position: absolute;
  top: 50%;
  left: 38%;
  transform: translateY(-50%) rotate(45deg);
  z-index: var(--z-index-default);
}

.voice_pagination_numbers__prev {
  position: relative;
}

.voice_pagination_numbers__prev::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--primary-color03);
  border-right: 1px solid var(--primary-color03);
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translateY(-50%) rotate(225deg);
  z-index: var(--z-index-default);
}

.page-numbers {
  text-decoration: none;
}

/* =========================================
  # voices_modal
========================================= */

.voice_modal {
  position: fixed;
  inset: 0;
  z-index: 9999;

  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}

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

/* 背景 */

.voice_modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(51, 51, 51, 0.35);
  backdrop-filter: blur(6px);
}

/* モーダル本体 */

.voice_modal-content {
  position: fixed;
  top: 50%;
  left: 50%;

  width: 80%;

  transform: translate(-50%, -50%);
  overflow: visible;
}

@media screen and (min-width: 1080px) {
  .voice_modal-content {
    width: 60%;
  }
}

/* カード */

.voice_swiper-slide .m_voice-article {
  width: 100%;
  max-width: 720px;
  height: 100%;
  min-height: 560px;
  background: var(--white-color);
  border-radius: 12px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}

.voice_swiper-slide {
  height: auto;
}

/* ラベル */

.voice_swiper-slide .m_voice-article-label {
  font-size: 18px;
  padding: 14px 24px;
  border-radius: 0 0 12px 0;
}

/* コンテンツ余白 */

.voice_swiper-slide .m_voice-article-group {
  padding: 32px;
}

/* 文章 */

.voice_swiper-slide .m_voice-article-des-txt {
  font-size: 18px;
  line-height: 2;
}

/* 顔写真 */

.voice_swiper-slide .m_voice-article-top {
  justify-content: center;
}

/* 閉じるボタン */

.voice_modal-close {
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);

  background: rgba(95, 197, 174, 1);
  color: #fff;

  width: 180px;
  height: 48px;

  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  font-size: 16px;
  letter-spacing: 0.05em;
  z-index: 10000;
}

/* テキスト */

.voice_modal-close::before {
  content: "閉じる";
}

/* × */

.voice_modal-close::after {
  content: "×";
  margin-left: 12px;
  font-size: 18px;
}

/* 右上 × ボタン */

.voice_modal-close-icon {
  position: absolute;
  top: -28px;
  right: -56px;

  cursor: pointer;

  z-index: 10001;

  display: flex;
  align-items: center;
  justify-content: center;
}

.voice_modal-close-icon::before {
  content: "×";
  color: var(--white-color);
  font-size: 40px;
  line-height: 1;
}

/* =========================
swiper arrow
========================= */

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  z-index: 20;

  width: 80px;
  height: 80px;

  top: 50%;
  transform: translateY(-50%);

  margin-top: 0;
  cursor: pointer;
}

/* デフォルト矢印を消す */

.swiper-button-prev svg,
.swiper-button-next svg {
  display: none;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

/* 左矢印 */

.swiper-button-prev {
  left: -80px !important; /* Swiper v12の効果を打ち消すため */
}

.swiper-button-prev::before {
  content: "";
  display: block;

  width: 32px;
  height: 32px;

  border-top: 4px solid var(--white-color);
  border-left: 4px solid var(--white-color);

  position: absolute;
  top: 50%;
  left: 50%;

  transform: translate(-30%, -50%) rotate(-45deg);
}

/* 右矢印 */

.swiper-button-next {
  right: -80px !important; /* Swiper v12の効果を打ち消すため */
}

.swiper-button-next::before {
  content: "";
  display: block;

  width: 32px;
  height: 32px;

  border-top: 4px solid var(--white-color);
  border-right: 4px solid var(--white-color);

  position: absolute;
  top: 50%;
  left: 50%;

  transform: translate(-70%, -50%) rotate(45deg);
}

.js-voice-swiper {
  position: relative;
  overflow: hidden;
}

/* SP */

@media screen and (max-width: 767px) {
  .voice_modal-content {
    width: 92%;
  }

  .voice_swiper-slide .m_voice-article-group {
    padding: 20px;
  }

  .voice_swiper-slide .m_voice-article-des-txt {
    font-size: 15px;
    line-height: 1.8;
  }

  .voice_modal-close {
    bottom: -70px;
  }
}

@media screen and (max-width: 767px) {
  .swiper-button-prev {
    left: 0;
  }

  .swiper-button-next {
    right: 0;
  }

  .swiper-button-prev::before,
  .swiper-button-next::before {
    width: 18px;
    height: 18px;
    border-width: 3px;
  }
}

/* =========================================
  # js
========================================= */

/* ハンバーガーメニュー */

.js_body.is-active {
  overflow: hidden;
}

body.is-active {
  overflow: hidden;
}

.js_hamburger-bar {
  transition:
    top 0.3s,
    transform 0.5s,
    opacity 0.5s;
}

.js_hamburger.is-active .m_hamburger-bar:first-child {
  top: 50%;
  transform: translateY(-50%) rotate(135deg);
  width: 28px;
}

.js_hamburger.is-active .m_hamburger-bar:nth-child(2) {
  transform: translate(50%, -50%);
  opacity: 0;
}

.js_hamburger.is-active .m_hamburger-bar:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-135deg);
  width: 28px;
}

.js_hamburger.is-active .m_hamburger-bar {
  background: var(--black-color);
}

.l_header.is-scroll .m_hamburger-bar {
  background: var(--black-color);
}

.js_nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  height: 100vh;
  background: #f2f2f2;

  transform: translateX(100%); /* ← 初期は右に隠す */
  transition: transform 0.4s ease;

  z-index: 999; /* ← これ超重要 */
}

@media screen and (min-width: 1080px) {
  .js_nav {
    position: static;
    width: auto;
    height: auto;
    transform: none;
    transition: none;
  }
}

.js_nav.is-active {
  transform: translateX(0); /* ← 出てくる */
}

@media screen and (min-width: 1080px) {
  .js_nav {
    opacity: 1;
    pointer-events: auto;

    /* transform: none;
    position: static; */
  }
}

.js_nav.is-active {
  opacity: 1;
  pointer-events: auto;
}

.l_header-nav.is-active {
  display: block;
  background: var(--white-color);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}
