@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

html {
  color: #000;
  --color-green: #29C285;
  --color-lightgreen: #E9FFF6;
  --color-red: #E9393B;
  --color-blue: #005BAB;
  --color-lightblue: #DFF4FF;
  --color-navy: #0B308E;
  --color-beige: #FFF9ED;
  --color-gray: #464646;
  --color-yellow: #FFF8A5;
}

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

a {
  cursor: pointer;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

.flex {
  flex: 1;
}
.flex_row {
  display: flex;
}
.flex_column {
  display: flex;
  flex-direction: column;
}

.align_center {
  align-items: center;
}
.align_start {
  align-items: flex-start;
}
.align_end {
  align-items: flex-end;
}

.justify_center {
  justify-content: center;
}
.justify_start {
  justify-content: flex-start;
}
.justify_end {
  justify-content: flex-end;
}
.justify_between {
  justify-content: space-between;
}

.text_red {
  color: var(--color-red);
  font-weight: 700;
}
.text_center {
  text-align: center;
}
.text_left {
  text-align: left;
}
.text_right {
  text-align: right;
}
.text_bold_700 {
  font-weight: 700;
}
.text_bold_800 {
  font-weight: 800;
}
.text_xs {
  font-size: 50%;
}
.text_sm {
  font-size: 75%;
}
.text_lg {
  font-size: 125%;
}
.text_xl {
  font-size: 150%;
}

@media (min-width: 451px) {
  .sp-only {
    display: none;
  }
}

.pc-only {
  display: none;
}
@media (min-width: 451px) {
  .pc-only {
    display: block;
  }
}

.youtube {
  width: 100%;
  aspect-ratio: 16/9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}

.inner {
  width: 67.5rem;
  max-width: 100%;
  padding: 0 1.25rem;
  margin: 0 auto;
  box-sizing: border-box;
}

.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.display-block {
  display: block;
}

@media (min-width: 769px) {
  .main {
    padding-left: 4vw;
  }
}
.main::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100vh;
  background: url(../images/bg_gradation_pc.jpg) no-repeat center/cover;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
.main-content {
  background: #fff;
}
@media (min-width: 451px) {
  .main-content {
    width: 28.125rem;
    margin: 0 auto;
  }
}
@media (min-width: 769px) {
  .main-content {
    margin: unset;
  }
}
.main-aside {
  display: none;
}
@media (min-width: 769px) {
  .main-aside {
    position: fixed;
    top: 50%;
    right: 0;
    display: block;
    transform: translateY(-50%);
  }
}
.main-aside .side-visual {
  width: calc(100vw - (28.125rem + 4vw));
  box-sizing: border-box;
  padding: 0 4vw;
}
@media (min-width: 1025px) {
  .main-aside .side-visual {
    width: calc(100vw - (28.125rem + 4vw));
    padding: 0 8vw;
  }
}
.main-aside .side-visual_title {
  font-family: Geologica;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  color: #FFF;
  flex: 1;
}
@media (min-width: 1025px) {
  .main-aside .side-visual_title {
    font-size: 1.875rem;
  }
}
.main-aside .side-visual_header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 0.5em;
  margin-bottom: 1.875rem;
}
@media (min-width: 1025px) {
  .main-aside .side-visual_header {
    flex-direction: row;
  }
}
.main-aside .side-visual_button {
  width: auto;
  margin: 0;
}
.main-aside .side-visual_button a {
  padding: 0.5em 1.75em;
  padding-right: 1.25em;
}
.main-aside .side-visual_thumbnails {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.625rem;
}
@media (min-width: 1025px) {
  .main-aside .side-visual_thumbnails {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.main-aside .side-visual_thumbnails_item img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.key-visual {
  background: var(--color-green);
  color: #fff;
}
.key-visual_logo {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: -2.5em;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.5;
  z-index: 10;
}
.key-visual_logo_pic {
  width: 9em;
  height: 9em;
}
.key-visual_logo_text {
  margin-left: -0.5em;
  margin-bottom: 1em;
}
.key-visual_logo_wrapper {
  position: relative;
  z-index: 20;
}
.key-visual_button {
  position: fixed;
  top: 1em;
  right: 1em;
  font-size: 0.875rem;
  z-index: 100;
}
@media (min-width: 451px) {
  .key-visual_button {
    right: calc((100vw - 28.125rem) / 2 + 1em);
  }
}
@media (min-width: 769px) {
  .key-visual_button {
    right: calc(100vw - (28.125rem + 4vw - 1em));
  }
}
.key-visual_button a {
  display: block;
  padding: 2px;
  color: #fff;
  font-size: inherit;
  font-weight: 700;
  text-decoration: none;
}
.key-visual_button a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 1.875rem;
  background: linear-gradient(106deg, #2EDE97 -5.57%, #9EE82E 47.58%, #17E8F7 88.92%);
  z-index: -1;
}
.key-visual_button a span {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.75em 1.25em;
  padding-right: 0.5em;
  background: #189D68;
  border-radius: 1.875rem;
}
.key-visual_button a span::after {
  content: "＋";
  font-size: 120%;
}
.key-visual_catch {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5em;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}
.key-visual_catch span {
  display: inline-block;
  padding: 0.5em;
  background: linear-gradient(106deg, #2EDE97 -5.57%, #9EE82E 47.58%, #17E8F7 88.92%);
}
.key-visual_catch_wrapper {
  position: relative;
  padding-bottom: 1.875rem;
  margin-top: -1.25rem;
  z-index: 20;
}
.key-visual_catch_subtext {
  margin: 1.25em 0 0.5em;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.75;
}
.key-visual_catch_powered {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
}
.key-visual_slider {
  position: relative;
}
.key-visual_slider::before {
  content: "";
  width: 48px;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: calc(10% + 0.5rem);
  border: 6px solid transparent;
  border-right: none;
  -o-border-image: linear-gradient(180deg, #fff 0 45px, transparent 45px calc(100% - 45px), #fff calc(100% - 45px) 100%) 1;
     border-image: linear-gradient(180deg, #fff 0 45px, transparent 45px calc(100% - 45px), #fff calc(100% - 45px) 100%) 1;
  box-sizing: border-box;
  z-index: 10;
  pointer-events: none;
}
.key-visual_slider::after {
  content: "";
  width: 48px;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: calc(10% + 0.5rem);
  border: 6px solid transparent;
  border-left: none;
  -o-border-image: linear-gradient(180deg, #fff 0 45px, transparent 45px calc(100% - 45px), #fff calc(100% - 45px) 100%) 1;
     border-image: linear-gradient(180deg, #fff 0 45px, transparent 45px calc(100% - 45px), #fff calc(100% - 45px) 100%) 1;
  box-sizing: border-box;
  z-index: 10;
  pointer-events: none;
}
.key-visual_slider_item {
  padding: 0 0.5rem;
}
.key-visual_slider_item img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.section {
  padding: 3.125rem 0;
}
.section_button {
  width: 100%;
  margin-top: 2em;
  border-radius: 4em;
  background: var(--color-green);
  color: #fff;
  font-size: 1rem;
  text-align: center;
  transition: 0.35s;
}
.section_button.--bg-white {
  background: #fff;
  color: var(--color-green);
}
.section_button:hover {
  cursor: pointer;
  transform: translateY(4px);
}
.section_button a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 1em 1.5em;
  padding-right: 0.5em;
  color: inherit;
  font-size: inherit;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
}
.section_button a::after {
  content: "＋";
  font-size: 120%;
}
.section_title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.25em;
  margin-bottom: 1em;
  color: var(--color-green);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
}
.section_title::before {
  content: "";
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  background: url(../images/icon_arrow.svg) no-repeat center/contain;
}
.section_subtitle {
  margin-bottom: 1.5em;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.75;
  text-align: left;
}
.section_text {
  color: var(--color-gray);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 2;
  text-align: center;
}
.section_text:not(:last-of-type) {
  margin-bottom: 1em;
}
.section_text.text_en {
  font-weight: 500;
}

.about {
  padding: 1.875rem 0;
  background: url(../images/bg_gradation_sp.jpg) no-repeat center/cover;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
}
.about_lead {
  margin: 1em auto 2em;
  font-size: 0.875rem;
  line-height: 1.75;
  text-align: center;
}
.about_lead .text-lg {
  font-size: 1.5rem;
}
.about_lead .text-xl {
  font-size: 2.3125rem;
  font-family: Geologica;
  font-style: normal;
  font-weight: 600;
}
.about_apps {
  position: absolute;
  top: 0;
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  gap: 0.625rem;
  flex: 1;
  width: 75vw;
  padding-right: 0.625rem;
  box-sizing: border-box;
}
@media (min-width: 451px) {
  .about_apps {
    width: 337.5px;
  }
}
.about_apps_item {
  width: calc((100% - 1.875rem) / 4);
  flex-shrink: 0;
}
.about_apps_wrapper {
  display: block;
  width: 100%;
  height: 36vw;
  position: relative;
}
@media (min-width: 451px) {
  .about_apps_wrapper {
    height: 162px;
  }
}
.about_apps01 {
  left: 0;
  -webkit-animation: loop 6s infinite linear 1s both;
          animation: loop 6s infinite linear 1s both;
}
.about_apps02 {
  left: 75vw;
  -webkit-animation: loop 6s infinite linear 1s both;
          animation: loop 6s infinite linear 1s both;
}
@media (min-width: 451px) {
  .about_apps02 {
    left: 337.5px;
  }
}
.about_apps03 {
  left: 150vw;
  -webkit-animation: loop 6s infinite linear 1s both;
          animation: loop 6s infinite linear 1s both;
}
@media (min-width: 451px) {
  .about_apps03 {
    left: 675px;
  }
}
.about_point {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 21.875rem;
  margin: 0 auto;
}
.about_point_pic {
  width: 25%;
}
.about_point_pic img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.about_point_text {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  flex: 1;
  font-size: 0.8125rem;
  font-weight: 700;
}
.about_point_text_inner {
  line-height: 1.5;
}
.about_point_text .text-lg {
  font-size: 1.25rem;
}
.about_point_item {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 1em;
  border-radius: 0.625rem;
  padding: 1em 1.25em;
  background: #fff;
  color: var(--color-green);
  font-size: 0.8125rem;
  font-weight: 700;
  box-shadow: 0 0 1.25rem rgba(41, 174, 121, 0.5);
}
.about_point_item01 .about_point_text {
  padding-left: 25%;
}
.about_point_item01 .about_point_pic {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28%;
}
.about_point_item02 .about_point_text {
  padding-right: 28%;
}
.about_point_item02 .about_point_pic {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 28%;
}
.about_point_item03 .about_point_pic {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about_point_item03 .about_point_pic img {
  width: 80%;
}

@-webkit-keyframes loop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes loop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.example {
  background: url(../images/bg_decoration.svg) no-repeat right top/contain;
}
.example_list {
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
}
.example_list_pic img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.example_list_name {
  margin: 0.5em 0;
  font-size: 1.125rem;
  font-weight: 700;
}
.example_list_text {
  font-size: 1rem;
  line-height: 1.5;
}
.flow {
  background: var(--color-lightgreen);
}
.flow_list {
  display: grid;
  gap: 3.125rem;
  counter-reset: flow;
}
.flow_list_item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  counter-increment: flow;
}
.flow_list_sentence {
  padding-right: 1em;
}
.flow_list_title {
  margin-bottom: 1em;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}
.flow_list_title::before {
  content: "0" counter(flow);
  display: block;
  margin-bottom: 0.25em;
  background: linear-gradient(106deg, #2EDE97 -5.57%, #9EE82E 47.58%, #17E8F7 88.92%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Geologica", sans-serif;
  font-size: 2.75rem;
  font-weight: 600;
}
.flow_list_pic img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.flow_list_text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
}

.service {
  background: var(--color-green);
  color: #fff;
}
.service_list {
  display: grid;
  gap: 1.25rem;
  counter-reset: service;
}
.service_list_item {
  position: relative;
  padding: 2em 1em;
  background: #21B077;
  counter-increment: service;
}
.service_list_item::before {
  content: "Point 0" counter(service);
  display: block;
  margin-bottom: 0.75em;
  background: linear-gradient(105deg, #BAFF53 -8.75%, #0BEFFF 40%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Geologica", sans-serif;
  font-size: 1.8125rem;
  font-weight: 600;
}
.service_list_item::after {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/icon_corner.svg) no-repeat right top/contain;
}
.service_list_title {
  margin: 1em 0 0.5em;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}
.service_list_text {
  font-size: 1rem;
  line-height: 1.75;
}
.service_list_pic img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.service .section_title {
  color: #fff;
}

.price_information {
  background: var(--color-green);
  box-shadow: 0 0 16px 0 rgba(41, 174, 121, 0.3);
  border-radius: 0.625rem;
  padding: 1.25em;
  color: #fff;
}
.price_information_lead {
  width: 70%;
  margin: 0 auto;
  text-align: center;
}
.price_information_lead img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.price_information_text {
  margin-top: 1em;
  line-height: 2;
}

.faq {
  background: var(--color-lightgreen);
}
.faq_list {
  display: grid;
  gap: 1.875rem;
  counter-reset: faq;
}
.faq_list_item {
  counter-increment: faq;
}
.faq_list_question {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.faq_list_question::before {
  content: "Q" counter(faq);
  display: inline-block;
  background: linear-gradient(106deg, #2EDE97 -5.57%, #9EE82E 47.58%, #17E8F7 88.92%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Geologica", sans-serif;
  font-size: 2.75rem;
  font-weight: 600;
}
.faq_list_question_inner {
  flex: 1;
  display: flex;
  align-items: center;
  margin-left: 0.5em;
  min-height: 2.5em;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}
.faq_list_answer {
  line-height: 2;
}
.faq .section_header {
  margin-bottom: 1.875rem;
}

.footer {
  padding: 1.875rem 0;
  background: var(--color-green);
}
.footer_nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5em;
  margin-bottom: 1.875rem;
  font-size: 0.875rem;
}
.footer_nav_item a {
  color: #fff;
  text-decoration: none;
}
.footer_copyright {
  color: #fff;
  font-size: 0.875rem;
  text-align: center;
}
/*# sourceMappingURL=style.css.map */