@charset "UTF-8";
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  margin: 0;
}

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

img,
embed,
iframe,
object,
audio,
video {
  height: auto;
  max-width: 100%;
}

iframe {
  border: 0;
}

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

td,
th {
  padding: 0;
  text-align: left;
}

/* --------------------------------------------------------------------
	フォント
--------------------------------------------------------------------- */
@font-face {
  font-family: "Noto_CJK_M";
  src: url(../files/fonts/NotoSansCJKjp-Medium.otf) format("opentype");
}
@font-face {
  font-family: "Noto_CJK_B";
  src: url(../files/fonts/NotoSansCJKjp-Bold.otf) format("opentype");
}
@font-face {
  font-family: "Noto_CJK_R";
  src: url(../files/fonts/NotoSansCJKjp-Regular.otf) format("opentype");
}
:root {
  --font-awesome: "Font Awesome 5 Free";
  --color-brand-gradient: linear-gradient(90deg,#00c8dc,#00c8dc 50%,#006ec8 );
  --color-brand: #ef0003;
  --color-purple: #960096;
  --color-blue: #0000f0;
  --color-pink: #ffefef;
  --color-fukurint: #03abc0;
  --color-light-gray: #f4f4f4;
  --color-gray: #ccc;
  --color-dark-gray: #333;
  --color-link: #0000f0;
  --color-text: #333;
  --color-ux-green: #1b9c40;
  --color-selection: rgba(166,219,249,.57);
  --color-placeholder: #dcdcdc;
  --color-bg: #fff;
  --color-button: #50a2a7;
  --color-brand-dark: #159fab;
  --color-brand-light: #ddf5ee;
  --color-yellow: #ffd800;
  --inner-width: 1024px;
  --outer-padding: 16px;
  --main-width: 780px;
  --font-size-h1: 3.2rem;
  --line-height-h1: 52px;
  --font-size-h2: 2.6rem;
  --line-height-h2: 42px;
  --font-size-h3: 2rem;
  --line-height-h3: 32px;
  --font-size-h4: 1.8rem;
  --line-height-h4: 1.4;
  --font-size-h5: 1.6rem;
  --line-height-h5: 27px;
  --font-size-readable: 1.4rem;
  --line-height-readable: 32px;
  --font-size-standard: 1.4rem;
  --line-height-standard: 32px;
  --font-size-small: 1.3rem;
  --line-height-small: 20px;
  --font-size-xsmall: 1.1rem;
  --line-height-xsmall: 20px;
  /* The intrinsic width of the underline stroke (in pixels). This is 
   * the same as the height of the cap images. Don't specify the
   * units! This is because of some of the calculations we do later on. */
  --underline-intrinsic-width: 100;
  /* The actual width of the underline stroke we want to render (in pixels).
   * You can modify this, and the sizing and positioning should be calculated
   * accordingly. Again, Don't specify the units! */
  --underline-width: 10;
  /* The colour used to draw the underline. It should match the colour
   * used in the cap images... unfortunately we can't modify the SVG
   * fill via CSS because it's a background image. */
  --underline-color: #fff500;
  /* We need to know the width of the cap images so that we
   * can position everything on the x axis accordingly. */
  --underline-cap-width: 4px;
  /* The border is positioned relative to the bottom of the line.
   * We can move it upwards a little to create an overlap effect. */
  --underline-offset-y: 2px;
  /* The padding to add to the x axis. By default, the caps would be
   * aligned with the beginning and end of the line. */
  --underline-padding-x: 0.12em;
  --cap-image-left: url(https://files-d4s40otz1.now.sh/left.svg);
  --cap-image-right: url(https://files-4vvqilj8v.now.sh/right.svg);
}

/* --------------------------------------------------------------------
	common　共通エレメント
-------------------------------------------------------------------- */
html, body {
  font-family: "Noto_CJK_M";
  overflow-x: hidden;
}

.mobile_menu {
  position: fixed;
  top: 70px;
  width: 375px;
  background: linear-gradient(to top, #00c8dc 0.03%, #006ec8 100%);
  right: 0;
  z-index: 999;
  padding: 30px 20px;
  height: 100%;
  transition: 0.3s;
  transform: translateX(100%);
}
.mobile_menu.active {
  transform: translateX(0);
}
.mobile_menu .menu_set a {
  font-family: "Noto_CJK_B";
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 40px;
  text-align: center;
  color: #fff;
  max-width: 220px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
  text-decoration: none;
  border-bottom: 1px dotted #fff;
}
.mobile_menu .register {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
}
.mobile_menu .register a {
  font-family: "Noto_CJK_B";
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 30px;
  text-align: center;
  text-decoration: none;
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 10px;
  width: 100%;
}
.mobile_menu .register a.line {
  color: #06c755;
  background: white;
  transition: 0.3s;
}
.mobile_menu .register a.line:hover {
  opacity: 0.7;
}
.mobile_menu .register a.message {
  color: #006ec8;
  background: #FFF500;
  transition: 0.3s;
}
.mobile_menu .register a.message:hover {
  opacity: 0.7;
}

header {
  padding: 10px;
  width: 100%;
  position: fixed;
  background: white;
  z-index: 99;
}

.privacy_link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.header_area {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}
.header_area .logo {
  display: block;
}
.header_area .logo img {
  display: block;
  margin: auto;
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.header_area .header_menu {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header_area .header_menu .menu_set {
  display: flex;
  gap: 35px;
}
.header_area .header_menu .menu_set a {
  text-decoration: none;
  color: #414141;
  font-family: "Noto_CJK_M";
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 30px;
  text-align: center;
  color: #414141;
  transition: 0.3s;
}
.header_area .header_menu .menu_set a.active {
  color: #006EC8;
}
.header_area .header_menu .menu_set a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1000px) {
  .header_area .header_menu .menu_set {
    display: none;
  }
}
.header_area .header_menu .register {
  display: flex;
  gap: 10px;
}
.header_area .header_menu .register a {
  padding: 5px 0 2px 0;
  width: 150px;
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
}
@media screen and (max-width: 1000px) {
  .header_area .header_menu .register a {
    width: 50px;
  }
}
.header_area .header_menu .register a img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1000px) {
  .header_area .header_menu .register a img {
    width: 22px;
  }
}
.header_area .header_menu .register a p {
  white-space: nowrap;
}
@media screen and (max-width: 1000px) {
  .header_area .header_menu .register a p span {
    display: none;
  }
}
.header_area .header_menu .register a.hidden {
  opacity: 0;
  visibility: hidden;
}
.header_area .header_menu .register .line {
  border-radius: 5px;
  background: #06c755;
  text-align: center;
  color: white;
  text-decoration: none;
}
.header_area .header_menu .register .line:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1000px) {
  .header_area .header_menu .register .line {
    font-size: 10px;
    letter-spacing: 0.05em;
    line-height: 18px;
    text-align: center;
    color: #fff;
  }
}
@media screen and (max-width: 1000px) {
  .header_area .header_menu .register .line img {
    padding-top: 2px;
  }
}
.header_area .header_menu .register .message {
  background: #00c8dc;
  border-radius: 5px;
  display: block;
  text-align: center;
  color: white;
  text-decoration: none;
  flex-wrap: wrap;
}
.header_area .header_menu .register .message:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1000px) {
  .header_area .header_menu .register .message {
    font-size: 10px;
    letter-spacing: 0.05em;
    line-height: 18px;
    text-align: center;
    color: #fff;
  }
}
.header_area .header_menu .register .message img {
  padding-top: 5px;
}
@media screen and (max-width: 1000px) {
  .header_area .header_menu .register .message img {
    padding-top: 3px;
  }
}
.header_area .header_menu .register .message p {
  padding-top: 3px;
}
.header_area .header_menu .hamburger {
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  background: transparent;
  border: 2px solid #006ec8;
  cursor: pointer;
  transition: 0.3s;
}
.header_area .header_menu .hamburger.active {
  border-color: transparent;
}
.header_area .header_menu .hamburger.active span:first-child {
  transform: rotate(45deg) translate(8px, 8px);
}
.header_area .header_menu .hamburger.active span:nth-child(2) {
  display: none;
}
.header_area .header_menu .hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
}
.header_area .header_menu .hamburger span {
  width: 35px;
  height: 2px;
  background: #006ec8;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  transition: 0.3s;
}
@media screen and (max-width: 1000px) {
  .header_area .header_menu .hamburger {
    display: block;
  }
}

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

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

main {
  position: relative;
  padding-top: 78px;
}
@media screen and (max-width: 1000px) {
  main {
    padding-top: 68px;
  }
}
main .main_visual {
  position: relative;
}
main .main_visual::after {
  content: "";
  background: url(../img/banner_gradient.png);
  background-size: 100%;
  position: absolute;
  background-size: cover;
  background-position: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  main .main_visual::after {
    background: rgba(0, 0, 0, 0.4);
  }
}
main .main_visual .main_banner {
  max-height: 620px;
  min-height: 620px;
  display: flex;
  width: 100%;
}
main .main_visual .main_banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media screen and (max-width: 1200px) {
  main .main_visual .main_banner {
    max-height: 54.1666666667vw;
    min-height: 54.1666666667vw;
  }
}
@media screen and (max-width: 880px) {
  main .main_visual .main_banner {
    max-height: 56.8181818182vw;
    min-height: 56.8181818182vw;
  }
}
@media screen and (max-width: 768px) {
  main .main_visual .main_banner {
    max-height: 100%;
    min-height: auto;
  }
  main .main_visual .main_banner img {
    width: 100%;
  }
}
main .main_visual .main_intro {
  display: flex;
  position: absolute;
  align-items: center;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1000px;
  justify-content: space-between;
  top: 40px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  main .main_visual .main_intro {
    justify-content: center;
    text-align: center;
  }
}
@media screen and (max-width: 1200px) {
  main .main_visual .main_intro {
    max-width: 83.3333333333vw;
  }
}
main .main_visual .main_intro .intro_text {
  max-width: 435px;
}
@media screen and (max-width: 1200px) {
  main .main_visual .main_intro .intro_text {
    max-width: 36.25vw;
  }
}
main .main_visual .main_intro .intro_text h1 {
  font-family: "Noto_CJK_B";
  font-weight: bold;
  font-size: 42px;
  line-height: 70px;
  letter-spacing: 0.04em;
  color: white;
  display: inline;
  border-bottom: 4px dotted #fff;
  text-shadow: 0px 5px 5px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 1200px) {
  main .main_visual .main_intro .intro_text h1 {
    font-size: 3.5vw;
    line-height: 5.8333333333vw;
  }
}
@media screen and (max-width: 768px) {
  main .main_visual .main_intro .intro_text h1 {
    font-size: 6.4vw;
    text-align: center;
    line-height: 12vw;
    margin-left: 2.6666666667vw;
    text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
  }
}
main .main_visual .main_intro .intro_text h1 span {
  font-size: 56px;
  letter-spacing: 0.04em;
  text-align: left;
  line-height: 70px;
  color: #FFF500;
}
@media screen and (max-width: 1200px) {
  main .main_visual .main_intro .intro_text h1 span {
    font-size: 4.6666666667vw;
    line-height: 5.8333333333vw;
  }
}
@media screen and (max-width: 768px) {
  main .main_visual .main_intro .intro_text h1 span {
    font-size: 9.0666666667vw;
    text-align: center;
    line-height: 12vw;
  }
}
main .main_visual .main_intro .intro_text p {
  font-family: "Noto_CJK_B";
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 0.04em;
  line-height: 40px;
  text-align: left;
  color: #fff;
  text-shadow: 0px 3px 3px #000;
  margin-top: 20px;
}
@media screen and (max-width: 1200px) {
  main .main_visual .main_intro .intro_text p {
    font-size: 2vw;
    line-height: 3.3333333333vw;
    margin-top: 1.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  main .main_visual .main_intro .intro_text p {
    font-size: 4.2666666667vw;
    text-align: center;
    line-height: 6.6666666667vw;
    text-shadow: 0px 2px 5px #000;
  }
}
@media screen and (max-width: 768px) {
  main .main_visual .main_intro .intro_text {
    max-width: 100%;
    width: 100%;
  }
}
main .main_visual .main_intro .register_form {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  padding: 15px 20px;
  width: 405px;
}
@media screen and (max-width: 1200px) {
  main .main_visual .main_intro .register_form {
    width: 37.5vw;
    padding: 1.25vw 1.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  main .main_visual .main_intro .register_form {
    display: none;
  }
}
main .main_visual .main_intro .register_form h3 {
  font-family: "Noto_CJK_B";
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 40px;
  text-align: center;
  color: #fff500;
}
@media screen and (max-width: 1200px) {
  main .main_visual .main_intro .register_form h3 {
    font-size: 1.6666666667vw;
    line-height: 3.3333333333vw;
  }
}
main .main_visual .main_intro .register_form_area {
  padding: 8px 0;
  border-bottom: 1px dotted #fff;
}
@media screen and (max-width: 1200px) {
  main .main_visual .main_intro .register_form_area {
    padding: 0.6666666667vw;
  }
}
main .main_visual .main_intro .register_form_area .require {
  font-family: "Noto_CJK_B";
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 24px;
  text-align: left;
  color: #fff;
}
@media screen and (max-width: 1200px) {
  main .main_visual .main_intro .register_form_area .require {
    font-size: 1.0833333333vw;
    line-height: 2vw;
  }
}
main .main_visual .main_intro .register_form_area .require span {
  font-family: "Noto_CJK_M";
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 20px;
  text-align: center;
  color: #fff;
  margin-left: 20px;
  background: #e83819;
  padding: 0 2px;
}
@media screen and (max-width: 1200px) {
  main .main_visual .main_intro .register_form_area .require span {
    font-size: 1vw;
    line-height: 1.6666666667vw;
    margin-left: 1.6666666667vw;
  }
}
main .main_visual .main_intro .register_form_area .form_halfInput {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 8px;
}
@media screen and (max-width: 1200px) {
  main .main_visual .main_intro .register_form_area .form_halfInput {
    margin-top: 0.6666666667vw;
    gap: 2.0833333333vw;
  }
}
main .main_visual .main_intro .register_form_area .form_halfInput label {
  font-family: "Noto_CJK_B";
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 24px;
  text-align: left;
  color: #fff;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  main .main_visual .main_intro .register_form_area .form_halfInput label {
    font-size: 1.0833333333vw;
    line-height: 2vw;
  }
}
main .main_visual .main_intro .register_form_area .form_halfInput label input {
  font-family: "Noto_CJK_B";
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 24px;
  text-align: left;
  color: #414141;
  outline: none;
  border: none;
  padding: 8px;
  padding-left: 20px;
  margin-left: 12px;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  main .main_visual .main_intro .register_form_area .form_halfInput label input {
    font-size: 1.0833333333vw;
    line-height: 2vw;
    padding: 0.6666666667vw;
    padding-left: 1.6666666667vw;
    margin-left: 1vw;
  }
}
main .main_visual .main_intro .register_form_area .form_halfInput label input::placeholder {
  color: #c6c6c6;
}
main .main_visual .main_intro .register_form_area .form_halfInput label input.error {
  border: 1px solid #e83819;
}
main .main_visual .main_intro .register_form_area .form_input {
  margin-top: 8px;
}
@media screen and (max-width: 1200px) {
  main .main_visual .main_intro .register_form_area .form_input {
    margin-top: 0.6666666667vw;
  }
}
main .main_visual .main_intro .register_form_area .form_input input {
  font-family: "Noto_CJK_B";
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 24px;
  text-align: left;
  color: #414141;
  outline: none;
  border: none;
  padding: 8px;
  padding-left: 20px;
  width: 100%;
}
main .main_visual .main_intro .register_form_area .form_input input::placeholder {
  color: #c6c6c6;
}
@media screen and (max-width: 1200px) {
  main .main_visual .main_intro .register_form_area .form_input input {
    font-size: 1.0833333333vw;
    letter-spacing: 0.05em;
    line-height: 2vw;
    padding: 0.6666666667vw;
    padding-left: 1.6666666667vw;
  }
}
main .main_visual .main_intro .register_form_area .form_input input::placeholder {
  color: #c6c6c6;
}
main .main_visual .main_intro .register_form_area .form_input input.error {
  border: 1px solid #e83819;
}
main .main_visual .main_intro .register_form .privacy {
  font-family: "Noto Sans CJK JP";
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 24px;
  text-align: center;
  color: #fff;
  margin-top: 10px;
}
@media screen and (max-width: 1200px) {
  main .main_visual .main_intro .register_form .privacy {
    font-size: 1.0833333333vw;
    letter-spacing: 0.05em;
    line-height: 2vw;
  }
}
main .main_visual .main_intro .register_form .privacy label {
  display: flex;
  align-items: center;
  justify-content: center;
}
main .main_visual .main_intro .register_form .privacy input[type=checkbox] {
  outline: none;
  width: 13px;
  height: 13px;
  padding-top: 2px;
  border: 1px solid white;
  margin-right: 10px;
}
@media screen and (max-width: 1200px) {
  main .main_visual .main_intro .register_form .privacy input[type=checkbox] {
    width: 1.0833333333vw;
    height: 1.0833333333vw;
  }
}
main .main_visual .main_intro .register_form .privacy input[type=checkbox].error {
  -webkit-box-shadow: 0px 0px 0px 1px #e83819;
  -moz-box-shadow: 0px 0px 0px 1px #e83819;
  box-shadow: 0px 0px 0px 1px #e83819;
}
main .main_visual .main_intro .register_form .register_button {
  text-align: center;
}
main .main_visual .main_intro .register_form .register_button button {
  font-family: "Noto_CJK_B";
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 40px;
  text-align: center;
  color: #006ec8;
  background: #fff500;
  border-radius: 20px;
  outline: none;
  border: none;
  width: 75%;
  margin-top: 10px;
  cursor: pointer;
  box-shadow: 0px 3px 0px #006ec8;
  transition: 0.3s;
  position: relative;
}
main .main_visual .main_intro .register_form .register_button button:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1200px) {
  main .main_visual .main_intro .register_form .register_button button {
    font-size: 1.6666666667vw;
    line-height: 3.3333333333vw;
    border-radius: 1.6666666667vw;
    margin-top: 0.8333333333vw;
    box-shadow: 0px 0.25vw 0px #006ec8;
  }
}
main .main_visual .main_intro .register_form .register_button button span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
@media screen and (max-width: 1200px) {
  main .main_visual .main_intro .register_form .register_button button span {
    right: 1.6666666667vw;
  }
}
main .main_visual .main_intro .register_form .register_button button:hover {
  box-shadow: none;
}
main .main_visual .main_advertise {
  position: absolute;
  bottom: -125px;
  display: flex;
  gap: 54px;
  margin: auto;
  z-index: 1;
  width: 100%;
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  main .main_visual .main_advertise {
    bottom: -10.4166666667vw;
    gap: 4.5vw;
  }
}
@media screen and (max-width: 768px) {
  main .main_visual .main_advertise {
    gap: 1.3333333333vw;
    bottom: -14vw;
  }
}
main .main_visual .main_advertise .adver_box {
  width: 255px;
  height: 255px;
  z-index: 2;
  background: white;
  border-radius: 50%;
  background: linear-gradient(to top, #00c8dc 0.03%, #006ec8 100%);
  padding: 5px;
}
@media screen and (max-width: 1200px) {
  main .main_visual .main_advertise .adver_box {
    width: 21.25vw;
    height: 21.25vw;
    padding: 0.4166666667vw;
  }
}
@media screen and (max-width: 768px) {
  main .main_visual .main_advertise .adver_box {
    width: 29.3333333333vw;
    height: 29.3333333333vw;
    padding: 0.6666666667vw;
  }
}
main .main_visual .main_advertise .adver_box .adver_content {
  background: white;
  border-radius: 50%;
  height: 100%;
  width: 100%;
  padding-top: 25px;
}
@media screen and (max-width: 1200px) {
  main .main_visual .main_advertise .adver_box .adver_content {
    padding-top: 2.0833333333vw;
  }
}
@media screen and (max-width: 768px) {
  main .main_visual .main_advertise .adver_box .adver_content {
    padding-top: 0.8vw;
  }
}
main .main_visual .main_advertise .adver_box .adver_content .ad_logo {
  height: 60px;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1200px) {
  main .main_visual .main_advertise .adver_box .adver_content .ad_logo {
    height: 5vw;
  }
}
@media screen and (max-width: 768px) {
  main .main_visual .main_advertise .adver_box .adver_content .ad_logo {
    height: 6.5333333333vw;
  }
}
main .main_visual .main_advertise .adver_box .adver_content .star {
  width: 65px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
}
@media screen and (max-width: 1200px) {
  main .main_visual .main_advertise .adver_box .adver_content .star {
    width: 5.4166666667vw;
    margin-top: 0.8333333333vw;
  }
}
@media screen and (max-width: 768px) {
  main .main_visual .main_advertise .adver_box .adver_content .star {
    width: 7.5066666667vw;
  }
}
main .main_visual .main_advertise .adver_box .adver_content h2 {
  font-family: "Noto_CJK_B";
  font-weight: bold;
  font-size: 30px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
  color: #006ec8;
}
@media screen and (max-width: 1200px) {
  main .main_visual .main_advertise .adver_box .adver_content h2 {
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 768px) {
  main .main_visual .main_advertise .adver_box .adver_content h2 {
    font-size: 3.7333333333vw;
    letter-spacing: -0.05em;
    margin-top: 2px;
  }
}
main .main_visual .main_advertise .adver_box .adver_content p {
  font-family: "Noto_CJK_B";
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.8;
  text-align: center;
  color: #414141;
  margin-top: 5px;
}
@media screen and (max-width: 1200px) {
  main .main_visual .main_advertise .adver_box .adver_content p {
    font-size: 1.3333333333vw;
    margin-top: 0.4166666667vw;
  }
}
@media screen and (max-width: 768px) {
  main .main_visual .main_advertise .adver_box .adver_content p {
    font-size: 2.6666666667vw;
    margin-top: 0;
    line-height: 1.2;
  }
}
main .sp_register_form {
  background: linear-gradient(to top, #00c8dc 0.03%, #006ec8 100%);
  padding-top: 20vw;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  main .sp_register_form {
    display: none;
  }
}
main .sp_register_form .register_form {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  padding: 4vw;
  width: 89.3333333333vw;
  margin-left: auto;
  margin-right: auto;
}
main .sp_register_form .register_form h3 {
  font-family: "Noto_CJK_B";
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 30px;
  text-align: center;
  color: #fff500;
}
main .sp_register_form .register_form_area {
  padding: 8px 0;
  border-bottom: 1px dotted #fff;
}
main .sp_register_form .register_form_area .require {
  font-family: "Noto_CJK_B";
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 24px;
  text-align: left;
  color: #fff;
}
main .sp_register_form .register_form_area .require span {
  font-family: "Noto_CJK_M";
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 20px;
  text-align: center;
  color: #fff;
  margin-left: 10px;
  background: #e83819;
  padding: 0 2px;
}
main .sp_register_form .register_form_area .form_halfInput {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
main .sp_register_form .register_form_area .form_halfInput label {
  font-family: "Noto_CJK_B";
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 24px;
  text-align: left;
  color: #fff;
  display: flex;
  align-items: center;
}
main .sp_register_form .register_form_area .form_halfInput label input {
  font-family: "Noto_CJK_B";
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 24px;
  text-align: left;
  color: #414141;
  outline: none;
  border: none;
  padding: 8px;
  padding-left: 20px;
  margin-left: 12px;
  width: 100%;
}
main .sp_register_form .register_form_area .form_halfInput label input::placeholder {
  color: #c6c6c6;
}
main .sp_register_form .register_form_area .form_halfInput label input.error {
  border: 1px solid #e83819;
}
main .sp_register_form .register_form_area .form_input {
  margin-top: 8px;
}
main .sp_register_form .register_form_area .form_input input {
  font-family: "Noto_CJK_B";
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 24px;
  text-align: left;
  color: #c6c6c6;
  outline: none;
  border: none;
  padding: 8px;
  padding-left: 20px;
  width: 100%;
}
main .sp_register_form .register_form_area .form_input input::placeholder {
  color: #c6c6c6;
}
main .sp_register_form .register_form_area .form_input input.error {
  border: 1px solid #e83819;
}
main .sp_register_form .register_form .privacy {
  font-family: "Noto Sans CJK JP";
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.01em;
  line-height: 24px;
  text-align: center;
  color: #fff;
  margin-top: 10px;
}
main .sp_register_form .register_form .privacy label {
  display: flex;
  align-items: center;
  justify-content: center;
}
main .sp_register_form .register_form .privacy input[type=checkbox] {
  outline: none;
  width: 13px;
  height: 13px;
  padding-top: 2px;
  border: 1px solid white;
  margin-right: 10px;
}
main .sp_register_form .register_form .privacy input[type=checkbox].error {
  -webkit-box-shadow: 0px 0px 0px 1px #e83819;
  -moz-box-shadow: 0px 0px 0px 1px #e83819;
  box-shadow: 0px 0px 0px 1px #e83819;
}
main .sp_register_form .register_form .register_button {
  text-align: center;
}
main .sp_register_form .register_form .register_button button {
  font-family: "Noto_CJK_B";
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 35px;
  text-align: center;
  color: #006ec8;
  background: #fff500;
  border-radius: 20px;
  outline: none;
  border: none;
  width: 75%;
  margin-top: 10px;
  cursor: pointer;
  box-shadow: 0px 3px 0px #006ec8;
  transition: 0.3s;
  position: relative;
}
main .sp_register_form .register_form .register_button button span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
main .sp_register_form .register_form .register_button button:hover {
  box-shadow: none;
}
main .problem_area {
  padding-top: 195px;
  background: #e0eef8;
  padding-bottom: 80px;
  position: relative;
}
@media screen and (max-width: 1500px) {
  main .problem_area {
    padding-top: 13vw;
    padding-bottom: 5.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  main .problem_area {
    padding-top: 40px;
    padding-bottom: 13.3333333333vw;
  }
}
main .problem_area::after {
  content: "";
  position: absolute;
  bottom: -40px;
  width: 0;
  height: 0;
  border: 40px solid transparent;
  border-bottom: 0;
  border-top: 40px solid #e0eef8;
  display: block;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1500px) {
  main .problem_area::after {
    bottom: -2.6666666667vw;
    border: 2.6666666667vw solid transparent;
    border-top: 2.6666666667vw solid #e0eef8;
  }
}
@media screen and (max-width: 768px) {
  main .problem_area::after {
    border: 20px solid transparent;
    border-bottom: 0;
    border-top: 20px solid #e0eef8;
    bottom: -20px;
  }
}
main .problem_area .problem_list {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 1500px) {
  main .problem_area .problem_list {
    gap: 0.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  main .problem_area .problem_list {
    display: block;
  }
}
main .problem_area .problem_list h3 {
  font-family: "Noto Sans CJK JP";
  font-weight: bold;
  font-size: 45px;
  letter-spacing: 0.08em;
  text-align: center;
  color: #006ec8;
  background: linear-gradient(to right, #006ec8 0%, #32c8c8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1500px) {
  main .problem_area .problem_list h3 {
    font-size: 3vw;
  }
}
@media screen and (max-width: 768px) {
  main .problem_area .problem_list h3 {
    font-size: 30px;
    letter-spacing: 0.05em;
    line-height: 45px;
  }
}
main .problem_area .problem_list .list {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  margin-bottom: 55px;
}
@media screen and (max-width: 1500px) {
  main .problem_area .problem_list .list {
    max-width: 44vw;
    margin-top: 2.6666666667vw;
    margin-bottom: 3.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  main .problem_area .problem_list .list {
    max-width: 100%;
    width: 90%;
    margin-top: 25px;
    margin-bottom: 40px;
  }
}
main .problem_area .problem_list .list p {
  font-family: "Noto_CJK_B";
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 40px;
  text-align: left;
  color: #414141;
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px dotted #006ec8;
  gap: 20px;
}
@media screen and (max-width: 1500px) {
  main .problem_area .problem_list .list p {
    font-size: 1.3333333333vw;
    line-height: 2.6666666667vw;
    padding: 1.3333333333vw 0;
    gap: 1.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  main .problem_area .problem_list .list p {
    font-size: 18px;
    gap: 15px;
    line-height: 35px;
    padding: 15px 0;
  }
}
main .problem_area .problem_list .list p::before {
  content: "";
  background: url("../img/check.png") no-repeat;
  width: 40px;
  height: 40px;
  background-size: 100%;
  display: block;
}
@media screen and (max-width: 1500px) {
  main .problem_area .problem_list .list p::before {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  main .problem_area .problem_list .list p::before {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }
}
main .problem_area .problem_list .adver_text {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  font-family: "Noto_CJK_B";
  font-weight: bold;
  font-size: 28px;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  color: #414141;
  --underline-width-scale: 0;
  display: inline;
  box-decoration-break: clone;
  background-repeat: no-repeat;
  background-image: linear-gradient(180deg, var(--underline-color), var(--underline-color)), var(--cap-image-left), var(--cap-image-right);
  background-position-x: calc(var(--underline-cap-width) * var(--underline-width-scale)), 0, 100%;
  background-position-y: calc(100% - var(--underline-offset-y) * -1);
  background-size: calc(100% - var(--underline-cap-width) * var(--underline-width-scale) * 2) calc(var(--underline-width) * 1px), auto calc(var(--underline-width) * 1px), auto calc(var(--underline-width) * 1px);
}
@media screen and (max-width: 1500px) {
  main .problem_area .problem_list .adver_text {
    font-size: 1.8666666667vw;
  }
}
@media screen and (max-width: 768px) {
  main .problem_area .problem_list .adver_text {
    font-size: 20px;
    line-height: 40px;
    max-width: 100%;
    position: relative;
    left: 20px;
  }
}
main .problem_area .problem_list .sub_image {
  position: relative;
  max-width: 338px;
  min-width: 338px;
}
@media screen and (max-width: 1500px) {
  main .problem_area .problem_list .sub_image {
    max-width: 22.5333333333vw;
    min-width: 22.5333333333vw;
  }
}
@media screen and (max-width: 768px) {
  main .problem_area .problem_list .sub_image {
    max-width: 100%;
    min-width: auto;
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  main .problem_area .problem_list .sub_image {
    position: absolute;
    bottom: 0;
  }
}
main .problem_area .problem_list .sub_image img {
  display: block;
}
main .problem_area .problem_list .sub_image .notebook {
  max-width: 338px;
  margin-top: 20px;
}
@media screen and (max-width: 1500px) {
  main .problem_area .problem_list .sub_image .notebook {
    max-width: 22.5333333333vw;
    margin-top: 1.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  main .problem_area .problem_list .sub_image .notebook {
    display: none;
  }
}
main .problem_area .problem_list .sub_image .gear {
  max-width: 143px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-top: 155px;
}
@media screen and (max-width: 1500px) {
  main .problem_area .problem_list .sub_image .gear {
    max-width: 9.5333333333vw;
    margin-top: 10.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  main .problem_area .problem_list .sub_image .gear {
    max-width: 13.3333333333vw;
    position: absolute;
    bottom: 16vw;
    z-index: 5;
    right: 32vw;
  }
}
main .problem_area .problem_list .sub_image .clock {
  max-width: 130px;
  margin-top: 70px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1500px) {
  main .problem_area .problem_list .sub_image .clock {
    max-width: 8.6666666667vw;
    margin-top: 4.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  main .problem_area .problem_list .sub_image .clock {
    max-width: 11.7333333333vw;
    position: absolute;
    bottom: 26.6666666667vw;
    z-index: 5;
    right: 2.6666666667vw;
  }
}
main .problem_area .problem_list .sub_image .man {
  max-width: 719px;
  position: absolute;
  bottom: -80px;
  right: -100px;
}
@media screen and (max-width: 1500px) {
  main .problem_area .problem_list .sub_image .man {
    max-width: 47.9333333333vw;
    bottom: -5.3333333333vw;
    right: -6.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  main .problem_area .problem_list .sub_image .man {
    position: absolute;
    max-width: 77.8666666667vw;
    right: -20px;
    bottom: -13.3333333333vw;
  }
}
main .merit_area {
  margin-top: 100px;
}
@media screen and (max-width: 1500px) {
  main .merit_area {
    margin-top: 6.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  main .merit_area {
    margin-top: 60px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
main .merit_area h2 {
  font-size: 45px;
  font-family: "Noto_CJK_B";
  color: #006ec8;
  background: linear-gradient(to right, #006ec8 0%, #32c8c8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1500px) {
  main .merit_area h2 {
    font-size: 3vw;
  }
}
@media screen and (max-width: 768px) {
  main .merit_area h2 {
    font-size: 30px;
    letter-spacing: 0.05em;
    line-height: 45px;
  }
}
main .merit_area .reason_area {
  margin-top: 90px;
}
@media screen and (max-width: 1500px) {
  main .merit_area .reason_area {
    margin-top: 6vw;
  }
}
@media screen and (max-width: 768px) {
  main .merit_area .reason_area {
    margin-top: 13.3333333333vw;
  }
}
main .merit_area .reason_area .reason_part {
  background: linear-gradient(90deg, #fff 30%, #E0F8FB 30%);
  padding: 80px 0;
  margin-bottom: 100px;
}
@media screen and (max-width: 1500px) {
  main .merit_area .reason_area .reason_part {
    margin-bottom: 6.6666666667vw;
    padding: 5.3333333333vw 0;
  }
}
@media screen and (max-width: 768px) {
  main .merit_area .reason_area .reason_part {
    margin-bottom: 40px;
    padding: 0 0 13.3333333333vw;
    background: linear-gradient(to bottom, #fff 13%, #E0F8FB 13%);
  }
}
main .merit_area .reason_area .reason_part_2 {
  background: linear-gradient(90deg, #E0EEF8 70%, #fff 70%);
  padding: 70px 0;
  margin-bottom: 100px;
}
@media screen and (max-width: 1500px) {
  main .merit_area .reason_area .reason_part_2 {
    margin-bottom: 6.6666666667vw;
    padding: 4.6666666667vw 0;
  }
}
@media screen and (max-width: 768px) {
  main .merit_area .reason_area .reason_part_2 {
    margin-bottom: 40px;
    padding: 13.3333333333vw 0;
    background: linear-gradient(to bottom, #fff 13%, #E0F8FB 13%);
  }
}
main .merit_area .reason_area .reason_part_3 {
  background: linear-gradient(90deg, #fff 30%, #E0F8FB 30%);
  padding: 80px 0;
  margin-bottom: 100px;
}
@media screen and (max-width: 1500px) {
  main .merit_area .reason_area .reason_part_3 {
    margin-bottom: 6.6666666667vw;
    padding: 5.3333333333vw 0;
  }
}
@media screen and (max-width: 768px) {
  main .merit_area .reason_area .reason_part_3 {
    margin-bottom: 40px;
    padding: 13.3333333333vw 0;
    background: linear-gradient(to bottom, #fff 13%, #E0F8FB 13%);
  }
}
main .merit_area .reason_area_box {
  display: flex;
  max-width: 830px;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  gap: 105px;
}
main .merit_area .reason_area_box.reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  main .merit_area .reason_area_box.reverse {
    flex-direction: column;
  }
}
main .merit_area .reason_area_box.reverse .reason_image {
  width: 235px;
  position: relative;
}
@media screen and (max-width: 1500px) {
  main .merit_area .reason_area_box.reverse .reason_image {
    width: 15.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  main .merit_area .reason_area_box.reverse .reason_image {
    width: 73.3333333333vw;
  }
}
main .merit_area .reason_area_box.reverse .reason_image img {
  position: absolute;
  left: 0;
  right: inherit;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  main .merit_area .reason_area_box.reverse .reason_image img {
    max-width: 100%;
    width: 100%;
    position: relative;
    top: 0;
    transform: none;
  }
}
@media screen and (max-width: 1500px) {
  main .merit_area .reason_area_box {
    max-width: 55.3333333333vw;
    gap: 7vw;
  }
}
@media screen and (max-width: 768px) {
  main .merit_area .reason_area_box {
    max-width: 100%;
    flex-direction: column;
    width: 100%;
    gap: 30px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
  }
}
main .merit_area .reason_area_box .reason_image {
  width: 235px;
  position: relative;
}
@media screen and (max-width: 1500px) {
  main .merit_area .reason_area_box .reason_image {
    width: 15.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  main .merit_area .reason_area_box .reason_image {
    width: 73.3333333333vw;
  }
}
main .merit_area .reason_area_box .reason_image img {
  position: absolute;
  max-width: 570px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1500px) {
  main .merit_area .reason_area_box .reason_image img {
    max-width: 38vw;
  }
}
@media screen and (max-width: 768px) {
  main .merit_area .reason_area_box .reason_image img {
    max-width: 100%;
    width: 100%;
    position: relative;
    top: 0;
    transform: none;
  }
}
main .merit_area .reason_area_box .reason_text {
  max-width: 490px;
}
@media screen and (max-width: 1500px) {
  main .merit_area .reason_area_box .reason_text {
    max-width: 32.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  main .merit_area .reason_area_box .reason_text {
    max-width: 100%;
    width: 73.3333333333vw;
  }
}
main .merit_area .reason_area_box .reason_text .reason_num {
  font-family: "Roboto";
  font-weight: bold;
  font-size: 32px;
  line-height: 50px;
  text-align: left;
  color: #00c8dc;
}
@media screen and (max-width: 1500px) {
  main .merit_area .reason_area_box .reason_text .reason_num {
    font-size: 2.1333333333vw;
    line-height: 3.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  main .merit_area .reason_area_box .reason_text .reason_num {
    font-size: 20px;
    line-height: 30px;
  }
}
main .merit_area .reason_area_box .reason_text .reason_title {
  font-family: "Noto_CJK_B";
  font-weight: bold;
  font-size: 40px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: left;
  color: #006ec8;
  border-bottom: 1px dotted #006ec8;
  padding-bottom: 10px;
}
@media screen and (max-width: 1500px) {
  main .merit_area .reason_area_box .reason_text .reason_title {
    font-size: 2.6666666667vw;
    padding-bottom: 0.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  main .merit_area .reason_area_box .reason_text .reason_title {
    font-size: 22px;
    letter-spacing: 0.05em;
    line-height: 40px;
  }
}
main .merit_area .reason_area_box .reason_text .reason_content {
  margin-top: 25px;
}
@media screen and (max-width: 1500px) {
  main .merit_area .reason_area_box .reason_text .reason_content {
    margin-top: 1.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  main .merit_area .reason_area_box .reason_text .reason_content {
    margin-top: 20px;
  }
}
main .merit_area .reason_area_box .reason_text .reason_content .reason_subTitle {
  font-family: "Noto_CJK_M";
  font-weight: normal;
  font-size: 20px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-align: left;
  color: #006ec8;
}
@media screen and (max-width: 1500px) {
  main .merit_area .reason_area_box .reason_text .reason_content .reason_subTitle {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  main .merit_area .reason_area_box .reason_text .reason_content .reason_subTitle {
    font-size: 16px;
    letter-spacing: 0.08em;
    line-height: 30px;
  }
}
main .merit_area .reason_area_box .reason_text .reason_content .reason_subTitle span {
  margin-right: 10px;
}
@media screen and (max-width: 1500px) {
  main .merit_area .reason_area_box .reason_text .reason_content .reason_subTitle span {
    margin-right: 0.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  main .merit_area .reason_area_box .reason_text .reason_content .reason_subTitle span {
    margin-right: 8px;
  }
}
main .merit_area .reason_area_box .reason_text .reason_content .reason_exp {
  font-family: "Noto_CJK_M";
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 30px;
  text-align: left;
  color: #414141;
  margin-top: 10px;
}
@media screen and (max-width: 1500px) {
  main .merit_area .reason_area_box .reason_text .reason_content .reason_exp {
    font-size: 1.0666666667vw;
    margin-top: 0.6666666667vw;
    line-height: 2vw;
  }
}
@media screen and (max-width: 768px) {
  main .merit_area .reason_area_box .reason_text .reason_content .reason_exp {
    font-size: 16px;
    letter-spacing: 0.08em;
    line-height: 30px;
    text-align: justify;
  }
}
main .compare_area {
  background: #B2EEF4;
  padding: 90px 10px 100px;
}
@media screen and (max-width: 1000px) {
  main .compare_area {
    padding: 9vw 1vw 10vw;
  }
}
main .compare_area h2 {
  font-family: "Noto_CJK_B";
  font-weight: bold;
  font-size: 30px;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  color: #414141;
  position: relative;
  width: 320px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1000px) {
  main .compare_area h2 {
    width: 32vw;
    font-size: 3vw;
  }
}
@media screen and (max-width: 768px) {
  main .compare_area h2 {
    width: 250px;
    font-size: 24px;
    letter-spacing: 0.05em;
    line-height: 24px;
  }
}
main .compare_area h2::before {
  content: "";
  background: #006EC8;
  width: 160px;
  left: 0;
  bottom: -13px;
  height: 5px;
  position: absolute;
}
@media screen and (max-width: 1000px) {
  main .compare_area h2::before {
    width: 16vw;
    bottom: -1.3vw;
    height: 0.5vw;
  }
}
@media screen and (max-width: 768px) {
  main .compare_area h2::before {
    width: 125px;
    height: 5px;
    bottom: -13px;
  }
}
main .compare_area h2::after {
  content: "";
  background: #00C8DC;
  width: 160px;
  right: 0;
  bottom: -13px;
  height: 5px;
  position: absolute;
}
@media screen and (max-width: 1000px) {
  main .compare_area h2::after {
    width: 16vw;
    bottom: -1.3vw;
    height: 0.5vw;
  }
}
@media screen and (max-width: 768px) {
  main .compare_area h2::after {
    width: 125px;
    height: 5px;
    bottom: -13px;
  }
}
main .compare_area .compare_table {
  max-width: 870.5px;
  margin-top: 55px;
  margin-left: auto;
  margin-right: auto;
  word-wrap: break-word;
}
@media screen and (max-width: 768px) {
  main .compare_area .compare_table {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  main .compare_area .compare_table {
    max-width: 87.05vw;
    margin-top: 5.5vw;
  }
}
main .compare_area .compare_table table, main .compare_area .compare_table tr, main .compare_area .compare_table td, main .compare_area .compare_table th {
  border-collapse: separate;
  border: 2px solid #B2EEF4;
}
main .compare_area .compare_table tr th {
  text-align: center;
  font-family: "Noto_CJK_B";
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 20px;
  color: #414141;
  text-align: center;
  background: #d9d9d9;
  padding: 24px 0;
}
@media screen and (max-width: 1000px) {
  main .compare_area .compare_table tr th {
    font-size: 1.3vw;
    line-height: 2vw;
    padding: 2.4vw 0;
  }
}
main .compare_area .compare_table tr th:first-of-type {
  width: 130px;
  background: transparent;
}
@media screen and (max-width: 1000px) {
  main .compare_area .compare_table tr th:first-of-type {
    width: 13vw;
  }
}
main .compare_area .compare_table tr th:nth-of-type(2) {
  color: #fff;
  background: #006ec8;
}
main .compare_area .compare_table tr th:not(:first-of-type) {
  width: 185px;
}
@media screen and (max-width: 1000px) {
  main .compare_area .compare_table tr th:not(:first-of-type) {
    width: 18.5vw;
  }
}
main .compare_area .compare_table tr:first-of-type td:not(:first-of-type) {
  color: #006EC8;
}
main .compare_area .compare_table tr td {
  text-align: center;
  font-family: "Noto Sans CJK JP";
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 20px;
  text-align: center;
  color: #fff;
  background: #676767;
  padding: 10px 5px;
}
@media screen and (max-width: 1000px) {
  main .compare_area .compare_table tr td {
    font-size: 1.3vw;
    line-height: 2vw;
    padding: 1vw 0.5vw;
  }
}
main .compare_area .compare_table tr td:not(:nth-of-type(2)) p.title {
  color: #414141;
}
main .compare_area .compare_table tr td p {
  font-family: "Noto Sans CJK JP";
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 20px;
  text-align: center;
  color: #414141;
}
@media screen and (max-width: 1000px) {
  main .compare_area .compare_table tr td p {
    font-size: 1.2vw;
    line-height: 2vw;
  }
}
main .compare_area .compare_table tr td p.context {
  margin-top: 10px;
}
@media screen and (max-width: 1000px) {
  main .compare_area .compare_table tr td p.context {
    margin-top: 1vw;
  }
}
main .compare_area .compare_table tr td p.circle {
  font-size: 16px;
  line-height: 24px;
  color: #00c8dc;
}
@media screen and (max-width: 1000px) {
  main .compare_area .compare_table tr td p.circle {
    font-size: 1.6vw;
    line-height: 2.4vw;
  }
}
main .compare_area .compare_table tr td p.triangle {
  font-size: 16px;
  line-height: 24px;
  color: #00c8dc;
}
@media screen and (max-width: 1000px) {
  main .compare_area .compare_table tr td p.triangle {
    font-size: 2.6vw;
    line-height: 2.4vw;
  }
}
main .compare_area .compare_table tr td p.title {
  font-family: "Noto_CJK_B";
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 24px;
  text-align: center;
  color: #006ec8;
  margin-top: 10px;
}
@media screen and (max-width: 1000px) {
  main .compare_area .compare_table tr td p.title {
    font-size: 1.3vw;
    line-height: 2.4vw;
    margin-top: 1vw;
  }
}
main .compare_area .compare_table tr td:nth-of-type(2) {
  line-height: 24px;
  color: #006ec8;
  background: #e5f0f9;
}
@media screen and (max-width: 1000px) {
  main .compare_area .compare_table tr td:nth-of-type(2) {
    line-height: 2.4vw;
  }
}
main .compare_area .compare_table tr td:nth-of-type(3), main .compare_area .compare_table tr td:nth-of-type(4), main .compare_area .compare_table tr td:nth-of-type(5) {
  line-height: 24px;
  background: white;
  color: #414141;
}
@media screen and (max-width: 1000px) {
  main .compare_area .compare_table tr td:nth-of-type(3), main .compare_area .compare_table tr td:nth-of-type(4), main .compare_area .compare_table tr td:nth-of-type(5) {
    line-height: 2.4vw;
  }
}
main .compare_area .sp_compare_table {
  margin-top: 30px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  main .compare_area .sp_compare_table {
    display: none;
  }
}
main .compare_area .sp_compare_table table, main .compare_area .sp_compare_table tr, main .compare_area .sp_compare_table td, main .compare_area .sp_compare_table th {
  border-collapse: separate;
  border: 2px solid #B2EEF4;
}
main .compare_area .sp_compare_table table {
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  margin-bottom: 20px;
}
main .compare_area .sp_compare_table table th {
  background: #414141;
  font-family: "Noto_CJK_M";
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 30px;
  text-align: center;
  color: #fff;
}
main .compare_area .sp_compare_table table tr td {
  border: 2px solid #b2eef4;
  font-family: "Noto_CJK_M";
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 18px;
  text-align: center;
  background: #e5f0f9;
  color: #414141;
  height: 90px;
  padding: 10px 5px;
}
main .compare_area .sp_compare_table table tr td:first-child {
  width: 35%;
  font-family: "Noto_CJK_B";
}
main .compare_area .sp_compare_table table tr td:last-child {
  width: 65%;
}
main .compare_area .sp_compare_table table tr td .circle {
  font-size: 12px;
  line-height: 24px;
  color: #00c8dc;
}
main .compare_area .sp_compare_table table tr td .triangle {
  font-size: 12px;
  line-height: 24px;
  color: #00c8dc;
}
main .compare_area .sp_compare_table table tr td .title {
  font-family: "Noto_CJK_B";
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 24px;
  text-align: center;
  color: #414141;
  margin-bottom: 5px;
}
main .compare_area .sp_compare_table table tr:first-of-type td:first-child {
  background: #006ec8;
  color: #fff;
  font-family: "Noto_CJK_B";
}
main .compare_area .sp_compare_table table tr:first-of-type td:last-child {
  color: #006ec8;
  background: #e5f0f9;
}
main .compare_area .sp_compare_table table tr:first-of-type td:last-child .title {
  color: #006ec8;
}
main .consulting_area {
  background: url(../img/freelance.png) no-repeat;
  background-size: cover;
  padding-bottom: 70px;
  padding-top: 70px;
}
@media screen and (max-width: 768px) {
  main .consulting_area {
    padding-bottom: 35px;
    padding-top: 35px;
  }
}
main .consulting_area h2 {
  font-family: "Noto_CJK_B";
  font-weight: bold;
  font-size: 30px;
  letter-spacing: 0.05em;
  line-height: 1.3;
  text-align: center;
  color: #fff;
  max-width: 490px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
main .consulting_area h2::after {
  content: "";
  bottom: -10px;
  height: 1px;
  border-bottom: 1px dotted white;
  width: 100%;
  position: absolute;
  left: 0;
}
@media screen and (max-width: 768px) {
  main .consulting_area h2 {
    font-size: 24px;
    letter-spacing: 0.05em;
    line-height: 24px;
    max-width: 295px;
  }
}
main .consulting_area .consulting_link {
  width: 490px;
  border-radius: 40px;
  background: #fff500;
  font-family: "Noto_CJK_B";
  font-weight: bold;
  font-size: 30px;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  color: #006ec8;
  padding: 16px;
  position: relative;
  display: block;
  text-decoration: none;
  margin-left: auto;
  margin-right: auto;
  margin-top: 90px;
  box-shadow: 0 5px 0 #006EC8;
  transition: 0.3s;
}
main .consulting_area .consulting_link:hover {
  background: rgba(255, 245, 0, 0.7);
}
@media screen and (max-width: 768px) {
  main .consulting_area .consulting_link {
    width: 335px;
    font-size: 24px;
    line-height: 24px;
    text-align: right;
    padding: 10px;
    padding-right: 45px;
    margin-top: 40px;
  }
}
main .consulting_area .consulting_link span {
  right: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  main .consulting_area .consulting_link span {
    font-size: 20px;
    right: 15px;
  }
}
main .consulting_area .consulting_link::before {
  content: "";
  background: url(../img/clock02.png) no-repeat;
  width: 110px;
  height: 110px;
  background-size: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -55px;
}
@media screen and (max-width: 768px) {
  main .consulting_area .consulting_link::before {
    width: 75px;
    height: 75px;
    left: -2px;
  }
}
main .intro_area {
  background: #E0EEF8;
  padding: 90px 0;
}
@media screen and (max-width: 768px) {
  main .intro_area {
    padding: 30px 0;
  }
}
main .intro_area h2 {
  font-family: "Noto_CJK_B";
  font-weight: bold;
  font-size: 30px;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  color: #414141;
  position: relative;
  width: 320px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  main .intro_area h2 {
    font-size: 24px;
    width: 250px;
  }
}
main .intro_area h2::before {
  content: "";
  background: #006EC8;
  width: 160px;
  left: 0;
  bottom: -13px;
  height: 5px;
  position: absolute;
}
@media screen and (max-width: 768px) {
  main .intro_area h2::before {
    width: 125px;
  }
}
main .intro_area h2::after {
  content: "";
  background: #00C8DC;
  width: 160px;
  right: 0;
  bottom: -13px;
  height: 5px;
  position: absolute;
}
@media screen and (max-width: 768px) {
  main .intro_area h2::after {
    width: 125px;
  }
}
main .intro_area .intro_list {
  margin-top: 65px;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  /* the parent */
}
main .intro_area .intro_list .slick-slide {
  margin: 0 10px;
  height: inherit !important;
}
main .intro_area .intro_list .slick-track {
  display: flex !important;
}
main .intro_area .intro_list .slick-list {
  margin: 0 -10px;
  padding-bottom: 4px !important;
}
main .intro_area .intro_list .slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 45px;
}
main .intro_area .intro_list .slick-dots li.slick-active button {
  background: #006ec8;
}
main .intro_area .intro_list .slick-dots li button {
  cursor: pointer;
  text-indent: -9999px;
  width: 15px;
  height: 15px;
  outline: none;
  border: none;
  background: #c6c6c6;
}
main .intro_area .intro_list .intro_list_box {
  border-width: 5px;
  padding: 20px;
  border-style: solid;
  border: none;
  border-top: 5px solid #00c8dc;
  border-bottom: none;
  background: white;
  border-image: linear-gradient(to right, #00c8dc 0.03%, #006ec8 100%) 100 0;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  width: 100%;
  display: block;
}
main .intro_area .intro_list .intro_list_box .tag {
  font-family: "Roboto";
  font-weight: bold;
  font-size: 12px;
  line-height: 50px;
  text-align: center;
  color: #fff;
  border-radius: 10px;
  background: #00c8dc;
  padding: 2px 15px;
}
main .intro_area .intro_list .intro_list_box .senior {
  font-family: "Roboto";
  font-weight: bold;
  font-size: 12px;
  line-height: 50px;
  text-align: center;
  color: #fff;
  border-radius: 10px;
  background: #006ec8;
  padding: 2px 15px;
  margin-left: 10px;
}
main .intro_area .intro_list .intro_list_box .title {
  height: 110.21px;
  font-family: "Noto_CJK_B";
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 32px;
  text-align: left;
  color: #414141;
  border-bottom: 1px dotted #006ec8;
}
@media screen and (max-width: 768px) {
  main .intro_area .intro_list .intro_list_box .title {
    height: auto;
    padding-bottom: 10px;
  }
}
main .intro_area .intro_list .intro_list_box .intro_content p {
  margin-top: 15px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: "Noto_CJK_B";
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 24px;
  font-size: 13px;
  text-align: left;
  color: #006ec8;
}
main .intro_area .intro_list .intro_list_box .intro_content p .cost {
  font-size: 20px;
}
main .intro_area .intro_list .intro_list_box .intro_content p img {
  display: block;
  margin-top: 4px;
}
main .intro_area .intro_list .intro_list_box .intro_content .clock,
main .intro_area .intro_list .intro_list_box .intro_content .computer,
main .intro_area .intro_list .intro_list_box .intro_content .map,
main .intro_area .intro_list .intro_list_box .intro_content .user {
  color: #414141;
}
main .customer_area {
  padding: 90px 0;
}
@media screen and (max-width: 1100px) {
  main .customer_area {
    padding: 8.1818181818vw 0;
  }
}
@media screen and (max-width: 768px) {
  main .customer_area {
    padding: 30px 0;
  }
}
main .customer_area h2 {
  font-family: "Noto_CJK_B";
  font-weight: bold;
  font-size: 30px;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  color: #414141;
  position: relative;
  width: 320px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1100px) {
  main .customer_area h2 {
    font-size: 2.7272727273vw 0;
    width: 29.0909090909vw;
  }
}
@media screen and (max-width: 768px) {
  main .customer_area h2 {
    font-size: 24px;
    letter-spacing: 0.05em;
    line-height: 24px;
    width: 250px;
  }
}
main .customer_area h2::before {
  content: "";
  background: #006EC8;
  width: 160px;
  left: 0;
  bottom: -13px;
  height: 5px;
  position: absolute;
}
@media screen and (max-width: 1100px) {
  main .customer_area h2::before {
    width: 14.5454545455vw;
    height: 0.4545454545vw;
    bottom: -1.1818181818vw;
  }
}
@media screen and (max-width: 768px) {
  main .customer_area h2::before {
    width: 125px;
    height: 5px;
    bottom: -13px;
  }
}
main .customer_area h2::after {
  content: "";
  background: #00C8DC;
  width: 160px;
  right: 0;
  bottom: -13px;
  height: 5px;
  position: absolute;
}
@media screen and (max-width: 1100px) {
  main .customer_area h2::after {
    width: 14.5454545455vw;
    height: 0.4545454545vw;
    bottom: -1.1818181818vw;
  }
}
@media screen and (max-width: 768px) {
  main .customer_area h2::after {
    width: 125px;
    height: 5px;
    bottom: -13px;
  }
}
main .customer_area .customer_list {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 80px;
}
@media screen and (max-width: 1100px) {
  main .customer_area .customer_list {
    max-width: 90.9090909091vw;
    margin-top: 7.2727272727vw;
  }
}
@media screen and (max-width: 768px) {
  main .customer_area .customer_list {
    margin-top: 40px;
  }
}
main .customer_area .customer_list_group {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1100px) {
  main .customer_area .customer_list_group {
    gap: 1.8181818182vw;
    margin-bottom: 3.6363636364vw;
  }
}
@media screen and (max-width: 768px) {
  main .customer_area .customer_list_group {
    gap: 20px;
    margin-bottom: 20px;
    flex-direction: column;
  }
}
main .customer_area .customer_list_group:last-child {
  margin-bottom: 0;
}
main .customer_area .customer_list_group .customer_list_box {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 1100px) {
  main .customer_area .customer_list_group .customer_list_box {
    gap: 1.8181818182vw;
  }
}
@media screen and (max-width: 768px) {
  main .customer_area .customer_list_group .customer_list_box {
    gap: 0;
    flex-direction: column;
  }
}
main .customer_area .customer_list_group .customer_list_box .customer_image {
  width: 100px;
}
main .customer_area .customer_list_group .customer_list_box .customer_image p {
  font-family: "Noto_CJK_M";
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
  color: #414141;
}
@media screen and (max-width: 1100px) {
  main .customer_area .customer_list_group .customer_list_box .customer_image p {
    font-size: 1.6363636364vw;
  }
}
@media screen and (max-width: 768px) {
  main .customer_area .customer_list_group .customer_list_box .customer_image p {
    font-size: 18px;
    font-family: "Noto_CJK_B";
    font-weight: bold;
  }
}
@media screen and (max-width: 1100px) {
  main .customer_area .customer_list_group .customer_list_box .customer_image {
    width: 9.0909090909vw;
  }
}
@media screen and (max-width: 768px) {
  main .customer_area .customer_list_group .customer_list_box .customer_image {
    width: 100%;
    gap: 10px;
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  main .customer_area .customer_list_group .customer_list_box .customer_image img {
    width: 100px;
  }
}
main .customer_area .customer_list_group .customer_list_box .customer_profile {
  width: 360px;
  background: #e0eef8;
  padding: 30px;
  position: relative;
}
@media screen and (max-width: 1100px) {
  main .customer_area .customer_list_group .customer_list_box .customer_profile {
    width: 32.7272727273vw;
    padding: 2.7272727273vw;
  }
}
@media screen and (max-width: 768px) {
  main .customer_area .customer_list_group .customer_list_box .customer_profile {
    width: 100%;
    padding: 20px;
    margin-top: 20px;
  }
}
main .customer_area .customer_list_group .customer_list_box .customer_profile::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 20px solid #e0eef8;
  position: absolute;
  left: -20px;
  top: 40px;
}
@media screen and (max-width: 1100px) {
  main .customer_area .customer_list_group .customer_list_box .customer_profile::before {
    left: -1.8181818182vw;
    top: 3.6363636364vw;
    border-top: 0.9090909091vw solid transparent;
    border-bottom: 0.9090909091vw solid transparent;
    border-right: 1.8181818182vw solid #e0eef8;
  }
}
@media screen and (max-width: 768px) {
  main .customer_area .customer_list_group .customer_list_box .customer_profile::before {
    left: 40px;
    top: -20px;
    border-bottom: 20px solid #e0eef8;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
  }
}
main .customer_area .customer_list_group .customer_list_box .customer_profile .tech_kind {
  font-family: "Noto_CJK_M";
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 20px;
  text-align: left;
  color: #fff;
  border-radius: 12px;
  background: #006ec8;
  padding: 2px 10px;
  display: block;
  width: fit-content;
  margin-bottom: 10px;
}
@media screen and (max-width: 1100px) {
  main .customer_area .customer_list_group .customer_list_box .customer_profile .tech_kind {
    font-size: 1.1607142857vw;
    line-height: 1.8181818182vw;
    padding: 0.1818181818vw 0.9090909091vw;
    margin-bottom: 0.9090909091vw;
    border-radius: 1.0909090909vw;
  }
}
@media screen and (max-width: 768px) {
  main .customer_area .customer_list_group .customer_list_box .customer_profile .tech_kind {
    font-size: 13px;
    letter-spacing: 0.05em;
    line-height: 24px;
    border-radius: 12px;
    padding: 2px 10px;
    margin-bottom: 10px;
    margin-top: 20px;
  }
}
main .customer_area .customer_list_group .customer_list_box .customer_profile .profile_title {
  font-family: "Noto_CJK_B";
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 40px;
  text-align: left;
  color: #414141;
  display: inline;
  --underline-width-scale: 0;
  box-decoration-break: clone;
  background-repeat: no-repeat;
  background-image: linear-gradient(180deg, var(--underline-color), var(--underline-color)), var(--cap-image-left), var(--cap-image-right);
  background-position-x: calc(var(--underline-cap-width) * var(--underline-width-scale)), 0, 100%;
  background-position-y: calc(100% - var(--underline-offset-y) * -1);
  background-size: calc(100% - var(--underline-cap-width) * var(--underline-width-scale) * 2) calc(var(--underline-width) * 1px), auto calc(var(--underline-width) * 1px), auto calc(var(--underline-width) * 1px);
}
@media screen and (max-width: 1100px) {
  main .customer_area .customer_list_group .customer_list_box .customer_profile .profile_title {
    font-size: 1.7857142857vw;
    line-height: 3.6363636364vw;
  }
}
@media screen and (max-width: 768px) {
  main .customer_area .customer_list_group .customer_list_box .customer_profile .profile_title {
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 35px;
  }
}
main .customer_area .customer_list_group .customer_list_box .customer_profile .profile_content {
  font-family: "Noto_CJK_M";
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 30px;
  text-align: left;
  color: #414141;
  margin-top: 10px;
}
@media screen and (max-width: 1100px) {
  main .customer_area .customer_list_group .customer_list_box .customer_profile .profile_content {
    font-size: 1.4285714286vw;
    line-height: 2.7272727273vw;
    margin-top: 0.9090909091vw;
  }
}
@media screen and (max-width: 768px) {
  main .customer_area .customer_list_group .customer_list_box .customer_profile .profile_content {
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 30px;
  }
}
main .workflow_area {
  background: #e0f8fb;
  padding: 90px 0;
}
@media screen and (max-width: 1100px) {
  main .workflow_area {
    padding: 8.0357142857vw 0;
  }
}
@media screen and (max-width: 768px) {
  main .workflow_area {
    padding: 30px 0;
  }
}
main .workflow_area h2 {
  font-family: "Noto_CJK_B";
  font-weight: bold;
  font-size: 30px;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  color: #414141;
  position: relative;
  width: 320px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1100px) {
  main .workflow_area h2 {
    width: 28.5714285714vw;
    font-size: 2.6785714286vw 0;
  }
}
@media screen and (max-width: 768px) {
  main .workflow_area h2 {
    font-size: 24px;
    letter-spacing: 0.05em;
    line-height: 24px;
    width: 250px;
  }
}
main .workflow_area h2::before {
  content: "";
  background: #006EC8;
  width: 160px;
  left: 0;
  bottom: -13px;
  height: 5px;
  position: absolute;
}
@media screen and (max-width: 1100px) {
  main .workflow_area h2::before {
    width: 14.2857142857vw;
    bottom: -1.1607142857vw;
    height: 0.4464285714vw;
  }
}
@media screen and (max-width: 768px) {
  main .workflow_area h2::before {
    width: 125px;
    height: 5px;
    bottom: -13px;
  }
}
main .workflow_area h2::after {
  content: "";
  background: #00C8DC;
  width: 160px;
  right: 0;
  bottom: -13px;
  height: 5px;
  position: absolute;
}
@media screen and (max-width: 1100px) {
  main .workflow_area h2::after {
    width: 14.2857142857vw;
    bottom: -1.1607142857vw;
    height: 0.4464285714vw;
  }
}
@media screen and (max-width: 768px) {
  main .workflow_area h2::after {
    width: 125px;
    height: 5px;
    bottom: -13px;
  }
}
main .workflow_area .workflow_list {
  margin-top: 75px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
@media screen and (max-width: 1100px) {
  main .workflow_area .workflow_list {
    max-width: 89.2857142857vw;
    gap: 0.8928571429vw;
  }
}
@media screen and (max-width: 768px) {
  main .workflow_area .workflow_list {
    flex-direction: column;
    margin-top: 40px;
    gap: 20px;
  }
}
main .workflow_area .workflow_list .workflow_box {
  width: 184px;
  height: 184px;
  background: white;
  position: relative;
  padding-top: 50px;
}
@media screen and (max-width: 1100px) {
  main .workflow_area .workflow_list .workflow_box {
    width: 16.4285714286vw;
    height: 16.4285714286vw;
    padding-top: 4.4642857143vw;
  }
}
@media screen and (max-width: 768px) {
  main .workflow_area .workflow_list .workflow_box {
    width: 95%;
    height: auto;
    margin-left: auto;
    padding: 20px;
    display: flex;
    padding-left: 50px;
    align-items: center;
    gap: 25px;
  }
}
main .workflow_area .workflow_list .workflow_box:last-of-type::after {
  display: none;
}
main .workflow_area .workflow_list .workflow_box::after {
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  background: url("../img/arrow_right.svg") no-repeat;
  background-size: 100%;
  width: 10px;
  height: 16.48px;
}
@media screen and (max-width: 1100px) {
  main .workflow_area .workflow_list .workflow_box::after {
    width: 0.8928571429vw;
    height: 1.4714285714vw;
    right: -1.3392857143vw;
  }
}
@media screen and (max-width: 768px) {
  main .workflow_area .workflow_list .workflow_box::after {
    width: 10px;
    height: 16.48px;
    right: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    bottom: -20px;
    top: auto;
    transform: rotate(90deg);
  }
}
main .workflow_area .workflow_list .workflow_box .flow_number {
  width: 50px;
  height: 50px;
  font-family: "Roboto";
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 0.08em;
  line-height: 13px;
  text-align: center;
  color: #fff;
  background: linear-gradient(to right, #00c8dc 0.03%, #006ec8 100%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -25px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}
main .workflow_area .workflow_list .workflow_box .flow_number img {
  width: 100%;
}
@media screen and (max-width: 1100px) {
  main .workflow_area .workflow_list .workflow_box .flow_number {
    width: 4.4642857143vw;
    height: 4.4642857143vw;
    top: -2.2321428571vw;
    font-size: 2.1428571429vw;
  }
}
@media screen and (max-width: 768px) {
  main .workflow_area .workflow_list .workflow_box .flow_number {
    width: 50px;
    height: 50px;
    right: auto;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
  }
}
main .workflow_area .workflow_list .workflow_box .flow_image {
  height: 60px;
  display: block;
}
@media screen and (max-width: 1100px) {
  main .workflow_area .workflow_list .workflow_box .flow_image {
    height: 5.3571428571vw;
  }
}
@media screen and (max-width: 768px) {
  main .workflow_area .workflow_list .workflow_box .flow_image {
    width: 69px;
    text-align: center;
    height: 50px;
  }
}
main .workflow_area .workflow_list .workflow_box .flow_image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
main .workflow_area .workflow_list .workflow_box p {
  font-family: "Noto_CJK_B";
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 40px;
  text-align: center;
  color: #006ec8;
  margin-top: 15px;
}
@media screen and (max-width: 1100px) {
  main .workflow_area .workflow_list .workflow_box p {
    font-size: 1.7857142857vw;
    line-height: 3.5714285714vw;
    margin-top: 1.3392857143vw;
  }
}
@media screen and (max-width: 768px) {
  main .workflow_area .workflow_list .workflow_box p {
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 35px;
    margin-top: 0;
  }
}
main .faq_area {
  padding: 90px 0;
}
@media screen and (max-width: 1100px) {
  main .faq_area {
    padding: 8.0357142857vw 0;
  }
}
@media screen and (max-width: 768px) {
  main .faq_area {
    padding: 30px 0;
  }
}
main .faq_area h2 {
  font-family: "Noto_CJK_B";
  font-weight: bold;
  font-size: 30px;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  color: #414141;
  position: relative;
  width: 320px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1100px) {
  main .faq_area h2 {
    font-size: 2.6785714286vw;
    width: 28.5714285714vw;
  }
}
@media screen and (max-width: 768px) {
  main .faq_area h2 {
    font-size: 24px;
    letter-spacing: 0.05em;
    line-height: 24px;
    width: 250px;
  }
}
main .faq_area h2::before {
  content: "";
  background: #006EC8;
  width: 160px;
  left: 0;
  bottom: -13px;
  height: 5px;
  position: absolute;
}
@media screen and (max-width: 1100px) {
  main .faq_area h2::before {
    height: 0.4464285714vw;
    width: 14.2857142857vw;
    bottom: -1.1607142857vw;
  }
}
@media screen and (max-width: 768px) {
  main .faq_area h2::before {
    width: 125px;
    height: 5px;
    bottom: -13px;
  }
}
main .faq_area h2::after {
  content: "";
  background: #00C8DC;
  width: 160px;
  right: 0;
  bottom: -13px;
  height: 5px;
  position: absolute;
}
@media screen and (max-width: 1100px) {
  main .faq_area h2::after {
    height: 0.4464285714vw;
    width: 14.2857142857vw;
    bottom: -1.1607142857vw;
  }
}
@media screen and (max-width: 768px) {
  main .faq_area h2::after {
    width: 125px;
    height: 5px;
    bottom: -13px;
  }
}
main .faq_area .faq_list {
  margin-top: 70px;
  max-width: 868px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1100px) {
  main .faq_area .faq_list {
    margin-top: 6.25vw;
    max-width: 77.5vw;
  }
}
@media screen and (max-width: 768px) {
  main .faq_area .faq_list {
    margin-top: 50px;
    max-width: 100%;
    width: 90%;
  }
}
main .faq_area .faq_list dl {
  padding-bottom: 20px;
  border-bottom: 1px dotted #006ec8;
}
@media screen and (max-width: 1100px) {
  main .faq_area .faq_list dl {
    padding-bottom: 1.7857142857vw;
  }
}
@media screen and (max-width: 768px) {
  main .faq_area .faq_list dl {
    padding-bottom: 20px;
  }
}
main .faq_area .faq_list dl dt {
  position: relative;
  margin-top: 30px;
  cursor: pointer;
}
@media screen and (max-width: 1100px) {
  main .faq_area .faq_list dl dt {
    margin-top: 2.6785714286vw;
  }
}
@media screen and (max-width: 768px) {
  main .faq_area .faq_list dl dt {
    margin-top: 30px;
  }
}
main .faq_area .faq_list dl dt.active::after {
  transform: translateY(-50%) rotate(-90deg);
}
main .faq_area .faq_list dl dt .faq_title {
  display: flex;
  gap: 20px;
  max-width: 820px;
  width: 100%;
  align-items: center;
  font-family: "Noto_CJK_B";
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 40px;
  text-align: left;
  color: #414141;
  width: 95%;
}
@media screen and (max-width: 1100px) {
  main .faq_area .faq_list dl dt .faq_title {
    gap: 1.7857142857vw;
    max-width: 73.2142857143vw;
  }
}
@media screen and (max-width: 768px) {
  main .faq_area .faq_list dl dt .faq_title {
    gap: 10px;
    max-width: 100%;
  }
}
main .faq_area .faq_list dl dt .faq_title::before {
  content: "Q";
  min-width: 40px;
  height: 40px;
  background: #006ec8;
  font-family: "Roboto";
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 0.08em;
  text-align: center;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  display: block;
  border-radius: 50%;
  line-height: 1.5;
}
@media screen and (max-width: 1100px) {
  main .faq_area .faq_list dl dt .faq_title::before {
    height: 3.5714285714vw;
    width: 3.5714285714vw;
    min-width: 3.5714285714vw;
    font-size: 2.1428571429vw;
  }
}
@media screen and (max-width: 768px) {
  main .faq_area .faq_list dl dt .faq_title::before {
    min-width: 30px;
    width: 30px;
    height: 30px;
    font-size: 18px;
  }
}
@media screen and (max-width: 1100px) {
  main .faq_area .faq_list dl dt .faq_title {
    line-height: 3.5714285714vw;
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width: 768px) {
  main .faq_area .faq_list dl dt .faq_title {
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 35px;
  }
}
main .faq_area .faq_list dl dt::before {
  content: "";
  width: 22px;
  height: 2px;
  background-color: #006EC8;
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
main .faq_area .faq_list dl dt::after {
  content: "";
  width: 2px;
  height: 22px;
  background-color: #006EC8;
  display: block;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.5s;
}
main .faq_area .faq_list dl dd {
  margin-top: 12px;
}
@media screen and (max-width: 1100px) {
  main .faq_area .faq_list dl dd {
    margin-top: 1.0714285714vw;
  }
}
main .faq_area .faq_list dl dd .faq_title {
  display: flex;
  gap: 20px;
  max-width: 820px;
  width: 100%;
  font-family: "Noto_CJK_M";
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 30px;
  text-align: left;
  color: #414141;
}
@media screen and (max-width: 1100px) {
  main .faq_area .faq_list dl dd .faq_title {
    max-width: 73.2142857143vw;
    gap: 1.7857142857vw;
  }
}
@media screen and (max-width: 768px) {
  main .faq_area .faq_list dl dd .faq_title {
    gap: 10px;
    max-width: 100%;
  }
}
main .faq_area .faq_list dl dd .faq_title::before {
  content: "A";
  min-width: 40px;
  height: 40px;
  background: #00c8dc;
  font-family: "Roboto";
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  display: block;
  border-radius: 50%;
}
@media screen and (max-width: 1100px) {
  main .faq_area .faq_list dl dd .faq_title::before {
    height: 3.5714285714vw;
    width: 3.5714285714vw;
    min-width: 3.5714285714vw;
    font-size: 2.1428571429vw;
  }
}
@media screen and (max-width: 768px) {
  main .faq_area .faq_list dl dd .faq_title::before {
    min-width: 30px;
    width: 30px;
    height: 30px;
    font-size: 18px;
  }
}
@media screen and (max-width: 1100px) {
  main .faq_area .faq_list dl dd .faq_title {
    font-size: 1.4285714286vw;
    line-height: 2.6785714286vw;
  }
}
@media screen and (max-width: 768px) {
  main .faq_area .faq_list dl dd .faq_title {
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 30px;
  }
}
main .register_area {
  padding: 90px 0;
  background: linear-gradient(to top, #00c8dc 0.03%, #006ec8 100%);
}
@media screen and (max-width: 1100px) {
  main .register_area {
    padding: 8.0357142857vw 0;
  }
}
@media screen and (max-width: 768px) {
  main .register_area {
    padding: 30px 0;
  }
}
main .register_area h2 {
  font-family: "Noto_CJK_B";
  font-weight: bold;
  font-size: 30px;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  color: #fff;
  position: relative;
  width: 320px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1100px) {
  main .register_area h2 {
    font-size: 2.6785714286vw;
    width: 28.5714285714vw;
  }
}
@media screen and (max-width: 768px) {
  main .register_area h2 {
    font-size: 24px;
    letter-spacing: 0.05em;
    line-height: 24px;
    width: 250px;
  }
}
main .register_area h2::before {
  content: "";
  background: #fff;
  width: 160px;
  left: 0;
  bottom: -13px;
  height: 5px;
  position: absolute;
}
@media screen and (max-width: 1100px) {
  main .register_area h2::before {
    bottom: -1.1607142857vw;
    height: 0.4464285714vw;
    width: 14.2857142857vw;
  }
}
@media screen and (max-width: 768px) {
  main .register_area h2::before {
    width: 125px;
    height: 5px;
    bottom: -13px;
  }
}
main .register_area h2::after {
  content: "";
  background: #fff;
  width: 160px;
  right: 0;
  bottom: -13px;
  height: 5px;
  position: absolute;
}
@media screen and (max-width: 1100px) {
  main .register_area h2::after {
    bottom: -1.1607142857vw;
    height: 0.4464285714vw;
    width: 14.2857142857vw;
  }
}
@media screen and (max-width: 768px) {
  main .register_area h2::after {
    width: 125px;
    height: 5px;
    bottom: -13px;
  }
}
main .register_area .form {
  max-width: 870px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 57px;
  background: white;
  padding: 40px 85px 50px 85px;
}
@media screen and (max-width: 1100px) {
  main .register_area .form {
    max-width: 77.6785714286vw;
    margin-top: 5.0892857143vw;
    padding: 3.5714285714vw 7.5892857143vw 4.4642857143vw 7.5892857143vw;
  }
}
@media screen and (max-width: 768px) {
  main .register_area .form {
    max-width: 100%;
    width: 90%;
    margin-top: 50px;
    padding: 20px;
  }
}
main .register_area .form_title {
  font-family: "Noto_CJK_B";
  font-weight: bold;
  font-size: 30px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #006ec8;
  margin-bottom: 50px;
}
@media screen and (max-width: 1100px) {
  main .register_area .form_title {
    font-size: 2.6785714286vw;
    margin-bottom: 4.4642857143vw;
  }
}
@media screen and (max-width: 768px) {
  main .register_area .form_title {
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 30px;
  }
}
main .register_area .form dl {
  display: flex;
  gap: 25px;
  padding-bottom: 20px;
  border-bottom: 1px dotted #ccc;
  margin-top: 20px;
}
@media screen and (max-width: 1100px) {
  main .register_area .form dl {
    gap: 2.2321428571vw;
    margin-top: 1.7857142857vw;
    margin-bottom: 1.7857142857vw;
  }
}
@media screen and (max-width: 768px) {
  main .register_area .form dl {
    flex-direction: column;
    margin-top: 15px;
    margin-bottom: 15px;
    gap: 10px;
  }
}
main .register_area .form dl dt {
  width: 165px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1100px) {
  main .register_area .form dl dt {
    width: 14.7321428571vw;
  }
}
@media screen and (max-width: 768px) {
  main .register_area .form dl dt {
    width: 100%;
    justify-content: flex-start;
    gap: 5px;
  }
}
main .register_area .form dl dt label {
  font-family: "Noto_CJK_B";
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 30px;
  text-align: left;
  color: #414141;
}
@media screen and (max-width: 1100px) {
  main .register_area .form dl dt label {
    line-height: 2.6785714286vw;
    font-size: 1.4285714286vw;
  }
}
@media screen and (max-width: 768px) {
  main .register_area .form dl dt label {
    font-size: 13px;
    letter-spacing: 0.05em;
    line-height: 18px;
    text-align: left;
  }
}
main .register_area .form dl dt span {
  font-family: "Noto_CJK_B";
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 20px;
  text-align: center;
  color: #fff;
  background: #e83819;
  padding: 0 5px;
}
@media screen and (max-width: 1100px) {
  main .register_area .form dl dt span {
    line-height: 1.7857142857vw;
    font-size: 1.1607142857vw;
    padding: 0 0.4464285714vw;
  }
}
@media screen and (max-width: 768px) {
  main .register_area .form dl dt span {
    font-size: 12px;
    letter-spacing: 0.08em;
    line-height: 19.38px;
    padding: 0 5px;
  }
}
main .register_area .form dl dd {
  max-width: 510px;
  width: 100%;
}
@media screen and (max-width: 1100px) {
  main .register_area .form dl dd {
    max-width: 45.5357142857vw;
  }
}
@media screen and (max-width: 768px) {
  main .register_area .form dl dd {
    max-width: 100%;
  }
}
main .register_area .form dl dd .form_halfInput {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 1100px) {
  main .register_area .form dl dd .form_halfInput {
    gap: 1.7857142857vw;
  }
}
@media screen and (max-width: 768px) {
  main .register_area .form dl dd .form_halfInput {
    gap: 15px;
  }
}
main .register_area .form dl dd .form_halfInput label {
  font-family: "Noto_CJK_M";
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 30px;
  text-align: left;
  color: #414141;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1100px) {
  main .register_area .form dl dd .form_halfInput label {
    font-size: 1.4285714286vw;
    line-height: 2.6785714286vw;
  }
}
@media screen and (max-width: 768px) {
  main .register_area .form dl dd .form_halfInput label {
    font-size: 13px;
    letter-spacing: 0.05em;
    line-height: 18px;
    text-align: left;
  }
}
main .register_area .form dl dd .form_halfInput label input {
  margin-left: 20px;
  font-family: "Noto_CJK_M";
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 30px;
  text-align: left;
  color: #414141;
  padding: 10px;
  outline: none;
  border: none;
  width: 100%;
  background: #f0f0f0;
}
main .register_area .form dl dd .form_halfInput label input.error {
  border: 1px solid #e83819;
}
@media screen and (max-width: 1100px) {
  main .register_area .form dl dd .form_halfInput label input {
    margin-left: 1.7857142857vw;
    line-height: 2.6785714286vw;
    padding: 0.8928571429vw;
  }
}
@media screen and (max-width: 768px) {
  main .register_area .form dl dd .form_halfInput label input {
    margin-left: 10px;
    letter-spacing: 0.05em;
    padding: 5px 10px;
    width: 100%;
  }
}
main .register_area .form dl dd .form_halfInput label input::placeholder {
  color: #c6c6c6;
}
main .register_area .form dl dd .form_input {
  width: 100%;
}
main .register_area .form dl dd .form_input input {
  font-family: "Noto_CJK_M";
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 30px;
  text-align: left;
  color: #414141;
  padding: 10px;
  border: none;
  outline: none;
  background: #f0f0f0;
  width: 100%;
}
@media screen and (max-width: 1100px) {
  main .register_area .form dl dd .form_input input {
    font-size: 1.4285714286vw;
    line-height: 2.6785714286vw;
    padding: 0.8928571429vw;
  }
}
@media screen and (max-width: 768px) {
  main .register_area .form dl dd .form_input input {
    letter-spacing: 0.05em;
    padding: 5px 10px;
    width: 100%;
    font-size: 16px;
  }
}
main .register_area .form dl dd .form_input input::placeholder {
  color: #c6c6c6;
}
main .register_area .form dl dd .form_input input.error {
  border: 1px solid #e83819;
}
main .register_area .form .privacy {
  margin-top: 30px;
}
main .register_area .form .privacy label {
  font-family: "Noto_CJK_M";
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 24px;
  text-align: center;
  color: #414141;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1100px) {
  main .register_area .form .privacy label {
    font-size: 1.1607142857vw;
    line-height: 2.1428571429vw;
  }
}
@media screen and (max-width: 768px) {
  main .register_area .form .privacy label {
    font-size: 13px;
    line-height: 24px;
    letter-spacing: -0.01em;
  }
}
main .register_area .form .privacy label input.error {
  -webkit-box-shadow: 0px 0px 0px 1px #e83819;
  -moz-box-shadow: 0px 0px 0px 1px #e83819;
  box-shadow: 0px 0px 0px 1px #e83819;
}
main .register_area .form .privacy label input[type=checkbox] {
  margin-right: 10px;
}
main .register_area .form .form_submit {
  text-align: center;
}
main .register_area .form .form_submit button {
  width: 400px;
  height: 60px;
  position: relative;
  background: linear-gradient(to right, #00c8dc 0.03%, #006ec8 100%);
  font-family: "Noto_CJK_B";
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 40px;
  text-align: center;
  color: #fff;
  border: none;
  outline: none;
  border-radius: 30px;
  margin-top: 35px;
  margin-left: auto;
  margin-right: auto;
  transition: 0.3s;
  cursor: pointer;
}
main .register_area .form .form_submit button:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1100px) {
  main .register_area .form .form_submit button {
    width: 35.7142857143vw;
    line-height: 3.5714285714vw;
    font-size: 1.7857142857vw;
    height: 5.3571428571vw;
  }
}
@media screen and (max-width: 768px) {
  main .register_area .form .form_submit button {
    width: 305px;
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 30px;
    height: 40px;
  }
}
main .register_area .form .form_submit button span {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1100px) {
  main .register_area .form .form_submit button span {
    right: 1.3392857143vw;
  }
}
@media screen and (max-width: 768px) {
  main .register_area .form .form_submit button span {
    right: 10px;
  }
}

footer {
  padding: 25px 0;
  background: #006EC8;
}
@media screen and (max-width: 1100px) {
  footer {
    padding: 2.2321428571vw;
  }
}
@media screen and (max-width: 768px) {
  footer {
    padding: 15px 0;
  }
}
footer .copyright {
  font-family: "Noto_CJK_M";
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 24px;
  text-align: center;
  color: #fff;
}

.main {
  color: #333333;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
  max-width: 1000px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 100px;
}
.main .page-header {
  margin-bottom: 32px;
  margin-top: 100px;
}
.main .page-header__title {
  text-align: center;
}
.main .page-header__title span {
  font-size: 2.3rem;
  line-height: 52px;
  font-family: "Noto_CJK_B";
  position: relative;
  padding-left: 50px;
  margin-bottom: 30px;
  display: inline-block;
}
.main .page-header__title span:before {
  content: "";
  width: 33px;
  height: 33px;
  background: -webkit-gradient(linear, left top, right top, from(#f00000), color-stop(50%, #bf3db9), to(#0000f0));
  background: linear-gradient(90deg, #f00000, #bf3db9 50%, #0000f0);
  background: var(--color-brand-gradient);
  position: absolute;
  left: 0;
  top: 11px;
  border-radius: 100px;
}
.main .page-header__title span:after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  background: #fff;
  top: 15px;
  left: 4px;
  border-radius: 100px;
}
.main .page-section__header {
  margin-bottom: 22px;
}
.main .page-section__title {
  font-size: 2rem;
  line-height: 42px;
  font-family: "Noto_CJK_B";
  padding-bottom: 6px;
  border-bottom: 3px solid #ccc;
  border-bottom: 3px solid var(--color-gray);
  position: relative;
  z-index: 1;
}
.main .page-section__title:before {
  content: "";
  height: 3px;
  width: 40%;
  position: absolute;
  bottom: -3px;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(#00c8dc), color-stop(50%, #00c8dc), to(#006ec8));
  background: linear-gradient(90deg, #00c8dc, #00c8dc 50%, #006ec8);
  background: var(--color-brand-gradient);
  z-index: 10;
}
.main .page-section__desc {
  margin-top: 20px;
  font-size: 1rem;
  line-height: var(--line-height-readable);
}
.main .page-section:not(:first-child) {
  margin-top: 40px;
}
.main .page-section .page-header__desc {
  margin-top: 24px;
  font-size: 1rem;
  line-height: 25px;
  line-height: var(--line-height-h5);
  font-family: "Noto_CJK_M";
}
.main .page-section .page-inner-block {
  margin-top: 30px;
}
.main .page-section .list--ordered {
  list-style-type: disc;
  padding-left: 42px;
  margin-top: 20px;
}
.main .page-section .list--ordered li {
  line-height: var(--line-height-readable);
}
.main .page-section .page-sub-section__header {
  margin-bottom: 18px;
}
.main .page-section .page-sub-section__title {
  font-size: 1.5rem;
  line-height: 32px;
  line-height: var(--line-height-h3);
  font-family: "Noto_CJK_B";
  padding-bottom: 6px;
  margin-bottom: 10px;
  border-bottom: 3px solid #ccc;
  border-bottom: 3px solid var(--color-gray);
}
.main .page-section .page-sub-section__title_p {
  font-size: 1.2rem;
  line-height: 32px;
  font-family: "Noto_CJK_B";
  padding-bottom: 6px;
  margin-bottom: 10px;
}
.main .page-section .page-sub-section__title_p_subp {
  font-size: 1.1rem;
  line-height: 32px;
  font-family: "Noto_CJK_B";
  padding-bottom: 6px;
  margin-bottom: 10px;
}
.main .page-section .page-sub-section__desc {
  font-size: 1rem;
  line-height: var(--line-height-readable);
  font-family: "Noto_CJK_M";
}
.main .page-section .page-sub-section__desc.right {
  text-align: right;
}
.main .page-section .page-sub-section li {
  line-height: var(--line-height-readable);
}
.main .page-section .page-sub-section .list--ordered {
  list-style-type: decimal;
  padding-left: 24px;
}
.main .page-section .page-sub-section .list--ordered li {
  line-height: var(--line-height-readable);
}
.main .page-section .table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin: 20px 0;
  border-right: 1px solid #ccc;
  border-right: 1px solid var(--color-gray);
  border-bottom: 1px solid #ccc;
  border-bottom: 1px solid var(--color-gray);
}
.main .page-section .table.table--3col .table__cell:nth-child(3n+1) {
  width: 33%;
  justify-content: center;
}
.main .page-section .table.table--3col .table__cell:not(:nth-child(3n+1)) {
  width: 33%;
  justify-content: center;
  word-break: break-all;
}
.main .page-section .table .table__cell {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: left;
  padding: 10px;
  border-top: 1px solid #ccc;
  border-top: 1px solid var(--color-gray);
  border-left: 1px solid #ccc;
  border-left: 1px solid var(--color-gray);
  background: #fff;
  line-height: 1.7;
  font-family: "Noto_CJK_M";
}
.main .page-section .table .table__cell--title {
  background: #f4f4f4;
  background: var(--color-light-gray);
  font-family: "Noto_CJK_B";
}
.main .page-section .table .table__cell:nth-child(odd) {
  width: 170px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: left;
}
.main_header {
  margin-top: 100px;
  font-family: "Noto_CJK_B";
  font-size: 2.3rem;
  border-bottom: 2px solid #333;
}
@media screen and (max-width: 768px) {
  .main_header {
    font-size: 1.9rem;
  }
}
.main_body {
  padding: 40px 0;
}
.main_body p {
  font-family: "Noto_CJK_M";
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .main_body p {
    font-size: 0.9rem;
  }
}
.main_body .link_button {
  width: 300px;
  position: relative;
  background: linear-gradient(to right, #00c8dc 0.03%, #006ec8 100%);
  font-family: "Noto_CJK_B";
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 0.05em;
  padding: 1rem;
  color: #fff;
  border: none;
  outline: none;
  border-radius: 30px;
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
  display: block;
  text-align: center;
  margin: 40px 0;
}
.main_body .link_button span {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .main_body .link_button {
    margin-left: auto;
    margin-right: auto;
  }
}
.main_body .link_button:hover {
  opacity: 0.7;
}
.main_body .line {
  border-radius: 5px;
  background: #06c755;
  text-align: center;
  color: white;
  text-decoration: none;
  padding: 5px 0 2px 0;
  width: 300px;
  transition: 0.3s;
  font-size: 1rem;
  padding: 1rem;
  gap: 15px;
  display: flex;
  justify-content: center;
  margin: 40px 0;
}
@media screen and (max-width: 768px) {
  .main_body .line {
    margin-left: auto;
    margin-right: auto;
  }
}
.main_body .line:hover {
  opacity: 0.7;
}