@charset "UTF-8";
/*basic.css RESET*/
/* RESET */
html,
body,
div,
ul,
ol,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
fieldset,
input {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
address,
caption,
cite,
code,
em,
strong,
th {
  font-size: 1em;
  font-weight: normal;
  font-style: normal;
}

ul,
ol {
  list-style: none;
}

fieldset,
img {
  border: none;
}

caption,
th {
  text-align: left;
}

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

input {
  margin: 0;
  padding: 0;
}

textarea {
  font-size: 12px;
}

/* BASE */
html {
  margin-bottom: 1px;
  height: 100%;
  background-color: #FFF;
  font-size: 62.5%;
}

@keyframes slideInLeftCustom {
  0% {
    transform: translateX(-64px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.slideInLeftCustom {
  animation-name: slideInLeftCustom;
}

@keyframes slideInBottomCustom {
  0% {
    transform: translateY(32px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.slideInBottomCustom {
  animation-name: slideInBottomCustom;
}

@keyframes fadeInCenterCustom {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeInCenterCustom {
  animation-name: fadeInCenterCustom;
}

body {
  font-family: "M PLUS 1p", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  background-color: #67ADE5;
  color: #19191D;
}

img {
  width: 100%;
  height: auto;
  border: 0;
  margin: 0;
  padding: 0;
}

.pc_only {
  display: block;
}

.sp_only,
.sp_only.slick-slider {
  display: none;
}

a:-webkit-any-link {
  text-decoration: none;
  color: #202128;
}

.cta_btn {
  background: linear-gradient(to bottom, #F5EF3F, #EBE30E);
  filter: brightness(1);
  border: solid 1px #fff;
  position: relative;
  transition: 0.2s;
  box-shadow: 0px 0px 4px rgba(25, 25, 29, 0.2);
}
.cta_btn::after {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  background-image: url("../img/svg/btn_arrow.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  transition: 0.4s;
  position: absolute;
  top: 50%;
  right: 18px;
}
.cta_btn:hover {
  filter: brightness(1.2);
  transition: 0.4s;
}
.cta_btn:hover::after {
  right: 22px;
}
.cta_btn a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.cta_btn a p {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0.05deg);
  white-space: nowrap;
}
.cta_btn.header_cta_btn {
  height: 56px;
  border-radius: 28px;
  width: 264px;
}
.cta_btn.header_cta_btn p {
  font-size: 1.6rem;
  margin-top: 1px;
}

header {
  width: 100vw;
  height: 100vh;
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
}
header .header_above {
  width: 100%;
  height: 96px;
  padding: 0 2.8vw;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
header .header_above .logo {
  display: block;
  width: 216px;
  height: 96px;
  background-color: #fff;
  opacity: 0.95;
  border: solid 1px #fff;
  border-top: none;
  border-radius: 0 0 20px 20px;
  pointer-events: auto;
  transition: 0.4s;
  box-shadow: 0px 0px 4px rgba(25, 25, 29, 0.2);
}
header .header_above .logo:hover {
  opacity: 0.8;
  transition: 0.4s;
  cursor: pointer;
}
header .header_above .logo a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
header .header_above .logo a img {
  max-width: 176px;
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
}
header .header_above .header_cta_btn {
  pointer-events: auto;
  cursor: pointer;
  margin-bottom: 8px;
}
header .header_below {
  width: 100%;
  height: 88px;
  background-color: rgba(252, 254, 255, 0.9);
  border: solid 1px #fff;
  border-top: none;
  border-radius: 20px 20px 0 0;
  margin: 0 auto;
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: auto;
  padding: 0 10.66%;
}
header .header_below .header_cta_btn {
  width: 100%;
  max-width: 360px;
  margin: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
header .header_below .header_cta_btn p {
  font-size: 1.6rem;
  margin-top: 0;
}

main .fv {
  width: 100%;
  padding: clamp(84px, 11.7vw, 168px) 6.7vw 48px;
  position: relative;
  overflow: hidden;
}
main .fv::after {
  content: "※一部の画像はGoogle ImageFXにより生成されたイメージです。";
  color: #fff;
  font-size: 1.3rem;
  font-weight: 300;
  position: absolute;
  bottom: 0;
  right: 5.6vw;
  margin-bottom: 4px;
  transform: rotate(0.05deg);
}
main .fv .fv_inner {
  width: 100%;
  max-width: 1248px;
  height: 518px;
  margin: 0 auto;
  display: flex;
  justify-content: left;
  position: relative;
}
main .fv .fv_inner::after {
  content: "";
  display: block;
  width: 74vw;
  min-width: 640px;
  max-width: 1056px;
  height: 68vw;
  max-height: 979px;
  position: absolute;
  top: -21vw;
  right: -16vw;
  background-image: url("../img/mv_pc.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
main .fv .fv_inner .txtBox {
  z-index: 1;
}
main .fv .fv_inner .txtBox .worry_img {
  width: 414px;
}
main .fv .fv_inner .txtBox .catchphrase {
  font-size: clamp(40px, 3.33vw, 48px);
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-left: 14px;
  margin-top: 18px;
}
main .fv .fv_inner .txtBox .catchphrase span.bg_white {
  display: inline-block;
  background-color: #fff;
  border-radius: 14px;
  vertical-align: middle;
  box-shadow: -2px -1px 4px rgba(255, 255, 255, 0.2);
  box-shadow: 2px 2px 5px rgba(25, 25, 29, 0.1);
}
main .fv .fv_inner .txtBox .catchphrase span.bg_white:nth-of-type(1) {
  padding: 7px 20px 6px;
}
main .fv .fv_inner .txtBox .catchphrase span.bg_white:nth-of-type(2) {
  padding: 4px 20px;
  margin-top: 14px;
}
main .fv .fv_inner .txtBox .catchphrase span.bg_white .larger_txt {
  font-size: 1.08em;
  font-weight: 900;
  vertical-align: baseline;
}
main .fv .fv_inner .txtBox .catchphrase span.bg_white .fc_yellow {
  margin-right: 2px;
  color: #EBA450;
}
main .fv .fv_inner .txtBox .catchphrase span.bg_white .fc_red {
  color: #E55830;
}
main .fv .fv_inner .txtBox .catchphrase span.bg_white .fc_green {
  color: #24AD63;
}
main .fv .fv_inner .txtBox .catchphrase span.bg_white .fc_blue {
  color: #498ABF;
}
main .fv .fv_inner .txtBox .point {
  max-width: 480px;
  margin-left: 4px;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}
main .fv .fv_inner .txtBox .point p {
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #fff;
  position: relative;
  transform: rotate(0.05deg);
}
main .fv .fv_inner .txtBox .point p::before {
  content: "";
  display: block;
  width: 1px;
  height: 24px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: -12px;
  transform: translateY(-50%) rotate(-15deg);
}
main .fv .fv_inner .txtBox .point p::after {
  content: "";
  display: block;
  width: 1px;
  height: 24px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: -8px;
  transform: translateY(-50%) rotate(15deg);
}
main .fv .fv_inner .txtBox .point .pointList {
  display: flex;
  justify-content: left;
  gap: 0 8px;
  margin-top: 8px;
}
main .fv .fv_inner .txtBox .point .pointList .pointListItem img {
  width: 156px;
  height: 156px;
}
main .fv .fv_cta {
  max-width: 1024px;
  width: 100%;
  background: linear-gradient(to bottom, #51A9FF, #3E96EC);
  border-radius: 20px;
  border: solid 2px #fff;
  margin: 0 auto;
  margin-top: clamp(40px, 3.4vw, 48px);
  padding: 36px 2.8vw;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 2.4vw;
  position: relative;
  z-index: 10;
}
main .fv .fv_cta::before {
  content: "※画像はイメージです";
  display: block;
  position: absolute;
  right: -30px;
  top: -2em;
  font-size: 1.3rem;
  transform: rotate(0.05deg);
  font-weight: 500;
}
main .fv .fv_cta img {
  max-width: 448px;
}
main .fv .fv_cta .cta_btn {
  width: 362px;
  height: 72px;
  border-radius: 36px;
}
main #container {
  width: 100%;
  border-radius: 56px;
  background-color: #fff;
  padding-top: clamp(104px, 10%, 144px);
  padding-bottom: 88px;
  box-shadow: 0px 4px 12px rgba(25, 25, 29, 0.1);
  position: relative;
  z-index: 1;
}
main #container section {
  max-width: 1024px;
  margin: 0 auto;
}
main #container .section_wrapper {
  width: 100%;
  padding: 0 2.8vw;
}
main #container h2,
main #container h3,
main #container h4 {
  color: #292A33;
  letter-spacing: 0.1em;
  font-weight: 800;
}
main #container .section_title {
  font-size: 56px;
  text-align: center;
  position: relative;
  z-index: 1;
}
main #container .section_title::after {
  content: "SECTION";
  font-size: 18.4rem;
  opacity: 0.1;
  letter-spacing: 0.01em;
  font-weight: 800;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
main #container .sticky_wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
main #container .sticky_wrapper .sticky_inner {
  width: 100%;
  height: 30vh;
  position: sticky;
  top: 30vh;
  left: 50%;
  overflow: hidden;
}
main #container .sticky_wrapper .sticky_inner::after {
  content: "";
  display: block;
  width: 110vw;
  min-width: 1584px;
  height: 10.5vw;
  min-height: 158px;
  background: url("../img/svg/color_bg_pc.svg") no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
main #container .problem {
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 40px;
  background-color: rgba(247, 249, 250, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 80px 5.6vw;
  position: relative;
}
main #container .problem::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(247, 249, 250, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  width: 78px;
  height: 36px;
  clip-path: polygon(0 0, 78px 0, 50% 36px);
  margin-top: -2px;
}
main #container .problem .copyright_warning h2 {
  font-size: 36px;
  text-align: center;
  position: relative;
  z-index: 1;
}
main #container .problem .copyright_warning h2::before {
  content: "";
  display: block;
  width: 176px;
  height: 176px;
  background-image: url(../img/svg/warning.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.4;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
main #container .problem .copyright_warning .copyright_warning_inner {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}
main #container .problem .copyright_warning .copyright_warning_inner img {
  max-width: 414px;
  width: 48%;
  height: auto;
  border-radius: 20px;
  margin-right: clamp(24px, 3.2vw, 48px);
  align-self: flex-start;
}
main #container .problem .copyright_warning .copyright_warning_inner .txtBox h3 {
  font-size: 2.8rem;
}
main #container .problem .copyright_warning .copyright_warning_inner .txtBox h3 .letter-spacing {
  margin-left: -0.428em;
}
main #container .problem .copyright_warning .copyright_warning_inner .txtBox h3 .emphasize {
  color: #EB2F1E;
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}
main #container .problem .copyright_warning .copyright_warning_inner .txtBox p {
  letter-spacing: 0.1em;
  margin-top: 12px;
  line-height: 172%;
  transform: rotate(0.05deg);
}
main #container .problem .other_problems {
  width: 100%;
  margin-top: 56px;
  padding-top: 32px;
  position: relative;
}
main #container .problem .other_problems::before {
  content: "";
  display: block;
  width: 102%;
  height: 10px;
  background-image: url(../img/svg/dot_line.svg);
  background-size: auto;
  background-position: center;
  background-repeat: repeat-x;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 0%;
  left: 50%;
}
main #container .problem .other_problems h2 {
  font-size: 3.2rem;
  position: relative;
  z-index: 1;
}
main #container .problem .other_problems h2::before {
  content: "PROBLEM";
  display: block;
  width: 670px;
  font-size: 14.4rem;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.95);
  position: absolute;
  top: 50%;
  right: -5.6vw;
  transform: translateY(-50%);
  overflow-x: hidden;
  z-index: -1;
}
main #container .problem .other_problems h2 .dot_above {
  position: relative;
}
main #container .problem .other_problems h2 .dot_above::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #FDC200;
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-bottom: -2px;
}
main #container .problem .other_problems h2 .letter-spacing_short {
  margin-left: 3px;
}
main #container .problem .other_problems .problemList {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 0 clamp(24px, 3.2vw, 48px);
  margin-top: 48px;
}
main #container .problem .other_problems .problemList .problemListItem {
  display: flex;
  flex-direction: column;
  align-items: center;
}
main #container .problem .other_problems .problemList .problemListItem img {
  max-width: 224px;
}
main #container .problem .other_problems .problemList .problemListItem h3 {
  text-align: center;
  margin-top: 14px;
  font-weight: 550;
  letter-spacing: 0.08em;
  line-height: 154%;
  white-space: nowrap;
  transform: rotate(0.05deg);
}
main #container .problem .other_problems .problemList .problemListItem:nth-of-type(2) {
  margin-top: 32px;
}
main #container .solution {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 56px;
  position: relative;
  z-index: 1;
}
main #container .solution::before {
  content: "SOLUTION";
  font-size: 18.4rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: rgba(101, 169, 224, 0.1);
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
main #container .solution img {
  max-width: 360px;
  margin-right: 40px;
  margin-left: 56px;
}
main #container .solution .titleBox {
  margin-top: 52px;
}
main #container .solution .titleBox h2 {
  font-size: 3rem;
  font-weight: 550;
  line-height: 168%;
  white-space: nowrap;
}
main #container .solution .titleBox h2 .margin_adjust {
  display: block;
  margin-top: 12px;
}
main #container .solution .titleBox h2 .margin_adjust .txt_medium {
  font-size: 4rem;
  font-weight: 800;
}
main #container .solution .titleBox h2 .margin_adjust .txt_large {
  font-size: 6.4rem;
  font-weight: 800;
  margin: 0 3px 0 4px;
}
main #container .solution .titleBox h2 .margin_adjust .letter-spacing {
  margin-left: -8px;
}
main #container .solution .titleBox h2 .margin_adjust .fc_light_blue {
  color: #1B96E0;
}
main #container .data {
  border-radius: 40px;
  background-color: #fff;
  box-shadow: 0px 0px 12px rgba(134, 184, 224, 0.2);
  position: relative;
  margin-top: 96px;
  padding: 56px 0 80px;
}
main #container .data::before {
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(../img/svg/data_icon.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
main #container .data::after {
  content: "※出典：[Spear Education｜Engaging Patients with Your Dental Waiting Room TV（2023年）]";
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(25, 25, 29, 0.8);
  position: absolute;
  bottom: 0;
  left: 16.8%;
  margin-bottom: 20px;
  transform: rotate(0.05deg);
}
main #container .data .data_inner {
  max-width: 684px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
main #container .data .data_inner .data_topic {
  font-size: 2.4rem;
  letter-spacing: 0.11em;
  line-height: 1;
  color: #1B96E0;
  margin-top: 16px;
  position: relative;
}
main #container .data .data_inner .data_topic::before {
  content: "";
  display: block;
  height: 28px;
  width: 1.5px;
  background-color: #1B96E0;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%) rotate(-15deg);
  margin-left: -18px;
}
main #container .data .data_inner .data_topic::after {
  content: "";
  display: block;
  height: 28px;
  width: 1.5px;
  background-color: #1B96E0;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%) rotate(15deg);
  margin-right: -18px;
}
main #container .data .data_inner .data_desc {
  margin-top: 32px;
  letter-spacing: 0.08em;
  color: rgba(25, 25, 29, 0.9);
  line-height: 172%;
  transform: rotate(0.05deg);
}
main #container .data .data_inner .data_desc .fw_bold {
  font-weight: 800;
  color: rgb(25, 25, 29);
}
main #container .data .data_inner .data_desc .fc_light_blue {
  color: #1B96E0;
}
main #container .data .data_inner img {
  margin-top: 36px;
}
main #container .feature_wrapper {
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 0 2.8vw;
}
main #container .feature_wrapper .wavy_bg {
  width: 100%;
  height: 100%;
  background-color: #65A9E0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
main #container .feature_wrapper .wavy_bg::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  margin-bottom: -20px;
  width: 100%;
  height: 144px;
  background-image: url(../img/svg/feature_above.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
main #container .feature_wrapper .wavy_bg::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: -20px;
  width: 100%;
  height: 144px;
  background-image: url(../img/svg/feature_below.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
main #container .feature_wrapper .feature {
  width: 100%;
  margin-top: 200px;
  padding-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
main #container .feature_wrapper .feature .section_title {
  color: #fff;
  margin-top: 64px;
}
main #container .feature_wrapper .feature .section_title::after {
  content: "FEATURE";
  color: #fff;
}
main #container .feature_wrapper .feature .featureList {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px 0;
  margin-top: 96px;
}
main #container .feature_wrapper .feature .featureList .featureListItem {
  display: flex;
  justify-content: space-between;
  padding: 56px 7%;
  border-radius: 32px;
  background-color: #fff;
  box-shadow: 8px 10px 0px rgba(74, 134, 181, 0.8);
}
main #container .feature_wrapper .feature .featureList .featureListItem .txtBox {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: left;
  margin-top: 4px;
  margin-right: 5.46%;
}
main #container .feature_wrapper .feature .featureList .featureListItem .txtBox .number {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  height: 24px;
  padding: 0 8px;
  border-radius: 12px;
  background-color: #19191D;
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}
main #container .feature_wrapper .feature .featureList .featureListItem .txtBox .item_title {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 136%;
  margin-top: 12px;
}
main #container .feature_wrapper .feature .featureList .featureListItem .txtBox .item_txt {
  margin-top: 18px;
  line-height: 180%;
  letter-spacing: 0.08em;
  transform: rotate(0.05deg);
}
main #container .feature_wrapper .feature .featureList .featureListItem img {
  align-self: flex-start;
  display: block;
}
main #container .feature_wrapper .feature .featureList .featureListItem:nth-of-type(1) .txtBox .number {
  background-color: #F7B361;
}
main #container .feature_wrapper .feature .featureList .featureListItem:nth-of-type(1) img {
  max-width: 404px;
}
main #container .feature_wrapper .feature .featureList .featureListItem:nth-of-type(2) .txtBox .number {
  background-color: #F1653E;
}
main #container .feature_wrapper .feature .featureList .featureListItem:nth-of-type(2) img {
  max-width: 416px;
}
main #container .feature_wrapper .feature .featureList .featureListItem:nth-of-type(3) .txtBox .number {
  background-color: #30B96F;
}
main #container .feature_wrapper .feature .featureList .featureListItem:nth-of-type(3) img {
  max-width: 432px;
  border-radius: 10px;
}
main #container .feature_wrapper .feature .featureList .featureListItem:nth-of-type(4) .txtBox .number {
  background-color: #5797CB;
}
main #container .feature_wrapper .feature .featureList .featureListItem:nth-of-type(4) img {
  max-width: 432px;
  margin-right: -1.56%;
}
main #container .feature_wrapper .feature .featureList .featureListItem:nth-of-type(5) .txtBox .number {
  background-color: #F7B361;
}
main #container .feature_wrapper .feature .featureList .featureListItem:nth-of-type(5) img {
  max-width: 468px;
  margin-right: -2.73%;
}
main #container .middle_cta {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
  margin-top: 144px;
  padding: 72px 0 68px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
main #container .middle_cta .middle_cta_bg_sp {
  display: none;
}
main #container .middle_cta::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1013px;
  height: 390px;
  background-image: url("../img/svg/middle_cta_bg_pc.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}
main #container .middle_cta .txtBox {
  margin-left: 13.8%;
  margin-right: 2.2%;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
main #container .middle_cta .txtBox h3 {
  font-size: 2.6rem;
  color: #fff;
  text-shadow: 0px 0px 4px rgba(42, 61, 135, 0.2);
  text-align: center;
  line-height: 144%;
  position: relative;
}
main #container .middle_cta .txtBox h3::before {
  content: "";
  display: block;
  width: 68px;
  height: 1.5px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%) rotate(75deg);
  margin-left: -20px;
}
main #container .middle_cta .txtBox h3::after {
  content: "";
  display: block;
  width: 68px;
  height: 1.5px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: -64px;
  transform: translate(-50%, -50%) rotate(-75deg);
  margin-right: -20px;
}
main #container .middle_cta .txtBox h3 .fc_colored {
  text-shadow: 0px 0px 4px rgba(255, 255, 255, 0.4);
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
  font-weight: 900;
}
main #container .middle_cta .txtBox h3 .fc_yellow {
  color: #EBA450;
}
main #container .middle_cta .txtBox h3 .fc_red {
  color: #E55830;
  font-size: 1.05em;
}
main #container .middle_cta .txtBox h3 .fc_green {
  color: #24AD63;
  font-size: 1.05em;
}
main #container .middle_cta .txtBox h3 .fc_blue {
  color: #498ABF;
  margin-right: 2px;
  font-size: 1.05em;
}
main #container .middle_cta .txtBox h3 .letter-spacing {
  margin-left: -4px;
}
main #container .middle_cta .txtBox p {
  text-align: center;
  color: rgba(41, 42, 51, 0.9);
  margin-top: 14px;
  line-height: 168%;
  letter-spacing: 0.08em;
}
main #container .middle_cta .txtBox > p {
  transform: rotate(0.05deg);
}
main #container .middle_cta .txtBox .cta_btn {
  max-width: 412px;
  width: 110%;
  height: 64px;
  border-radius: 32px;
  margin-top: 20px;
}
main #container .middle_cta .txtBox .cta_btn p {
  margin-top: 1px;
}
main #container .middle_cta img {
  max-width: 428px;
  margin-right: -32px;
  margin-top: -20px;
}
main #container .flow {
  margin-top: 16px;
  padding-top: 56px;
  padding-bottom: 64px;
  background-color: rgba(255, 255, 255, 0.8);
  border: solid 2px #fff;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 32px;
}
main #container .flow .section_title {
  margin-top: 48px;
}
main #container .flow .section_title::after {
  content: "FLOW";
  color: #65A9E0;
}
main #container .flow .flowList {
  margin: 0 auto;
  margin-top: 72px;
  max-width: 684px;
  display: flex;
  flex-direction: column;
  gap: 32px 0;
}
main #container .flow .flowList .flowListItem {
  display: flex;
  justify-content: left;
  align-items: start;
}
main #container .flow .flowList .flowListItem .img_wrap {
  max-width: 160px;
  height: 160px;
  margin-right: 32px;
  position: relative;
  z-index: 1;
}
main #container .flow .flowList .flowListItem .img_wrap img {
  width: 100%;
}
main #container .flow .flowList .flowListItem .img_wrap::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 100%;
  left: 50%;
  margin-top: 16px;
  transform: translate(-50%, -50%) rotate(90deg);
  background-image: url(../img/svg/btn_arrow.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
main #container .flow .flowList .flowListItem .txtBox {
  margin-top: 6px;
}
main #container .flow .flowList .flowListItem .txtBox .step_number {
  color: #1B96E0;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
}
main #container .flow .flowList .flowListItem .txtBox .step_number span {
  font-size: 1.8rem;
  margin-left: 5px;
}
main #container .flow .flowList .flowListItem .txtBox h3 {
  font-size: 2.4rem;
  margin-top: 2px;
}
main #container .flow .flowList .flowListItem .txtBox .flow_txt {
  font-size: 1.7rem;
  letter-spacing: 0.08em;
  line-height: 168%;
  margin-top: 4px;
  transform: rotate(0.05deg);
}
main #container .flow .flowList .flowListItem:last-of-type .img_wrap::after {
  display: none;
}
main #container .price {
  margin-top: 104px;
}
main #container .price .section_title::after {
  content: "PRICE";
  color: #65A9E0;
}
main #container .price .price_inner {
  width: 100%;
  border: solid 4px #1C9BE8;
  background-color: #fff;
  position: relative;
  border-radius: 40px;
  margin-top: 80px;
  padding: 0 16.6% 40px;
  box-shadow: 0px 0px 12px rgba(134, 184, 224, 0.2);
}
main #container .price .price_inner::before {
  content: "料金は1ヶ月たったの3,500円！";
  display: block;
  width: 48.6%;
  height: 52px;
  border-radius: 26px;
  background-color: #1C9BE8;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 52px;
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
}
main #container .price .price_inner .above {
  display: flex;
  justify-content: space-between;
  gap: 0 10%;
  margin-top: 64px;
  position: relative;
}
main #container .price .price_inner .above::after {
  content: "";
  display: flex;
  width: 48px;
  height: 48px;
  background-image: url(../img/svg/plus.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
main #container .price .price_inner .above > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
main #container .price .price_inner .above > div img {
  width: 240px;
}
main #container .price .price_inner .above .cost_title {
  font-size: 2.8rem;
  letter-spacing: 0.08em;
  color: #353538;
}
main #container .price .price_inner .above .initial_cost img {
  margin-top: 20px;
}
main #container .price .price_inner .above .initial_cost .cost_txt {
  font-size: 8rem;
  font-weight: 800;
  color: #1B96E0;
  line-height: 1;
  margin-top: 28px;
  margin-left: 10px;
}
main #container .price .price_inner .above .initial_cost .cost_txt .txt_after {
  font-size: 3.2rem;
  color: #19191D;
  margin-left: -4px;
}
main #container .price .price_inner .above .monthly_cost {
  margin-right: -5.7%;
}
main #container .price .price_inner .above .monthly_cost img {
  margin-top: 10px;
}
main #container .price .price_inner .above .monthly_cost .cost_txt_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
main #container .price .price_inner .above .monthly_cost .cost_txt_wrap .cost_txt {
  font-size: 8rem;
  font-weight: 800;
  color: #1B96E0;
  line-height: 1;
  margin-top: 0;
  letter-spacing: 0.02em;
  position: relative;
}
main #container .price .price_inner .above .monthly_cost .cost_txt_wrap .cost_txt .txt_before {
  font-size: 3.2rem;
  font-weight: 600;
  color: #19191D;
  margin-right: 2px;
}
main #container .price .price_inner .above .monthly_cost .cost_txt_wrap .cost_txt .txt_after {
  font-size: 3.2rem;
  color: #19191D;
  margin-left: 2px;
}
main #container .price .price_inner .above .monthly_cost .cost_txt_wrap .cost_txt::after {
  content: "（税抜）";
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  line-height: 1;
  font-weight: 500;
  position: absolute;
  top: 100%;
  right: 0;
  color: #19191D;
  opacity: 0.9;
  margin-right: -6px;
}
main #container .price .price_inner .above .monthly_cost .cost_txt_wrap .annual_cost {
  margin-left: 24px;
  font-size: 2rem;
  font-weight: 600;
}
main #container .price .price_inner .above .monthly_cost .cost_txt_wrap .annual_cost span {
  font-size: 2.6rem;
  font-weight: 800;
  margin-right: 2px;
}
main #container .price .price_inner .below {
  margin-top: 40px;
  padding-top: 36px;
  position: relative;
}
main #container .price .price_inner .below::before {
  content: "";
  display: block;
  width: 117%;
  height: 10px;
  background-image: url(../img/svg/dot_line.svg);
  background-size: auto;
  background-position: center;
  background-repeat: repeat-x;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 0%;
  left: 50%;
}
main #container .price .price_inner .below.checkList {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
  width: 100%;
}
main #container .price .price_inner .below.checkList .checkListItem {
  display: flex;
  justify-content: start;
  align-items: flex-start;
}
main #container .price .price_inner .below.checkList .checkListItem img {
  width: 22px;
  height: 22px;
  margin-right: 6px;
  margin-top: 4px;
}
main #container .price .price_inner .below.checkList .checkListItem p {
  font-size: 2rem;
  letter-spacing: 0.08em;
  line-height: 144%;
  transform: rotate(0.05deg);
}

footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  overflow: hidden;
}
footer .bottom_cta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 0 56px;
  overflow: hidden;
}
footer .bottom_cta img {
  max-width: 240px;
}
footer .bottom_cta .cta_txt {
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  line-height: 180%;
  color: #fff;
  text-shadow: 0px 0px 4px rgba(42, 61, 135, 0.2);
  font-weight: 700;
  text-align: center;
  margin-top: 4px;
  position: relative;
}
footer .bottom_cta .cta_txt::before {
  content: "";
  display: block;
  height: 76px;
  width: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%) rotate(-15deg);
  margin-left: -24px;
}
footer .bottom_cta .cta_txt::after {
  content: "";
  display: block;
  height: 76px;
  width: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%) rotate(15deg);
  margin-right: -24px;
}
footer .bottom_cta .cta_btn {
  width: 440px;
  height: 64px;
  border-radius: 32px;
  margin-top: 20px;
}
footer .bottom_cta::after {
  content: "KIDS CORNER DVD KIDS CORNER DVD KIDS CORNER DVD KIDS CORNER DVD KIDS CORNER DVD KIDS CORNER DVD KIDS";
  display: block;
  width: 200vw;
  height: 560px;
  max-width: 2560px;
  font-size: 200px;
  font-weight: 800;
  line-height: 112%;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.1);
  text-align: center;
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
footer .footer_inner {
  width: 100%;
  background-color: #fff;
}
footer .footer_inner .footer_logo {
  display: block;
  width: 184px;
  height: 54px;
  margin: 0 auto;
  margin-top: 24px;
  transition: 0.4s;
}
footer .footer_inner .footer_logo img {
  width: 100%;
}
footer .footer_inner .footer_logo:hover {
  opacity: 0.8;
  transition: 0.4s;
}
footer .footer_inner .service_company {
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  margin-top: 12px;
  transform: rotate(0.05deg);
}
footer .footer_inner .ad_number {
  font-size: 1.3rem;
  color: rgba(25, 25, 29, 0.6);
  margin-top: 4px;
}
footer .footer_inner .copyright {
  display: block;
  width: 100%;
  height: 24px;
  background-color: rgb(25, 25, 29);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  opacity: 0.8;
  margin-top: 4px;
  line-height: 24px;
  transform: rotate(0.05deg);
}

@media screen and (min-width: 1440px) {
  main .fv .fv_inner::after {
    top: -302px;
    right: -230px;
    background-image: url("../img/mv_pc.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}
@media screen and (max-width: 1025px) {
  main #container .middle_cta {
    margin-top: 240px;
    height: -moz-fit-content;
    height: fit-content;
    padding: 64px 0 56px;
    flex-direction: column;
  }
  main #container .middle_cta::after {
    max-width: 520px;
    width: 100%;
    height: 600px;
    top: 32%;
    background-image: url("../img/svg/middle_cta_bg_sp.svg");
  }
  main #container .middle_cta .txtBox {
    margin: 0;
  }
  main #container .middle_cta img {
    max-width: 320px;
    margin-right: -25%;
    margin-top: -40px;
  }
}
@media screen and (max-width: 961px) {
  main .fv {
    padding: 0 0 48px;
  }
  main .fv .fv_inner {
    max-width: none;
    height: -moz-fit-content;
    height: fit-content;
    flex-direction: column;
    z-index: 1;
  }
  main .fv .fv_inner::after {
    display: none;
  }
  main .fv .fv_inner > .sp_only {
    display: block;
    width: 100vw;
    max-width: 880px;
    margin: 0;
    position: absolute;
    top: 0;
    right: 0;
    margin-right: -16%;
    margin-top: -20%;
  }
  main .fv .fv_inner .txtBox {
    margin-top: 18%;
  }
  main .fv .fv_inner .txtBox .worry_img {
    min-width: 330px;
    max-width: 480px;
    width: 85%;
    margin-left: calc(5.33vw - 12px);
  }
  main .fv .fv_inner .txtBox .catchphrase {
    font-size: 45px;
    margin: 0;
    margin-top: 10px;
    margin-left: 5.33%;
  }
  main .fv .fv_inner .txtBox .catchphrase span.bg_white {
    border-radius: 13px;
  }
  main .fv .fv_inner .txtBox .catchphrase span.bg_white:nth-of-type(odd) {
    padding: 4px 12px 2px;
  }
  main .fv .fv_inner .txtBox .catchphrase span.bg_white:nth-of-type(2) {
    padding: 3px 12px 2px;
    margin-top: 14px;
  }
  main .fv .fv_inner .txtBox .point {
    max-width: none;
    margin: 0 auto;
    margin-top: 24px;
  }
  main .fv .fv_inner .txtBox .point p {
    font-size: 1.7rem;
  }
  main .fv .fv_inner .txtBox .point .pointList {
    justify-content: center;
    gap: 0;
  }
  main .fv .fv_inner .txtBox .point .pointList .pointListItem img {
    width: 36.8vw;
    height: 36.8vw;
    max-width: 176px;
    max-height: 176px;
  }
  main .fv .fv_inner .txtBox .point .pointList .pointListItem:nth-of-type(2) img {
    margin: 0 6px;
  }
  main .fv .fv_cta {
    max-width: none;
    width: 89.34%;
    margin-top: 28px;
    padding: 28px 2.8vw;
    flex-direction: column;
  }
  main .fv .fv_cta .cta_btn {
    width: 452px;
    margin-top: 16px;
  }
  main #container {
    border-radius: 48px;
    padding-top: 104px;
  }
  main #container section {
    max-width: 720px;
  }
  main #container .section_wrapper {
    padding: 0 5.33vw;
  }
  main #container .section_title {
    font-size: 46px;
  }
  main #container .section_title::after {
    font-size: 16rem;
  }
  main #container .problem {
    border-radius: 32px;
    padding: 64px min(5%, 32px) 48px;
  }
  main #container .problem .copyright_warning .sec_title {
    font-size: 3.4rem;
  }
  main #container .problem .copyright_warning .copyright_warning_inner {
    margin-top: 36px;
    flex-direction: column;
    align-items: center;
  }
  main #container .problem .copyright_warning .copyright_warning_inner img {
    max-width: 520px;
    width: 100%;
    border-radius: 15px;
    margin: 0 auto;
  }
  main #container .problem .copyright_warning .copyright_warning_inner .txtBox {
    margin-top: 16px;
    max-width: 520px;
  }
  main #container .problem .copyright_warning .copyright_warning_inner .txtBox h3 {
    font-size: 2.8rem;
  }
  main #container .problem .copyright_warning .copyright_warning_inner .txtBox p {
    margin-top: 8px;
  }
  main #container .problem .other_problems {
    max-width: 520px;
    margin: 0 auto;
    margin-top: 40px;
    padding-top: 28px;
  }
  main #container .problem .other_problems h2 {
    font-size: 3.2rem;
  }
  main #container .problem .other_problems h2::before {
    width: 667px;
    font-size: 13.6rem;
    right: auto;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
  }
  main #container .problem .other_problems h2 .dot_above::before {
    width: 5px;
    height: 5px;
  }
  main #container .problem .other_problems .problemList {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 32px;
    padding: 0 3.4%;
  }
  main #container .problem .other_problems .problemList .problemListItem {
    max-width: 200px;
  }
  main #container .problem .other_problems .problemList .problemListItem img {
    max-width: 224px;
  }
  main #container .problem .other_problems .problemList .problemListItem:nth-of-type(2) {
    margin-top: 80px;
    margin-right: -2%;
  }
  main #container .problem .other_problems .problemList .problemListItem:nth-of-type(3) {
    margin-left: 11%;
    margin-top: -64px;
  }
  main #container .problem .other_problems .problemList .problemListItem p {
    white-space: nowrap;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 144%;
  }
  main #container .solution {
    flex-direction: column;
  }
  main #container .solution::before {
    display: block;
    width: 100vw;
    height: 274px;
    text-align: center;
    font-size: 16.4rem;
    top: 55%;
    left: 50%;
    overflow-x: hidden;
  }
  main #container .solution img {
    width: 72%;
    margin: 0;
    margin-right: -40%;
  }
  main #container .solution .titleBox {
    margin: 0;
    margin-left: -22%;
    margin-top: -80px;
  }
  main #container .solution .titleBox h2 {
    font-size: 2.8rem;
  }
  main #container .solution .titleBox h2 .margin_adjust .txt_medium {
    font-size: 3.6rem;
  }
  main #container .solution .titleBox h2 .margin_adjust .txt_large {
    margin: 0 2px 0 3px;
  }
  main #container .solution .titleBox h2 .margin_adjust .letter-spacing {
    margin-left: -6px;
  }
  main #container .data {
    border-radius: 32px;
    margin-top: 104px;
  }
  main #container .data::before {
    width: 72px;
    height: 72px;
  }
  main #container .data::after {
    left: 5.33vw;
    margin-bottom: 16px;
  }
  main #container .data .data_inner {
    max-width: 520px;
  }
  main #container .data .data_inner .data_topic {
    letter-spacing: 0.1em;
    margin-top: 14px;
  }
  main #container .data .data_inner .data_topic::before {
    height: 26px;
    margin-left: -16px;
  }
  main #container .data .data_inner .data_topic::after {
    height: 26px;
    margin-right: -16px;
  }
  main #container .data .data_inner .data_desc {
    margin-top: 28px;
    line-height: 168%;
  }
  main #container .data .data_inner img {
    margin-top: 32px;
  }
  main #container .feature_wrapper {
    padding: 0 5.33vw;
  }
  main #container .feature_wrapper .feature {
    margin-top: 184px;
    padding-bottom: 56px;
  }
  main #container .feature_wrapper .feature .section_title {
    font-size: 5.4rem;
    color: #fff;
    margin-top: 56px;
  }
  main #container .feature_wrapper .feature .featureList {
    gap: 28px 0;
    margin-top: 72px;
  }
  main #container .feature_wrapper .feature .featureList .featureListItem {
    flex-direction: column-reverse;
    justify-content: start;
    min-height: 584px;
    padding: 48px 5.7% 48px;
    border-radius: 28px;
    box-shadow: 6px 8px 0px rgba(74, 134, 181, 0.8);
  }
  main #container .feature_wrapper .feature .featureList .featureListItem .none_1024 {
    display: none;
  }
  main #container .feature_wrapper .feature .featureList .featureListItem .txtBox {
    max-width: 480px;
    margin: 0 auto;
  }
  main #container .feature_wrapper .feature .featureList .featureListItem .txtBox .item_title {
    font-size: 3.2rem;
    margin-top: 8px;
  }
  main #container .feature_wrapper .feature .featureList .featureListItem .txtBox .item_txt {
    margin-top: 8px;
  }
  main #container .feature_wrapper .feature .featureList .featureListItem img {
    margin: 0 auto;
    margin-bottom: 20px;
  }
  main #container .feature_wrapper .feature .featureList .featureListItem:nth-of-type(1) img {
    max-width: 480px;
  }
  main #container .feature_wrapper .feature .featureList .featureListItem:nth-of-type(2) img {
    max-width: 488px;
  }
  main #container .feature_wrapper .feature .featureList .featureListItem:nth-of-type(3) img {
    max-width: 480px;
  }
  main #container .feature_wrapper .feature .featureList .featureListItem:nth-of-type(4) img {
    max-width: 480px;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  main #container .feature_wrapper .feature .featureList .featureListItem:nth-of-type(5) img {
    max-width: 480px;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  main #container .flow {
    padding-top: 32px;
    padding-bottom: 56px;
    border-radius: 28px;
    margin-top: 0;
  }
  main #container .flow .section_title {
    margin-top: 48px;
    font-size: 4.6rem;
  }
  main #container .flow .flowList {
    margin-top: 80px;
    max-width: 520px;
  }
  main #container .flow .flowList .flowListItem .img_wrap {
    max-width: 144px;
    height: 144px;
    margin-right: 24px;
  }
  main #container .flow .flowList .flowListItem .img_wrap::after {
    width: 10px;
    height: 10px;
  }
  main #container .flow .flowList .flowListItem .txtBox .step_number {
    font-weight: 800;
  }
  main #container .flow .flowList .flowListItem .txtBox .step_number span {
    font-size: 1.7rem;
    margin-left: 4px;
  }
  main #container .flow .flowList .flowListItem .txtBox h3 {
    font-size: 2.2rem;
    margin-top: 1px;
  }
  main #container .flow .flowList .flowListItem .txtBox .flow_txt {
    margin-top: 2px;
  }
  main #container .price {
    margin-top: 144px;
  }
  main #container .price .price_inner {
    border: solid 3px #1C9BE8;
    border-radius: 32px;
    margin-top: 72px;
    padding: 0 3.4% 40px;
  }
  main #container .price .price_inner::before {
    width: 420px;
    height: 48px;
    border-radius: 24px;
    font-size: 2.1rem;
    line-height: 48px;
  }
  main #container .price .price_inner .above {
    flex-direction: column;
    justify-content: start;
    gap: 32px 0;
  }
  main #container .price .price_inner .above::after {
    display: none;
  }
  main #container .price .price_inner .above > div img {
    width: 240px;
  }
  main #container .price .price_inner .above .initial_cost .cost_txt {
    margin-top: 16px;
    margin-left: 12px;
  }
  main #container .price .price_inner .above .sp_only {
    display: block;
    width: 40px;
    margin: 0 auto;
    margin-top: 8px;
  }
  main #container .price .price_inner .above .monthly_cost {
    margin: 0;
  }
  main #container .price .price_inner .above .monthly_cost img {
    margin-top: 4px;
  }
  main #container .price .price_inner .below {
    margin-top: 40px;
    padding-top: 28px;
    position: relative;
  }
  main #container .price .price_inner .below::before {
    width: 110%;
  }
  main #container .price .price_inner .below.checkList {
    max-width: 520px;
    margin: 0 auto;
    margin-top: 32px;
  }
}
@media screen and (max-width: 769px) {
  body {
    font-size: 1.7rem;
  }
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
  .sp_only.slick-slider {
    display: block;
  }
  .cta_btn::after {
    display: none;
  }
  .cta_btn a p {
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: 0.06em;
  }
  header .header_above {
    height: 68px;
  }
  header .header_above .logo {
    width: 156px;
    height: 80px;
    border-radius: 0 0 15px 15px;
    pointer-events: auto;
    transition: 0.4s;
    box-shadow: 0px 0px 4px rgba(25, 25, 29, 0.2);
  }
  header .header_above .logo:hover {
    opacity: 0.8;
    transition: 0.4s;
    cursor: pointer;
  }
  header .header_above .logo a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
  }
  header .header_above .logo a img {
    max-width: 132px;
    position: absolute;
    left: 50%;
    bottom: 8px;
    transform: translateX(-50%);
  }
  main .fv {
    padding-bottom: 56px;
    overflow-x: hidden;
  }
  main .fv::after {
    content: "※一部の画像はGoogle ImageFXにより生成されたイメージです。";
    font-size: 1.1rem;
    right: auto;
    left: 5.33vw;
    margin-right: 5.33vw;
  }
  main .fv .fv_inner {
    align-items: flex-start;
  }
  main .fv .fv_inner > .sp_only {
    position: absolute;
    max-width: 960px;
    width: 140%;
    min-width: 480px;
    margin: 0 auto;
    margin-top: -30%;
    right: -24%;
  }
  main .fv .fv_inner .txtBox {
    max-width: 648px;
    margin: 0 auto;
    margin-top: 64%;
    position: relative;
  }
  main .fv .fv_inner .txtBox::before {
    content: "※画像はイメージです";
    display: block;
    position: absolute;
    right: 24px;
    top: -1.4em;
    font-size: 1.3rem;
    transform: rotate(0.05deg);
    font-weight: 500;
    text-shadow: 1px 1px 0px #ffffff, -1px 1px 0px #ffffff, 1px -1px 0px #ffffff, -1px -1px 0px #ffffff, 1px 0px 0px #ffffff, 0px 1px 0px #ffffff, -1px 0px 0px #ffffff, 0px -1px 0px #ffffff;
  }
  main .fv .fv_inner .txtBox .worry_img {
    max-width: 506px;
    width: 85%;
  }
  main .fv .fv_inner .txtBox .catchphrase {
    font-size: clamp(31px, 8vw, 48px);
    margin: 0;
    margin-top: 6px;
    margin-left: 5.33%;
  }
  main .fv .fv_inner .txtBox .catchphrase span.bg_white {
    border-radius: 13px;
  }
  main .fv .fv_inner .txtBox .catchphrase span.bg_white:nth-of-type(odd) {
    padding: 4px 12px 2px;
  }
  main .fv .fv_inner .txtBox .catchphrase span.bg_white:nth-of-type(2) {
    padding: 3px 12px 2px;
    margin-top: 8px;
  }
  main .fv .fv_inner .txtBox .catchphrase span.bg_white:nth-of-type(3) {
    margin-top: 8px;
  }
  main .fv .fv_inner .txtBox .point {
    max-width: 560px;
    margin-top: 16px;
  }
  main .fv .fv_inner .txtBox .point p {
    font-size: 1.6rem;
  }
  main .fv .fv_inner .txtBox .point .pointList {
    justify-content: center;
    gap: 0;
  }
  main .fv .fv_inner .txtBox .point .pointList .pointListItem img {
    width: 36.8vw;
    height: 36.8vw;
  }
  main .fv .fv_inner .txtBox .point .pointList .pointListItem:nth-of-type(2) img {
    margin: 0 -18px;
    margin-top: -10px;
  }
  main .fv .fv_cta {
    margin: 0 auto;
    margin-top: 20px;
    padding: 20px 5.33vw;
    gap: 0 2.4vw;
    position: relative;
    z-index: 10;
  }
  main .fv .fv_cta::before {
    display: none;
  }
  main .fv .fv_cta img {
    max-width: 344px;
    width: 74%;
  }
  main .fv .fv_cta .cta_btn {
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
    margin-top: 16px;
    height: 56px;
    border-radius: 28px;
  }
  main #container {
    border-radius: 32px;
    padding: max(56px, 10%) 0;
  }
  main #container h2,
  main #container h3,
  main #container h4 {
    color: #292A33;
    letter-spacing: 0.08em;
    font-weight: 800;
  }
  main #container .section_wrapper {
    padding: 0 32px;
  }
  main #container .sticky_wrapper .sticky_inner {
    height: 20vh;
  }
  main #container .sticky_wrapper .sticky_inner::after {
    min-width: auto;
    min-height: 96px;
    background: url("../img/svg/color_bg_sp.svg") no-repeat center/cover;
  }
  main #container .problem {
    border-radius: 20px;
    padding: 56px 5.33vw 48px;
  }
  main #container .problem .copyright_warning .sec_title {
    font-size: clamp(22px, 6vw, 32px);
  }
  main #container .problem .copyright_warning .sec_title::before {
    top: 50%;
  }
  main #container .problem .copyright_warning .copyright_warning_inner {
    margin-top: 32px;
  }
  main #container .problem .copyright_warning .copyright_warning_inner img {
    border-radius: 12px;
    margin-top: 10px;
  }
  main #container .problem .copyright_warning .copyright_warning_inner .txtBox {
    margin-top: 20px;
  }
  main #container .problem .copyright_warning .copyright_warning_inner .txtBox h3 {
    font-size: clamp(21px, 5.6vw, 28px);
  }
  main #container .problem .copyright_warning .copyright_warning_inner .txtBox p {
    margin-top: 10px;
  }
  main #container .problem .other_problems::before {
    background-image: url(../img/svg/dot_line_sp.svg);
  }
  main #container .problem .other_problems h2 {
    font-size: clamp(22px, 6vw, 30px);
  }
  main #container .problem .other_problems h2::before {
    width: calc(100% + 10.66vw);
  }
  main #container .problem .other_problems .problemList {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: start;
    margin-top: 28px;
    padding: 0 12.8%;
  }
  main #container .problem .other_problems .problemList .problemListItem {
    max-width: 320px;
  }
  main #container .problem .other_problems .problemList .problemListItem img {
    max-width: none;
    width: 90%;
  }
  main #container .problem .other_problems .problemList .problemListItem:nth-of-type(2) {
    margin: 0;
    margin-top: 6.25vw;
  }
  main #container .problem .other_problems .problemList .problemListItem:nth-of-type(3) {
    margin: 0;
    margin-top: 6.25vw;
  }
  main #container .problem .other_problems .problemList .problemListItem h3 {
    margin-top: 10px;
    font-size: max(18px, 2.8vw);
  }
  main #container .solution::before {
    top: 68%;
  }
  main #container .solution img {
    max-width: 320px;
    width: 70%;
  }
  main #container .solution .titleBox {
    margin: 0;
    margin-left: -8px;
    margin-top: -32px;
  }
  main #container .solution .titleBox h2 {
    font-size: clamp(22px, 6vw, 28px);
  }
  main #container .solution .titleBox h2 .margin_adjust {
    display: block;
    margin-top: 12px;
  }
  main #container .solution .titleBox h2 .margin_adjust .txt_medium {
    font-size: 1.2em;
    font-weight: 800;
  }
  main #container .solution .titleBox h2 .margin_adjust .txt_large {
    font-size: 2em;
    margin: 0 2px 0 3px;
  }
  main #container .solution .titleBox h2 .margin_adjust .letter-spacing {
    margin-left: -6px;
  }
  main #container .data {
    border-radius: 20px;
    margin-top: 88px;
    padding: 56px 5.33vw 80px;
  }
  main #container .data::after {
    content: "※出典：[Spear Education｜Engaging Patients with Your Dental Waiting Room TV（2023年）]";
    font-size: 1.1rem;
    font-weight: 300;
    right: auto;
    transform: none;
    left: 5.33vw;
    margin-bottom: 14px;
  }
  main #container .data .data_inner .data_topic {
    letter-spacing: 0.1em;
    margin-top: 10px;
    font-size: clamp(20px, 5.33vw, 26px);
    white-space: nowrap;
  }
  main #container .data .data_inner .data_topic::before {
    height: 24px;
    margin-left: -10px;
  }
  main #container .data .data_inner .data_topic::after {
    height: 24px;
    margin-right: -10px;
  }
  main #container .data .data_inner .data_desc {
    margin-top: 24px;
    font-size: 1.6rem;
    letter-spacing: 0.08em;
  }
  main #container .data .data_inner img {
    margin-top: 24px;
  }
  main #container .data .data_inner img.pc_only {
    display: none;
  }
  main #container .data .data_inner img.sp_only {
    display: block;
    max-width: 400px;
  }
  main #container .feature_wrapper {
    padding: 0 32px;
  }
  main #container .feature_wrapper .feature {
    margin-top: 184px;
    padding-bottom: 16px;
    max-width: none;
    width: 100%;
  }
  main #container .feature_wrapper .feature .wavy_bg::before {
    background-image: url(../img/svg/feature_above_sp.svg);
  }
  main #container .feature_wrapper .feature .wavy_bg::after {
    background-image: url(../img/svg/feature_below_sp.svg);
  }
  main #container .feature_wrapper .feature .section_title {
    font-size: clamp(44px, 9vw, 54px);
    margin-top: 0;
  }
  main #container .feature_wrapper .feature .section_title::after {
    display: block;
    width: 100vw;
    overflow: hidden;
  }
  main #container .feature_wrapper .feature .featureList {
    gap: 24px 0;
    margin-top: 64px;
  }
  main #container .feature_wrapper .feature .featureList .featureListItem {
    border-radius: 20px;
    padding: 32px 5.33vw 32px;
    min-height: auto;
    max-width: 600px;
    margin: 0 auto;
  }
  main #container .feature_wrapper .feature .featureList .featureListItem .txtBox {
    max-width: 480px;
    margin: 0 auto;
  }
  main #container .feature_wrapper .feature .featureList .featureListItem .txtBox .item_title {
    font-size: clamp(25px, 4.4vw, 32px);
    margin-top: 10px;
  }
  main #container .feature_wrapper .feature .featureList .featureListItem .txtBox .item_txt {
    line-height: 172%;
    margin-top: 10px;
  }
  main #container .feature_wrapper .feature .featureList .featureListItem img {
    margin: 0 auto;
    margin-bottom: 28px;
  }
  main #container .middle_cta {
    overflow: visible;
  }
  main #container .middle_cta .middle_cta_bg_sp {
    display: block;
    width: 100vw;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: -5%;
    overflow-x: hidden;
    z-index: -1;
  }
  main #container .middle_cta .middle_cta_bg_sp::after {
    content: "";
    display: block;
    max-width: 480px;
    min-width: 390px;
    width: 92vw;
    max-height: 552px;
    min-height: 450px;
    height: 106vw;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-image: url("../img/svg/middle_cta_bg_sp.svg");
    background-size: cover;
    overflow: visible;
  }
  main #container .middle_cta::after {
    display: none;
  }
  main #container .middle_cta .txtBox {
    width: 72%;
    margin: 0;
    margin-top: -12px;
  }
  main #container .middle_cta .txtBox h3 {
    font-size: clamp(23px, 4.6vw, 26px);
    white-space: nowrap;
  }
  main #container .middle_cta .txtBox p {
    line-height: 160%;
    font-size: 1.7rem;
    max-width: 400px;
    min-width: 282px;
  }
  main #container .middle_cta .txtBox .cta_btn {
    max-width: 360px;
    min-width: 240px;
    width: 78.68vw;
    height: 56px;
    border-radius: 28px;
  }
  main #container .middle_cta img {
    max-width: 320px;
    width: 53.33vw;
    margin-right: -45%;
    margin-top: -16px;
  }
  main #container .flow {
    padding: 56px 0 40px;
    border-radius: 20px;
    margin-top: 0;
  }
  main #container .flow .pc_only {
    display: none;
  }
  main #container .flow .sp_only {
    display: block;
  }
  main #container .flow .section_title {
    margin-top: 48px;
    font-size: clamp(34px, 7vw, 48px);
  }
  main #container .flow .section_title::after {
    display: block;
    width: calc(100vw - 64px);
    overflow: hidden;
  }
  main #container .flow .flow_slick {
    position: relative;
    z-index: 1;
    margin-top: 56px;
  }
  main #container .flow .flow_slick .slick-arrow {
    position: absolute;
    z-index: 10;
    top: 50%;
    width: 28px;
    height: 28px;
    opacity: 0.8;
  }
  main #container .flow .flow_slick .prev_icon {
    left: 0;
    transform: rotateY(180deg) translate(-50%, -50%);
    margin-left: -28px;
  }
  main #container .flow .flow_slick .next_icon {
    right: 0;
    transform: translate(-50%, -50%);
    margin-right: -28px;
  }
  main #container .flow .flow_slick .slick-dots {
    margin-bottom: -20px;
  }
  main #container .flow .flow_slick .flowListItem {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  main #container .flow .flow_slick .flowListItem .ie_img {
    max-width: 320px;
    width: calc(100% - 16vw);
  }
  main #container .flow .flow_slick .flowListItem .txtBox {
    max-width: 400px;
    width: calc(100% - 10.66vw);
    margin-top: 12px;
  }
  main #container .flow .flow_slick .flowListItem .txtBox .step_number {
    color: #1B96E0;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1;
  }
  main #container .flow .flow_slick .flowListItem .txtBox .step_number span {
    font-size: 1.7rem;
    margin-left: 4px;
  }
  main #container .flow .flow_slick .flowListItem .txtBox h3 {
    font-size: 2.1rem;
    margin-top: 4px;
  }
  main #container .flow .flow_slick .flowListItem .txtBox .flow_txt {
    letter-spacing: 0.08em;
    line-height: 168%;
    margin-top: 6px;
  }
  main #container .flow .flowList {
    margin-top: 80px;
    max-width: 520px;
    gap: 32px 0;
  }
  main #container .price {
    margin-top: 120px;
  }
  main #container .price .section_title {
    font-size: clamp(36px, 7vw, 48px);
  }
  main #container .price .section_title::after {
    display: block;
    width: 100vw;
    overflow: hidden;
  }
  main #container .price .price_inner {
    border: solid 3px #1C9BE8;
    border-radius: 32px;
    margin-top: 72px;
    padding: 0;
    padding-bottom: 40px;
  }
  main #container .price .price_inner::before {
    width: 100%;
    max-width: 320px;
    height: 40px;
    border-radius: 20px;
    font-size: 1.7rem;
    line-height: 40px;
  }
  main #container .price .price_inner .above {
    margin-top: 48px;
  }
  main #container .price .price_inner .above .cost_title {
    font-size: clamp(22px, 5.33vw, 28px);
    letter-spacing: 0.08em;
    color: #353538;
  }
  main #container .price .price_inner .above .initial_cost .cost_txt {
    font-size: 7.2rem;
    margin-top: 20px;
    margin-left: 8px;
  }
  main #container .price .price_inner .above .initial_cost .cost_txt .txt_after {
    font-size: 2.6rem;
    margin-left: -3px;
  }
  main #container .price .price_inner .above .monthly_cost {
    margin: 0;
  }
  main #container .price .price_inner .above .monthly_cost .cost_txt_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  main #container .price .price_inner .above .monthly_cost .cost_txt_wrap .cost_txt {
    font-size: 6.4rem;
  }
  main #container .price .price_inner .above .monthly_cost .cost_txt_wrap .cost_txt .txt_before {
    font-size: 2.4rem;
  }
  main #container .price .price_inner .above .monthly_cost .cost_txt_wrap .cost_txt .txt_after {
    font-size: 2.4rem;
  }
  main #container .price .price_inner .above .monthly_cost .cost_txt_wrap .cost_txt::after {
    font-size: 1.4rem;
  }
  main #container .price .price_inner .above .monthly_cost .cost_txt_wrap .annual_cost {
    margin-left: 8px;
    font-size: 1.8rem;
    margin-top: 4px;
  }
  main #container .price .price_inner .above .monthly_cost .cost_txt_wrap .annual_cost span {
    font-size: 2.2rem;
    margin-right: 2px;
  }
  main #container .price .price_inner .below {
    margin-top: 40px;
    padding: 0 5.33vw;
    padding-top: 28px;
    position: relative;
  }
  main #container .price .price_inner .below::before {
    width: calc(100% - 10.66vw);
  }
  main #container .price .price_inner .below.checkList {
    gap: 6px 0;
  }
  main #container .price .price_inner .below.checkList .checkListItem img {
    width: 20px;
    height: 20px;
    margin-top: 4px;
  }
  main #container .price .price_inner .below.checkList .checkListItem p {
    font-size: 1.8rem;
    line-height: 154%;
  }
  footer .bottom_cta {
    padding: 40px 0 48px;
  }
  footer .bottom_cta img {
    width: 70%;
  }
  footer .bottom_cta .cta_txt {
    font-size: 1.8rem;
    letter-spacing: 0.08em;
    line-height: 168%;
    margin-top: 2px;
  }
  footer .bottom_cta .cta_txt::before {
    content: "";
    display: block;
    height: 90px;
    width: 2px;
    margin-left: -22px;
  }
  footer .bottom_cta .cta_txt::after {
    height: 90px;
    margin-right: -22px;
  }
  footer .bottom_cta .cta_btn {
    max-width: 360px;
    width: 89.34vw;
    height: 52px;
    border-radius: 26px;
  }
  footer .bottom_cta::after {
    content: "KIDS CORNER DVD KIDS CORNER DVD KIDS CORNER DVD KIDS CORNER DVD KIDS CORNER DVD KIDS CORNER DVD KIDS";
    display: block;
    width: 200vw;
    height: 560px;
    max-width: 2560px;
    font-size: 144px;
    font-weight: 800;
    line-height: 112%;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.1);
    text-align: center;
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
  }
  footer .footer_inner {
    width: 100%;
    background-color: #fff;
    z-index: 100;
  }
  footer .footer_inner .footer_logo {
    display: block;
    width: 184px;
    height: 54px;
    margin: 0 auto;
    margin-top: 24px;
    transition: 0.4s;
  }
  footer .footer_inner .footer_logo img {
    width: 100%;
  }
  footer .footer_inner .footer_logo:hover {
    opacity: 0.8;
    transition: 0.4s;
  }
  footer .footer_inner .service_company {
    font-size: 1.4rem;
    letter-spacing: 0.04em;
    margin-top: 12px;
  }
  footer .footer_inner .copyright {
    display: block;
    width: 100%;
    height: 24px;
    background-color: rgb(25, 25, 29);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.8;
    line-height: 24px;
  }
}/*# sourceMappingURL=style.css.map */