@charset "UTF-8";
:root {
  --font-family-Lato: 'Lato', 'serif';
  --font-family-NotoSans: 'Noto Sans JP', 'serif';
  --font-family-Inter: 'Inter', 'serif';
  --font-family-ZenMaruGtc: 'Zen Maru Gothic';
}

/* A Modern CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
  padding: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

li {
  list-style: none;
  line-height: 1;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-family: "Zen Maru Gothic", sans-serif;
}

a {
  display: block;
  color: #222222;
  transition: all 0.6s;
}
a:hover {
  opacity: 0.6;
}

/* PC */
@media screen and (max-width: 600px) {
  .pc-only {
    display: none;
  }
}

/* SP */
@media screen and (min-width: 601px) {
  .sp-only {
    display: none;
  }
}

.footer {
  background-color: #F2F2F2;
}
@media screen and (max-width: 600px) {
  .footer {
    padding-bottom: min(21.03vw, 96px);
  }
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 0;
}
@media screen and (max-width: 1000px) {
  .footer-inner {
    max-width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .footer-inner {
    padding: 30px 2.56%;
  }
}
.footer-title h2 {
  font-family: "Zen Maru Gothic";
  font-weight: bold;
  font-size: clamp(23px, 1.88vw, 36px);
  letter-spacing: 0.05em;
  text-align: center;
  color: #222;
  line-height: 2.1111;
}
@media screen and (max-width: 389px) {
  .footer-title h2 {
    font-size: clamp(18px, 4.62vw, 36px);
  }
}
.footer-title h2 span {
  color: #E56C36;
  font-size: clamp(23px, 2.08vw, 40px);
}
@media screen and (max-width: 389px) {
  .footer-title h2 span {
    font-size: clamp(18px, 4.62vw, 36px);
  }
}
.footer-icon {
	height: 80%;
	margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
	.footer-icon {
		height: 70%;
		margin-bottom: 4.25vw;
	}
}

.footer-icon__text {
    display: flex;
    gap: 20px;
    margin-top: 22px;
    justify-content: center;
    position: relative;
    padding-left: 40px;
}
.footer-icon__text .btn {
    background: #FFFFFF;
    border-radius: 50%;
    height: 35px;
    width: 35px;
    max-width: 100%;
}
.footer-icon__text .btn::before {
    content: "";
    display: block;
    border-top: 3px #FF8B68 solid;
    border-right: 3px #FF8B68 solid;
    width: 15px;
    height: 15px;
    position: absolute;
    transform: rotate(45deg) translate(12px, 2px);
}
@media screen and (max-width: 1600px) {
	.footer-icon__text {
		gap: 1.25vw;
		margin-top: 1.375vw;
		padding-left: 2.5vw;
	}
	.footer-icon__text .btn {
		height: 2.188vw;
		width: 2.188vw;
	}
	.footer-icon__text .btn::before {
		border-top: 0.188vw #FF8B68 solid;
		border-right: 0.188vw #FF8B68 solid;
		width: 0.938vw;
		height: 0.938vw;
		transform: rotate(45deg) translate(0.75vw, 0.125vw);
	}
}
@media screen and (max-width: 600px) {
	.footer-icon__text {
		gap: 3.333vw;
		margin-top: 3.667vw;
		padding-left: 0;
	}
	.footer-icon__text .btn {
		height: 5.833vw;
		width: 5.833vw;
	}
	.footer-icon__text .btn::before {
		border-top: 0.5vw #FF8B68 solid;
		border-right: 0.5vw #FF8B68 solid;
		width: 2.5vw;
		height: 2.5vw;
		transform: rotate(45deg) translate(2vw, 0.333vw);
	}
}

.footer-icon ul {
  display: flex;
}

.footer-icon ul li {
  text-align: center;
  width: 33.3333333333%;
}

.footer-icon ul li .footer-icon-submenu-wrap {
  position: relative;
}
.footer-icon ul li .footer-icon-submenu {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -100px;
  z-index: 100;
  box-shadow: 0 3px 30px rgba(0, 0, 0, 0.16);
  width: 100%;
  max-width: 100px;
  text-align: center;
}

.footer-icon ul li .footer-icon-submenu__link {
  padding: 8px 14px;
  font-size: 14px;
  line-height: 2;
  background-color: #fff;
  text-align: center;
}
.footer-icon ul li:nth-of-type(1) img {
  max-width: 20%;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
	.footer-icon ul li:nth-of-type(1) img {
		max-width: 30%;
	  }
}
.footer-icon ul li:nth-of-type(2) {
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
}
.footer-icon ul li:nth-of-type(2) img {
  max-width: 35%;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
	.footer-icon ul li:nth-of-type(2) img {
		max-width: 55%;
	}
}
.footer-icon ul li:nth-of-type(3) img {
  max-width: 27%;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
	.footer-icon ul li:nth-of-type(3) img {
		max-width: 40.5%;
	}
}
.footer-icon ul li p {
  font-family: var(--font-family-NotoSans);
  font-weight: bold;
  font-style: italic;
  font-size: clamp(12px, 1.56vw, 30px);
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 600px) {
	.footer-icon ul li p {
		font-style: normal;
	}
}

.footer-link {
  text-align: center;
}
.footer-link a {
  display: inline-block;
  font-family: var(--font-family-NotoSans);
  font-weight: bold;
  text-decoration: underline;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 30px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 1600px) {
	.footer-link a {
		font-size: 0.875vw;
		line-height: 1.875vw;
	}
  }
  @media screen and (max-width: 600px) {
	.footer-link a {
		font-size: 2.333vw;
		line-height: 5vw;
	  }
}

.footer-copyright {
  background-color: #FFA700;
  padding: 16px 0;
}
.footer-copyright p {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: clamp(11px, 0.68vw, 13px);
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  color: #fff;
}

.inner {
  max-width: 1920px;
  margin: 0 auto;
}
.inner--xl {
  padding: 0 1.56%;
}
@media screen and (max-width: 600px) {
  .inner--xl {
    padding: 0 2.56%;
  }
}
.inner--lg {
  max-width: 1660px;
}
@media screen and (max-width: 1700px) {
  .inner--lg {
    padding: 0 10px;
  }
}
.inner--md {
  max-width: 1300px;
  margin: 0 auto;
}
@media screen and (max-width: 1300px) {
  .inner--md {
    padding: 0 10px;
  }
}
.inner--sm {
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 1100px) {
  .inner--sm {
    padding: 0 10px;
  }
}
.inner--xs {
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .inner--xs {
    padding: 0 10px;
  }
}

.header .inner {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 600px) {
  .header .inner {
    height: 80px;
  }
}
.header-btn {
  width: 238px;
  border-radius: 30px;
  border: #222222 solid 1px;
  flex: 0 0 auto;
}
@media screen and (max-width: 600px) {
  .header-btn {
    width: 100px;
  }
}
.header-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4.2% 0;
}
@media screen and (max-width: 600px) {
  .header-btn a {
    padding: 5% 0;
  }
}
.header-btn a p {
  font-family: "Zen Maru Gothic";
  font-weight: 500;
  font-size: 15px;
  text-align: center;
  color: #222;
  position: relative;
  line-height: 1;
}
@media screen and (max-width: 600px) {
  .header-btn a p {
    font-size: 13px;
    padding-right: 6px;
  }
}
.header-btn a p:after {
  content: "";
  position: absolute;
  background-image: url(../img/course-ordinary-car-lp/header-btn-arrow-icon.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 8px;
  height: 14px;
  top: 50%;
  transform: translateY(-50%);
  right: -20px;
}
@media screen and (max-width: 600px) {
  .header-btn a p:after {
    width: 5px;
    height: 9px;
    right: -4px;
  }
}

.mv {
  background-color: #F7F7F7;
  padding-top: 26px;
}
@media screen and (max-width: 600px) {
  .mv {
    padding-top: 0;
  }
}
@media screen and (max-width: 1000px) {
  .mv .inner--lg {
    padding: 0;
  }
}
.mv-item {
  margin-top: 5px;
  margin-bottom: 50px;
}
@media screen and (max-width: 600px) {
  .mv-item {
    display: none;
  }
}
.mv-item ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mv-item ul li {
  width: 30.52%;
  border-radius: 10px;
  min-height: 110px;
  background: #fff;
  border: 2.5px solid #e56c36;
}
.mv-item ul .mv-item-tab,
.mv-item ul .mv-item-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 110px;
  cursor: pointer;
  transition: all 0.6s;
}
.mv-item ul .mv-item-tab:hover,
.mv-item ul .mv-item-link:hover {
  opacity: 0.6;
}
.mv-item-wrap {
  position: relative;
}
.mv-item-menu {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -80px;
  z-index: 100;
  box-shadow: 0 3px 30px rgba(0, 0, 0, 0.16);
}
.mv-item-menu__link {
  padding: 8px 14px;
  font-size: 14px;
  line-height: 2;
  background-color: #fff;
}
.mv-item__img {
  padding-left: 5.96%;
}
.mv-item__img--001 img {
  max-width: 33px;
}
.mv-item__img--002 img {
  max-width: 54px;
}
.mv-item__img--003 img {
  max-width: 44px;
}
.mv-item__text {
  padding-right: 6.55%;
  width: 100%;
  text-align: center;
}
.mv-item__text P:nth-of-type(1) {
  font-family: "Zen Maru Gothic";
  font-weight: bold;
  font-size: clamp(12px, 1.04vw, 20px);
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
  color: #222;
  padding: 0 min(1.35vw, 26px);
  position: relative;
  display: inline-block;
}
.mv-item__text P:nth-of-type(1).fz18 {
  font-size: clamp(12px, 0.94vw, 18px);
}
.mv-item__text P:nth-of-type(1):before {
  content: "";
  position: absolute;
  background-image: url(../img/course-ordinary-car-lp/mv-deco-left.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  top: 50%;
  transform: translateY(-50%);
  width: min(0.94vw, 18px);
  height: min(1.35vw, 26px);
  left: 0;
}
.mv-item__text P:nth-of-type(1):after {
  content: "";
  position: absolute;
  background-image: url(../img/course-ordinary-car-lp/mv-deco-right.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  top: 50%;
  transform: translateY(-50%);
  width: min(0.94vw, 18px);
  height: min(1.35vw, 26px);
  right: 0;
}
.mv-item__text P:nth-of-type(2) {
  font-family: "Zen Maru Gothic";
  font-weight: bold;
  font-size: clamp(16px, 1.56vw, 30px);
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
  color: #e56c36;
}




.page-enter-active {
	transition: .6s cubic-bezier(.4, .4, 0, 1)
}

.page-leave-active {
	transition: .3s cubic-bezier(.4, .4, 0, 1)
}

.page-enter-from,
.page-leave-to {
	opacity: 0
}


:root {
	--rebranding-loading-bg: #e5e5e5;
	--rebranding-loading-bar: #222
}


.product-font-style[data-v-51f515bd] {
	transition: .4s cubic-bezier(.4, .4, 0, 1)
}


/*! * Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) * Copyright 2023 Fonticons, Inc. */
.fa-brands,
.fa-solid {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: var(--fa-display, inline-block);
	font-style: normal;
	font-variant: normal;
	line-height: 1;
	text-rendering: auto
}

.fa-solid {
	font-family: Font Awesome\ 6 Free;
	font-weight: 900
}

.fa-brands {
	font-family: Font Awesome\ 6 Brands;
	font-weight: 400
}

:host,
:root {
	--fa-style-family-classic: "Font Awesome 6 Free";
	--fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free";
	--fa-style-family-brands: "Font Awesome 6 Brands";
	--fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands"
}

@font-face {
	font-display: block;
	font-family: Font Awesome\ 6 Free;
	font-style: normal;
	font-weight: 900;
	src: url(https://storage.googleapis.com/production-os-assets/assets/fontawesome/1629704621943/6.4.2/webfonts/fa-solid-900.woff2) format("woff2"), url(https://storage.googleapis.com/production-os-assets/assets/fontawesome/1629704621943/6.4.2/webfonts/fa-solid-900.ttf) format("truetype")
}

@font-face {
	font-display: block;
	font-family: Font Awesome\ 6 Brands;
	font-style: normal;
	font-weight: 400;
	src: url(https://storage.googleapis.com/production-os-assets/assets/fontawesome/1629704621943/6.4.2/webfonts/fa-brands-400.woff2) format("woff2"), url(https://storage.googleapis.com/production-os-assets/assets/fontawesome/1629704621943/6.4.2/webfonts/fa-brands-400.ttf) format("truetype")
}


.spinner[data-v-36413753] {
	animation: loading-spin-36413753 1s linear infinite;
	height: 16px;
	pointer-events: none;
	width: 16px
}

.spinner[data-v-36413753]:before {
	border-bottom: 2px solid transparent;
	border-right: 2px solid transparent;
	border-color: transparent currentcolor currentcolor transparent;
	border-style: solid;
	border-width: 2px;
	opacity: .2
}

.spinner[data-v-36413753]:after,
.spinner[data-v-36413753]:before {
	border-radius: 50%;
	box-sizing: border-box;
	content: "";
	height: 100%;
	position: absolute;
	width: 100%
}

.spinner[data-v-36413753]:after {
	border-left: 2px solid transparent;
	border-top: 2px solid transparent;
	border-color: currentcolor transparent transparent currentcolor;
	border-style: solid;
	border-width: 2px;
	opacity: 1
}

@keyframes loading-spin-36413753 {
	0% {
		transform: rotate(0deg)
	}

	to {
		transform: rotate(1turn)
	}
}


@font-face {
	font-family: grandam;
	font-style: normal;
	font-weight: 400;
	src: url(https://storage.googleapis.com/studio-front/fonts/grandam.ttf) format("truetype")
}

@font-face {
	font-family: Material Icons;
	font-style: normal;
	font-weight: 400;
	src: url(https://storage.googleapis.com/production-os-assets/assets/material-icons/1629704621943/MaterialIcons-Regular.eot);
	src: local("Material Icons"), local("MaterialIcons-Regular"), url(https://storage.googleapis.com/production-os-assets/assets/material-icons/1629704621943/MaterialIcons-Regular.woff2) format("woff2"), url(https://storage.googleapis.com/production-os-assets/assets/material-icons/1629704621943/MaterialIcons-Regular.woff) format("woff"), url(https://storage.googleapis.com/production-os-assets/assets/material-icons/1629704621943/MaterialIcons-Regular.ttf) format("truetype")
}

.StudioCanvas {
	display: flex;
	height: auto;
	min-height: 100dvh;
}

.StudioCanvas>.sd {
	min-height: 100dvh;
	overflow: clip
}

a,
abbr,
address,
article,
aside,
audio,
b,
blockquote,
body,
button,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
input,
ins,
kbd,
label,
legend,
li,
main,
mark,
menu,
nav,
object,
ol,
p,
pre,
q,
samp,
section,
select,
small,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
textarea,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
	border: 0;
	font-family: sans-serif;
	line-height: 1;
	list-style: none;
	margin: 0;
	padding: 0;
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
	-webkit-backface-visibility: hidden;
	box-sizing: border-box;
	color: #333;
	transition: .3s cubic-bezier(.4, .4, 0, 1);
	word-spacing: 1px
}

a:focus:not(:focus-visible),
summary:focus:not(:focus-visible) {
	box-shadow: none;
	outline: none
}

button:focus:not(:focus-visible) {
	outline: none
}

nav ul {
	list-style: none
}

blockquote,
q {
	quotes: none
}

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

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

ins {
	text-decoration: none
}

ins,
mark {
	background-color: #ff9;
	color: #000
}

mark {
	font-style: italic;
	font-weight: 700
}

del {
	text-decoration: line-through
}

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

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

hr {
	border: 0;
	border-top: 1px solid #ccc;
	display: block;
	height: 1px;
	margin: 1em 0;
	padding: 0
}

input,
select {
	vertical-align: middle
}

textarea {
	resize: none
}

.clearfix:after {
	clear: both;
	content: "";
	display: block
}

[slot=after] button {
	overflow-anchor: none
}


.sd {
	flex-wrap: nowrap;
	max-width: 100%;
	pointer-events: all;
	z-index: 0;
	-webkit-overflow-scrolling: touch;
	align-content: center;
	align-items: center;
	display: flex;
	flex: none;
	flex-direction: column;
	position: relative
}

.sd::-webkit-scrollbar {
	display: none
}

.sd,
.sd.richText * {
	transition-property: all, --g-angle, --g-color-0, --g-position-0, --g-color-1, --g-position-1, --g-color-2, --g-position-2, --g-color-3, --g-position-3, --g-color-4, --g-position-4, --g-color-5, --g-position-5, --g-color-6, --g-position-6, --g-color-7, --g-position-7, --g-color-8, --g-position-8, --g-color-9, --g-position-9, --g-color-10, --g-position-10, --g-color-11, --g-position-11
}

input.sd,
textarea.sd {
	align-content: normal
}

.sd[tabindex]:focus {
	outline: none
}

.sd[tabindex]:focus-visible {
	outline: 1px solid;
	outline-color: Highlight;
	outline-color: -webkit-focus-ring-color
}

input[type=email],
input[type=tel],
input[type=text],
select,
textarea {
	-webkit-appearance: none
}

select {
	cursor: pointer
}

.frame {
	display: block;
	overflow: hidden
}

.frame>iframe {
	height: 100%;
	width: 100%
}

.frame .formrun-embed>iframe:not(:first-child) {
	display: none !important
}

.image {
	position: relative
}

.image:before {
	background-position: 50%;
	background-size: cover;
	border-radius: inherit;
	content: "";
	height: 100%;
	left: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	transition: inherit;
	width: 100%;
	z-index: -2
}

.sd.file {
	cursor: pointer;
	flex-direction: row;
	outline: 2px solid transparent;
	outline-offset: -1px;
	overflow-wrap: anywhere;
	word-break: break-word
}

.sd.file:focus-within {
	outline-color: Highlight;
	outline-color: -webkit-focus-ring-color
}

.file>input[type=file] {
	opacity: 0;
	pointer-events: none;
	position: absolute
}

.sd.icon,
.sd.text {
	align-content: center;
	align-items: center;
	display: flex;
	flex-direction: row;
	justify-content: center;
	overflow: visible;
	overflow-wrap: anywhere;
	word-break: break-word
}

.material-icons {
	display: inline-block;
	font-family: Material Icons;
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	letter-spacing: normal;
	line-height: 1;
	text-transform: none;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased
}

a,
a.icon,
a.text {
	-webkit-tap-highlight-color: rgba(0, 0, 0, .15)
}

.fixed {
	z-index: 2
}

.sticky {
	z-index: 1
}

.button {
	transition: .4s cubic-bezier(.4, .4, 0, 1)
}

.button,
.link {
	cursor: pointer
}

.submitLoading {
	opacity: .5 !important;
	pointer-events: none !important
}

.richText {
	display: block;
	word-break: break-word
}

.richText [data-thread],
.richText a,
.richText blockquote,
.richText em,
.richText h1,
.richText h2,
.richText h3,
.richText h4,
.richText li,
.richText ol,
.richText p,
.richText p>code,
.richText pre,
.richText pre>code,
.richText s,
.richText strong,
.richText table tbody,
.richText table tbody tr,
.richText table tbody tr>td,
.richText table tbody tr>th,
.richText u,
.richText ul {
	backface-visibility: visible;
	color: inherit;
	font-family: inherit;
	font-size: inherit;
	font-style: inherit;
	font-weight: inherit;
	letter-spacing: inherit;
	line-height: inherit;
	text-align: inherit
}

/*
.richText p {
	display: block;
	margin: 10px 0
}
*/

.richText>p {
	min-height: 1em
}

.richText img,
.richText video {
	height: auto;
	max-width: 100%;
	vertical-align: bottom
}

.richText h1 {
	display: block;
	font-size: 3em;
	font-weight: 700;
	margin: 20px 0
}

.richText h2 {
	font-size: 2em
}

.richText h2,
.richText h3 {
	display: block;
	font-weight: 700;
	margin: 10px 0
}

.richText h3 {
	font-size: 1em
}

.richText h4,
.richText h5 {
	font-weight: 600
}

.richText h4,
.richText h5,
.richText h6 {
	display: block;
	font-size: 1em;
	margin: 10px 0
}

.richText h6 {
	font-weight: 500
}

.richText [data-type=table] {
	overflow-x: auto
}

.richText [data-type=table] p {
	white-space: pre-line;
	word-break: break-all
}

.richText table {
	border: 1px solid #f2f2f2;
	border-collapse: collapse;
	border-spacing: unset;
	color: #1a1a1a;
	font-size: 14px;
	line-height: 1.4;
	margin: 10px 0;
	table-layout: auto
}

.richText table tr th {
	background: hsla(0, 0%, 96%, .5)
}

.richText table tr td,
.richText table tr th {
	border: 1px solid #f2f2f2;
	max-width: 240px;
	min-width: 100px;
	padding: 12px
}

.richText table tr td p,
.richText table tr th p {
	margin: 0
}

.richText blockquote {
	border-left: 3px solid rgba(0, 0, 0, .15);
	font-style: italic;
	margin: 10px 0;
	padding: 10px 15px
}

.richText [data-type=embed_code] {
	margin: 20px 0;
	position: relative
}

.richText [data-type=embed_code]>.height-adjuster>.wrapper {
	position: relative
}

.richText [data-type=embed_code]>.height-adjuster>.wrapper[style*=padding-top] iframe {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%
}

.richText [data-type=embed_code][data-embed-sandbox=true] {
	display: block;
	overflow: hidden
}

.richText [data-type=embed_code][data-embed-code-type=instagram]>.height-adjuster>.wrapper[style*=padding-top] {
	padding-top: 100%
}

.richText [data-type=embed_code][data-embed-code-type=instagram]>.height-adjuster>.wrapper[style*=padding-top] blockquote {
	height: 100%;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 100%
}

.richText [data-type=embed_code][data-embed-code-type=codepen]>.height-adjuster>.wrapper {
	padding-top: 50%
}

.richText [data-type=embed_code][data-embed-code-type=codepen]>.height-adjuster>.wrapper iframe {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%
}

.richText [data-type=embed_code][data-embed-code-type=slideshare]>.height-adjuster>.wrapper {
	padding-top: 56.25%
}

.richText [data-type=embed_code][data-embed-code-type=slideshare]>.height-adjuster>.wrapper iframe {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%
}

.richText [data-type=embed_code][data-embed-code-type=speakerdeck]>.height-adjuster>.wrapper {
	padding-top: 56.25%
}

.richText [data-type=embed_code][data-embed-code-type=speakerdeck]>.height-adjuster>.wrapper iframe {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%
}

.richText [data-type=embed_code][data-embed-code-type=snapwidget]>.height-adjuster>.wrapper {
	padding-top: 30%
}

.richText [data-type=embed_code][data-embed-code-type=snapwidget]>.height-adjuster>.wrapper iframe {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%
}

.richText [data-type=embed_code][data-embed-code-type=firework]>.height-adjuster>.wrapper fw-embed-feed {
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none
}

.richText [data-type=embed_code_empty] {
	display: none
}

.richText ul {
	margin: 0 0 0 20px
}

.richText ul li {
	list-style: disc;
	margin: 10px 0
}

.richText ul li p {
	margin: 0
}

.richText ol {
	margin: 0 0 0 20px
}

.richText ol li {
	list-style: decimal;
	margin: 10px 0
}

.richText ol li p {
	margin: 0
}

.richText hr {
	border-top: 1px solid #ccc;
	margin: 10px 0
}

.richText p>code {
	background: #eee;
	border: 1px solid rgba(0, 0, 0, .1);
	border-radius: 6px;
	display: inline;
	margin: 2px;
	padding: 0 5px
}

.richText pre {
	background: #eee;
	border-radius: 6px;
	font-family: Menlo, Monaco, Courier New, monospace;
	margin: 20px 0;
	padding: 25px 35px;
	white-space: pre-wrap
}

.richText pre code {
	border: none;
	padding: 0
}

.richText strong {
	color: inherit;
	display: inline;
	font-family: inherit;
	font-weight: 900
}

.richText em {
	font-style: italic
}

.richText a,
.richText u {
	text-decoration: underline
}

.richText a {
	color: #007cff;
	display: inline
}

.richText s {
	text-decoration: line-through
}

.richText [data-type=table_of_contents] {
	background-color: #f5f5f5;
	border-radius: 2px;
	color: #616161;
	font-size: 16px;
	list-style: none;
	margin: 0;
	padding: 24px 24px 8px;
	text-decoration: underline
}

.richText [data-type=table_of_contents] .toc_list {
	margin: 0
}

.richText [data-type=table_of_contents] .toc_item {
	color: currentColor;
	font-size: inherit !important;
	font-weight: inherit;
	list-style: none
}

.richText [data-type=table_of_contents] .toc_item>a {
	border: none;
	color: currentColor;
	font-size: inherit !important;
	font-weight: inherit;
	text-decoration: none
}

.richText [data-type=table_of_contents] .toc_item>a:hover {
	opacity: .7
}

.richText [data-type=table_of_contents] .toc_item--1 {
	margin: 0 0 16px
}

.richText [data-type=table_of_contents] .toc_item--2 {
	margin: 0 0 16px;
	padding-left: 2rem
}

.richText [data-type=table_of_contents] .toc_item--3 {
	margin: 0 0 16px;
	padding-left: 4rem
}

.sd.section {
	align-content: center !important;
	align-items: center !important;
	flex-direction: column !important;
	flex-wrap: nowrap !important;
	height: auto !important;
	max-width: 100% !important;
	padding: 0 !important;
	width: 100% !important
}

.sd.section-inner {
	position: static !important
}

@property --g-angle {
	syntax: "<angle>";
	inherits: false;
	initial-value: 180deg
}

@property --g-color-0 {
	syntax: "<color>";
	inherits: false;
	initial-value: transparent
}

@property --g-position-0 {
	syntax: "<percentage>";
	inherits: false;
	initial-value: .01%
}

@property --g-color-1 {
	syntax: "<color>";
	inherits: false;
	initial-value: transparent
}

@property --g-position-1 {
	syntax: "<percentage>";
	inherits: false;
	initial-value: 100%
}

@property --g-color-2 {
	syntax: "<color>";
	inherits: false;
	initial-value: transparent
}

@property --g-position-2 {
	syntax: "<percentage>";
	inherits: false;
	initial-value: 100%
}

@property --g-color-3 {
	syntax: "<color>";
	inherits: false;
	initial-value: transparent
}

@property --g-position-3 {
	syntax: "<percentage>";
	inherits: false;
	initial-value: 100%
}

@property --g-color-4 {
	syntax: "<color>";
	inherits: false;
	initial-value: transparent
}

@property --g-position-4 {
	syntax: "<percentage>";
	inherits: false;
	initial-value: 100%
}

@property --g-color-5 {
	syntax: "<color>";
	inherits: false;
	initial-value: transparent
}

@property --g-position-5 {
	syntax: "<percentage>";
	inherits: false;
	initial-value: 100%
}

@property --g-color-6 {
	syntax: "<color>";
	inherits: false;
	initial-value: transparent
}

@property --g-position-6 {
	syntax: "<percentage>";
	inherits: false;
	initial-value: 100%
}

@property --g-color-7 {
	syntax: "<color>";
	inherits: false;
	initial-value: transparent
}

@property --g-position-7 {
	syntax: "<percentage>";
	inherits: false;
	initial-value: 100%
}

@property --g-color-8 {
	syntax: "<color>";
	inherits: false;
	initial-value: transparent
}

@property --g-position-8 {
	syntax: "<percentage>";
	inherits: false;
	initial-value: 100%
}

@property --g-color-9 {
	syntax: "<color>";
	inherits: false;
	initial-value: transparent
}

@property --g-position-9 {
	syntax: "<percentage>";
	inherits: false;
	initial-value: 100%
}

@property --g-color-10 {
	syntax: "<color>";
	inherits: false;
	initial-value: transparent
}

@property --g-position-10 {
	syntax: "<percentage>";
	inherits: false;
	initial-value: 100%
}

@property --g-color-11 {
	syntax: "<color>";
	inherits: false;
	initial-value: transparent
}

@property --g-position-11 {
	syntax: "<percentage>";
	inherits: false;
	initial-value: 100%
}


a[data-v-d912033c] {
	align-items: center;
	border-radius: 4px;
	bottom: 20px;
	height: 20px;
	justify-content: center;
	left: 20px;
	perspective: 300px;
	position: fixed;
	transition: 0s linear;
	width: 84px;
	z-index: 2000
}

@media (hover:hover) {
	a[data-v-d912033c] {
		transition: .4s cubic-bezier(.4, .4, 0, 1)
	}

	a[data-v-d912033c]:hover {
		height: 32px;
		width: 200px
	}
}

[data-v-d912033c] .custom-fill path {
	fill: var(--22ea1528)
}

.fade-enter-active[data-v-d912033c],
.fade-leave-active[data-v-d912033c] {
	transition: opacity .2s cubic-bezier(.4, .4, 0, 1)
}

.fade-enter[data-v-d912033c],
.fade-leave-to[data-v-d912033c] {
	opacity: 0
}


.loading[data-v-8a583dac] {
	align-content: center;
	align-items: center;
	background-color: #fff;
	display: flex;
	height: 100%;
	justify-content: center;
	left: 0;
	perspective: 300px;
	position: fixed;
	top: 0;
	transition: none;
	width: 100%;
	z-index: 1000
}

.icon[data-v-8a583dac] {
	-webkit-clip-path: inset(0 0 0 0);
	clip-path: inset(0 0 0 0);
	height: 140px;
	position: relative;
	transform: rotate(45deg);
	transition: .6s cubic-bezier(.4, .4, 0, 1);
	width: 20px
}

.back[data-v-8a583dac] {
	background-color: var(--rebranding-loading-bg);
	top: 0
}

.back[data-v-8a583dac],
.progress[data-v-8a583dac] {
	height: 140px;
	left: 0;
	position: absolute;
	width: 20px
}

.progress[data-v-8a583dac] {
	background-color: var(--rebranding-loading-bar);
	bottom: 0;
	clip: rect(10px, 20px, 140px, 0)
}

.loading-enter-from .progress[data-v-8a583dac] {
	clip: rect(140px, 20px, 140px, 0)
}

.loading-enter-active .progress[data-v-8a583dac] {
	transition: 2s cubic-bezier(.31, .13, 0, 1)
}

.loading-leave-active[data-v-8a583dac] {
	transition: .6s cubic-bezier(.4, .4, 0, 1) .3s
}

.loading-leave-active .icon[data-v-8a583dac] {
	transition: .3s cubic-bezier(.4, .4, 0, 1) .3s
}

.loading-leave-active .progress[data-v-8a583dac] {
	transition: .3s cubic-bezier(.4, .4, 0, 1)
}

.loading-leave-to[data-v-8a583dac] {
	background-color: hsla(0, 0%, 100%, 0)
}

.loading-leave-to .icon[data-v-8a583dac] {
	-webkit-clip-path: inset(0 0 160px 0);
	clip-path: inset(0 0 160px 0)
}

.loading-leave-to .progress[data-v-8a583dac] {
	clip: rect(0, 20px, 140px, 0)
}


.LoadMoreAnnouncer[data-v-6d8e87a0] {
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	clip: rect(0, 0, 0, 0);
	border-width: 0;
	white-space: nowrap
}


.TitleAnnouncer[data-v-692a2727] {
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	clip: rect(0, 0, 0, 0);
	border-width: 0;
	white-space: nowrap
}


.design-canvas__modal {
	height: 100%;
	pointer-events: none;
	position: fixed;
	transition: none;
	width: 100%;
	z-index: 2
}

.design-canvas__modal:focus {
	outline: none
}

.design-canvas__modal.v-enter-active .studio-canvas,
.design-canvas__modal.v-leave-active,
.design-canvas__modal.v-leave-active .studio-canvas {
	transition: .4s cubic-bezier(.4, .4, 0, 1)
}

.design-canvas__modal.v-enter-active .studio-canvas *,
.design-canvas__modal.v-leave-active .studio-canvas * {
	transition: none !important
}

.design-canvas__modal.isNone {
	transition: none
}

.design-canvas__modal .design-canvas__modal__base {
	height: 100%;
	left: 0;
	pointer-events: auto;
	position: fixed;
	top: 0;
	transition: .4s cubic-bezier(.4, .4, 0, 1);
	width: 100%;
	z-index: -1
}

.design-canvas__modal .studio-canvas {
	height: 100%;
	pointer-events: none
}

.design-canvas__modal .studio-canvas>* {
	background: none !important;
	pointer-events: none
}


.publish-studio-style[data-v-5a0c3720] {
	transition: .4s cubic-bezier(.4, .4, 0, 1)
}


.snackbar[data-v-3129703d] {
	align-items: center;
	background: #fff;
	border: 1px solid #ededed;
	border-radius: 6px;
	box-shadow: 0 16px 48px -8px rgba(0, 0, 0, .08), 0 10px 25px -5px rgba(0, 0, 0, .11);
	display: flex;
	flex-direction: row;
	gap: 8px;
	justify-content: space-between;
	left: 50%;
	max-width: 90vw;
	padding: 16px 20px;
	position: fixed;
	top: 32px;
	transform: translateX(-50%);
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	width: 480px;
	z-index: 9999
}

.snackbar.v-enter-active[data-v-3129703d],
.snackbar.v-leave-active[data-v-3129703d] {
	transition: .4s cubic-bezier(.4, .4, 0, 1)
}

.snackbar.v-enter-from[data-v-3129703d],
.snackbar.v-leave-to[data-v-3129703d] {
	opacity: 0;
	transform: translate(-50%, -10px)
}

.snackbar .convey[data-v-3129703d] {
	align-items: center;
	display: flex;
	flex-direction: row;
	gap: 8px;
	padding: 0
}

.snackbar .convey .icon[data-v-3129703d] {
	background-position: 50%;
	background-repeat: no-repeat;
	flex-shrink: 0;
	height: 24px;
	width: 24px
}

.snackbar .convey .message[data-v-3129703d] {
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
	white-space: pre-line
}

.snackbar .convey.error .icon[data-v-3129703d] {
	background-image: url(/_nuxt/close_circle.c7480f3c.svg)
}

.snackbar .convey.error .message[data-v-3129703d] {
	color: #f84f65
}

.snackbar .convey.success .icon[data-v-3129703d] {
	background-image: url(/_nuxt/round_check.0ebac23f.svg)
}

.snackbar .convey.success .message[data-v-3129703d] {
	color: #111
}

.snackbar .button[data-v-3129703d] {
	align-items: center;
	border-radius: 40px;
	color: #4b9cfb;
	display: flex;
	flex-shrink: 0;
	font-family: Inter;
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
	justify-content: center;
	line-height: 16px;
	padding: 4px 8px
}

.snackbar .button[data-v-3129703d]:hover {
	background: #f5f5f5
}


.app[data-v-4a64a196] {
	align-items: center;
	flex-direction: column;
	height: 100%;
	justify-content: center;
	width: 100%
}

.title[data-v-4a64a196] {
	font-size: 34px;
	font-weight: 300;
	letter-spacing: 2.45px;
	line-height: 30px;
	margin: 30px
}









.sd[data-s-884497de-0118-4c39-b7be-aa48f40a4097] {
	align-content: center;
	align-items: center;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: flex-start;
	padding: 0px;
}

.sd[data-s-a88b5106-ebb3-4a46-a451-345dcde9fe7f] {
	color: #D4ECE8;
	font-family: var(--font-family-Inter);
	font-size: 350px;
	font-style: normal;
	font-weight: 600;
	height: 526px;
	letter-spacing: 0em;
	text-align: left;
	width: 2970px;
	max-width: 100%;
	justify-content: flex-start;
}

.data-s-66e5ee07-e9fb-47f8-96c6-d2ee282a96e5 {
	background: #fff;
	padding: 0px 0px 30px 0px;
	width: 100%;
	max-width: 100%;
	background-image: url(../img/online-lp/back-border.png);
	width: 100%;
	height: auto;
	position: relative;
	background-repeat: no-repeat;
	background-size: contain;
}
@media screen and (max-width: 1600px) {
	.data-s-66e5ee07-e9fb-47f8-96c6-d2ee282a96e5 {
		padding: 0px 0px 1.875vw 0px;
	}
}
@media screen and (max-width: 600px) {
	.data-s-66e5ee07-e9fb-47f8-96c6-d2ee282a96e5 {
		padding: 0px 0px 5vw 0px;
		background-image: url(../img/online-lp/back-border-sp.png);
	}
}

.header-mv {
  background-image: url(../img/online-lp/mv.png);
  width: 100%;
  height: auto;
  aspect-ratio: 1920 / 917;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 600px) {
	.header-mv {
		background-image: url(../img/online-lp/mv-sp.png);
		aspect-ratio: 390 / 745;
	}
}

.sd[data-s-c453f1e1-43a5-4355-acb7-12dff2ec5afa] {
	align-items: center;
	flex: none;
	flex-direction: row;
	gap: 40px;
	height: 86px;
	justify-content: space-between;
	padding: 0px 50px;
	--gap-h-c453f1e1-43a5-4355-acb7-12dff2ec5afa: 40px;
	--gap-v-c453f1e1-43a5-4355-acb7-12dff2ec5afa: 0px;
	--gap-uuid: c453f1e1-43a5-4355-acb7-12dff2ec5afa;
	max-width: 100%;
}
@media screen and (max-width: 1000px) {
	.sd[data-s-c453f1e1-43a5-4355-acb7-12dff2ec5afa] {
	  	padding: 0 20px;
		gap: 15px;
	}
}

.header-logo {
	width: 16.13%;
    flex: 0 0 auto;
    min-width: 200px;
}
@media screen and (max-width: 350px) {
	.header-logo {
	  	min-width: 150px;
	}
}

.sd[data-s-dcc6a472-110a-4e62-b6b3-0156105b9315] {
	align-items: center;
	flex: none;
	flex-direction: column;
	height: auto;
	justify-content: flex-start;
	margin: 0px;
	overflow-x: hidden;
	overflow-y: hidden;
	padding: 0px;
	width: 238px;
	max-width: 100%;
}
@media screen and (max-width: 600px) {
	.sd[data-s-dcc6a472-110a-4e62-b6b3-0156105b9315] {
	  	width: initial;
	}
}

.sd[data-s-c025de96-0285-4047-b221-c9112d06bc5c] {
	align-items: center;
	background: #0A318E;
	border-bottom: 1px solid #FFFFFF;
	border-left: 1px solid #FFFFFF;
	border-radius: 30px;
	border-right: 1px solid #FFFFFF;
	border-top: 1px solid #FFFFFF;
	flex-direction: row;
	gap: 16px;
	height: auto;
	justify-content: flex-start;
	margin: 0px;
	padding: 8px 32px 8px 45px;
	width: 100%;
	--gap-h-c025de96-0285-4047-b221-c9112d06bc5c: 16px;
	--gap-v-c025de96-0285-4047-b221-c9112d06bc5c: 0px;
	--gap-uuid: c025de96-0285-4047-b221-c9112d06bc5c;
	max-width: 100%;
}

@media screen and (max-width: 600px) {
	.sd[data-s-c025de96-0285-4047-b221-c9112d06bc5c] {
		padding: 8px 10px 8px 20px;
    	width: 130px;
		margin-top: 10px;
	}
}

.sd[data-s-de257930-f45a-4a98-b5b3-96c4a4254c78],
.sd[data-s-de257930-f45a-4a98-b5b3-96c4a4254c78] span {
	color: #FFFFFF;
	flex: none;
	font-family: var(--font-family-ZenMaruGtc);
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	height: auto;
	letter-spacing: 0em;
	margin: 0px;
	text-align: center;
	width: auto;
	max-width: 100%;
	justify-content: center;
}

.sd[data-s-de257930-f45a-4a98-b5b3-96c4a4254c78]::after {
	content: "";
	position: absolute;
	background-image: url(../img/online-lp/header-btn-arrow-icon.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	width: 8px;
	height: 14px;
	top: 50%;
	transform: translateY(-50%);
	right: -20px;
}

.sd[data-s-47c9d464-841c-41c3-a31f-341c60325f70] {
	align-items: center;
	flex: none;
	flex-direction: column;
	height: auto;
	justify-content: center;
	margin: 2px 0px 0px 0px;
	width: 8px;
	max-width: 100%;
}

.sd[data-s-befe8b2d-80d2-49dd-867b-6660729d741f] {
	align-items: center;
	flex-direction: column;
	height: auto;
	justify-content: flex-start;
	padding-top: 50px;
	width: 100%;
	max-width: 100%;
}

.sd[data-s-8c1b3344-4716-4923-927b-56fba60d474d] {
	color: #0A318E;
	font-family: var(--font-family-NotoSans);
	font-size: 90px;
	font-style: italic;
	font-weight: bold;
	height: 120px;
	letter-spacing: 0em;
	margin: 0px 0px 0px 3px;
	text-align: left;
	width: 756px;
	max-width: calc(100% - 3px);
	justify-content: flex-start;
}

.sd[data-s-3996b3f0-f07d-4610-9735-bef007b5f21c] {
	align-items: center;
	background: #EC6C00;
	border-radius: 200px;
	flex-direction: column;
	height: auto;
	justify-content: center;
	margin: -4px 0px 0px 643px;
	padding: 37px 0px 39px 0px;
	width: 118px;
	max-width: calc(100% - 643px);
}

.sd[data-s-39fc6fa6-4ed4-4556-8f60-06418c1dc2a5] {
	color: #E9ECF3;
	font-family: var(--font-family-NotoSans);
	font-size: 40px;
	font-style: italic;
	font-weight: 600;
	height: 42px;
	letter-spacing: 0em;
	text-align: left;
	width: 131px;
	max-width: calc(100% - 32px);
	justify-content: flex-start;
}

.sd[data-s-0ef478ad-1940-45b2-8a39-a4cda573635f] {
	color: #0A318E;
	font-family: var(--font-family-NotoSans);
	font-size: 36px;
	font-style: italic;
	font-weight: 900;
	height: 51px;
	letter-spacing: 0em;
	margin: -95px 0px 0px 3px;
	text-align: left;
	width: 573px;
	max-width: calc(100% - 3px);
	justify-content: flex-start;
}

.sd[data-s-4541981f-7fc8-4407-b83f-0d985edd4d5a] {
	align-items: center;
	flex-direction: column;
	gap: 387px;
	height: auto;
	justify-content: flex-start;
	margin: 64px 0px 0px 0px;
	padding: 0px;
	width: 100%;
	--gap-h-4541981f-7fc8-4407-b83f-0d985edd4d5a: 0px;
	--gap-v-4541981f-7fc8-4407-b83f-0d985edd4d5a: 387px;
	--gap-uuid: 4541981f-7fc8-4407-b83f-0d985edd4d5a;
	max-width: 100%;
}

.sd[data-s-1e1fa56e-aac3-4c47-a1ce-b6262d81fb3b] {
	align-items: center;
	flex-direction: column;
	height: auto;
	justify-content: center;
	margin: 0px 0px 0px -59px;
	overflow-x: hidden;
	overflow-y: hidden;
	width: 476px;
	max-width: calc(100% - -59px);
}

.sd[data-s-99370e2b-3bf1-4e09-b4e4-f9aa01ab9519] {
	align-items: center;
	flex-direction: column;
	height: auto;
	justify-content: flex-end;
	margin: 0px;
	overflow-x: hidden;
	overflow-y: hidden;
	width: 100%;
}
.sd[data-s-99370e2b-3bf1-4e09-b4e4-f9aa01ab9519] img {
	width: 100%;
}

.sd[data-s-2b4dc37f-f466-492f-a6de-6b0cc4003001] {
	align-items: center;
	flex-direction: column;
	height: auto;
	justify-content: center;
	margin: 0px;
	width: 1964px;
	max-width: 100%;
}

/*
.sd[data-s-062d8744-ca9a-483b-8200-70330c73a7a2] {
	align-items: flex-start;
	background: #FFFFFF;
	border-radius: 10px;
	flex-direction: column;
	gap: 66px;
	height: auto;
	justify-content: flex-start;
	--gap-h-062d8744-ca9a-483b-8200-70330c73a7a2: 0px;
	--gap-v-062d8744-ca9a-483b-8200-70330c73a7a2: 66px;
	--gap-uuid: 062d8744-ca9a-483b-8200-70330c73a7a2;
	max-width: 1200px;
	margin: 0 auto;
}
*/
.ondemand-description {
    display: flex;
    max-width: 1460px;
    margin: 70px auto 70px;
    padding: 50px;
    background: #ffffff;
    justify-content: space-between;
}
.ondemand-description .right {
	width: 45%;
	display: flex;
	align-items: end;
}
.ondemand-description .right img {
	padding-top: 70px;
}
@media screen and (max-width: 1600px){
	.ondemand-description {
		margin: 4.375vw;
		padding: 3.125vw;
	}
	.ondemand-description .right img {
		padding-top: 4.375vw;
	}
}
@media screen and (max-width: 600px){
	.ondemand-description {
		display: block;
		margin: 50px 0;
		padding: 50px 30px;
		width: 100%;
	}
	.ondemand-description .right {
		width: initial;
	}
	.ondemand-description .right img {
		padding-top: 10.375vw;
	}
}

.sd[data-s-a1d28c37-6cb2-4161-a70b-0f083f7c2e26] {
	align-items: flex-start;
	flex-direction: column;
	gap: 11px;
	height: auto;
	justify-content: flex-start;
	margin: 0px;
	padding: 0px 0px 0px 46px;
	width: auto;
	--gap-h-a1d28c37-6cb2-4161-a70b-0f083f7c2e26: 0px;
	--gap-v-a1d28c37-6cb2-4161-a70b-0f083f7c2e26: 11px;
	--gap-uuid: a1d28c37-6cb2-4161-a70b-0f083f7c2e26;
	max-width: 100%;
}
@media screen and (max-width: 600px){
	.sd[data-s-a1d28c37-6cb2-4161-a70b-0f083f7c2e26] {
		padding: 0;
	}
}

.sd[data-s-74a3216d-8a2a-450d-943b-6f58b3a37dca] {
	color: #FF8B68;
	font-family: var(--font-family-NotoSans);
	font-size: 40px;
	font-style: normal;
	font-weight: 700;
	height: 67px;
	letter-spacing: 0.2em;
	margin: 0px;
	text-align: left;
	/*width: 562px;*/
	max-width: 100%;
	justify-content: flex-start;
}
.head-accent::before,
.head-accent::after {
	content: "";
	position: absolute;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	width: 50px;
	height: 50px;
}
.head-accent::before {
	background-image: url(../img/online-lp/head-accent-start.png);
	transform: translateY(-50%);
	top: 50%;
	left: -60px;
}
.head-accent::after {
	background-image: url(../img/online-lp/head-accent-end.png);
	right: -50px;
}
@media screen and (max-width: 1600px){
	.sd[data-s-74a3216d-8a2a-450d-943b-6f58b3a37dca] {
		font-size: 2.5vw;
		height: 4.188vw;
	}
	.head-accent {
		font-size: 2.5vw;
		height: 4.188vw;
		/*width: 35.125vw;*/
	}
	.head-accent::before,
	.head-accent::after {
		width: 3.125vw;
		height: 3.125vw;
	}
	.head-accent::before {
		left: -3.75vw;
	}
	.head-accent::after {
		right: -3.125vw;
	}
}
@media screen and (max-width: 600px){
	.sd[data-s-74a3216d-8a2a-450d-943b-6f58b3a37dca] {
		font-size: 5.667vw;
		height: 11.167vw;
		margin: 0 auto;
	}
	.head-accent {
		font-size: 5.5vw;
		height: initial;
		/*width: 93.667vw;*/
		justify-content: center;
	}
	.head-accent::before,
	.head-accent::after {
		width: 6.667vw;
        height: 6.667vw;
	}
	.head-accent::before {
		left: -7.375vw;
	}
	.head-accent::after {
		right: -7.375vw;
		top: initial;
	}
}

.sd[data-s-0d3fa18d-ef95-44e2-904a-4c63be7a6d67] {
	color: #0A318E;
	font-family: var(--font-family-Inter);
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	height: 41px;
	letter-spacing: 0em;
	line-height: 54px;
	margin: 0px 0px 0px 0px;
	text-align: left;
	width: 663px;
	max-width: 100%;
	justify-content: flex-start;
}
@media screen and (max-width: 1600px){
	.sd[data-s-0d3fa18d-ef95-44e2-904a-4c63be7a6d67] {
		font-size: 1.5vw;
		height: 2.563vw;
		line-height: 3.375vw;
		width: 41.438vw;
	}
}
@media screen and (max-width: 600px){
	.sd[data-s-0d3fa18d-ef95-44e2-904a-4c63be7a6d67] {
		font-size: 4vw;
		height: initial;
		line-height: 9vw;
		width: 100%;
		margin-top: 10px;
		justify-content: center;
		text-align: center;
	}
}

.sd[data-s-93a45282-861b-4b6d-aed8-a01a32efa7fb] {
	align-items: flex-start;
	flex-direction: column;
	gap: 23px;
	height: auto;
	justify-content: flex-start;
	margin: 50px 0px 0px 46px;
	padding: 0px;
	width: auto;
	--gap-h-93a45282-861b-4b6d-aed8-a01a32efa7fb: 0px;
	--gap-v-93a45282-861b-4b6d-aed8-a01a32efa7fb: 23px;
	--gap-uuid: 93a45282-861b-4b6d-aed8-a01a32efa7fb;
	max-width: calc(100% - 46px);
}

.sd[data-s-95997468-9f51-4f7f-86d2-7827225e146b] {
	color: #4F4F4F;
	font-family: var(--font-family-Inter);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	height: 163px;
	letter-spacing: 0em;
	line-height: 50px;
	margin: 0px;
	text-align: left;
	width: 549px;
	max-width: 100%;
}

.sd[data-s-95997468-9f51-4f7f-86d2-7827225e146b] strong {
	color: #EC6C00;
	font-size: 20px;
	font-weight: 900;
}

.sd[data-s-1f0f26ac-e302-403b-913a-f8cef4a3ff8a] {
	color: #4F4F4F;
	font-family: var(--font-family-Inter);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	letter-spacing: 0em;
	line-height: 28px;
	margin: 0px;
	text-align: left;
	width: 585px;
	max-width: 100%;
	justify-content: flex-start;
}

@media screen and (max-width: 1600px){
	.sd[data-s-93a45282-861b-4b6d-aed8-a01a32efa7fb] {
		gap: 1.438vw;
		margin: 3.125vw 0px 0px 2.875vw;
		--gap-v-93a45282-861b-4b6d-aed8-a01a32efa7fb: 1.438vw;
		max-width: calc(100% - 2.875vw);
	}
	
	.sd[data-s-95997468-9f51-4f7f-86d2-7827225e146b] {
		font-size: 1.125vw;
		height: 10.188vw;
		line-height: 3.125vw;
		width: 34.313vw;
	}
	
	.sd[data-s-95997468-9f51-4f7f-86d2-7827225e146b] strong {
		font-size: 1.25vw;
	}
	
	.sd[data-s-1f0f26ac-e302-403b-913a-f8cef4a3ff8a] {
		font-size: 0.875vw;
		line-height: 1.75vw;
		width: 36.563vw;
	}
}
@media screen and (max-width: 600px){
	.sd[data-s-93a45282-861b-4b6d-aed8-a01a32efa7fb] {
		gap: 3.833vw;
		--gap-v-93a45282-861b-4b6d-aed8-a01a32efa7fb: 3.833vw;
		max-width: calc(100% - 7.667vw);
	}
	
	.sd[data-s-95997468-9f51-4f7f-86d2-7827225e146b] {
		font-size: 3.7vw;
		height: 27.167vw;
		line-height: 8.333vw;
		width: 91.5vw;
	}
	
	.sd[data-s-95997468-9f51-4f7f-86d2-7827225e146b] strong {
		font-size: 3.7vw;
	}
	
	.sd[data-s-1f0f26ac-e302-403b-913a-f8cef4a3ff8a] {
		font-size: 2.333vw;
		line-height: 4.667vw;
		width: 97.5vw;
	}
}


.sd[data-s-576cb14b-8250-4fdd-a0f2-136786fc325a] {
	align-items: center;
	flex-direction: column;
	height: auto;
	justify-content: flex-start;
	width: 100%;
	max-width: 100%;
	background-image: url(../img/online-lp/back-merit.png);
	background-position: center;
	background-repeat: no-repeat;
	padding-bottom: 50px;
}
@media screen and (max-width: 600px){
	.sd[data-s-576cb14b-8250-4fdd-a0f2-136786fc325a] {
		background-image: url(../img/online-lp/back-merit-sp.png);
		background-size: cover;
	}
}

.sd[data-s-a8c7f2d5-34a5-42cf-80d3-7a86691a3fc8] {
	align-items: center;
	flex-direction: column;
	gap: 10px;
	height: auto;
	justify-content: flex-start;
	margin: 70px 0 -30px;
}
@media screen and (max-width: 1600px){
	.sd[data-s-a8c7f2d5-34a5-42cf-80d3-7a86691a3fc8] {
		gap: 0.625vw;
		margin: 4.375vw 0 -1.875vw;
	}
}
@media screen and (max-width: 600px){
	.sd[data-s-a8c7f2d5-34a5-42cf-80d3-7a86691a3fc8] {
		gap: 1.667vw;
		margin: 7.667vw 0 5vw;
	}
}

.sd[data-s-82e46b50-04af-4508-9ef7-bdb38f024af2] {
	color: #FF8B68;
	font-family: var(--font-family-NotoSans);
	font-size: 40px;
	font-style: normal;
	font-weight: 700;
	height: 67px;
	letter-spacing: 0.2em;
	margin: 0px 0px 0px -3px;
	text-align: center;
	justify-content: center;
}
@media screen and (max-width: 1600px){
	.sd[data-s-82e46b50-04af-4508-9ef7-bdb38f024af2] {
		font-size: 2.5vw;
		height: 4.188vw;
		margin: 0px 0px 0px -0.187vw;
	}
}
@media screen and (max-width: 600px){
	.sd[data-s-82e46b50-04af-4508-9ef7-bdb38f024af2] {
		font-size: 6.667vw;
		height: 11.167vw;
		margin: 0px 0px 0px -0.5vw;
	}
}

.sd[data-s-e83db509-b4f0-454c-8396-3be08d07929d] {
	color: #0A318E;
	font-family: var(--font-family-Inter);
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	height: 48px;
	letter-spacing: 0em;
	line-height: 54px;
	margin: 0px;
	text-align: center;
	width: 504px;
	max-width: 100%;
	justify-content: center;
}
@media screen and (max-width: 1600px){
	.sd[data-s-e83db509-b4f0-454c-8396-3be08d07929d] {
		font-size: 1.5vw;
		height: 3vw;
		line-height: 3.375vw;
		width: 31.5vw;
	}
}
@media screen and (max-width: 600px){
	.sd[data-s-e83db509-b4f0-454c-8396-3be08d07929d] {
		font-size: 4vw;
		height: 8vw;
		line-height: 9vw;
		width: 84vw;
	}
}

.merit {
	margin: 0 auto;
    padding: 0 50px;
}
@media screen and (max-width: 600px){
	.merit {
		padding: 0 20px;
	}
}

.sd[data-s-98c349f1-c510-41c6-a8e6-49c78c00dc5d] {
	align-items: center;
	flex-direction: row;
	justify-content: space-between;
	padding: 0px;
	width: 100%;
	max-width: 100%;
	height: 785px;
}
@media screen and (max-width: 1600px){
	.sd[data-s-98c349f1-c510-41c6-a8e6-49c78c00dc5d] {
		height: 49.063vw;
	}
}
@media screen and (max-width: 600px){
	.sd[data-s-98c349f1-c510-41c6-a8e6-49c78c00dc5d] {
		height: initial;
		display: block;
	}
}

.sd[data-s-a8eb0037-dba2-46fb-bb40-b1c5276e13f6] {
	align-items: flex-end;
	background: #FFFFFF;
	flex: none;
	flex-direction: column;
	height: 785px;
	justify-content: center;
	margin: 0px;
	max-width: 100%;
	width: 40%;
}
@media screen and (max-width: 1600px){
	.sd[data-s-a8eb0037-dba2-46fb-bb40-b1c5276e13f6] {
		height: 49.063vw;
	}
}
@media screen and (max-width: 600px){
	.sd[data-s-a8eb0037-dba2-46fb-bb40-b1c5276e13f6] {
		height: initial;
		width: 100%;
		padding: 80px 20px;
	}
}

.sd[data-s-98c349f1-c510-41c6-a8e6-49c78c00dc5d] .right {
	background-image: url(../img/online-lp/back-movie.png);
	width: 100%;
	height: 100%;
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	align-items: center;
}
@media screen and (max-width: 600px){
	.sd[data-s-98c349f1-c510-41c6-a8e6-49c78c00dc5d] .right {
		height: initial;
	}
}

.sd[data-s-7fde2004-f42b-4b8c-ac80-b28ec81e58d2] {
	align-items: flex-start;
	flex-direction: column;
	gap: 76px;
	height: auto;
	justify-content: flex-start;
	margin: 0px -142px 0px 0px;
	padding: 0px;
	width: 663px;
	max-width: calc(100% - -142px);
}

.sd[data-s-81bcce2e-c363-4e9a-bee4-70b8c816587f] {
	color: #FF8B68;
	font-family: var(--font-family-NotoSans);
	font-size: 36px;
	font-style: normal;
	font-weight: 700;
	letter-spacing: 0.2em;
	margin: 0px;
	text-align: left;
	max-width: 100%;
	justify-content: flex-start;
	width: fit-content;
}

.sd[data-s-81bcce2e-c363-4e9a-bee4-70b8c816587f]:nth-of-type(2) {
	margin-top: 20px;
}

.sd[data-s-596397e4-4719-4e8e-97e3-fb1c534be305] {
	color: #0A318E;
	font-family: var(--font-family-NotoSans);
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	height: 29px;
	letter-spacing: 0em;
	line-height: 54px;
	margin: 0px;
	text-align: left;
	width: 521px;
	max-width: 100%;
	justify-content: flex-start;
}

@media screen and (max-width: 1600px){
	.sd[data-s-7fde2004-f42b-4b8c-ac80-b28ec81e58d2] {
		gap: 4.75vw;
		margin: 0px -8.875vw 0px 0px;
		width: 41.438vw;
		max-width: calc(100% - -8.875vw);
	}
	
	.sd[data-s-81bcce2e-c363-4e9a-bee4-70b8c816587f] {
		font-size: 2.25vw;
	}
	
	.sd[data-s-81bcce2e-c363-4e9a-bee4-70b8c816587f]:nth-of-type(2) {
		margin-top: 1.25vw;
	}
	
	.sd[data-s-596397e4-4719-4e8e-97e3-fb1c534be305] {
		font-size: 1.5vw;
		height: 1.812vw;
		line-height: 3.375vw;
		width: 32.563vw;
	}
}
@media screen and (max-width: 600px){
	.sd[data-s-7fde2004-f42b-4b8c-ac80-b28ec81e58d2] {
		gap: 8vw;
		margin: 0;
		width: initial;
	}

	.head-ondemand {
		margin: 0 auto;
	}
	
	.sd[data-s-81bcce2e-c363-4e9a-bee4-70b8c816587f] {
		font-size: 6vw;
		margin: 0 auto;
	}

	.sd[data-s-81bcce2e-c363-4e9a-bee4-70b8c816587f].head-accent::before {
		left: -20.375vw;
        top: 180%;
	}
	.sd[data-s-81bcce2e-c363-4e9a-bee4-70b8c816587f].head-accent::after {
		right: -20.375vw;
        top: 130%;
	}
	
	.sd[data-s-81bcce2e-c363-4e9a-bee4-70b8c816587f]:nth-of-type(2) {
		margin-top: 3.333vw;
	}
	
	.sd[data-s-596397e4-4719-4e8e-97e3-fb1c534be305] {
		font-size: 4vw;
		height: 4.833vw;
		line-height: 1;
		width: 86.833vw;
		display: block;
		text-align: center;
	}
}

.sd[data-s-779f238e-9709-4203-b4dc-f95b9a0bd0d8] {
	align-items: center;
	flex: none;
	flex-direction: column;
	height: auto;
	margin-left: 100px;
	width: 500px;
	max-width: 100%;
}
@media screen and (max-width: 1600px){
	.sd[data-s-779f238e-9709-4203-b4dc-f95b9a0bd0d8] {
		margin-left: 6.25vw;
		width: 31.25vw;
	}
}
@media screen and (max-width: 600px){
	.sd[data-s-779f238e-9709-4203-b4dc-f95b9a0bd0d8] {
		margin-left: 0;
		width: 100%;
		padding: 80px 30px;
	}
}

.sd[data-s-779f238e-9709-4203-b4dc-f95b9a0bd0d8] a:hover {
	opacity: 0.9;
}
.sd[data-s-779f238e-9709-4203-b4dc-f95b9a0bd0d8] iframe {
	width: 100%;
}

.device {
	background: rgba(111, 164, 219, 0.20000000298023224);
}
.sd[data-s-8f153a16-5202-428d-80b9-16ce3b1f43a1] {
	align-items: flex-start;
	flex-direction: column;
	gap: 51px;
	height: auto;
	justify-content: flex-start;
	padding: 150px 0 190px 0;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}
@media screen and (max-width: 1600px){
	.sd[data-s-8f153a16-5202-428d-80b9-16ce3b1f43a1] {
		gap: 3.188vw;
		padding: 9.375vw 0 11.875vw 0;
		max-width: 75vw;
	}
}
@media screen and (max-width: 600px){
	.sd[data-s-8f153a16-5202-428d-80b9-16ce3b1f43a1] {
		gap: 15vw;
		padding: 16.667vw 0 20vw 0;
		max-width: 100%;
	}
}

.sd[data-s-54babf4b-b454-4d91-a1c5-2f7e95ae2dfc] {
	color: #FF8B68;
	font-family: var(--font-family-NotoSans);
	font-size: 40px;
	font-style: normal;
	font-weight: 700;
	letter-spacing: 0.2em;
	margin: 0px;
	text-align: center;
	max-width: 100%;
	justify-content: center;
	padding-left: 30px;
}
.sd[data-s-54babf4b-b454-4d91-a1c5-2f7e95ae2dfc].head-accent::before {
	left: -40px;
}
@media screen and (max-width: 1600px){
	.sd[data-s-54babf4b-b454-4d91-a1c5-2f7e95ae2dfc] {
		font-size: 2.5vw;
		padding-left: 1.875vw;
	}
	.sd[data-s-54babf4b-b454-4d91-a1c5-2f7e95ae2dfc].head-accent::before {
		left: -2.5vw;
	}
}
@media screen and (max-width: 600px){
	.sd[data-s-54babf4b-b454-4d91-a1c5-2f7e95ae2dfc] {
		font-size: 6.667vw;
		padding-left: 0;
		margin: 0 auto;
	}
	.sd[data-s-54babf4b-b454-4d91-a1c5-2f7e95ae2dfc].head-accent::before {
		left: -6.667vw;
		padding-left: 0;
		margin: 0 auto;
	}
}

.sd[data-s-c5e226f8-f6f9-4dd2-a518-8193f9712260] {
	align-items: flex-start;
	background: #FFFFFF;
	border-radius: 20px;
	flex-direction: column;
	gap: 36px;
	height: auto;
	justify-content: flex-start;
	padding: 70px 150px;
	width: 100%;
}
.sd[data-s-c5e226f8-f6f9-4dd2-a518-8193f9712260]::before {
	content: "";
	position: absolute;
	background-image: url(../img/online-lp/device-human.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	width: 711px;
	height: 434px;
	top: -48.2%;
	right: -5%;
	clip-path: inset(0 0 90px 0);
}
@media screen and (max-width: 1600px){
	.sd[data-s-c5e226f8-f6f9-4dd2-a518-8193f9712260] {
		border-radius: 1.25vw;
		gap: 2.25vw;
		padding: 4.375vw 9.375vw;
	}
	.sd[data-s-c5e226f8-f6f9-4dd2-a518-8193f9712260]::before {
		width: 44.438vw;
		height: 27.125vw;
		clip-path: inset(0 0 5.625vw 0);
	}
}
@media screen and (max-width: 600px){
	.sd[data-s-c5e226f8-f6f9-4dd2-a518-8193f9712260] {
		border-radius: unset;
		gap: 6vw;
		padding: 11.667vw 20px;
	}
	.sd[data-s-c5e226f8-f6f9-4dd2-a518-8193f9712260]::before {
		display: none;
	}
}

.sd[data-s-45bc84e3-4ef2-4b17-ac02-0d32b2d717f4] {
	display: block;
}

.sd[data-s-00a4cae2-95dd-4f96-a14a-21faa0c27781] {
	align-items: center;
	background: #0A318E;
	border-radius: 100px;
	flex: none;
	flex-direction: column;
	height: auto;
	justify-content: flex-start;
	margin: 0px;
	padding: 6px 15px 5px 10px;
	width: 197px;
	max-width: 100%;
}
.sd[data-s-847efb74-fba1-4faa-b9d0-2a41e2a64643] {
	color: #FFFFFF;
	font-family: var(--font-family-Inter);
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	height: 39px;
	letter-spacing: 0em;
	line-height: 36px;
	margin: 0px;
	text-align: center;
	width: 172px;
	max-width: 100%;
	justify-content: center;
}
.sd[data-s-1ee9c670-8a28-486d-9bd1-506e420bf268] {
	color: #000000;
	flex: 1;
	font-family: var(--font-family-Inter);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 36px;
	margin: 20px 0px 0px 0px;
	text-align: left;
	max-width: 100%;
	padding-left: 40px;
}
@media screen and (max-width: 1600px){
	.sd[data-s-00a4cae2-95dd-4f96-a14a-21faa0c27781] {
		border-radius: 6.25vw;
		padding: 0.375vw 0.938vw 0.313vw 0.625vw;
		width: 12.313vw;
	}
	.sd[data-s-847efb74-fba1-4faa-b9d0-2a41e2a64643] {
		font-size: 1.5vw;
		height: 2.438vw;
		line-height: 2.25vw;
		width: 10.75vw;
	}
	.sd[data-s-1ee9c670-8a28-486d-9bd1-506e420bf268] {
		font-size: 1.125vw;
		line-height: 2.25vw;
		margin: 1.25vw 0px 0px 0px;
		padding-left: 2.5vw;
	}
}
@media screen and (max-width: 600px){
	.sd[data-s-00a4cae2-95dd-4f96-a14a-21faa0c27781] {
		border-radius: 16.667vw;
		padding: 1vw 2.5vw 0.833vw 1.667vw;
		width: 32.833vw;
	}
	.sd[data-s-847efb74-fba1-4faa-b9d0-2a41e2a64643] {
		font-size: 4vw;
		height: 6.5vw;
		line-height: 6vw;
		width: 28.667vw;
	}
	.sd[data-s-1ee9c670-8a28-486d-9bd1-506e420bf268] {
		font-size: 3vw;
		line-height: 6vw;
		margin: 3.333vw 0px 0px 0px;
		padding-left: 20px;
	}
}

.sd[data-s-1ee9c670-8a28-486d-9bd1-506e420bf268] li {
	list-style-type: disc;
}

.sd[data-s-1ee9c670-8a28-486d-9bd1-506e420bf268] strong {
	font-size: 24px;
	font-weight: 700;
}

.sd[data-s-879cc463-cf8a-404a-95ea-e1c996c94a4a] {
	display: block;
}

.sd[data-s-5c738872-e955-4992-b833-a532298f516e] {
	align-items: center;
	background: #0A318E;
	border-radius: 100px;
	flex: none;
	flex-direction: column;
	height: auto;
	justify-content: flex-start;
	margin: 0px;
	padding: 6px 0px 5px 0px;
	width: 151px;
	max-width: 100%;
}
.sd[data-s-548c7663-b9ab-461c-b433-2355c66ce595] {
	color: #FFFFFF;
	font-family: var(--font-family-Inter);
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	height: 39px;
	letter-spacing: 0em;
	line-height: 36px;
	margin: 0px 0px 0px -9px;
	text-align: center;
	width: 172px;
	max-width: calc(100% - -9px);
	justify-content: center;
}
@media screen and (max-width: 1600px){
	.sd[data-s-5c738872-e955-4992-b833-a532298f516e] {
		border-radius: 6.25vw;
		padding: 0.375vw 0px 0.313vw 0px;
		width: 9.438vw;
	}
	.sd[data-s-548c7663-b9ab-461c-b433-2355c66ce595] {
		font-size: 1.5vw;
		height: 2.438vw;
		line-height: 2.25vw;
		margin: 0px 0px 0px -0.562vw;
		width: 10.75vw;
		max-width: calc(100% - -0.562vw);
	}
}
@media screen and (max-width: 600px){
	.sd[data-s-5c738872-e955-4992-b833-a532298f516e] {
		border-radius: 16.667vw;
		padding: 1vw 0px 0.833vw 0px;
		width: 25.167vw;
	}
	.sd[data-s-548c7663-b9ab-461c-b433-2355c66ce595] {
		font-size: 4vw;
		height: 6.5vw;
		line-height: 6vw;
		margin: 0px 0px 0px -1.5vw;
		width: 28.667vw;
		max-width: calc(100% - -1.5vw);
	}
}

.sd[data-s-4939ba3b-f2e3-4b51-b8fe-f0268a43e4ab] {
	align-items: center;
	flex-direction: column;
	gap: 34px;
	height: auto;
	justify-content: flex-start;
	padding: 0px;
	width: 100%;
}
@media screen and (max-width: 1600px){
	.sd[data-s-4939ba3b-f2e3-4b51-b8fe-f0268a43e4ab] {
		gap: 2.125vw;
	}
}
@media screen and (max-width: 600px){
	.sd[data-s-4939ba3b-f2e3-4b51-b8fe-f0268a43e4ab] {
		gap: 5.667vw;
	}
}

.sd[data-s-10a2a113-810b-4d13-8e37-aed155fd3b85] {
	align-items: center;
	background: #FFFFFF;
	flex-direction: column;
	gap: 59px;
	height: auto;
	justify-content: flex-start;
	margin: 0px;
	padding: 67px 0px 60px 0px;
	width: 100%;
}
@media screen and (max-width: 1600px){
	.sd[data-s-10a2a113-810b-4d13-8e37-aed155fd3b85] {
		gap: 3.688vw;
		padding: 4.188vw 0px 3.75vw 0px;
	}
}
@media screen and (max-width: 600px){
	.sd[data-s-10a2a113-810b-4d13-8e37-aed155fd3b85] {
		gap: 5.833vw;
		padding: 11.167vw 0px 10vw 0px;
	}
}

.sd[data-s-bd5ddfd6-e5af-4c2f-87e2-acd3344662b3] {
	align-items: center;
	flex-direction: column;
	height: auto;
	justify-content: flex-start;
	width: 100%;
	overflow: hidden;
}

.sd[data-s-bd5ddfd6-e5af-4c2f-87e2-acd3344662b3]:before {
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.sd[data-s-fc751bdd-f210-4fbb-a91a-24289d6aac2a] {
	align-items: center;
	flex-direction: column;
	height: auto;
	justify-content: flex-start;
	margin: 0px;
}

.sd[data-s-fc751bdd-f210-4fbb-a91a-24289d6aac2a]:before {
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.sd[data-r-0_0_0_6_fc751bdd-f210-4fbb-a91a-24289d6aac2a]{
	background-image: url(../img/online-lp/request-bar.png);
	width: 100%;
	height: 80px;
	position: relative;
	background-repeat: no-repeat;
	background-size: contain;
	transform: scaleX(1.04);
    transform-origin: center;
}
.sd[data-s-04429612-2226-4244-839c-554563624575] {
	color: #FFFFFF;
	font-family: var(--font-family-NotoSans);
	font-size: 24px;
	font-style: italic;
	font-weight: 700;
	height: auto;
	letter-spacing: 0.2em;
	line-height: 55px;
	margin: 0px;
	text-align: center;
	width: auto;
	max-width: 100%;
	justify-content: center;
}
@media screen and (max-width: 1600px){
	.sd[data-r-0_0_0_6_fc751bdd-f210-4fbb-a91a-24289d6aac2a]{
		height: 5vw;
	}
	.sd[data-s-04429612-2226-4244-839c-554563624575] {
		font-size: 1.5vw;
		line-height: 3.438vw;
	}
}
@media screen and (max-width: 600px){
	.sd[data-r-0_0_0_6_fc751bdd-f210-4fbb-a91a-24289d6aac2a]{
		background-image: url(../img/online-lp/request-bar-sp.png);
		height: 13.333vw;
		transform: none;
	}
	.sd[data-s-04429612-2226-4244-839c-554563624575] {
		font-size: 3.3vw;
		line-height: 10vw;
	}
}

.footer-main {
	width: 1120px;
	height: 334px;
	background: linear-gradient(135deg, #ff9068, #ffa965);
	border-radius: 20px;
	border: 5px solid white;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.3);
	padding: 50px 0px 20px;
}
@media screen and (max-width: 1600px){
	.footer-main {
		width: 70vw;
		height: 20.875vw;
		border-radius: 1.25vw;
		border: 0.313vw solid white;
		box-shadow: 0px 0.125vw 0.938vw rgba(0, 0, 0, 0.3);
		padding: 3.125vw 0px 1.25vw;
	}
}
@media screen and (max-width: 600px){
	.footer-main {
		width: 90vw;
		height: 48vw;
		border-radius: 3.333vw;
		border: 4px solid white;
		box-shadow: 0px 0.333vw 2.5vw rgba(0, 0, 0, 0.3);
		padding: 8.333vw 0px 3.333vw;
	}
}

.sd[data-s-2ecfbb1b-4b1b-49a1-b84c-20e1b3226b72] {
	color: #FF8B68;
	font-family: var(--font-family-NotoSans);
	font-size: 12px;
	font-style: normal;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-decoration: underline;
	max-width: 100%;
	justify-content: center;
}
@media screen and (max-width: 1600px){
	.sd[data-s-2ecfbb1b-4b1b-49a1-b84c-20e1b3226b72] {
		font-size: 0.75vw;
	}
}
@media screen and (max-width: 600px){
	.sd[data-s-2ecfbb1b-4b1b-49a1-b84c-20e1b3226b72] {
		font-size: 2vw;
	}
}