@charset "utf-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

img {
  width: 100%;
}

/* v-cloak処理 */
[v-cloak] {
  display: none;
}

/* Googleフォント　Noto Sans JP */
.font-ja {
  font-family: 'Noto Sans JP', sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

/* Googleフォント Libre Baskerville */
.font-en {
  font-family: "Libre Baskerville", serif;
  font-style: italic;
}

/* ================================================================== */
/* common */
/* ================================================================== */
.wrapper-inner {
  max-width: 1260px;
  width: 90%;
  margin: 0 auto;
  position: relative;
}

@media screen and (min-width: 1280px) {
  .wrapper-inner {
    width: 100%;
  }
}

.relative {
  position: relative;
}

.off768 {
  display: none;
}

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

.section-head {
  width: 100%;
  height: 100px;
  background: linear-gradient(160deg, #7ccdf4 0%, #0061af 15%, #004d90 50%, #7ccdf4 85%, #004d90 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .section-head {
    height: 150px;
  }
}

.section-head h2 {
  font-size: clamp(1.25rem, 5.71vw, 1.75rem);
  font-weight: bold;
  line-height: 1.75;
  letter-spacing: 0.1em;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .section-head h2 {
    font-size: 2.875rem;
  }
}
/* ================================================================== */
/* header */
/* ================================================================== */
header {
  position: relative;
}

.wrapper-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 21.333vw;
  text-align: center;
  margin-top: 10px;
  margin-left: 10px;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .wrapper-header {
    width: 15.625vw;
    margin-top: 70px;
    margin-left: 25px;
  }
}

.container-header {
  width: 13.54vw;
  height: 13.54vw;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.container-header img:first-of-type {
  width: 73.3%;
  height: auto;
}

.container-header img:last-of-type {
  width: 43.3%;
  height: auto;
}

/* ================================================================== */
/* header-btn */
/* ================================================================== */
.header-btn {
  position: absolute;
  top: 0;
  right: 5%;
  display: inline-block;
  z-index: 5;
}

@media screen and (min-width: 768px) {
  .header-btn {
    right: 15%;
  }
}

.container-headerbtn {
  background-color: #ff9700;
  border-radius: 0 0 15px 15px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.container-headerbtn:hover:active {
  transform: scale(0.98);
}

@media (hover: hover) {
  .container-headerbtn:hover {
    background-color: #ffac30;
  }
}

.container-headerbtn p {
  font-size: 0.875rem;
  font-weight: bold;
  color: #fff;
  padding: 10px 30px;
}

@media screen and (min-width: 768px) {
  .container-headerbtn p {
    font-size: 1.5rem;
    padding: 15px 35px;
  }
}

/* ================================================================== */
/* FV */
/* ================================================================== */
.wrapper-fv {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-left: 0;
  background-image: url(../images/bg-top.webp), url(../images/bg-top_sp.webp);
  background-position: top left, bottom left;
  background-repeat: no-repeat, no-repeat;
  background-size: contain, contain;
}

@media screen and (min-width: 768px) {
  .wrapper-fv {
    width: 100%;
    display: block;
    padding-left: calc(15.625vw + 30px);
    background-image: url(../images/bg-top.webp);
    background-position: top left;
    background-repeat: no-repeat;
    background-size: contain;
  }
}

.container-fv {
  padding: 80px 0 clamp(140px, 40vw, 250px);
}

@media screen and (min-width: 768px) {
  .container-fv {
    padding: clamp(80px, 11.67vw, 140px) 0;
  }
}

/* h1,h2,span */
h1,
.container-fv h2 {
  line-height: 1.4;
  letter-spacing: 0.025em;
  color: #fff;
  text-shadow:
    1px 1px 2px #036eb8,
    1px -1px 2px #036eb8,
    -1px 1px 2px #036eb8,
    -1px -1px 2px #036eb8,
    2px 2px 8px rgba(3, 70, 137, 0.4),
    -2px 2px 8px rgba(3, 70, 137, 0.4),
    2px -2px 8px rgba(3, 70, 137, 0.4),
    -2px -2px 8px rgba(3, 70, 137, 0.4);
}

@media screen and (min-width: 768px) {
  h1,
  .container-fv h2 {
    text-shadow:
      1px 1px 1px #036eb8,
      1px -1px 1px #036eb8,
      -1px 1px 1px #036eb8,
      -1px -1px 1px #036eb8,
      6px 6px 20px rgba(3, 70, 137, 0.4),
      -6px 6px 20px rgba(3, 70, 137, 0.4),
      6px -6px 20px rgba(3, 70, 137, 0.4),
      -6px -6px 20px rgba(3, 70, 137, 0.4);
  }
}

h1 {
  font-size: clamp(2.5rem, 9.11vw, 6.25rem);
  font-weight: 900;
}

@media screen and (min-width: 768px) {
  h1 {
    font-size: clamp(3rem, 5.21vw, 6.25rem);
  }
}

.container-fv h2 {
  font-size: clamp(1.75rem, 6.38vw, 3.0rem);
  font-weight: bold;
  margin-bottom: 20px;
}

.container-fv span {
  font-size: clamp(1.75rem, 6.38vw, 4.375rem);
}

@media screen and (min-width: 768px) {
  .container-fv h2,
  .container-fv span {
    font-size: clamp(2rem, 3.65vw, 4.375rem);
  }
}

/* fv-img */
.wrapper-fv img {
  width: clamp(150px, 47.1vw, 300px);
  height: auto;
  position: absolute;
  bottom: -20px;
  right: 50px;
}

@media screen and (min-width: 768px) {
  .wrapper-fv img {
    width: clamp(300px, 39.1vw, 750px);
    right: 110px;
  }
}
/* ================================================================== */
/* lead */
/* ================================================================== */
.lead-bg {
  width: 100%;
  background: linear-gradient(160deg, #7ccdf4 0%, #0061af 15%, #004d90 50%, #7ccdf4 85%, #004d90 100%);
  padding: 30px 0;
}

@media screen and (min-width: 768px) {
  .lead-bg {
    padding: 70px 0;
  }
}

.lead-text p {
  font-size: clamp(1rem, 1.875vw, 2.25rem);
  font-weight: bold;
  line-height: 1.75;
  letter-spacing: 0.075em;
  color: #fff;
  text-align: center;
}

/* ================================================================== */
/* concerns */
/* ================================================================== */
.wrapper-head {
  display: flex;
}

.concerns-head {
  text-align: center;
  margin: 30px auto 10px;
  padding: 10px 35px;
  border: 2px solid #898989;
  border-radius: 50px;
}

@media screen and (min-width: 768px) {
  .concerns-head {
    margin: 130px auto 80px;
    padding: 20px 140px;
  }
}

.concerns-head h2 {
  font-size: clamp(1rem, 4.4vw, 3.125rem);
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.025em;
  color: #3e3a39;
}

@media screen and (min-width: 768px) {
  .concerns-head h2 {
    font-size: clamp(1.25rem, 2.6vw, 3.125rem);
  }
}

.container-concerns {
  padding: 80px 0 60px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .container-concerns {
    padding: 0;
  }
}

.container-concerns img {
  width: clamp(120px, 33.85vw, 620px);
  height: auto;
}

/* speech-buble位置調整 */
.speech-bubble-01 {
  position: absolute;
  top: 3%;
  left: 2%;
}

@media screen and (min-width: 768px) {
  .speech-bubble-01 {
    top: 5%;
    left: 5%;
  }
}

@media screen and (min-width: 1280px) {
  .speech-bubble-01 {
    left: 0;
  }
}

.speech-bubble-02 {
  position: absolute;
  top: 5%;
  right: 2%;
}

@media screen and (min-width: 768px) {
  .speech-bubble-02 {
    top: 35%;
    right: 3%;
  }
}

@media screen and (min-width: 1280px) {
  .speech-bubble-02 {
    right: 0%;
  }
}

.speech-bubble-03 {
  position: absolute;
  top: 80%;
  left: 0;
}

@media screen and (min-width: 768px) {
  .speech-bubble-03 {
    left: 5%;
  }
}

@media screen and (min-width: 1280px) {
  .speech-bubble-03 {
    left: 0;
  }
}

/* ------ speech-bubble共通 ------- */
.speech-bubble {
  position: relative;
  width: clamp(150px, 23.47vw, 180px);
  height: clamp(75px, 11.73vw, 90px);
  background-color: #fff;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  padding-bottom: clamp(5px, 1.5625vw, 20px);
  padding-left: 10px;
}

@media screen and (min-width: 768px) {
  .speech-bubble {
    width: clamp(95px, 23.4375vw, 300px);
    height: clamp(47.5px, 11.71875vw, 150px);
    border-bottom-width: 4px;
    justify-content: center;
  }
}

@media screen and (min-width: 1280px) {
  .speech-bubble {
    width: 340px;
    height: 170px;
  }
}

.speech-bubble-01 .speech-bubble,
.speech-bubble-03 .speech-bubble {
  filter: drop-shadow(8px 8px 5px rgba(140, 140, 140, 0.6));
}

.speech-bubble-02 .speech-bubble {
  filter: drop-shadow(-8px 8px 5px rgba(140, 140, 140, 0.6));
}

/* speech-bubble しっぽ  */
.speech-bubble::before,
.speech-bubble::after {
  content: "";
  position: absolute;
  background-color: #fff;
}

.speech-bubble-01 p,
.speech-bubble-02 p,
.speech-bubble-03 p {
  font-size: clamp(0.75rem, 1.7625vw, 1.5rem);
  font-weight: normal;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: #3e3a39;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .speech-bubble-01 p,
  .speech-bubble-02 p,
  .speech-bubble-03 p {
    font-size: clamp(0.875rem, 1.7625vw, 1.5rem);
    line-height: 1.75;
    letter-spacing: 0.05em;
  }
}

.speech-bubble-03 p {
  text-align: right;
}

.speech-bubble img {
  position: absolute;
  width: auto;
  height: clamp(40px, 5.1vw, 80px);
}

/* ------ speech-bubble-01 ------- */
.concerns-bubble-01 {
  border-right: 2px solid #2ea7e0;
  border-bottom-color: #2ea7e0;
}

@media screen and (min-width: 768px) {
  .concerns-bubble-01 {
    border-right: 4px solid #2ea7e0;
  }
}

.concerns-bubble-01::before {
  width: 13px;
  height: 13px;
  bottom: -14px;
  right: 49px;
  border-top: 2px solid #2ea7e0;
  transform: rotate(90deg);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.concerns-bubble-01::after {
  width: 25px;
  height: 8px;
  bottom: -8px;
  right: 45px;
  border-bottom: 2px solid #2ea7e0;
  transform: rotate(25deg);
  clip-path: polygon(0 0, 100% 90%, 100% 100%, 0 100%);
}

@media screen and (min-width: 768px) {
  .concerns-bubble-01::before {
    width: 64px;
    height: 24px;
    bottom: 10px;
    right: -57px;
    transform: rotate(24deg);
    border-top: 4px solid #2ea7e0;
  }

  .concerns-bubble-01::after {
    width: 60px;
    height: 17px;
    bottom: 23px;
    right: -60px;
    transform: rotate(0deg);
    border-bottom: 4px solid #2ea7e0;
    clip-path: polygon(0 12%, 93% 100%, 0 100%);
  }
}

.concerns-bubble-01 img {
  top: 0;
  right: 1.5625vw;
}

/* ------ speech-bubble-02 ------- */
.concerns-bubble-02 {
  border-left: 2px solid #dae000;
  border-bottom-color: #dae000;
}

@media screen and (min-width: 768px) {
  .concerns-bubble-02 {
    border-left: 4px solid #dae000;
  }
}

.concerns-bubble-02::before {
  width: 20px;
  height: 10px;
  bottom: -16px;
  left: 16px;
  border-top: 2px solid #dae000;
  transform: rotate(-90deg);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 3%);
}

.concerns-bubble-02::after {
  width: 30px;
  height: 5px;
  bottom: -14px;
  left: 10px;
  border-bottom: 2px solid #dae000;
  transform: rotate(-50deg);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

@media screen and (min-width: 768px) {
  .concerns-bubble-02::before {
    width: 60.5px;
    height: 20px;
    bottom: 33px;
    left: -60px;
    transform: rotate(0deg);
    border-top: 4px solid #dae000;
  }

  .concerns-bubble-02::after {
    width: 60px;
    height: 17px;
    bottom: 41px;
    left: -54px;
    transform: rotate(25deg);
    border-bottom: 4px solid #dae000;
  }
}

.concerns-bubble-02 img {
  top: 0;
  right: 1.5625vw;
}

/* ------ speech-bubble-03 ------- */
.concerns-bubble-03 {
  border-right: 2px solid #ff9700;
  border-bottom-color: #ff9700;
}

@media screen and (min-width: 768px) {
  .concerns-bubble-03 {
    border-right: 4px solid #ff9700;
  }
}

.concerns-bubble-03::before {
  width: 16px;
  height: 14px;
  top: 7px;
  right: -19px;
  border-top: 2px solid #ff9700;
  transform: rotate(-37deg);
  clip-path: polygon(0 0, 100% 0, 100% 10%, 0 50%);
}

.concerns-bubble-03::after {
  width: 33px;
  height: 13px;
  top: 7px;
  right: -18px;
  border-bottom: 2px solid #ff9700;
  transform: rotate(-65deg);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

@media screen and (min-width: 768px) {
  .concerns-bubble-03::before {
    width: 60px;
    height: 17px;
    top: 33px;
    right: -60px;
    border-top: 4px solid #ff9700;
    transform: rotate(0deg);
    clip-path: polygon(0 0, 100% 0, 100% 20%, 0 50%);
  }

  .concerns-bubble-03::after {
    width: 65px;
    height: 23px;
    top: 25px;
    right: -58px;
    border-bottom: 4px solid #ff9700;
    transform: rotate(-25deg);
  }
}

.concerns-bubble-03 img {
  top: 0;
  left: 1.5625vw;
}

/* ------ spacer ------- */
.spacer {
  width: 100%;
  height: 40px;
}

@media screen and (min-width: 768px) {
  .spacer {
    height: 150px;
  }
}

/* ------ solution-container ------- */
/* ------ solution-bubble ------- */
.solution-bubble-01 {
  position: relative;
  width: 80%;
  height: clamp(80px, 21.15vw, 310px);
  background-color: #fff;
  border-right: 2px solid #ea5514;
  border-bottom: 2px solid #ea5514;
  filter: drop-shadow(8px 8px 5px rgba(140, 140, 140, 0.6));
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .solution-bubble-01 {
    border-right: 4px solid #ea5514;
    border-bottom: 4px solid #ea5514;
  }
}

.solution-bubble-01::before,
.solution-bubble-01::after {
  content: "";
  position: absolute;
  background-color: #fff;
}

.solution-bubble-01::before {
  width: 30.5px;
  height: 9px;
  top: 13px;
  right: -30px;
  border-top: 2px solid #ea5514;
  clip-path: polygon(0 0, 100% 0, 100% 10%, 0 100%);
}

.solution-bubble-01::after {
  width: 33px;
  height: 7px;
  top: 12px;
  right: -31px;
  border-bottom: 2px solid #ea5514;
  transform: rotate(-24deg);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

@media screen and (min-width: 768px) {
  .solution-bubble-01::before {
    width: 60px;
    height: 17px;
    top: 33px;
    right: -60px;
    border-top: 4px solid #ea5514;
  }

  .solution-bubble-01::after {
    width: 60px;
    height: 20px;
    top: 25px;
    right: -54px;
    border-bottom: 4px solid #ea5514;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
  }
}

.solution-bubble-01 p {
  font-size: clamp(1rem, 4.375vw, 3.5rem);
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #fff;
  text-shadow:
    1px 1px 2px #ea5514,
    1px -1px 2px #ea5514,
    -1px 1px 2px #ea5514,
    -1px -1px 2px #ea5514,
    1px 1px 2px rgba(234, 85, 20, 0.7),
    -1px -1px 2px rgba(234, 85, 20, 0.7);
}

@media screen and (min-width: 768px) {
  .solution-bubble-01 p {
    text-shadow:
      1px 1px 1px #ea5514,
      1px -1px 1px #ea5514,
      -1px 1px 1px #ea5514,
      -1px -1px 1px #ea5514,
      6px 6px 20px rgba(234, 85, 20, 0.7),
      -6px 6px 20px rgba(234, 85, 20, 0.7),
      6px -6px 20px rgba(234, 85, 20, 0.7),
      -6px -6px 20px rgba(234, 85, 20, 0.7);
  }
}

.solution-container-01 img {
  position: absolute;
  top: 0;
  left: 77%;
  width: clamp(80px, 20.83vw, 400px);
  height: auto;
}

/* ------ circle ------- */
.container-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 30px auto;
}

@media screen and (min-width: 768px) {
  .container-circle {
    gap: 20px;
    margin: 90px auto;
  }
}

.circle {
  width: 10px;
  height: 10px;
  background-color: #ff8500;
  border-radius: 50%;
}

@media screen and (min-width: 768px) {
  .circle {
    width: 20px;
    height: 20px;
  }
}

/* ------ anxiety-bubble ------- */
/* anxiety-buble位置調整 */
.worry-bubble-01 {
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (min-width: 768px) {
  .worry-bubble-01 {
    top: 0;
    right: 3%;
  }
}

@media screen and (min-width: 1280px) {
  .worry-bubble-01 {
    right: 0;
  }
}

.worry-bubble-02 {
  position: absolute;
  top: 80%;
  right: 0;
}

@media screen and (min-width: 768px) {
  .worry-bubble-02 {
    right: 3%;
  }
}

@media screen and (min-width: 1280px) {
  .worry-bubble-02 {
    right: 0%;
  }
}

.worry-bubble-03 {
  position: absolute;
  top: 2%;
  left: 2%;
}

@media screen and (min-width: 768px) {
  .worry-bubble-03 {
    top: 35%;
    left: 5%;
  }
}

@media screen and (min-width: 1280px) {
  .worry-bubble-03 {
    left: 0;
  }
}

/* anxiety bubble共通 */
.worry-bubble-03 .speech-bubble {
  filter: drop-shadow(8px 8px 5px rgba(140, 140, 140, 0.6));
}

.worry-bubble-01 .speech-bubble,
.worry-bubble-02 .speech-bubble {
  filter: drop-shadow(-8px 8px 5px rgba(140, 140, 140, 0.6));
}

.worry-bubble-01 p,
.worry-bubble-02 p,
.worry-bubble-03 p {
  min-width: clamp(50px, 16.94vw, 270px);
  font-size: clamp(0.75rem, 1.7625vw, 1.5rem);
  font-weight: normal;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: #3e3a39;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .worry-bubble-01 p,
  .worry-bubble-02 p,
  .worry-bubble-03 p {
    line-height: 1.75;
    letter-spacing: 0.05em;
  }
}

.worry-bubble-03 p {
  text-align: right;
}

/* ------ anxiety-bubble-01 ------- */
.anxiety-bubble-01 {
  border-left: 2px solid #2ea7e0;
  border-bottom-color: #2ea7e0;
}

@media screen and (min-width: 768px) {
  .anxiety-bubble-01 {
    border-left: 4px solid #2ea7e0;
  }
}

.anxiety-bubble-01::before {
  width: 15px;
  height: 9px;
  bottom: -13px;
  left: 32px;
  border-top: 2px solid #2ea7e0;
  transform: rotate(-85deg);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.anxiety-bubble-01::after {
  width: 20px;
  height: 10px;
  bottom: -9px;
  left: 30px;
  border-bottom: 2px solid #2ea7e0;
  transform: rotate(-35deg);
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 95%);
}

@media screen and (min-width: 768px) {
  .anxiety-bubble-01::before {
    width: 60px;
    height: 17px;
    bottom: 25px;
    left: -55px;
    transform: rotate(-25deg);
    border-top: 4px solid #2ea7e0;
  }

  .anxiety-bubble-01::after {
    width: 60px;
    height: 20px;
    bottom: 32px;
    left: -60px;
    border-bottom: 4px solid #2ea7e0;
    transform: rotate(0deg);
    clip-path: polygon(100% 50%, 100% 100%, 0 100%);
  }
}

.anxiety-bubble-01 img {
  top: 0;
  right: 1.5625vw;
}

/* ------ anxiety-bubble-02 ------- */
.anxiety-bubble-02 {
  border-left: 2px solid #ff9700;
  border-bottom-color: #ff9700;
}

@media screen and (min-width: 768px) {
  .anxiety-bubble-02 {
    border-left: 4px solid #ff9700;
  }
}

.anxiety-bubble-02::before {
  width: 18px;
  height: 9px;
  bottom: 47px;
  left: -19px;
  transform: rotate(37deg);
  border-top: 2px solid #ff9700;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 10%);
}

.anxiety-bubble-02::after {
  width: 30px;
  height: 12px;
  bottom: 44px;
  left: -17px;
  border-bottom: 2px solid #ff9700;
  transform: rotate(65deg);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

@media screen and (min-width: 768px) {
  .anxiety-bubble-02::before {
    width: 59.5px;
    height: 15px;
    bottom: 61px;
    left: -59px;
    transform: rotate(0deg);
    border-top: 4px solid #ff9700;
  }

  .anxiety-bubble-02::after {
    width: 60px;
    height: 17px;
    bottom: 64px;
    left: -54px;
    border-bottom: 4px solid #ff9700;
    transform: rotate(25deg);
    clip-path: polygon(100% 0, 100% 100%, 0 103%);
  }
}

.anxiety-bubble-02 img {
  top: 0;
  right: 1.5625vw;
}

/* ------ anxiety-bubble-03 ------- */
.anxiety-bubble-03 {
  border-right: 2px solid #dae000;
  border-bottom-color: #dae000;
}

@media screen and (min-width: 768px) {
  .anxiety-bubble-03 {
    border-right: 4px solid #dae000;
  }
}

.anxiety-bubble-03::before {
  width: 16px;
  height: 9px;
  bottom: -14px;
  right: 37px;
  border-top: 2px solid #dae000;
  transform: rotate(55deg);
  clip-path: polygon(0 0, 103% 0, 0 100%);
}

.anxiety-bubble-03::after {
  width: 31px;
  height: 7px;
  bottom: -9px;
  right: 29px;
  border-bottom: 2px solid #dae000;
  transform: rotate(25deg);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

@media screen and (min-width: 768px) {
  .anxiety-bubble-03::before {
    width: 60px;
    height: 17px;
    bottom: 42px;
    right: -60px;
    transform: rotate(0deg);
    border-top: 4px solid #dae000;
  }

  .anxiety-bubble-03::after {
    width: 60px;
    height: 20px;
    bottom: 47px;
    right: -54px;
    transform: rotate(-25deg);
    border-bottom: 4px solid #dae000;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
  }
}

.anxiety-bubble-03 img {
  top: 0;
  left: 1.5625vw;
}

/* ------ solution-bubble-02 ------- */
.solution-bubble-02 {
  position: relative;
  width: 80%;
  margin: 0 0 calc(100vw * 0.13 + 50px) auto;
  height: clamp(90px, 28.64vw, 380px);
  background-color: #fff;
  border-left: 2px solid #22ac38;
  border-bottom: 2px solid #22ac38;
  filter: drop-shadow(-8px 8px 5px rgba(140, 140, 140, 0.6));
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .solution-bubble-02 {
    border-left: 4px solid #22ac38;
    border-bottom: 4px solid #22ac38;
  }
}

.solution-bubble-02::before,
.solution-bubble-02::after {
  content: "";
  position: absolute;
  background-color: #fff;
}

.solution-bubble-02::before {
  width: 30px;
  height: 9px;
  top: 57px;
  left: -30px;
  border-top: 2px solid #22ac38;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.solution-bubble-02::after {
  width: 31px;
  height: 7px;
  top: 55px;
  left: -29px;
  border-bottom: 2px solid #22ac38;
  transform: rotate(24deg);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

@media screen and (min-width: 768px) {
  .solution-bubble-02::before {
    width: 60px;
    height: 20px;
    top: 136px;
    left: -59.5px;
    border-top: 4px solid #22ac38;
  }

  .solution-bubble-02::after {
    width: 60px;
    height: 17px;
    top: 130px;
    left: -54px;
    border-bottom: 4px solid #22ac38;
  }
}

.solution-bubble-02 p {
  font-size: clamp(0.9rem, 3.50vw, 3.125rem);
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #fff;
  text-shadow:
    1px 1px 2px #22ac38,
    1px -1px 2px #22ac38,
    -1px 1px 2px #22ac38,
    -1px -1px 2px #22ac38,
    1px 1px 2px rgba(34, 172, 56, 0.7),
    -1px -1px 2px rgba(34, 172, 56, 0.7);
}

@media screen and (min-width: 768px) {
  .solution-bubble-02 p {
    text-shadow:
      1px 1px 1px #22ac38,
      1px -1px 1px #22ac38,
      -1px 1px 1px #22ac38,
      -1px -1px 1px #22ac38,
      6px 6px 20px rgba(34, 172, 56, 0.7),
      -6px 6px 20px rgba(34, 172, 56, 0.7),
      6px -6px 20px rgba(34, 172, 56, 0.7),
      -6px -6px 20px rgba(34, 172, 56, 0.7);
  }
}

.solution-container-02 img {
  position: absolute;
  top: 35%;
  left: -15px;
  width: clamp(80px, 20.83vw, 400px);
  height: auto;
}

@media screen and (min-width: 1280px) {
  .solution-container-02 img {
    left: calc(100vw * (-0.177) + 230px);
  }
}

/* ================================================================== */
/* section-line */
/* ================================================================== */
.section-line {
  width: 83%;
  height: 10px;
}

.right {
  margin: 0 0 0 auto;
  background: linear-gradient(160deg, #fff 0%, #7ccdf4 15%, #0061af 30%, #004d90 60%, #7ccdf4 85%, #004d90 100%);
}

.left {
  margin: 0 auto 0 0;
  background: linear-gradient(340deg, #fff 0%, #7ccdf4 15%, #0061af 30%, #004d90 60%, #7ccdf4 85%, #004d90 100%);
}

/* ================================================================== */
/* explain */
/* ================================================================== */
.bg-explain,
.bg-merit {
  background-image: url(../images/bg-explain.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-explain {
  padding-top: 20px;
  padding-bottom: 50px;
}

@media screen and (min-width: 768px) {
  .bg-explain {
    padding-top: 100px;
    padding-bottom: 150px;
  }
}

/* container-explain-01 */
.container-explain-01 {
  max-width: 1180px;
  width: 100%;
  height: auto;
  background-color: #ff9700;
  border-radius: 15px;
  position: relative;
}

.explain-inner {
  width: 90%;
  margin: 0 auto;
  padding: 20px 0;
}

@media screen and (min-width: 768px) {
  .explain-inner {
    padding: 50px 0;
  }
}

.explain-inner h2 {
  font-size: clamp(1.125rem, 3.9vw, 2.5rem);
  font-weight: normal;
  line-height: 1.75;
  color: #3e3a39;
  border-bottom: 1px solid #3e3a39;
}

.explain-text {
  width: 90%;
  padding: 15px 0;
}

@media screen and (min-width: 768px) {
  .explain-text {
    width: 78%;
    padding: 35px 0 35px 50px;
  }
}

.explain-text p {
  font-size: clamp(0.875rem, 1.875vw, 1.5rem);
  font-weight: normal;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: #3e3a39;
}

.features-box {
  width: 100%;
  background-color: #ffe600;
  border-radius: 10px;
  padding: 15px 0;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .features-box {
    width: 82%;
    padding: 30px 0;
  }
}

.features-box p {
  width: 90%;
  margin: 0 auto;
  font-size: clamp(1rem, 2.18vw, 1.75rem);
  font-weight: bold;
  line-height: 1.5;
  color: #ea5514;
}

.off768 {
  display: none;
}

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

.container-explain-01 img {
  width: clamp(40px, 13.1vw, 100px);
  height: auto;
  position: absolute;
  top: -10px;
  right: -10px;
}

@media screen and (min-width: 768px) {
  .container-explain-01 img {
    width: clamp(200px, 23.1vw, 300px);
    top: 25px;
    right: -50px;
  }
}

@media screen and (min-width: 1280px) {
  .container-explain-01 img {
    right: -100px;
  }
}

/* container-explain-02 */
.flex-explain {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
  margin: 25px 0;
}

@media screen and (min-width: 768px) {
  .flex-explain {
    flex-direction: row;
    margin: 50px 0;
  }
}

@media screen and (min-width: 1280px) {
  .flex-explain {
    justify-content: space-between;
  }
}

.container-explain-02 {
  width: 100%;
  height: clamp(200px, 42.69vw, 400px);
  background-color: #2ea7e0;
  border-radius: 30px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .container-explain-02 {
    width: clamp(300px, 44.53vw, 600px);
    height: clamp(200px, 36.69vw, 400px);
  }
}

.container-explain-02 h2 {
  width: 90%;
  font-size: clamp(1.25rem, 4.17vw, 2.375rem);
  font-weight: 500;
  line-height: 1.75;
  color: #fff;
  border-bottom: 1px solid #fff;
  padding-top: 20px;
}

@media screen and (min-width: 768px) {
  .container-explain-02 h2 {
    font-size: clamp(1.25rem, 2.67vw, 2.375rem);
    padding-top: 50px;
  }
}

.container-explain-02:first-of-type h2 {
  padding-right: 0;
  padding-left: 10%;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .container-explain-02:first-of-type h2 {
    padding-right: 40px;
    text-align: right;
  }
}

.container-explain-02:last-of-type h2 {
  margin: 0 0 0 auto;
  padding-left: 0;
  padding-right: 10%;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .container-explain-02:last-of-type h2 {
    padding-left: 20px;
    text-align: left;
  }
}

.container-explain-02 ul {
  width: 80%;
  margin: 10px auto;
}

@media screen and (min-width: 768px) {
  .container-explain-02 ul {
    margin: 25px auto;
  }
}

.container-explain-02 li {
  font-size: clamp(1rem, 3.125vw, 2rem);
  font-weight: 500;
  line-height: 1.75;
  color: #fff;
  padding-left: 45px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .container-explain-02 li {
    font-size: clamp(1rem, 2.37vw, 2rem);
    padding-left: 45px;
  }
}

.container-explain-02 li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: clamp(10px, 2.6vw, 30px);
  height: clamp(10px, 2.6vw, 30px);
  border-radius: 50%;
  background: #faee00;
}

.container-explain-02 img {
  width: auto;
  height: clamp(40px, 7.81vw, 80px);
  position: absolute;
  bottom: 0;
  right: 40px;
}

/* ================================================================== */
/* example */
/* ================================================================== */
#example {
  overflow: hidden;
}

.container-example {
  width: 95%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 40px;
  margin: 40px auto;
}

@media screen and (min-width: 768px) {
  .container-example {
    flex-direction: row;
    gap: clamp(50px, 6.25vw, 80px);
    margin: 80px auto;
  }
}

.bg-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: clamp(200px, 80vw, 400px);
  height: clamp(200px, 80vw, 400px);
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 
    3px 3px 20px rgba(3, 83, 142, 0.2),
    -3px -3px 20px rgba(3, 83, 142, 0.2);
  position: relative;
}

@media screen and (min-width: 768px) {
  .bg-circle {
    width: clamp(200px, 44.44vw, 600px);
    height: clamp(200px, 44.44vw, 600px);
  }
}

.bg-circle img {
  width: clamp(100px, 26vw, 260px);
  height: auto;
  margin-bottom: 20px;
}

@media screen and (min-width: 640px) {
  .bg-circle img {
    width: clamp(100px, 20.31vw, 260px);
  }
}

.bg-circle h3 {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
  color: #036eb8;
}

@media screen and (min-width: 640px) {
  .bg-circle h3 {
    font-size: 1.5rem;
  }
}

.bg-circle p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  color: #3e3a39;
}

.bg-circle p span {
  font-size: 0.75rem;
}

.bg-circle01,
.bg-circle02,
.bg-circle03,
.bg-circle04 {
  content: "";
  position: absolute;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 
    2px 2px 15px rgba(3, 83, 142, 0.2),
    -2px -2px 15px rgba(3, 83, 142, 0.2);
}

.bg-circle01 {
  bottom: clamp(50px, 19.53vw, 150px);
  left: clamp(-160px, -20.83vw, -50px);
  width: clamp(50px, 13.1vw, 100px);
  height: clamp(50px, 13.1vw, 100px);
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .bg-circle01 {
    bottom: 220px;
    left: -220px;
    width: clamp(50px, 11.1vw, 150px);
    height: clamp(50px, 11.1vw, 150px);
  }
}

.bg-circle02 {
  bottom: 0;
  left: clamp(-120px, -15.625vw, -50px);
  width: clamp(100px, 26.04vw, 200px);
  height: clamp(100px, 26.04vw, 200px);
  z-index: -2;
}

@media screen and (min-width: 768px) {
  .bg-circle02 {
    bottom: 0;
    left: -150px;
    width: clamp(100px, 22.20vw, 300px);
    height: clamp(100px, 22.2vw, 300px);
  }
}

.bg-circle03 {
  top: clamp(50px, 19.53vw, 150px);
  right: clamp(-160px, -20.83vw, -50px);
  width: clamp(50px, 13.1vw, 100px);
  height: clamp(50px, 13.1vw, 100px);
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .bg-circle03 {
    top: 220px;
    right: -220px;
    width: clamp(50px, 11.1vw, 150px);
    height: clamp(50px, 11.1vw, 150px);
  }
}

.bg-circle04 {
  top: 0;
  right: clamp(-120px, -15.625vw, -50px);
  width: clamp(100px, 26.04vw, 200px);
  height: clamp(100px, 26.04vw, 200px);
  z-index: -2;
}

@media screen and (min-width: 768px) {
  .bg-circle04 {
    top: 0;
    right: -150px;
    width: clamp(100px, 22.2vw, 300px);
    height: clamp(100px, 22.2vw, 300px);
  }
}

/* ================================================================== */
/* merit */
/* ================================================================== */
.bg-white {
  background-color: #fff;
  padding: 50px 0;
}

@media screen and (min-width: 768px) {
  .bg-white {
    padding: 100px 0;
  }
}

.merit-head {
  position: relative;
  text-align: center;
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .merit-head {
    margin-bottom: 45px;
  }
}

.merit-head h2 {
  font-size: clamp(0.75rem, 3.7vw, 3.125rem);
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.1em;
  color: #3e3a39;
  display: inline-block;
  position: relative;
}

.merit-head span {
  font-size:clamp(1.5rem, 7.1vw, 6rem);
  color: #ff8500;
}

.merit-head h2::before,
.merit-head h2::after {
  content: "";
  display: inline-block;
  width: clamp(17px, 4.25vw, 53px);
  height: clamp(20px, 5vw, 60px);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: bottom;
}

@media screen and (min-width: 768px) {
  .merit-head h2::before,
  .merit-head h2::after {
    width: clamp(17px, 5.18vw, 53px);
    height: clamp(20px, 5.86vw, 60px);
    vertical-align: middle;
  }
}

.merit-head h2::before {
  background-image: url(../images/img-merithead01.webp);
  margin-right: clamp(5px, 2vw, 40px);
}

.merit-head h2::after {
  background-image: url(../images/img-merithead02.webp);
  margin-left: clamp(5px, 2vw, 40px);
}

.merit-head img {
  max-width: 1095px;
  width: 100%;
  position: absolute;
  bottom: -6px;
  left: 0;
}

@media screen and (min-width: 768px) {
  .merit-head img {
    position: static;
  }
}

.container-merit {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .container-merit {
    flex-direction: row;
    margin-top: 20px;
    gap: 20px;
  }
}

.merit-box {
  width: 95%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #2ea7e0;
  border-radius: 15px;
}

@media screen and (min-width: 768px) {
  .merit-box {
    width: 610px;
    flex-direction: row;
  }
}

.merit-box:nth-of-type(even) {
  justify-content: flex-end;
  flex-direction: row-reverse;
}

.merit-text h3 {
  font-size: clamp(0.9rem, 3.91vw, 1.875rem);
  font-weight: bold;
  line-height: 1.75;
  letter-spacing: 0.025em;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .merit-text h3 {
    font-size: clamp(1rem, 2.31vw, 1.875rem);
  }
}

.container-merit:last-of-type .merit-box:last-of-type .merit-text h3 {
  letter-spacing: -0.1em;
}

.merit-text img {
  width: 148px;
  height: 10px;
}

.merit-text p {
  font-size: clamp(0.6rem, 2.61vw, 1.25rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
  margin-top: clamp(5px, 1vw, 20px);
}

@media screen and (min-width: 768px) {
  .merit-text p {
    font-size: clamp(0.75rem, 1.34vw, 1.25rem);
  }
}

.merit-text h3,
.merit-text p {
  padding-left: clamp(10px, 2.5vw, 30px);
}

@media screen and (min-width: 768px) {
  .merit-text h3,
  .merit-text p {
    padding-left: clamp(10px, 1.8vw, 30px);
  }
}

.merit-img {
  display: flex;
  flex-shrink: 0;
}

.merit-img img {
  width: clamp(145px, 39.9vw, 265px);
  border-radius: 0 15px 15px 0;
}

@media screen and (min-width: 768px) {
  .merit-img img {
    width: clamp(145px, 18.92vw, 265px);
  }
}

.merit-box,
.merit-img img {
  height: clamp(110px, 30.1vw, 200px);
}

@media screen and (min-width: 768px) {
  .merit-box,
  .merit-img img {
    height: clamp(110px, 14.28vw, 200px);
  }
}

.merit-box:nth-of-type(even) .merit-img img {
  border-radius: 15px 0 0 15px;
}

/* case-study */
.case-study {
  margin-top: 80px;
}

.case-study h3 {
  width: 97%;
  font-size: clamp(0.75rem, 3.5vw, 1.25rem);
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.025em;
  color: #3e3a39;
  margin: 0 auto 5px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .case-study h3 {
    font-size: 1.25rem;
    text-align: start;
  }
}

.container-casestudy {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: clamp(7px, 1.1vw, 15px);
}

@media screen and (min-width: 768px) {
  .container-casestudy {
    flex-direction: row;
    gap: clamp(7px, 1.1vw, 15px);
  }
}

/* casestudy-box */
.casestudy-box {
  height: clamp(140px, 30.125vw, 180px);
  background-color: #fff;
  border-width: 5px;
  border-style: solid;
  border-radius: 10px;
  padding: 15px 10px;
  position: relative;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .casestudy-box {
    height: clamp(130px, 14.1vw, 190px);
    padding: 15px clamp(5px, 0.7vw, 10px);
  }
}

.box-case01 {
  width: clamp(150px, 93%, 350px);
  border-color: #036eb8;
}

@media screen and (min-width: 768px) {
  .box-case01 {
    width: clamp(150px, 22.2vw, 300px);
  }
}

.box-case02 {
  width: clamp(180px, 93%, 350px);
  border-color: #ff8500;
}

@media screen and (min-width: 768px) {
  .box-case02 {
    width: clamp(180px, 25.2vw, 340px);
  }
}

.box-case03 {
  width: clamp(250px, 93%, 480px);
  border-color: #ff8500;
}

@media screen and (min-width: 768px) {
  .box-case03 {
    width: clamp(250px, 35.6vw, 480px);
  }
}

.next {
  width: 100px;
  height: 30px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

@media screen and (min-width: 768px) {
  .next {
    width: clamp(15px, 2.22vw, 30px);
    height: clamp(50px, 7.4vw, 100px);
    clip-path: polygon(0 0, 100% 50%, 0% 100%);
  }
}

.blue {
  background-color: #036eb8;
}

.orange {
  background-color: #ff8500;
}

.casestudy-box p {
  font-size: clamp(0.75rem, 3.4vw, 1.125rem);
  font-weight: bold;
  line-height: 1.4;
  color: #3e3a39;
  display: inline-block;
  position: relative;
}

@media screen and (min-width: 768px) {
  .casestudy-box p {
    font-size: clamp(0.65rem, 1.33vw, 1.125rem);
  }
}

.casestudy-box p span {
  font-size: clamp(1rem, 4.57vw, 1.25rem);
}

@media screen and (min-width: 768px) {
  .casestudy-box p span {
    font-size: clamp(1rem, 1.48vw, 1.25rem);
  }
}

.casestudy-box > img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.casestudy-box:first-of-type > img {
  width: clamp(130px, 37.14vw, 230px);
  height: auto;
}

@media screen and (min-width: 768px) {
  .casestudy-box:first-of-type > img {
    width: clamp(130px, 17.04vw, 230px);
  }
}

.casestudy-box:last-of-type > img {
  width: clamp(245px, 70vw, 430px);
  height: auto;
}

@media screen and (min-width: 768px) {
  .casestudy-box:last-of-type > img {
    width: clamp(245px, 31.85vw, 430px);
  }
}

.casestudy-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.casestudy-img img {
  width: clamp(175px, 50vw, 310px);
}

@media screen and (min-width: 768px) {
  .casestudy-img img {
    width: clamp(175px, 22.96vw, 310px);
  }
}

.casestudy-img p {
  font-size: clamp(0.875rem, 4vw, 1.5rem);
  font-weight: bold;
  line-height: 1.7;
  letter-spacing: 0.025em;
  color: #fff;
  font-weight: bold;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .casestudy-img p {
    font-size: clamp(0.875rem, 1.78vw, 1.5rem);
  }
}

.casestudy-img p span {
  font-size: clamp(1.25rem, 5.71vw, 2.5rem);
}

@media screen and (min-width: 768px) {
  .casestudy-img p span {
    font-size: clamp(1.25rem, 2.96vw, 2.5rem);
  }
}

.box-case03 p::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: clamp(10px, 2.86vw, 17px);
  background-image: url(../images/img-casestudy-line.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media screen and (min-width: 768px) {
  .box-case03 p::after {
    height: clamp(10px, 1.26vw, 17px);
  }
}

/* ================================================================== */
/* flow */
/* ================================================================== */
.wrapper-flow {
  width: 100%;
  display: flex;
  background-image: url(../images/bg-top.webp), url(../images/bg-top_sp.webp);
  background-position: top left, bottom left;
  background-repeat: no-repeat, no-repeat;
  background-size: contain, contain;
}

.container-flow {
  width: 100%;
  margin: 50px auto;
}

.flex-flow {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  margin: 35px auto;
}

@media screen and (min-width: 768px) {
  .flex-flow {
    flex-direction: row;
    gap: 80px;
    margin: 0 auto;
  }
}

.flex-flow:nth-of-type(odd) {
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .flex-flow:nth-of-type(odd) {
    flex-direction: row-reverse;
  }
}
/* ------ flow-bubble共通 ------- */
.flow-bubble-left,
.flow-bubble-right {
  position: relative;
  width: clamp(300px, 90%, 570px);
  height: clamp(180px, 46.875vw, 300px);
  background-color: #fff;
  border: 1px solid #59a0c9;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  padding-bottom: clamp(5px, 1.5625vw, 20px);
  filter: drop-shadow(8px 8px 5px rgba(140, 140, 140, 0.6));
}

@media screen and (min-width: 768px) {
  .flow-bubble-left,
  .flow-bubble-right {
    width: 570px;
    height: clamp(225px, 29.3vw, 300px);
  }
}

/* flow-bubble しっぽ  */
.flow-bubble-left::before,
.flow-bubble-left::after,
.flow-bubble-right::before,
.flow-bubble-right::after {
  content: "";
  position: absolute;
  background-color: #fff;
}

/* flow-bubble-left */
.flow-bubble-left::before {
  width: 50px;
  height: 25px;
  bottom: -41px;
  left: 182px;
  border-top: 1px solid #59a0c9;
  transform: rotate(-60deg);
  clip-path: polygon(0 0, 100% 0, 100% 50%);
}

.flow-bubble-left::after {
  width: 72px;
  height: 38px;
  bottom: -25px;
  left: 167px;
  border-bottom: 1px solid #59a0c9;
  transform: rotate(-35deg);
  clip-path: polygon(100% 15%, 100% 100%, 0 100%);
}

@media screen and (min-width: 540px) {
  .flow-bubble-left::before {
    left: 302px;
    transform: rotate(-60deg);
  }

  .flow-bubble-left::after {
    left: 287px;
    transform: rotate(-35deg);
  }
}

@media screen and (min-width: 768px) {
  .flow-bubble-left::before {
    width: 110px;
    height: 40px;
    bottom: 101px;
    left: -97px;
    transform: rotate(-25deg);
  }

  .flow-bubble-left::after {
    width: 100px;
    height: 40px;
    bottom: 117px;
    left: -99px;
    transform: rotate(0deg);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
  }
}

/* flow-bubble-right */
.flow-bubble-right::before {
  width: 50px;
  height: 25px;
  bottom: -41px;
  right: 154px;
  border-top: 1px solid #59a0c9;
  transform: rotate(-60deg);
  clip-path: polygon(0 0, 100% 0, 100% 50%);
}

.flow-bubble-right::after {
  width: 72px;
  height: 38px;
  bottom: -25px;
  right: 146px;
  border-bottom: 1px solid #59a0c9;
  transform: rotate(-35deg);
  clip-path: polygon(100% 15%, 100% 100%, 0 100%);
}

@media screen and (min-width: 540px) {
  .flow-bubble-right::before {
    right: 208px;
    transform: rotate(-60deg);
  }

  .flow-bubble-right::after {
    right: 200px;
    transform: rotate(-35deg);
  }
}

@media screen and (min-width: 768px) {
  .flow-bubble-right::before {
    width: 110px;
    height: 30px;
    bottom: 115px;
    right: -98px;
    transform: rotate(25deg);
    clip-path: polygon(0 0, 103% 0, 0 100%);
  }

  .flow-bubble-right::after {
    width: 100px;
    height: 40px;
    bottom: 120px;
    right: -99px;
    transform: rotate(0deg);
    clip-path: polygon(0 0, 100% 100%, 0 100%);
  }
}

.flex-flow h3 {
  font-size: clamp(1.5rem, 5.2vw, 2.5rem);
  font-weight: normal;
  letter-spacing: 0.05em;
  color: #2ea7e0;
}

@media screen and (min-width: 768px) {
  .flex-flow h3 {
    font-size: clamp(1.5rem, 3.2vw, 2.5rem);
  }
}

.flex-flow p {
  font-size: clamp(0.875rem, 3.125vw, 1.5rem);
  font-weight: normal;
  line-height: 1.67;
  letter-spacing: 0.05em;
  color: #171c61;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .flex-flow p {
    font-size: clamp(1rem, 1.92vw, 1.5rem);
  }
}

.flow-img {
  flex-shrink: 0;
  text-align: center;
}

.flow-img img {
  width: clamp(330px, 90%, 600px);
  height: auto
}

@media screen and (min-width: 768px) {
  .flow-img img {
    width: clamp(330px, 42.96vw, 600px);
    height: clamp(220px, 28.57vw, 400px);
  }
}

/* ================================================================== */
/* footer */
/* ================================================================== */
.wrapper-footer {
  width: 100%;
  height: clamp(340px, 70.2vw, 450px);
  background-color: #ff9100;
  background-image: url(../images/bg-footer.webp);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (min-width: 768px) {
  .wrapper-footer {
    height: 500px;
  }
}

.container-cta {
  width: 100%;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 5;
  will-change: transform;
  transform: translateZ(0);
}

@media screen and (min-width: 768px) {
  .container-cta {
    padding: 20px 0;
  }
}

.container-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(300px, 90vw, 750px);
  height: clamp(60px, 17.14vw, 100px);
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 4px 4px 10px #b55404;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

@media screen and (min-width: 768px) {
  .container-btn {
    width: clamp(300px, 80vw, 1130px);
    height: clamp(100px, 13vw, 140px);
  }
}

.container-btn:hover:active {
  transform: scale(0.98);
}

@media (hover: hover) {
  .container-btn:hover {
    background-color: #e8e8e8;
  }
}

.space-cta-top,
.space-cta-bottom {
  width: 100%;
}

.space-cta-top {
  height: clamp(100px, 28.56vw, 150px);
}

@media screen and (min-width: 768px) {
  .space-cta-top {
    height: 250px;
  }
}

.space-cta-bottom {
  height: 30px;
}

@media screen and (min-width: 768px) {
  .space-cta-bottom {
    height: 80px;
  }
}

.container-btn span {
  font-size: clamp(0.875rem, 3.125vw, 1.5rem);
  font-weight: bold;
  line-height: 1.4;
  color: #ea5514;
}

@media screen and (min-width: 768px) {
  .container-btn span {
    font-size: clamp(1rem, 2.85vw, 2.5rem);
  }
}

/* contact */
.contact-wrapper {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.6);
}

.contact-container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: clamp(10px, 3.26vw, 25px);
  padding: clamp(15px, 3.26vw, 25px) 0;
}

@media screen and (min-width: 768px) {
  .contact-container {
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: clamp(15px, 2.27vw, 25px);
    padding: clamp(15px, 2.27vw, 25px) 0;
  }
}

.contact-head {
  background-color: #ff8500;
  border-radius: 5px;
  padding: 8px;
}

@media screen and (min-width: 768px) {
  .contact-head {
    padding: 15px;
  }
}

.contact-head h3 {
  font-size: clamp(1rem, 2.6vw, 1.5rem);
  font-weight: bold;
  line-height: 1.4;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .contact-head h3 {
    font-size: clamp(1rem, 2.18vw, 1.5rem);
    font-weight: bold;
    line-height: 1.4;
    color: #fff;
  }
}

.contact-name {
  align-self: center;
}

.contact-name p {
  font-size: clamp(1rem, 2.6vw, 1.5rem);
  font-weight: bold;
  line-height: 1.4;
  color: #3e3a39;
}

@media screen and (min-width: 768px) {
  .contact-name p {
    font-size: clamp(1rem, 2.18vw, 1.5rem);
  }
}

.company-address {
  align-self: center;
}

.company-address span,
.company-address p {
  font-weight: bold;
  line-height: 1.4;
  color: #3e3a39;
}

.company-address span {
  font-size: clamp(0.75rem, 2.18vw, 1rem);
}

@media screen and (min-width: 768px) {
  .company-address span {
    font-size: clamp(0.75rem, 1.45vw, 1rem);
  }
}

.company-address p {
  font-size: clamp(0.875rem, 2.25vw, 1.125rem);
}

@media screen and (min-width: 768px) {
  .company-address p {
    font-size: clamp(0.875rem, 1.81vw, 1.125rem);
  }
}

.company-address a {
  color: #3e3a39;
}

@media screen and (min-width: 768px) {
  /* 電話番号　スマホのみ */
  a[href*='tel:'] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

/* container-note */
.container-note {
  max-width: 1180px;
  width: 90%;
  margin: 0 auto;
  text-align: right;
}

.container-note p {
  font-size: 0.675rem;
  font-weight: normal;
  letter-spacing: -0.05em;
  color: #3e3a39;
}

@media screen and (min-width: 768px) {
  .container-note p {
    font-size: 0.875rem;
  }
}