@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Mochiy+Pop+One');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@900&display=swap');

/* 変数 */
:root {
  --a-green: #00da7e;
  --a-lgreen: #d9f9ec;
}

.sa-talk { font-weight: 600}
/* google font */
.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.mochiy-pop-one-regular {
  font-family: "Mochiy Pop One", sans-serif;
  font-weight: 400;
  font-style: normal;
}
/* タグ設定 */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  overflow-x: clip;
}
/*img {
  max-width: 100%;
  vertical-align: bottom;
}*/
picture {
  display: block;
}
.sa-talk a:hover {
  opacity: 0.8;
  transition: 0.3s;
}
/* デバイス管理 */
.--pc-only {
  display: none;
}
@media screen and (min-width: 1024px) {
  .--pc-only {
    display: block;
  }
  .--sp-only {
    display: none;
  }
}
/* カラー（ユーティリティ） */
.a-text-color-red {
  color: #e50012;
}
.a-marker-white {
  position: relative;
  padding: 0 2px;
  display: inline-block;
  z-index: 1;
  /* background: linear-gradient(transparent 25%, #fff 75%); */
  /* border-radius: 20px; */
}
.a-marker-white::before {
  content: '';
  position: absolute;
  top: 60%; /* 背景の下半分を白くする */
  left: 0;
  width: 100%;
  height: 40%; /* 背景の半分の高さ */
  background-color: #fff;
  border-radius: 10px; /* 白色部分に丸みをつける */
  /* transform: translateY(-50%); */
  z-index: -1; /* テキストの後ろに配置 */
}
@media screen and (min-width: 1024px) {
  .a-marker-white {
    padding: 0 10px;
  }
  .a-marker-white.text-ls { margin-left: -17px!important; padding: 0 10px 0 0;}
}
/* 背景 */
.a-bg {
  padding-top: 60px;
  background-color: #fff;
  background-image: radial-gradient(circle, var(--a-lgreen) 3px, transparent 3px),
    radial-gradient(circle, var(--a-lgreen) 3px, transparent 3px);
  background-position: 0 0, 7px 7px;
  background-size: 14px 14px;
}
@media screen and (min-width: 768px) {
  .a-bg { padding-top: 70px}
}
@media screen and (min-width: 1024px) {
  .a-bg {
    background-image: radial-gradient(circle, var(--a-lgreen) 5px, transparent 5px),
      radial-gradient(circle, var(--a-lgreen) 5px, transparent 5px);
    background-position: 0 0, 11px 11px;
    background-size: 22px 26px;
  }
}
/* 共通インナー幅 */
.a-inner01 {
  max-width: 600px;
  margin-inline: auto;
  padding: 0 20px;
}
.a-inner02 {
  max-width: 600px;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .a-inner01 {
    max-width: 1080px;
  }
  .a-inner02 {
    max-width: 1080px;
  }
}
/* 共通見出し */
.a-heading01 {
  font-family: "Mochiy Pop One", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  text-shadow: 3px 3px 0 #fff, -3px 3px 0 #fff, 3px -3px 0 #fff, -3px -3px 0 #fff, 3px 0 0 #fff, -3px 0 0 #fff,
    0 3px 0 #fff, 0 -3px 0 #fff;
}
.a-heading01-small {
  font-size: 12px;
}
.a-heading01-normal {
  font-size: 15px;
}
.a-heading01-strong {
  font-size: 25px;
}
.a-heading02 {
  font-family: "Mochiy Pop One", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  line-height: 1.6;
}
.a-heading02-normal {
  font-size: 18px;
}
.a-heading02-strong {
  font-size: 24px;
}
.a-heading03 { margin-bottom: 20px;
  font-family: "Mochiy Pop One", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.1;
  letter-spacing: -1px;
  text-align: left!important
}
.a-heading03-normal {
  font-size: 18px;
}
.a-heading03-strong {
  font-size: 21px;
}
.a-heading04 {
  font-family: "Mochiy Pop One", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.45;
  text-align: center;
}
.a-heading04-normal {
  font-size: 18px;
}
.a-heading04-strong {
  font-size: 22px;
}
@media screen and (min-width: 1024px) {
  .a-heading01-strong {
    font-size: 50px;
  }
  .a-heading01-normal {
    font-size: 30px;
  }
  .a-heading01-small {
    font-size: 24px;
  }
  .a-heading02-normal {
    font-size: 30px;
  }
  .a-heading02-strong {
    font-size: 36px;
  }
  .a-heading03-normal {
    font-size: 20px;
  }
  .a-heading03-strong {
    font-size: 24px;
  }
  .a-heading04-normal {
    font-size: 24px;
  }
  .a-heading04-strong {
    font-size: 28px;
  }
}
/* ボタン */
.a-btn {
  display: block;
  width: 320px;
  margin-inline: auto;
  padding: 3px;
  background-color: var(--a-green);
  font-size: 20px;
  font-weight: 900;
  border-radius: 100vh;
  text-align: center;
  text-shadow: 1px 1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, -1px -1px 0 #fff, 1px 0 0 #fff, -1px 0 0 #fff, 0 1px 0 #fff, 0 -1px 0 #fff;
  transition: 0.3s;
}

.a-btn__border { padding: 20px 0; border: 3px dotted #fff; border-radius: 100vh; transition: 0.3s;}

.a-btn__border .pc-only {
  display: none;
}
.a-btn__icon {
  display: inline-block;
  margin-left: auto;
}

.a-btn.w100 { margin-bottom: 20px}
@media screen and (max-width: 1023px) {
 .a-btn + .a-btn { margin-top: 20px}
}
@media screen and (min-width: 1024px) {
  .a-intro__btn { width: fit-content; display: flex; justify-content: center; flex-wrap: wrap; margin: auto;}
  .a-btn {
    width: 450px;
    padding: 5px;
    font-size: 28px;
    text-shadow: 2px 2px 0 #fff, -2px 2px 0 #fff, 2px -2px 0 #fff, -2px -2px 0 #fff, 2px 0 0 #fff, -2px 0 0 #fff, 0 2px 0 #fff, 0 -2px 0 #fff}
  .a-btn.w100 { width: 100%; max-width: 960px; margin: 0 auto 40px!important; padding: 10px}
  .a-btn.w100 .a-btn__border { padding: 25px 0}
  .a-btn:hover { color: #000; opacity: .7}
  .a-intro__btn .a-btn:first-of-type { margin-right: 10px;}
  .a-intro__btn .a-btn:last-of-type { margin-left: 10px;}
  .a-btn--small {
    width: 400px;
    font-size: 16px;
  }
  .a-btn__border {
    position: relative;
    border: 6px dotted #fff;
  }
  .a-btn:hover .a-btn__border--small {
    border: 3px dotted #000;
  }

  .a-btn__border--small {
    padding: 10px;
    border: 3px dotted #fff;
  }
  .a-btn__icon {
    position: absolute;
    right: 20px;
  }
  .a-btn__icon img {
    width: 60px;
    height: 30px;
  }
  .a-btn__icon--small img {
    width: 34px;
    height: 17px;
  }
  .a-btn__border .pc-only {
    display: inline-block;
  }
}
/* ヘッダー */
.a-header {
  background-color: #fff;
}
.a-header__inner {
  display: flex;
  justify-content: center;
}
.a-header__logo {
  width: 172px;
}
.a-header__btn {
  display: none;
}
@media screen and (min-width: 1024px) {
  .a-header {
    padding: 12px 0;
  }
  .a-header__inner {
    padding: 0;
    justify-content: space-between;
  }
  .a-header__btn {
    display: block;
  }
  .a-header__logo {
    width: 200px;
  }
}
/* 追従POP */
.a-pop {
  position: fixed;
  bottom: 60px;
  right: 10px;
  transition: 0.3s;
  z-index: 1000;
}
.a-pop__link {
  display: inline-block;
  width: 114px;
  height: 114px;
}
@media screen and (min-width: 768px) {
  .a-pop { bottom: 300px}
}
@media screen and (min-width: 1024px) {
  .a-pop {
    right: 20px;
  }
  .a-pop__link {
    width: 158px;
    height: 158px;
  }
}
/* kv */
.a-kv__inner {
  max-width: 1080px;
  margin-inline: auto;
}
.a-kv__image {
  margin-top: 24px;
}
/* ロゴループ 20250311add */
@keyframes infinity-scroll-left {
	from {
	  transform: translateX(0);
	}
	  to {
	  transform: translateX(-100%);
	}
	}
.logo-loop { display: flex; margin-top: 50px; background: #fff; overflow: hidden;}
.logo-loop ul { display: flex; justify-content: flex-start; animation: infinity-scroll-left 20s infinite linear 0.5s both;}
.logo-loop ul li { display: flex; justify-content: center; width: calc(100vw / 3); height: 70px; padding: 10px 0}
.logo-loop ul li img { width: auto!important; height: 100%!important;}
.logo-loop ul li:nth-child(2) { margin: 0 -20px!important}
.logo-loop ul li:nth-child(4) { margin: 0 -40px!important}
.logo-loop ul li:nth-child(5) { margin: 0 -40px!important}
.logo-loop ul li:nth-child(6) { margin: 0 -40px!important}
.logo-loop ul li:nth-child(8) { margin: 0 -20px!important}
.logo-loop ul li:nth-child(13) { margin: 0 -20px!important}
.logo-loop ul li:nth-child(14) { margin: 0 -20px!important}
@media screen and (min-width: 768px) {
  .logo-loop ul li { display: flex; justify-content: center; width: calc(100vw / 4); height: 100px}
  .logo-loop ul li:nth-child(2) { margin: 0 -50px!important}
  .logo-loop ul li:nth-child(5) { margin: 0 -50px!important}
  .logo-loop ul li:nth-child(6) { margin: 0 -50px!important}
  .logo-loop ul li:nth-child(8) { margin: 0 -20px!important}
  .logo-loop ul li:nth-child(10) { margin: 0 10px!important}
  .logo-loop ul li:nth-child(11) { margin: 0 10px 0!important}
  .logo-loop ul li:nth-child(13) { margin: 0 -40px!important}
  .logo-loop ul li:nth-child(14) { margin: 0 -40px!important}
}

@media screen and (min-width: 1100px) {
  .logo-loop ul li { display: flex; justify-content: center; width: calc(100vw / 5)}
}
@media screen and (min-width: 1200px) {
  .logo-loop ul li { display: flex; justify-content: center; width: calc(100vw / 6)}
}
@media screen and (min-width: 1400px) {
  .logo-loop ul li { display: flex; justify-content: center; width: calc(100vw / 7)}
}
@media screen and (min-width: 1800px) {
  .logo-loop ul li { display: flex; justify-content: center; width: calc(100vw / 8)}
}
/* 導入 */
.a-intro {
  padding: 50px 0 44px;
}
.a-intro__title { position: relative; width: fit-content!important; margin-inline: auto}
.a-intro__title::before,
.a-intro__title::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
}
.a-intro__title::before { width: 53px; height: 37px; top: 48px; left: -45px; background-image: url(../img/sa-talk/icon_star01_sp.png)}
.a-intro__title::after { width: 47px; height: 47px; top: -18px; right: -50px; background-image: url(../img/sa-talk/icon_star02_sp.png)}
.a-intro__title-normal {
  display: inline-block;
  margin-top: 4px;
}
.a-intro__title-strong {
  display: inline-block;
  margin-top: 10px;
}
.a-intro__btn { margin-top: 28px;}
.a-intro__movie {
  display: grid;
  gap: 26px;
  margin-top: 52px;
}
.a-intro__movie-text {
  width: fit-content;
  margin: auto!important;
  padding: 3px 7px;
  background-color: #fff;
  font-weight: 900;
  text-align: center
}
.a-intro__movie-image {
  position: relative;
  margin-top: 15px;
  cursor: pointer;
}
.a-intro__movie-image::before {
  position: absolute;
  content: "";
  display: inline-block;
  inset: 0;
  background-color: rgb(0 0 0 /0.5);
  opacity: 0;
  transition: opacity 0.3s;
}
.a-intro__movie-image:hover::before {
  opacity: 1;
}
.a-intro__movie-image::after {
  position: absolute;
  content: "";
  display: inline-block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background-image: url(../img/sa-talk/icon_play01.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.a-intro__movie-image:hover::after {
  background-image: url(../img/sa-talk/icon_play02.png);
}
@media screen and (min-width: 1024px) {
  .a-intro{
    padding: 50px 0 100px;
  }
  .a-intro__title { margin: 0 auto 50px; line-height: 1.2}
  .a-intro__title .sp-only {
    display: none;
  }
  .a-intro__title::before { top: 26px; left: -60px; width: 106px; height: 98px; background-image: url(../img/sa-talk/icon_star01_pc.png)}
  .a-intro__title::after { top: 0; right: -100px; width: 156px; height: 95px; background-image: url(../img/sa-talk/icon_star02_pc.png)}
  
  .a-intro__movie {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 840px;
    margin-inline: auto;
    margin-top: 100px;
  }
  .a-intro__movie-text { 
    font-size: 20px;
  }
}
/* 課題 */
.a-problem {
  position: relative;
  z-index: 1;
}
.a-problem__inner {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: var(--a-lgreen);
}
.a-problem__cards {
  display: grid;
  gap: 48px;
  margin-top: 20px;
}
  .a-problem__card-image { width: 100%; height: 120px; text-align: center}
  .a-problem__card-image img { width: auto!important; height: 100%!important}
.a-problem__card-image img { }
.a-problem__card-content {
  padding: 16px;
  background-color: #fff;
  border-radius: 14px;
}
.a-problem__card-list {
  display: grid;
  gap: 4px;
  margin-top: 16px; line-height: 1.3
}
.a-problem__card-text {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
}
.a-problem__box {
  margin-top: 30px;
  padding: 16px 8px 0;
  background: repeating-linear-gradient(
    -45deg,
    /* 45度の角度で斜めに設定 */ #ffffff,
    /* 最初の色 (白) */ #ffffff 10px,
    /* 白のストライプの幅 */ var(--a-lgreen) 10px,
    /* グレーのストライプが始まる位置 */ var(--a-lgreen) 20px /* グレーのストライプの幅 */
  );
  border: 4px solid var(--a-green);
  border-radius: 12px;
}
.a-problem__box-icon {
  text-align: center;
}
.a-problem__box-content {
  margin-top: 10px;
}
.a-problem__box-text {
  font-family: "Mochiy Pop One", sans-serif;
  font-size: 19px;
  font-weight: 900;
  text-align: center;
  line-height: 1.3!important;
}
.a-problem__box-text .pc-only {
  display: none;
}
.a-problem__box-text-strong {
  font-size: 22px;
  color: #e50012;
}
.a-problem__box-image-sp {
  width: 214px;
  margin-inline: auto; margin-bottom: -3px
}
.a-problem__caution { font-weight: bold; line-height: 1.8!important;
  display: block;
  margin-top: 20px;
  color: #231815;
  font-size: 12px;
  letter-spacing: -1px;
  text-align: center;
}
.a-problem__caution.--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .a-problem__card-content {
    display: grid;
    place-content: center;
  }
}
@media screen and (min-width: 1024px) {
  .a-problem__inner {
    padding: 40px 50px 50px;
    border-radius: 30px;
  }
  .a-problem__title .sp-only {
    display: none;
  }
  .a-problem__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 30px
  }
  .a-problem__card {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    gap: 0;
  }
  .a-problem__card-content {
    padding: 16px 10px;
    place-content: normal;
  }
  .a-problem__card-image { width: 100%; height: 180px; text-align: center}
  .a-problem__card-image img { width: auto!important; height: 100%!important}
  .a-problem__card-text {
    font-size: 16px;
  }
  .a-problem__box {
    position: relative;
    margin-top: 44px;
    padding: 16px 16px 32px;
    border: 6px solid var(--a-green);
    background: repeating-linear-gradient(-45deg, #ffffff, #ffffff 16px, var(--a-lgreen) 16px, var(--a-lgreen) 32px);
  }
  .a-problem__box::before,
  .a-problem__box::after {
    position: absolute;
    content: "";
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .a-problem__box::before {
    bottom: -6px;
    width: 192px;
    height: 212px;
    background-image: url(../img/sa-talk/problem_box01_pc.png);
  }
  .a-problem__box::after {
    bottom: -23px;
    right: 0;
    width: 192px;
    height: 212px;
    background-image: url(../img/sa-talk/problem_box02_pc.png);
  }
  .a-problem__box-icon img {
    width: 55px;
    height: 50px;
  }
  .a-problem__box-text {
    font-size: 26px;
  }
  .a-problem__box-text .sp-only {
    display: none;
  }
  .a-problem__box-text .pc-only {
    display: block;
  }
  .a-problem__box-text-strong {
    font-size: 30px;
  }
  .a-problem__box-image-sp {
    display: none;
  }
  .a-problem__caution.--sp {
    display: none;
  }
  .a-problem__caution.--pc {
    display: block;
    line-height: 2!important;
  }
}
/* 機能 */
.a-function {
  position: relative;
  padding: 60px 0 0;
  overflow: hidden;
}
.a-function__arrow {
  position: absolute;
  content: "";
  display: inline-block;
  top: 0;
  left: 50%;
  translate: -50%;
  width: 100%;
  max-width: 375px;
  padding: 0 20px;
  text-align: center;
}

.a-function__inner {
  position: relative;
  padding-bottom: 34px;
}
.a-function__pop {
  position: absolute;
  content: "";
  display: inline-block;
  bottom: 130px;
  right: 0;
  width: 170px;
  height: 156px;
}
.a-function__title-pc {
  display: none;
}
.a-function__content {
  margin-top: 62px;
}
.a-function__text {
  font-family: "Mochiy Pop One", sans-serif;
  font-weight: 900;
  font-size: 16px;
  line-height: 1.8!important;
}
.a-function__cards {
  display: grid;
  gap: 20px;
}
.a-function__card {
  padding: 20px;
  background-color: #fff;
}
.a-function__card-head {
  position: relative;
  padding: 15px 20px;
  background-color: var(--a-green);
  border-radius: 16px;
}
.a-function__card-pop {
  position: absolute;
  content: "";
  display: inline-block;
  bottom: 0;
  right: -15px;
  width: 140px;
  height: 114px;
}
.a-function__card-pop--02 {
  width: 122px;
}
.a-function__card-title {
  color: #fff;
  font-family: "Mochiy Pop One", sans-serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.3!important;
  text-shadow: 2px 2px 1px #000, -2px 2px 1px #000, 2px -2px 1px #000, -2px -2px 1px #000, 2px 0px 1px #000,
    0px 2px 1px #000, -2px 0px 1px #000, 0px -2px 1px #000;
}
.a-function__card-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 4px;
  margin-top: 20px;
}
.a-function__card-item { 
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 4px;
}
.a-function__card-item p { line-height: 1.3!important}
.a-function__card-item img {
  width: auto!important;
  height: 65px!important;
  margin-inline: auto;
  margin-top: auto;
  
}
.a-function__card-item--02 img {
  width: 58%;
}
.a-function__card-text { display: flex; justify-content: center; align-items: center;
  padding: 8px 0;
  background-color: var(--a-lgreen);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  border-radius: 12px;
}
.a-function__card-caution { margin-top: 6px; font-weight: bold;
  color: #555555;
  font-size: 10px;
  text-align: center;
}
@media screen and (min-width: 450px) {
  .a-function__text .sp-only {
    display: none;
  }
  .a-function__pop {
    bottom: 80px;
    right: 20px;
  }
}
@media screen and (min-width: 550px) {
  .a-function__arrow {
    max-width: 420px;
  }
}
@media screen and (min-width: 768px) {
  .a-function__card-item img { height: 87px!important}
  .a-function__title-sp {
    display: none;
  }
  .a-function__title-pc {
    display: block;
  }
  .a-function__content { margin-top: 10px}
  .a-function__pop {
    width: 200px;
    bottom: 30px;
  }
  .a-function__cards {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1080px;
    margin-inline: auto;
    padding: 0 20px;
  }
}
@media screen and (min-width: 1024px) {
  .a-function {
    position: relative;
  }
  .a-function__arrow {
    top: -55%;
    left: 50%;
    translate: -50%;
    max-width: none;
  }
  .a-function__arrow.is-active {
    animation: arrow-down 1s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
  }
  @keyframes arrow-down {
    0% {
      top: -50%;
    }
    100% {
      top: 0;
    }
  }
  .a-function__inner {
    padding-bottom: 90px;
  }
  .a-function__title { margin-top: 50px!important;
    opacity: 0;
    transform: scale(4);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  }
  .a-function__title.is-active {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0s;
  }
  .a-function__text {
    padding-left: 30px;
    font-size: 20px;
    line-height: 2!important;
  }
  .a-function__text .tab-only {
    display: none;
  }
  .a-function__pop {
    right: 0;
    bottom: 0;
    width: 340px;
    height: 313px;
  }
  .a-function__card {
    padding: 40px 25px 20px;
  }
  .a-function__card-head {
    padding: 25px 25px;
    border-radius: 34px;
  }
  .a-function__card-pop {
    bottom: 0;
    right: -15px;
    width: 200px;
    height: 162px;
  }
  .a-function__card-pop--02 {
    width: 174px;
    height: 163px;
  }

  .a-function__card-title {
    font-size: 30px;
  }
  .a-function__card-text {
    font-size: 16px;
  }
}
/* メリット */
.a-merit {
  padding: 36px 0 0;
}
.a-merit__cards {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}
.a-merit__card {
  position: relative;
  padding: 50px 10px 20px;
  background-color: #fff;
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
}
.a-merit__card-pop {
  position: absolute;
  content: "";
  display: inline-block;
  top: -50px;
  right: 10px;
  width: 84px;
  height: 104px;
}
.a-merit__card--last {
  padding-top: 72px;
  padding-bottom: 20px;
}
.a-merit__card-title {
  position: absolute;
  content: "";
  display: inline-block;
  top: 0;
  left: 0;
}
.a-merit__card-title p {
  padding: 6px 14px 8px;
  background-color: #000;
  color: #fff;
  font-weight: 900;
  text-align: center;
}
.a-merit__card-title small {
  display: inline-block;
  margin-top: 12px;
}
.a-merit__card-desc {
  margin-top: 28px;
}
.a-merit__card-flow {
  display: grid;
  grid-template-areas:
    "center center"
    "left right";
  gap: 20px;
}
.a-merit__card-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  grid-area: center;
}
.a-merit__card-figure--center p {
  position: relative;
}
.a-merit__card-figure--center p::before,
.a-merit__card-figure--center p::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 12px;
  height: 24px;
  transform: translate(0, -50%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background-color: var(--a-green);
}
.a-merit__card-figure--center p::before {
  left: -15px;
}
.a-merit__card-figure--center p::after {
  right: -17px;
}
.a-merit__card-figure img {
  border: 2px solid #000;
}
.a-merit__card-figure figcaption {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  line-height: calc(16 / 12);
}
.a-merit__card-chat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.a-merit__card-chat--01 {
  grid-area: left;
}
.a-merit__card-chat--02 {
  grid-area: right;
}
.a-merit__card-chat p {
  padding: 10px 8px;
  font-size: 12px;
  font-weight: 900;
  background-color: var(--a-lgreen);
  border-radius: 12px;
  line-height: calc(18 / 12);
}
.a-merit__card-chat img {
  display: block;
  width: 48%;
  max-width: 104px;
  margin-inline: auto;
  margin-top: 10px;
}
.a-merit__caution {
  display: block;
  margin-top: 14px;
  padding: 0 2px;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .a-merit__cards {
    max-width: 600px;
    margin-inline: auto;
    padding: 0 20px;
  }
  .a-merit__card {
    border-left: 3px solid #000;
    border-right: 3px solid #000;
  }
  .a-merit__caution {
    max-width: 600px;
    margin-inline: auto;
    padding: 0 20px;
  }
}

@media screen and (max-width: 1023px) {
  .a-merit__title, .a-merit__card-head { line-height: 1!important}
}
@media screen and (min-width: 1024px) {
  .a-merit__card-chat p { font-size: 16px!important}
  .a-merit {
    padding: 100px 0 0;
  }
  .a-merit__title .sp-only {
    display: none;
  }
  .a-merit__title .pc-only {
    margin-left: -16px;
  }
  .a-merit__cards {
    max-width: 1080px;
    margin-top: 70px;
    gap: 66px;
  }
  .a-merit__card {
    padding: 30px 35px;
  }
  .a-merit__card-pop {
    top: -120px;
    width: 200px;
    height: 244px;
    opacity: 0;
    transform: translateY(50px);
  }
  .a-merit__card-pop.is-fade {
    opacity: 1;
  }
  .a-merit__card-head .sp-only {
    display: none;
  }
  .a-merit__card-flow {
    grid-template-areas: "left center right";
    grid-template-columns: 1fr 508px 1fr;
  }
  .a-merit__card-title {
    display: flex;
    top: -42px;
    left: -3px;
    font-size: 22px;
  }
  .a-merit__card-title small {
    font-size: 12px;
  }
  .a-merit__card-item {
    gap: 38px;
  }
  .a-merit__card-figure figcaption {
    margin-top: 15px;
    font-size: 16px;
  }
  .a-merit__card-figure--center p::before,
  .a-merit__card-figure--center p::after {
    width: 16px;
    height: 33px;
  }
  .a-merit__card-figure--center p::before {
    left: -26px;
  }
  .a-merit__card-figure--center p::after {
    right: -28px;
  }
  .a-merit__card-chat {
    justify-content: center;
  }
  .a-merit__caution {
    max-width: 1080px;
  }
}
/* サービス */
.a-service {
  padding: 44px 0 0;
}
.a-service__movie {
  max-width: 800px;
  margin-top: 30px;
  margin-inline: auto;
  padding: 0 20px;
}
.a-service__movie-image {
  margin-top: 20px;
}
.a-service__movie-image img {
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .a-merit__caution { padding: 0 20px}
}
@media screen and (min-width: 1024px) {
  .a-service__title .sp-only {
    display: none;
  }
  .a-service__title .pc-only {
    margin-left: -20px;
  }
  .a-service__movie-image {
    padding: 0;
    text-align: center;
  }
  .a-service__movie-image::after {
    width: 80px;
    height: 80px;
  }
}
/* Q&A */
.a-faq {
  padding: 34px 0 0;
}
.a-faq__inner {
  max-width: 600px;
  margin-inline: auto;
  padding: 0 10px;
}
.a-faq__title {
  margin-inline: auto;
  background-color: var(--a-green);
  width: 100px!important;
  height: 100px!important;
  border-radius: 100vh;
  text-align: center;
  text-shadow: 2px 2px 1px #000, -2px 2px 1px #000, 2px -2px 1px #000, -2px -2px 1px #000, 2px 0px 1px #000,
    0px 2px 1px #000, -2px 0px 1px #000, 0px -2px 1px #000;
}
.a-faq__title-en {
  display: block;
  padding-top: 20px;
  color: #fff;
  font-family: "Mochiy Pop One", sans-serif;
  font-size: 21px;
  font-weight: 400;
  font-style: normal;
}
.a-faq__wrapper {
  position: relative;
  max-width: 780px;
  margin-inline: auto;
  display: grid;
  gap: 18px;
  margin-top: -42px;
  padding: 24px 10px;
  background-color: #f4f5f8;
  border: 2px solid var(--a-green);
  border-radius: 24px;
}
.a-faq__pop {
  position: absolute;
  content: "";
  display: inline-block;
  top: -65px;
  right: 10px;
  width: 88px;
  height: 77px;
}
.a-faq__box {
  display: grid;
  gap: 8px;
}
.a-faq__content {
  position: relative;
  background-color: var(--a-lgreen);
  border-radius: 12px;
}
.a-faq__content--reverse {
  background-color: #fff;
}
.a-faq__content--reverse .a-faq__text {
  font-weight: normal;
}
.a-faq__image {
  position: absolute;
  width: 34px;
  height: 34px;
  top: 0;
  left: 10px;
}
.a-faq__image--reverse {
  top: 2px;
}
.a-faq__text {
  padding: 8px 20px 11px 58px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.4;
}
.a-faq__link {
  color: #006837;
  text-decoration: underline;
}
@media screen and (min-width: 1024px) {
  .a-faq {
    padding: 100px 0 0;
  }
  .a-faq__inner {
    max-width: 1080px;
  }
  .a-faq__title {
    width: 230px!important;
    height: 230px!important;
  }
  .a-faq__title-en {
    padding-top: 42px;
    font-size: 42px;
  }
  .a-faq__wrapper {
    max-width: 1080px;
    margin-top: -115px;
    padding: 50px 35px 60px;
    border: 5px solid var(--a-green);
  }
  .a-faq__pop {
    opacity: 0;
    width: 244px;
    height: 182px;
    top: -185px;
    right: 30px;
    transform: translateY(50px);
  }
  .a-faq__pop.is-fade {
    opacity: 1;
  }
  .a-faq__box {
    width: 780px;
    margin-inline: auto;
  }
  .a-faq__image {
    width: 80px;
    height: 80px;
    left: -100px;
  }
  .a-faq__image--reverse {
    left: auto;
    right: -100px;
  }
  .a-faq__content {
    border-radius: 22px;
  }
  .a-faq__text {
    padding: 32px 38px;
    font-size: 16px;
  }
}
/* cta */
.a-cta {
  padding: 50px 0 20px;
}
.a-cta__title {
  position: relative;
  width: fit-content!important;
  margin-inline: auto;
  line-height: 1.5;
}
.a-cta__title::before,
.a-cta__title::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
}
.a-cta__title::before { width: 30px; height: 31px; top: 5px; left: -30px; background-image: url(../img/sa-talk/icon_pop01_sp.svg)}
.a-cta__title::after { width: 35px; height: 35px; top: -6px; right: -40px!important; background-image: url(../img/sa-talk/icon_pop02_sp.svg)}

.a-cta__btn {
  margin-top: 30px;
}
.a-cta__image {
  width: 60%;
  margin-top: 44px;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .a-cta {
    padding: 100px 0;
  }
  .a-cta__title .sp-only {
    display: none;
  }
  .a-cta__title::before { width: 62px; height: 64px; top: -5px; left: -70px; background-image: url(../img/sa-talk/icon_pop01_pc.svg);}
  .a-cta__title::after {
    width: 70px;
    height: 70px;
    top: -8px;
    right: 0;
    background-image: url(../img/sa-talk/icon_pop02_pc.svg);
  }
  .a-cta__btn {
    margin-top: 60px;
  }
  .a-cta__image {
    opacity: 0;
    margin-top: 110px;
    max-width: 400px;
    transform: translateY(50px);
  }
  .a-cta__image.is-fade {
    opacity: 1;
  }
}
/* 動画用モーダル */
/* モーダル背景 */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

/* モーダルのコンテンツ */
.modal-content-outline { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background-color: #fff; width: 95%; max-width: 800px; padding: 30px; border-radius: 8px}
.modal-content { position: relative; width: 100%; padding-top: 56.25%}
.modal-content iframe { position: absolute; top: 0px; left: 0px; width: 100%; height: 100%}
/* 閉じるボタン */
.close {
  position: absolute;
  top: -60px;
  right: 0;
  font-size: 30px;
  cursor: pointer;
  color: #fff;
}
