@charset "UTF-8";

:root {
  /* 色管理用の変数 */
  --black-color: #333;
  --white-color: #fff;
  --gray-color: #fcfcfc;
  --gray-color2: #707070;
  --primary-color: #02ade5;
  --primary-color2: #effaff;
  --primary-color3: #afdff5;
  --accent-color: #f5ec6e;
}

:root {
  /* コンテンツ幅管理用の変数 */
  --content-width-sm: 900px;
  --content-width: 1280px;
  --content-width-lg: 1440px;
}

:root {
  /* z-index管理用の変数 */
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-header: 100;
  --z-index-menu: 150;
  --z-index-modal: 200;
}

/* ---------- base ---------- */
body {
  color: var(--black-color);
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 12px;
  }
}

/* ---------- utility ---------- */
.u_br_sp {
  display: none;
}

@media screen and (max-width: 500px) {
  .u_sm-dn {
    display: none;
  }
}

.u_lg-db {
  display: none;
}

@media screen and (max-width: 768px) {
  .u_lg-dn {
    display: none;
  }
  .u_lg-db {
    display: block;
  }

  .u_br_sp {
    display: block;
  }

  .l_contents.u_sp_bottom {
    padding: 128px 0 0;
  }
}

/* ---------- layout ---------- */

.l_container-sm,
.l_container,
.l_container-lg {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}

.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: 128px 0;
}

.l_header {
  height: 82px;
  width: 100%;
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: var(--z-index-header);
  box-sizing: border-box;

}

@media screen and (max-width: 768px) {
  .l_header {
    padding: 0 16px;
  }
}

.l_header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 60px;
      margin: 0 auto;
}

.l_header-right {
  display: flex;
}

.l_header-logo {
  height: 100%;
  width: 200px;
  padding-top: 16px;
}

@media screen and (max-width: 768px) {
  .l_header-logo {
    padding-top: 16px;
  }
}

.l_header-logo_link img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .l_header-logo_link img {
    width: 160px;
  }
}


/* ---------- hamburger ---------- */
.l_menu-wrapper {
  display: none;
  position: relative;
}

@media screen and (max-width: 768px) {
  .l_menu-wrapper {
    display: block;
  }
}

.menu-icon {
  width: 40px;
  height: 30px;
  position: fixed; /* ← fixedにして常に右上固定 */
  top: 20px;
  right: 20px;
  cursor: pointer;
  z-index: var(--z-index-modal);
  display: inline-block;
}

.menu-icon span {
  display: block;
  height: 4px;
  margin: 6px 0;
  background: #333;
  border-radius: 2px;
  transition: 0.4s;
}

/* ハンバーガーがXに変形 */
#menu-toggle:checked + .menu-icon span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
#menu-toggle:checked + .menu-icon span:nth-child(2) {
  opacity: 0;
}
#menu-toggle:checked + .menu-icon span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* オーバーレイ背景 */
.l_overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
  z-index: 1;
}

#menu-toggle:checked ~ .l_overlay {
  opacity: 1;
  pointer-events: auto;
}

/* メニュー本体（右から出す） */
.l_header-nav {
  position: fixed;
  top: 0;
  right: -250px; /* ← 初期位置を右へ */
  width: 250px;
  height: 100%;
  background: #fff;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
  transition: right 0.4s ease;
  z-index: var(--z-index-menu);
}

#menu-toggle:checked ~ .l_header-nav {
  right: 0; /* ← 開いたときは右0へ */
}

.l_header-nav_list {
  list-style: none;
  padding: 60px 20px;
}

.l_header-nav_item {
  margin: 20px 0;
}

.l_header-nav_link {
  text-decoration: none;
  color: var(--black-color);
  font-size: 16px;
  transition: color 0.3s;
}

.l_header-nav_link:hover {
  color: var(--primary-color);
}

.l_footer {
  background-color: var(--black-color);
  text-align: center;
  padding: 124px 0 160px;
}

@media screen and (max-width: 768px) {
  .l_footer {
    padding: 80px 0;
  }
}

.l_footer_logo {
  width: 400px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .l_footer_logo {
    width: 80%;
  }
}

.l_footer_desc {
  display: flex;
  flex-direction: column;
  gap: 32px;
  color: var(--white-color);
  font-size: 16px;
  font-weight: bold;
  margin: 56px 0 56px;
}

@media screen and (max-width: 768px) {
  .l_footer_desc {
    gap: 16px;
    color: var(--white-color);
    font-size: 12px;
    margin: 32px 0 56px;
  }
}

.l_footer_copyright {
  font-size: 12px;
  color: var(--white-color);
}

@media screen and (max-width: 768px) {
  .l_footer_copyright {
    font-size: 10px;
  }
}

/* ---------- kv ---------- */
.kv_box {
  position: relative;
  width: 100%;
  height: 110vh;
  min-height: 110vh;
  margin: auto;
  overflow: hidden;
}

.kv_box__sp {
  display: none;
}

.kv_box .kv_box_img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  animation: bganime 16s infinite; /* 4画像 × 各4s = 16s */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.kv_box .src1 {
  background-image: url(../img/FV01.png);
}
.kv_box .src2 {
  background-image: url(../img/FV02.png);
  animation-delay: 4s;
}
.kv_box .src3 {
  background-image: url(../img/FV03.png);
  animation-delay: 8s;
}
.kv_box .src4 {
  background-image: url(../img/FV04.png);
  animation-delay: 12s;
}

@keyframes bganime {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@media screen and (max-width: 768px) {
  .kv_box {
    display: none;
  }

  .kv_box__sp {
    display: block;
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    margin: auto;
    overflow: hidden;
  }

  .kv_box__sp .kv_box_img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    animation: bganime 16s infinite; /* 4画像 × 各4s = 16s */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .kv_box__sp .src1__sp {
    background-image: url(../img/FVsp01.png);
    background-size: cover;
  }
  .kv_box__sp .src2__sp {
    background-image: url(../img/FVsp02.png);
    background-size: cover;
    animation-delay: 4s;
  }
  .kv_box__sp .src3__sp {
    background-image: url(../img/FVsp03.png);
    background-size: cover;
    animation-delay: 8s;
  }
  .kv_box__sp .src4__sp {
    background-image: url(../img/FVsp04.png);
    background-size: cover;
    animation-delay: 12s;
  }
}

/* ---------- about ---------- */
.about_box {
  border: 1px solid var(--primary-color);
  border-radius: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 48px 0;
}

@media screen and (max-width: 768px) {
  .about_box {
    flex-direction: column-reverse;
    gap: 16px;
  }
}

.about_box_img {
  width: 388px;
}

@media screen and (max-width: 768px) {
  .about_box_img {
    width: 240px;
  }
}

.about_box_txt {
  font-size: 32px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .about_box_txt {
    font-size: 24px;
    text-align: center;
  }
}

.about_txt {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  padding: 80px 0;
}

@media screen and (max-width: 768px) {
  .about_txt {
    font-size: 16px;
  }
}

.about_ex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  width: 100%;
  margin: 80px 0;
}

@media screen and (max-width: 768px) {
  .about_ex {
    gap: 16px;
  }
}

.about_ex_box {
  min-width: calc((100% - 48px) / 3);
  height: 170px;
  background-color: var(--primary-color);
  border-radius: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .about_ex_box {
    width: calc((100% - 16px) / 2);
    height: 100px;
  }
}

.about_ex_box-item {
  color: var(--white-color);
  text-align: center;
}

.about_ex_box__icon {
  font-size: 48px;
  margin-bottom: 16px;
}

@media screen and (max-width: 768px) {
  .about_ex_box__icon {
    font-size: 32px;
    margin-bottom: 8px;
  }
}

.about_ex_box__txt {
  font-size: 24px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .about_ex_box__txt {
    font-size: 16px;
  }
}

.about_desc {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
}

@media screen and (max-width: 768px) {
  .about_desc {
    font-size: 16px;
  }
}

/* ---------- matter ---------- */
#matter {
  background-color: var(--primary-color);
}

.matter_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 80px;
}

.matter_box {
  width: 600px;
  background-color: var(--white-color);
  border-radius: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 16px;
}

@media screen and (max-width: 768px) {
  .matter_box {
    width: 100%;
  }
}

.matter_box-item {
  text-align: center;
  width: 100%;
}

.matter_box__img {
  min-width: calc(100% - 32px);
}

.matter_box__img img {
  border-radius: 24px 24px 0 0;
}

.matter_box__txt {
  font-size: 24px;
  font-weight: bold;
  margin-top: 24px;
}

@media screen and (max-width: 768px) {
  .matter_box__txt {
    font-size: 16px;
  }
}

/* ---------- dream ---------- */
#dream {
  background: url(../img/dream-bg.png) center top / cover;
}

.dream_box {
  background-color: var(--white-color);
  border: 1px solid var(--primary-color);
  border-radius: 24px;
  padding: 80px 16px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .dream_box {
    text-align: left;
  }
}

.dream_txt_en {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin: 56px 0 40px;
}

@media screen and (max-width: 768px) {
  .dream_txt_en {
    font-size: 16px;
    text-align: center;
  }
}

.dream_img {
  width: 60%;
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .dream_img {
    width: 100%;
  }
}

.dream_txt {
  font-size: 24px;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .dream_txt {
    font-size: 16px;
    margin-bottom: 24px;
  }
}

.dream_emphasis {
  padding-top: 40px;
  font-size: 32px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .dream_emphasis {
    font-size: 24px;
    padding-top: 16px;
  }
}

/* ---------- feature ---------- */
#feature {
  background-color: var(--primary-color2);
}

.feature_wrapper {
  display: flex;
  gap: 40px;
}

@media screen and (max-width: 768px) {
  .feature_wrapper {
    flex-direction: column;
    gap: 40px;
  }
}

.feature-box {
  background-color: var(--white-color);
  border: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 40px;
}

@media screen and (max-width: 768px) {
  .feature-box {
    padding: 16px;
  }
}

.feature-box_item {
  text-align: center;
}

.feature-box_item_image img {
  width: 252px;
  height: 154px;
  object-fit: contain;
}

.feature-box_item_txt {
  font-size: 20px;
  font-weight: bold;
  text-align: justify;
}

@media screen and (max-width: 768px) {
  .feature-box_item_txt {
    font-size: 14px;
  }
}

/* ---------- comparison ---------- */
#comparison {
  background-color: var(--primary-color);
}

.comparison_container {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 170px;
  margin: 60px 0 104px;
}

@media screen and (max-width: 768px) {
  .comparison_container {
    flex-direction: column;
    gap: 40px;
    margin: 40px 0;
  }

  .comparison_container.u_sp {
    flex-direction: column-reverse;
  }
}

.comparison_sub {
  font-size: 24px;
  font-weight: bold;
  color: var(--white-color);
  text-align: center;
}

@media screen and (max-width: 768px) {
  .comparison_sub {
    font-size: 16px;
  }
}

.comparison_txt-box {
  background-color: var(--white-color);
  border-radius: 8px;
  padding: 48px 24px;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  margin: 32px 0 32px;
}

@media screen and (max-width: 768px) {
  .comparison_txt-box {
    padding: 24px 8px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin: 32px 0 32px;
  }
}

.comparison_txt-box_desc {
  font-weight: bold;
  color: var(--white-color);
}

.comparison_txt-box_notes {
  color: var(--white-color);
}

/* ---------- m_cta ---------- */
.m_cta {
  background: url(../img/cta-bg.png) center top / cover;
}

@media screen and (max-width: 768px) {
  .m_cta {
    background-position: right;
  }
}

.m_cta_box {
  background-color: var(--white-color);
  border: 1px solid var(--primary-color);
  border-radius: 24px;
  padding: 80px 16px;
  text-align: center;
  width: 800px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .m_cta_box {
    padding: 40px 8px;
    width: 100%;
  }
}

.m_cta_wrapper {
  display: flex;
  flex-direction: column;
}

.m_cta_txt {
  font-weight: bold;
  margin-top: 72px;
}

@media screen and (max-width: 768px) {
  .m_cta_txt {
    margin-top: 40px;
  }
}

.fa-caret-down {
  margin: 24px;
}

.m_cta_img {
  width: 691px;
  margin: 56px auto 0;
}

@media screen and (max-width: 768px) {
  .m_cta_img {
    width: 95%;
  }
}

/* ---------- voices ---------- */
#voices {
  background-color: var(--primary-color2);
}

.voices_catch {
  display: flex;
  justify-content: center;
  margin-bottom: 56px;
}

.voices_catch img {
  width: 816px;
}

@media screen and (max-width: 768px) {
  .voices_catch img {
    width: 100%;
  }
}

.voices_ba {
  width: 800px;
  margin: 16px auto 48px;
}

@media screen and (max-width: 768px) {
  .voices_ba {
    width: 100%;
  }
}

.voices_wrapper {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-bottom: 160px;
}

@media screen and (max-width: 768px) {
  .voices_wrapper {
    gap: 40px;
  }
}

.voices_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--white-color);
  border-radius: 8px;
  width: 100%;
  height: 526px;
}

@media screen and (max-width: 768px) {
  .voices_container {
    flex-direction: column;
    height: auto;
  }

  .voices_container.u_sp_column {
    flex-direction: column-reverse;
  }
}

.voices_txt-box {
  padding: 0 96px;
  width: 50%;
}

@media screen and (max-width: 768px) {
  .voices_txt-box {
    padding: 0 8px 40px;
    width: 100%;
  }
}

.voices_image-left {
  width: 50%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .voices_image-left {
    width: 100%;
    height: auto;
  }
}

.voices_image-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px 32px 32px 8px;
}

@media screen and (max-width: 768px) {
  .voices_image-left img {
    border-radius: 8px 8px 0 0;
  }
}

.voices_image-right {
  width: 50%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .voices_image-right {
    width: 100%;
    height: auto;
  }
}

.voices_image-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px 8px 8px 32px;
}

@media screen and (max-width: 768px) {
  .voices_image-right img {
    border-radius: 8px 8px 0 0;
  }
}

.voices_txt__strong {
  font-weight: bold;
}

.voices_copy_wrapper {
  position: relative;
  background-color: var(--primary-color);
  transform: skewY(-3deg);
  height: 185px;
  margin: -80px 0 80px;
  width: 100%;
  overflow: hidden;
}
.voices_copy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  .voices_copy {
    width: 100%;
    margin: 0 4px;
  }
}

.voices_primary3 {
  background-color: var(--primary-color3);
  padding-top: 200px;
  padding-bottom: 40px;
  margin-top: -150px;
}

@media screen and (max-width: 768px) {
  .voices_primary3 {
    padding-top: 160px;
    padding-bottom: 40px;
    margin-top: -150px;
  }
}

/* ---------- flow ---------- */
.flow_container {
  text-align: center;
}
.flow_title-box {
  margin-top: 80px;
  color: var(--primary-color);
}

@media screen and (max-width: 768px) {
  .flow_title-box {
    margin-top: 40px;
    color: var(--primary-color);
  }
}

.flow_title-box_number {
  text-align: center;
  font-weight: bold;
}

.flow_title__number {
  font-size: 32px;
}

@media screen and (max-width: 768px) {
  .flow_title__number {
    font-size: 24px;
  }
}

.flow_title-box_title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-top: 16px;
}

@media screen and (max-width: 768px) {
  .flow_title-box_title {
    font-size: 24px;
    margin-top: 8px;
  }
}

.flow_comment-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 56px;
}

@media screen and (max-width: 768px) {
  .flow_comment-wrapper {
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
  }
}

.flow_comment-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  width: calc(100% / 3);
  background-image: repeating-linear-gradient(
      90deg,
      #02ade5,
      #02ade5 12px,
      transparent 12px,
      transparent 16px
    ),
    repeating-linear-gradient(
      180deg,
      #02ade5,
      #02ade5 12px,
      transparent 12px,
      transparent 16px
    ),
    repeating-linear-gradient(
      90deg,
      #02ade5,
      #02ade5 12px,
      transparent 12px,
      transparent 16px
    ),
    repeating-linear-gradient(
      180deg,
      #02ade5,
      #02ade5 12px,
      transparent 12px,
      transparent 16px
    );
  background-position: left top, right top, left bottom, left top;
  background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
  background-size: 100% 2px, 2px 100%, 100% 2px, 2px 100%;
  background-color: var(--gray-color);
}

@media screen and (max-width: 768px) {
  .flow_comment-box {
    width: 100%;
    padding-top: 24px;
  }
}

.flow_comment-box .fa-comment-dots {
  font-size: 32px;
}

.flow_txt {
  font-size: 24px;
  font-weight: bold;
  margin-top: 56px;
}

@media screen and (max-width: 768px) {
  .flow_txt {
    font-size: 16px;
    margin-top: 32px;
  }
}

.flow_line {
  margin-top: 56px;
}

@media screen and (max-width: 768px) {
  .flow_line {
    margin-top: 32px;
  }
}

/* ---------- faq ---------- */
#faq {
  width: 100%;
  margin: 0;
  padding: 80px 0;
  position: relative;
  top: 80px;
}

#faq::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-color);
  transform: skewY(-3deg);
  z-index: -1;
}

.faq_wrapper {
  background-color: var(--white-color);
  border: 2px solid;
  border-radius: 8px;
  margin-top: 80px;
  padding: 56px 96px;
}

@media screen and (max-width: 768px) {
  .faq_wrapper {
    padding: 56px 8px;
  }
}

.faq_container {
  border-bottom: var(--black-color) solid 1px;
  margin-bottom: 56px;
}

.faq_q {
  display: flex;
  align-items: center;
  gap: 24px;
}

@media screen and (max-width: 768px) {
  .faq_q {
    align-items: start;
    gap: 8px;
  }
}

.faq_q-box {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  color: var(--white-color);
  font-size: 32px;
  font-weight: bold;
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .faq_q-box {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}

.faq_question {
  color: var(--primary-color);
  font-size: 24px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .faq_question {
    font-size: 16px;
  }
}

.faq_a {
  display: flex;
  gap: 24px;
  margin: 24px 0 56px;
}

@media screen and (max-width: 768px) {
  .faq_a {
    gap: 8px;
  }
}

.faq_a-box {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  color: var(--white-color);
  font-size: 32px;
  font-weight: bold;
  background-color: var(--black-color);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .faq_a-box {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}

.faq_answer {
  font-size: 24px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .faq_answer {
    font-size: 16px;
  }
}

.faq_txt {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 32px;
}

@media screen and (max-width: 768px) {
  .faq_txt {
    font-size: 16px;
  }
}

/* ---------- module ---------- */
.m_strong {
  color: var(--primary-color);
  font-weight: bold;
}

.m_emphasis {
  font-weight: bold;
}

.m_section_title {
  font-size: 32px;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .m_section_title {
    font-size: 24px;
    margin-bottom: 40px;
  }
}

.m_title_border {
  display: flex;
  align-items: center;
  font-size: 32px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .m_title_border {
    font-size: 24px;
    text-align: center;
  }
}

.m_title_border:before,
.m_title_border:after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: var(--gray-color2);
}

.m_title_border:before {
  margin-right: 1rem;
}

.m_title_border:after {
  margin-left: 1rem;
}

.m_title_border__white {
  display: flex;
  align-items: center;
  font-size: 32px;
  font-weight: bold;
  color: var(--white-color);
}

@media screen and (max-width: 768px) {
  .m_title_border__white {
    font-size: 24px;
    text-align: center;
  }
}

.m_title_border__white:before,
.m_title_border__white:after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: var(--white-color);
}

.m_title_border__white:before {
  margin-right: 1rem;
}

.m_title_border__white:after {
  margin-left: 1rem;
}

.m_title_border__primary {
  display: flex;
  align-items: center;
  font-size: 32px;
  font-weight: bold;
  color: var(--primary-color);
}

@media screen and (max-width: 768px) {
  .m_title_border__primary {
    font-size: 24px;
    text-align: center;
  }
}

.m_title_border__primary:before,
.m_title_border__primary:after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: var(--primary-color);
}

.m_title_border__primary:before {
  margin-right: 1rem;
}

.m_title_border__primary:after {
  margin-left: 1rem;
}

.m_title-sub {
  margin: 40px 0 40px;
  color: var(--primary-color);
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .m_title-sub {
    font-size: 16px;
    margin: 16px 0 16px;
  }
}

.m_button-line_link, .m_button-line_link__sp {
  background: #06c755;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 25em; /*幅*/
  padding: 8px 16px; /*文字横空白*/
  color: #fff;
  transition: 0.3s ease-in-out;
  font-weight: 600;
  text-decoration: none;
  border-radius: 40px; /*丸み*/
  border: 1px solid #06c755;
  font-size: 1.2rem; /*文字サイズ*/
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 768px) {
  .m_button-line_link {
    width: 80vw;
  }
}

/*文字前アイコン*/
.m_button-line a:before,.m_button-line__sp a:before {
  position: relative;
  font-family: "Font Awesome 5 Free";
  content: "\f4ad";
  font-weight: 900;
  margin-right: 16px;
  color: #fff;
}

/*マウスホバー時演出*/
.m_button-line a:hover,.m_button-line__sp a:hover {
  background: #66cdaa;
  color: #fff;
}

/* @media screen and (max-width: 768px) {
  .m_button-line_link__sp {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 5px;
    min-height: 56px;
    font-size: 16px;
    z-index: var(--z-index-modal);
  }
} */

.m_button-mail_link {
  background: var(--primary-color);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 25em; /*幅*/
  padding: 8px 16px; /*文字横空白*/
  color: #fff;
  transition: 0.3s ease-in-out;
  font-weight: 600;
  text-decoration: none;
  border-radius: 40px; /*丸み*/
  border: 1px solid var(--primary-color);
  font-size: 1.2rem; /*文字サイズ*/
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 768px) {
  .m_button-mail_link {
    width: 80vw;
  }
}

/*文字前アイコン*/
.m_button-mail a:before {
  position: relative;
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 16px;
  color: #fff;
}

/*マウスホバー時演出*/
.m_button-mail a:hover {
  background: var(--primary-color3);
  color: #fff;
}

.m_button-mail {
  margin-top: 24px;
}
