@charset "UTF-8";
:root {
    --white: #fff;
    --black: #000;
    --black02: #202020;
    --black03: #2a2a2a;
    --gray01: rgb(198, 209, 221);
    --gray02: #edf0f5;
    --gray03: #DDD;
    --gray04: #c8c8c8;
    --blue: #4364f7;
    --lightblue: #f6f9ff;
    --grad01: linear-gradient(to right,#0052d4,#4364f7,#6fb1fc);
}

/* modern-css-reset v1.4.0 | MIT License | https://github.com/andy-piccalilli/modern-css-reset/blob/master/dist/reset.css
================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,body,div,span,
h1,h2,h3,h4,
p,a,
em, img,
var,
dl, dt, dd,ol,ul,li,
figure,
footer, header, section {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ul,
ol {
  list-style: none;
}

html,
body  {
  min-width: 100%;
}

html {
  font-size: 62.5%;
  width: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  min-height: 100vh;
  font-size: 14px;
  letter-spacing: 0.05px;
  line-height: 1.8;
}

a {
  color: inherit;
  text-decoration: none;
}

a[class] {
  text-decoration: none;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  display: block;
  width: 100%;
  max-width: 100%;
  border: 0;
  background: transparent;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
   scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* 共通
================================================== */
.container {
  max-width: 900px;
  padding: 60px 30px;
  margin: auto;
}

.all_title {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 40px;
}

.all_title_en {
  font-size: 10px;
  text-align: center;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--blue);
}

.all_text {
  font-size: 14px;
  letter-spacing: 0.6px;
  line-height: 2;
}

.all_new_line {
  display: inline-block;
  letter-spacing: inherit;
  font-family: inherit;
}


@media(min-width:769px) {
  .container {
    max-width: 1020px;
  }

  .all_title {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 30px;
  }

  .all_title_en {
    font-size: 14px;
  }

  .all_text {
    font-size: 16px;
  }
}

/* l-header
================================================== */
.header {
  position: fixed;
  width: 100%;
  background-color: transparent;
  opacity: 1;
  z-index: 2000;
}

.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding: 10px 30px;
}

.header_logo {
  width: 100%;
  width: 90px;
  z-index: 2;
}

.header_ham {
  position: relative;
  width: 42px;
  height: 30px;
  z-index: 999;
}

.header_ham span {
  background: var(--blue);
  position: absolute;
  left: 0;
  width: 42px;
  height: 1px;
  transition: all 0.6 ease;
}

.header_ham span:nth-child(1) {
  top: 10px;
}

.header_ham span:nth-child(2) {
  top: 19px;
}

.header_ham.is-open span:nth-child(1) {
  top: 15px;
  transform: rotate(-15deg);
}

.header_ham.is-open span:nth-child(2) {
  top: 15px;
  transform: rotate(15deg);
}

.header_content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 320px;
  background: var(--white);
}

.header_list-item {
  padding: 0 0 10px;
  border-bottom: solid 1px var(--gray01);
}

.header_list-item + .header_list-item {
  margin-top: 30px;
}

.header_content p {
  margin-top: 30px;
}

.header_content_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  color: var(--white);
  max-width: 100%;
  height: auto;
  padding: 8px 10px;
  border-radius: 30px;
  background: var(--grad01);
  background-size: 200% 100%;
  background-position: 100% 0;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

@media(max-width: 768px) {
  .header_content {
    height: 100vh;
    padding: 90px 30px 60px;
    transform: translateX(120%);
    transition: all 0.4s ease;
  }

  .header_content.is-open {
    transform: translateX(0%);
  }

  .header_content_btn {
    margin: auto;
  }
}

@media(min-width: 769px) {
  .header {
    backdrop-filter: blur(12px);
  }

  .header_inner {
  }

  .header_logo {
    width: 120px;
  }

  .header_ham {
    display: none;
  }

  .header_content {
    display: flex;
    position: static;
    width: auto;
    align-items: center;
    column-gap: 30px;
    background: none;
  }

  .header_list {
    display: flex;
    column-gap: 30px;
  }

 .header_list-item {
    border: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .1px;
  }

  .header_list-item + .header_list-item {
    margin-top: 0;
  }

  .header_content p {
    margin-top: 0;
  }

  .header_content_btn {
    padding: 7.5px 22px 8px 21px;
  }
}

/* main-visual
================================================== */
.mv_inner {
    position: relative;
}

.mv-img {
  padding-top: 60px;
  width: 100%;
  margin: auto;
}

.mv-img img {
  width: 100%;
  height: 100%;
}

.mv-text {
  position: absolute;
  top: 10%;
  left: 0;
  color: var(--black);
  padding: 0 30px;
}

h1 {
  color: var(--black02);
  font-size: 32px;
  letter-spacing: 1px;
}

.mv-text p {
  margin-top: 6px;
  color: var(--black03);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
}

@media(max-width:768px) {
  .pc-only {
    display: none;
  }
}

@media(min-width:769px) {
  .mv-img {
    padding-top: 0px;
  }

  .sp-only {
    display: none;
  }

  .mv-text {
    top: 0;
    left: 9%;
    padding: 100px 0px;
  }

  h1 {
    font-size: 40px;
  }

  .mv-text p {
    font-size: 20px;
  }
}

/* about
================================================== */
.about {
}

.about-container {
  padding: 60px 0 60px;
}

.about_text {
  margin-bottom: 50px;
  padding: 0 30px;
}

@media(min-width:769px) {
  .about_text {
    margin-bottom: 70px;
    padding: 0 120px;
  }

  .about-container {
    padding: 100px 0 60px;
  }
}

/* slide */

.slick-slide {
  width: 100%;
  height: auto;
  max-width: 300px;
  margin: 0 3.75px;
  border-radius: 10px;
  overflow: hidden;
}

.slick-slide img {
  width: 600px;
  height: auto;
}

.slick-dots {
  position: absolute;
  bottom: -20px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  font-size: 0;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 2px;
  margin: 0 2px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 15px;
  height: 2px;
  padding: 0;
  cursor: pointer;
  color: var(--white);
  border: 0;
  outline: none;
  background: #eeeeee;
}

.slick-dots li.slick-active button {
  background:#999999;
}

@media(min-width:769px) {
  .slick-slide {
    max-width: 600px;
    margin: 0 7.5px;
  }

  .slick-dots li,
  .slick-dots li button {
    width: 30px;
    height: 4px;
  }
}

/* feature
================================================== */
.feature {
  background: linear-gradient(179deg, rgba(223,244,255,0.4) 12%, rgba(214,241,255,0.4) 26%, rgba(237,250,255,0.4) 65%, rgba(207,233,245,0.4) 100%);
  position: relative;
  padding: 90px 0 110px;
}

.feature-item {
  padding: 30px 30px;
  background: var(--white);
  box-shadow: 0px 3px 25px 0 rgba(0, 0, 0, 0.06);
  border-radius: 15px;
}

.feature-item + .feature-item {
  margin-top: 30px;
}

.label {
  display: flex;
  align-items: center;
  max-height: 14px;
}

.feature-label {
  margin-right: 16px;
  padding: 2px 6px;
  color: var(--white);
  background-color: var(--blue);
  font-size: 12px;
  letter-spacing: 0.8px;
  line-height: 23px;
}

.label_number {
  font-size: 40px;
  font-weight: 500;
  color: var(--blue);
}

h3 {
  margin: 36px 0 12px;
  font-size: 20px;
  font-weight: 500;
}

.feature-box {
  margin-top: 24px;
}

.feature dl + dl {
  margin-top: 24px;
}

.feature_text {
  margin-top: 12px;
  font-size: 12px;
}

.wave_top {
  width: 100vw;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.wave_bottom {
  width: 100vw;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}

@media(max-width:768px) {
  .feature .container {
    padding: 0 30px;
  }
}

@media(min-width:769px) {
  .feature {
    padding: 110px 0;
  }

  .feature-item {
    padding: 60px 70px 90px ;
  }

  .label_number {
    font-size: 48px;
  }

  h3 {
    font-size: 30px;
  }

  .feature-box {
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
  }

  .feature-box dl + dl {
    margin-top: 0px;
  }
}

/* price
================================================== */
.price-sp_wrapper {
  margin-bottom: 3em;
}

.price-sp table {
  border: solid 1px var(--gray03);
}

table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  border-right: solid 1px var(--gray03);
  border-bottom: solid 1px var(--gray03);
}

table td, table th {
  padding: 1.8em 1.2em;
}

table td {
  border-left: solid 1px var(--gray03);
  border-top: solid 1px var(--gray03);
}

tbody th, tbody td{
  text-align: center;
  font-size: 12px;
} 

.menu__title {
  border-left: solid 1px var(--gray03);
  border-top: solid 1px var(--gray03);
  background-color: var(--gray02);
}

.plan_order {
  text-align: start;
}

.plan_name {
  padding: 0.7em 0.7em 0.8em;
  border-bottom: solid 1px var(--gray03);
  color: var(--white);
  background-color: var(--blue);
  font-size: 18px;
  letter-spacing: 2px;
}

.plan_name_img {
  width: 100%;
  height: 180px;
}

.plan_name_img img {
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}

.plan_name_en {
  padding-top: 1.8em;
  font-weight: 400;
}

.notice {
  margin-top: 10px;
  font-size: 10px;
}

@media(max-width:768px) {
  .price-pc_wrapper {
    display: none;
  }
}

/* pc版 */

tbody td:nth-of-type(4) {
  text-align: start;
}

.plan_title { 
  border-top: solid 1px var(--gray03);
  border-left: solid 1px var(--gray03);
  color: white;
}

.bg { 
  padding: 1.5em 1.5em 1.6em;
  background-color: var(--blue);
}

.plan_title_img {
  width: 100%;
  height: 120px;
  color: var(--black);
}

.plan_title_img img {
  margin: auto;
  width: auto;
  max-width: 100%;
  max-height: 100%;
}

.plan_title_en {
  padding-top: 1.8em;
  font-size: 12px;
  font-weight: 400;
}

@media(min-width:769px) {
  table td, table th {
    padding: 1.8em 1.1em;
  }
  .price-sp_wrapper {
    display: none;
  }

  .notice {
    margin-top: 5px;
    font-size: 12px;
  }
}

/* order
================================================== */
.order-container {
  max-width: 900px;
  padding: 30px 10px 60px;
  margin: auto;
}

.flow_list {
  position: relative;
  counter-reset: number 0;
}

.flow_list::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 100%;
  top: 0;
  left: 60px;
  border-radius: 50px;
  background-color: var(--gray04);
}

.flow_list > li {
  position: relative;
  margin-bottom: 40px;
  padding: 10px 0 10px 100px;
}

.flow_list > li::before, .flow_list > li::after {
  position: absolute;
  top: 30px;
  transform: translateY(-50%);
}

.flow_list > li::before {
  content: "STEP\A"counter(number);
  white-space: pre;
  counter-increment: number 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 45px;
  height: 45px;
  left: 0;
  color: var(--white);
  background-color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
}

.flow_list > li::after {
  content: "";
  border-style: solid;
  border-width: 5px 0 5px 10px;
  border-color: transparent transparent transparent var(--blue);
  left: 44px;
}

.flow-summary > dt {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
}

.flow-summary > dt::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 30px;
  left: 67.5px;
  border-radius: 50%;
  background-color: var(--white);
  transform: translateX(-50%);
}

.flow-contact_btn {
  background: var(--grad01);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
  color: var(--white);
  margin-top: 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 11px 50px 12px 50px;
  font-size: 16px;
  letter-spacing: 1px;
}

.question-box {
  margin-top: 20px;
  padding: 20px 40px;
  list-style: disc;
  background-color: var(--lightblue);
  font-size: 12px;
}

.flow-summary p {
  margin-top: 5px;
  font-size: 10px;
}

@media (min-width:769px) {
  .order-container {
    max-width: 1020px;
    padding: 60px 30px;
  }

  .flow_list::before {
    width: 15px;
    left: 90px;
  }

  .flow_list > li {
    padding: 10px 0 10px 130px;
  }


  .flow_list > li::before {
    width: 60px;
    height: 60px;
    font-size: 16px;
  }

  .flow_list > li::after {
    border-width: 6px 0 6px 15px;
    left: 59px;
  }

  .flow-summary > dt {
    font-size: 18px;
  }

  .flow-summary > dt::before {
    width: 10px;
    height: 10px;
    left: 97.5px;
  }

  .flow-contact_btn {
    width: auto;
    min-width: 220px;
    font-size: 14px;
  }

  .question-box {
    margin-top: 20px;
    padding: 20px 40px;
    font-size: 14px;
  }

  .flow-summary p {
    font-size: 12px;
  }
}

/* footer
================================================== */
.footer {
  margin-bottom: 20px;
}

.page_top {
  text-align: center;
  color: var(--blue);
  font-size: 18px;
  font-weight: 500;
}

.page_top::after {
  content: "";
  display: inline-block;
  border-style: solid;
  border-width: 0 8px 12px 8px;
  border-color: transparent transparent var(--blue) transparent;
  margin-left: 5px;
}