/*
========================================
  bundle.css - 結合版CSS
  結合順: reset.css → common.css → styles.css → styles_lp.css
========================================
*/

/* ========================================
   reset.css
   ======================================== */
/*! tailwindcss v2.2.14 | MIT License | https://tailwindcss.com *//*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */

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

html {
	-moz-tab-size: 4;
	-o-tab-size: 4;
	   tab-size: 4;
}

html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
}

body {
	font-family:
		system-ui,
		-apple-system,
		'Segoe UI',
		Roboto,
		Helvetica,
		Arial,
		sans-serif,
		'Apple Color Emoji',
		'Segoe UI Emoji';
}

hr {
	height: 0;
	color: inherit;
}

abbr[title] {
	-webkit-text-decoration: underline dotted;
	        text-decoration: underline dotted;
}

b,
strong {
	font-weight: bolder;
}

code,
kbd,
samp,
pre {
	font-family:
		ui-monospace,
		SFMono-Regular,
		Consolas,
		'Liberation Mono',
		Menlo,
		monospace;
	font-size: 1em;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

table {
	text-indent: 0;
	border-color: inherit;
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

button,
select {
	text-transform: none;
}

button,
[type='button'],
[type='reset'],
[type='submit'] {
	-webkit-appearance: button;
}

::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

:-moz-focusring {
	outline: 1px dotted ButtonText;
}

:-moz-ui-invalid {
	box-shadow: none;
}

legend {
	padding: 0;
}

progress {
	vertical-align: baseline;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
	height: auto;
}

[type='search'] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

summary {
	display: list-item;
}

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

button {
  background-color: transparent;
  background-image: none;
}

fieldset {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

html {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  line-height: 1.5;
}

body {
  font-family: inherit;
  line-height: inherit;
}

*,
::before,
::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: currentColor;
}

hr {
  border-top-width: 1px;
}

img {
  border-style: solid;
}

textarea {
  resize: vertical;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  color: #9ca3af;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  opacity: 1;
  color: #9ca3af;
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #9ca3af;
}

button,
[role="button"] {
  cursor: pointer;
}

:-moz-focusring {
	outline: auto;
}

table {
  border-collapse: collapse;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

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

button,
input,
optgroup,
select,
textarea {
  padding: 0;
  line-height: inherit;
  color: inherit;
}

pre,
code,
kbd,
samp {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  vertical-align: middle;
}

img,
video {
  max-width: 100%;
  height: auto;
}

[hidden] {
  display: none;
}


/* ========================================
   common.css
   ======================================== */
html {
    scroll-behavior: smooth;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.pc-only {
    display: block;
}

.sp-only {
    display: none;
}

html {
    font-size: 16px;
}

.main {
    position: relative;
    margin-top: 80px;
}

@media (max-width: 1400px) {
    html {
        font-size: calc(100vw / 1440);
    }

    .main {
        margin-top: 80rem;
    }
}

@media (max-width: 640px) {
    html {
        font-size: calc(100vw / 375);
    }

    .container {
        padding: 0 10rem !important;
    }

    .pc-only {
        display: none;
    }

    .sp-only {
        display: block;
    }
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
}

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

.container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
}

.header {
    width: 100%;
    height: 70px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo {
    width: 343px;
    height: 46px;
}

.header-logo img {
    width: 100%;
    height: 100%;
}

@media (max-width: 1400px) {
    .header {
        width: 100%;
        height: 70rem;
    }

    .header-logo {
        width: 343rem;
        height: 46rem;
    }
}

@media (max-width: 640px) {
    .header {
        width: 100%;
        height: 50rem;
    }

    .header-logo {
        width: 240rem;
        height: 32rem;
    }
}

.footer {
    background: linear-gradient(#005ab7 0%, #0083ae 100%);
    height: 130px;
}

.footer-nav {
    padding: 0 20px;
}

.footer-nav__box {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #fff;
}

.footer-nav__box--item a {
    color: #fff;
    font-size: 16px;
    padding: 24px 20px;
    display: inline-block;
}

.footer-copyright {
    font-size: 14px;
    color: #fff;
    padding: 18px;
    text-align: center;
}

@media (max-width: 1400px) {
    .footer {
        height: 130rem;
    }

    .footer-nav {
        padding: 0 20rem;
    }

    .footer-nav__box {
        border-bottom: 1rem solid #fff;
    }

    .footer-nav__box--item a {
        font-size: 16rem;
        padding: 24rem 20rem;
    }

    .footer-copyright {
        font-size: 14rem;
        padding: 18rem;
    }
}

@media (max-width: 640px) {
    .footer {
        height: 146rem;
    }

    .footer-nav {
        padding: 0 20rem;
    }

    .footer-nav__box {
        border-bottom: 1rem solid #fff;
    }

    .footer-nav__box--item a {
        font-size: 14rem;
        padding: 24rem 14rem;
    }

    .footer-copyright {
        font-size: 12rem;
        line-height: 20rem;
        padding: 16rem;
    }
}


/* ========================================
   styles.css
   ======================================== */
.csrfform{
    display: none;
}

.chat {
    min-height: calc(100vh - 200px);
    background-color: #b4ddf1;
    background-image: url("../../assets/image/chatbot/chatbot_bg.png");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100% auto;
    position: relative;
    font-family: noto-medium;
}

.chat::before {
    content: "";
    width: 145px;
    height: 82px;
    background-image: url("../../assets/image/chatbot/chatbot_cloud.png");
    background-size: 100% 100%;
    position: absolute;
    top: 100px;
    right: 0;
}

.chat-body {
    padding: 40px 0 250px;
}

.chat-bot {
    display: flex;
}

.chat-bot:not(:first-child) {
    margin-top: 25px;
}

.chat-bot__img {
    width: 80px;
    height: 80px;
    margin-top: 7px;
}

.chat-bot__content {
    margin-left: 13px;
}

.chat-bot__name {
    font-family: noto-bold;
    font-size: 17px;
}

.chat-bot__txt {
    border-radius: 24.5px;
    background-color: #fff;
    padding: 10px 15px;
    margin-top: 5px;
    line-height: 28px;
    text-align: left;
    color: #111;
    position: relative;
    font-size: 20px;
    min-width: 100px;
}

.chat-bot__txt::before {
    content: "";
    position: absolute;
    top: 0;
    left: -7px;
    width: 14px;
    height: 16px;
    background-image: url("../../assets/image/chatbot/chatbot_corner.png");
    background-size: 100% 100%;
    display: inline-block;
}

.chat-bot__txt--reference {
    font-size: 0.9em;
}

.chat-bot__thanksmsg {
    border-radius: 24.5px;
    background-color: #fff;
    padding: 10px 15px;
    margin-top: 30px;
    line-height: 28px;
    text-align: left;
    color: #111;
    position: relative;
    font-size: 20px;
    min-width: 100px;
    text-align: center;
}

.chat-bot__thanksmsg-banner1 {
    padding: 10px 15px;
    margin-top: 80px;
    line-height: 28px;
    text-align: left;
    color: #111;
    position: relative;
    font-size: 20px;
    min-width: 100px;
}

.chat-bot__thanksmsg-banner2 {
    border-radius: 24.5px;
    background-color: #fff;
    padding: 10px 15px;
    margin-top: 20px;
    line-height: 28px;
    color: #111;
    position: relative;
    font-size: 20px;
    min-width: 100px;
    text-align: center;
}

.chat-bot__options {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 1010px;
    height: 240px;
    margin-top: 15px;
}

.chat-bot__input {
    display: flex;
    flex-direction: column;
    width: 1025px;
    margin-top: 15px;
}

.chat-bot__input label {
    font-family: noto-bold;
    width: 100%;
}

.chat-bot__input label span {
    margin-left: 10px;
}

.chat-bot__input label .required-false {
    font-family: noto-medium;
    color: #999;
}

.chat-bot__input label .required-true {
    font-family: noto-medium;
    color: #cd2c34;
}

.chat-bot__input input {
    border-radius: 10px;
    background: #eee;
    font-size: 18px;
    color: #111;
    padding: 20px;
    margin-top: 15px;
    outline: none;
}

.chat-bot__input .input-reference {
    font-size: 18px;
    line-height: 28px;
    color: #111;
    margin-top: 7px;
}

.chat-bot__input .input-reference a {
    text-decoration: underline;
    color: #0563C1;
}

.chat-bot__input .validation-error {
    font-size: 18px;
    line-height: 28px;
    color: #cd2c34;
    margin-top: 7px;
}

.chat-bot__input .btn-next {
    width: 100%;
    height: 70px;
    border-radius: 14px;
    padding: 18px;
    text-align: center;
    background: #cd2c34;
    color: #fff;
    margin-top: 15px;
    font-family: noto-bold;
}

.chat-bot__input .btn-skip {
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: #111;
    display: inline-block;
    margin: 24px auto 20px;
    text-decoration: underline;
}

.chat-user {
    text-align: right;
}

.chat-user__txt {
    border-radius: 24.5px;
    background: #5dea74;
    display: inline-block;
    padding: 10px 15px;
    margin-top: 30px;
    color: #111;
    position: relative;
    font-size: 20px;
}

.chat-user__txt::before {
    content: "";
    position: absolute;
    top: 0;
    right: -7px;
    width: 14px;
    height: 16px;
    background-image: url("../../assets/image/chatbot/chatbot_corner_user.png");
    background-size: 100% 100%;
    display: inline-block;
}

.chat-user__txt::after {
    content: "既読";
    font-size: 14px;
    color: #999;
    position: absolute;
    bottom: 0;
    left: -36px;
    line-height: 1.2;
}

.privacy-content {
    width: 526px;
    font-size: 20px;
    line-height: 28px;
    color: #111;
    border-radius: 24.5px;
    margin-top: 10px;
}

.privacy-content__img {
    width: 100%;
    height: 276.15px;
    background: #dbebec;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 24.5px;
    border-top-right-radius: 24.5px;
}

.privacy-content p {
    background-color: #fff;
    border-bottom-left-radius: 24.5px;
    border-bottom-right-radius: 24.5px;
    padding: 15px;
}

.privacy-content a {
    color: #0563C1;
}

.typing {
    display: flex;
}

.typing span {
    position: absolute;
    top: 19px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #335C80;
}

.typing span:first-child {
    animation: rlc1 0.8s linear infinite alternate;
}

.typing span:nth-child(2) {
    animation: rlc2 0.8s linear infinite;
    margin-left: 10px;
}

.typing span:last-child {
    animation: rlc3 0.8s linear infinite alternate;
    margin-left: 20px;
}

@keyframes rlc1 {
    0% { margin-top: -6px; }
    25% { margin-top: 0px; }
    50% { margin-top: 6px; }
    75% { margin-top: 0px; }
    100% { margin-top: -6px; }
}

@keyframes rlc2 {
    0% { margin-top: 0px; }
    25% { margin-top: -6px; }
    50% { margin-top: 0px; }
    75% { margin-top: 6px; }
    100% { margin-top: 0px; }
}

@keyframes rlc3 {
    0% { margin-top: 6px; }
    25% { margin-top: 0px; }
    50% { margin-top: -6px; }
    75% { margin-top: 0px; }
    100% { margin-top: 6px; }
}

.option-btn {
    width: 484px;
    height: 100px;
    border-radius: 14px;
    background: #1b60aa;
    border: 3px solid #1b60aa;
    color: #fff;
    font-size: 24px;
    font-family: noto-bold;
}

.btn-call {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 14px;
    background: #1baa3d;
    padding: 18px 0 20px;
    margin-top: 15px;
    color: #fff;
}

.btn-call span:first-child {
    font-size: 24px;
    font-family: noto-bold;
    display: inline-flex;
    align-items: flex-end;
    margin-bottom: 3px;
}

.btn-call span:first-child img {
    margin-right: 9px;
    width: 18px;
    height: 24px;
}

.btn-call span:last-child {
    font-size: 18px;
}

.chat-bot__thanksmsg div {
    display: inline-block;
    vertical-align: top;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 25%;
}

.chat-bot__thanksmsg div > img {
    display: inline-block;
    width: 15%;
}

.chat-bot__thanksmsg-banner2 div > img {
    display: inline-block;
    width: auto;
    max-width: 429px;
    margin: 10px;
}

@media (max-width: 1400px) {
    .chat {
        min-height: calc(100vh - 200rem);
    }

    .chat::before {
        width: 145rem;
        height: 82rem;
        top: 100rem;
    }

    .chat-body {
        padding: 40rem 0 250rem;
    }

    .chat-bot:not(:first-child) {
        margin-top: 25rem;
    }

    .chat-bot__img {
        width: 80rem;
        height: 80rem;
        margin-top: 7rem;
    }

    .chat-bot__content {
        margin-left: 13rem;
    }

    .chat-bot__name {
        font-size: 17rem;
    }

    .chat-bot__txt {
        border-radius: 24.5rem;
        padding: 10rem 15rem;
        margin-top: 5rem;
        line-height: 28rem;
        font-size: 20rem;
        min-width: 100rem;
    }

    .chat-bot__txt::before {
        left: -7rem;
        width: 14rem;
        height: 16rem;
    }

    .chat-bot__txt--reference {
        font-size: 0.9em;
    }

    .chat-bot__thanksmsg {
        border-radius: 24.5rem;
        padding: 20rem 15rem;
        margin-top: 35rem;
        line-height: 28rem;
        font-size: 30rem;
        min-width: 100rem;
    }

    .chat-bot__thanksmsg::before {
        left: -7rem;
        width: 14rem;
        height: 16rem;
    }

    .chat-bot__thanksmsg--reference {
        font-size: 0.9em;
    }

    .chat-bot__options {
        width: 1010rem;
        height: 240rem;
        margin-top: 15rem;
    }

    .chat-bot__input {
        width: 1025rem;
        margin-top: 15rem;
    }

    .chat-bot__input label span {
        margin-left: 10rem;
    }

    .chat-bot__input input {
        border-radius: 10rem;
        font-size: 18rem;
        padding: 20rem;
        margin-top: 15rem;
    }

    .chat-bot__input .input-reference {
        font-size: 18rem;
        line-height: 28rem;
        margin-top: 7rem;
    }

    .chat-bot__input .validation-error {
        font-size: 18rem;
        line-height: 28rem;
        margin-top: 7rem;
    }

    .chat-bot__input .btn-next {
        width: 100%;
        height: 70rem;
        border-radius: 14rem;
        padding: 18rem;
        margin-top: 15rem;
    }

    .chat-bot__input .btn-skip {
        font-size: 18rem;
        line-height: 24rem;
        margin: 24rem auto 20rem;
    }

    .chat-user__txt {
        border-radius: 24.5rem;
        padding: 10rem 15rem;
        margin-top: 30rem;
        font-size: 20rem;
    }

    .chat-user__txt::before {
        right: -7rem;
        width: 14rem;
        height: 16rem;
    }

    .chat-user__txt::after {
        font-size: 14rem;
        left: -36rem;
    }

    .privacy-content {
        width: 526rem;
        font-size: 20rem;
        line-height: 28rem;
        border-radius: 24.5rem;
        margin-top: 10rem;
    }

    .privacy-content__img {
        width: 100%;
        height: 276.15rem;
        border-top-left-radius: 24.5rem;
        border-top-right-radius: 24.5rem;
    }

    .privacy-content p {
        border-bottom-left-radius: 24.5rem;
        border-bottom-right-radius: 24.5rem;
        padding: 15rem;
    }

    .typing span {
        top: 19rem;
        width: 6rem;
        height: 6rem;
    }

    .typing span:nth-child(2) {
        margin-left: 10rem;
    }

    .typing span:last-child {
        margin-left: 20rem;
    }

    @keyframes rlc1 {
        0% { margin-top: -6rem; }
        25% { margin-top: 0rem; }
        50% { margin-top: 6rem; }
        75% { margin-top: 0rem; }
        100% { margin-top: -6rem; }
    }

    @keyframes rlc2 {
        0% { margin-top: 0rem; }
        25% { margin-top: -6rem; }
        50% { margin-top: 0rem; }
        75% { margin-top: 6rem; }
        100% { margin-top: 0rem; }
    }

    @keyframes rlc3 {
        0% { margin-top: 6rem; }
        25% { margin-top: 0rem; }
        50% { margin-top: -6rem; }
        75% { margin-top: 0rem; }
        100% { margin-top: 6rem; }
    }

    .option-btn {
        width: 484rem;
        height: 100rem;
        border-radius: 14rem;
        border: 3rem solid #1b60aa;
        font-size: 24rem;
    }

    .btn-call {
        border-radius: 14rem;
        padding: 18rem 0 20rem;
        margin-top: 15rem;
    }

    .btn-call span:first-child {
        font-size: 24rem;
        margin-bottom: 3rem;
    }

    .btn-call span:first-child img {
        margin-right: 9rem;
        width: 18rem;
        height: 24rem;
    }

    .btn-call span:last-child {
        font-size: 18rem;
    }

    .chat-bot__thanksmsg-banner2 div > img {
        display: inline-block;
        width: auto;
        max-width: 429px;
        margin: 10px;
    }

    .chat-bot__thanksmsg div {
        display: inline-block;
        vertical-align: top;
        margin-top: 20px;
        width: 25%;
    }

    .chat-bot__thanksmsg div > img {
        display: inline-block;
        width: 15%;
    }
}

@media (max-width: 640px) {
    .chat {
        min-height: calc(100vh - 196rem);
    }

    .chat::before {
        width: 75.85rem;
        height: 40.27rem;
        top: 240rem;
    }

    .chat-body {
        padding: 20rem 0 100rem;
    }

    .chat-bot:not(:first-child) {
        margin-top: 15rem;
    }

    .chat-bot__img {
        width: 34rem;
        min-width: 34rem;
        height: 34rem;
        margin-top: 0rem;
    }

    .chat-bot__content {
        margin-left: 10rem;
    }

    .chat-bot__name {
        font-size: 12rem;
        width: 267rem;
    }

    .chat-bot__txt {
        border-radius: 18.5rem;
        padding: 6rem 10rem;
        margin-top: 5rem;
        line-height: 22rem;
        font-size: 15rem;
        min-width: 267rem;
        width: 267rem;
    }

    .chat-bot__txt::before {
        left: -7rem;
        width: 14rem;
        height: 16rem;
    }

    .chat-bot__txt--reference {
        font-size: 0.9em;
    }

    .chat-bot__thanksmsg {
        border-radius: 18.5rem;
        padding: 6rem 10rem;
        margin-top: 20rem;
        line-height: 22rem;
        font-size: 12rem;
        min-width: 267rem;
        width: 267rem;
    }

    .chat-bot__thanksmsg-banner1 {
        border-radius: 18.5rem;
        padding: 6rem 10rem;
        margin-top: 5rem;
        line-height: 22rem;
        font-size: 12rem;
        min-width: 267rem;
        width: 267rem;
    }

    .chat-bot__thanksmsg-banner2 {
        border-radius: 18.5rem;
        padding: 6rem 10rem;
        margin-top: 5rem;
        line-height: 22rem;
        font-size: 12rem;
        min-width: 267rem;
        width: 267rem;
    }

    .chat-bot__thanksmsg::before {
        left: -7rem;
        width: 14rem;
        height: 16rem;
    }

    .chat-bot__thanksmsg--contact {
        font-size: 0.9em;
    }

    .chat-bot__thanksmsg div {
        display: inline-block;
        vertical-align: top;
        margin-top: 10px;
        margin-bottom: 20px;
        width: auto;
    }

    .chat-bot__thanksmsg--banner1 {
        font-size: 0.8em;
        text-align: left;
    }

    .chat-bot__options {
        width: 267rem;
        height: 320rem;
        margin-top: 10rem;
    }

    .chat-bot__input {
        width: 267rem;
        margin-top: 10rem;
    }

    .chat-bot__input label span {
        margin-left: 5rem;
    }

    .chat-bot__input input {
        border-radius: 10rem;
        font-size: 13rem;
        padding: 13rem;
        margin-top: 8rem;
    }

    .chat-bot__input .input-reference {
        font-size: 13rem;
        line-height: 19rem;
        margin-top: 5rem;
    }

    .chat-bot__input .validation-error {
        font-size: 13rem;
        line-height: 19rem;
        margin-top: 5rem;
    }

    .chat-bot__input .btn-next {
        width: 100%;
        height: unset;
        border-radius: 10rem;
        padding: 13rem;
        margin-top: 8rem;
        font-size: 18rem;
    }

    .chat-bot__input .btn-skip {
        font-size: 14rem;
        line-height: 24rem;
        margin: 18rem auto 17rem;
    }

    .chat-user__txt {
        border-radius: 18.5rem;
        padding: 10rem 12rem;
        margin-top: 18rem;
        font-size: 15rem;
        max-width: 267rem;
        text-align: left;
    }

    .chat-user__txt::before {
        right: -7rem;
        width: 14rem;
        height: 16rem;
    }

    .chat-user__txt::after {
        font-size: 10rem;
        left: -24rem;
    }

    .privacy-content {
        width: 267rem;
        font-size: 14rem;
        line-height: 21rem;
        border-radius: 17.5rem;
        margin-top: 10rem;
    }

    .privacy-content__img {
        width: 100%;
        height: 142rem;
    }

    .privacy-content__img img {
        border-top-left-radius: 17.5rem;
        border-top-right-radius: 17.5rem;
    }

    .privacy-content p {
        border-bottom-left-radius: 17.5rem;
        border-bottom-right-radius: 17.5rem;
        padding: 12rem;
    }

    .privacy-content a {
        color: #0563C1;
    }

    .typing span {
        top: 12rem;
        width: 6rem;
        height: 6rem;
    }

    .typing span:nth-child(2) {
        margin-left: 10rem;
    }

    .typing span:last-child {
        margin-left: 20rem;
    }

    @keyframes rlc1 {
        0% { margin-top: -6rem; }
        25% { margin-top: 0rem; }
        50% { margin-top: 6rem; }
        75% { margin-top: 0rem; }
        100% { margin-top: -6rem; }
    }

    @keyframes rlc2 {
        0% { margin-top: 0rem; }
        25% { margin-top: -6rem; }
        50% { margin-top: 0rem; }
        75% { margin-top: 6rem; }
        100% { margin-top: 0rem; }
    }

    @keyframes rlc3 {
        0% { margin-top: 6rem; }
        25% { margin-top: 0rem; }
        50% { margin-top: -6rem; }
        75% { margin-top: 0rem; }
        100% { margin-top: 6rem; }
    }

    .option-btn {
        width: 100%;
        height: 70rem;
        border-radius: 10rem;
        border: 3rem solid #1b60aa;
        font-size: 18rem;
    }

    .btn-call {
        border-radius: 10rem;
        padding: 10rem 0 10rem;
        margin-top: 15rem;
    }

    .btn-call span:first-child {
        font-size: 20rem;
        margin-bottom: 3rem;
    }

    .btn-call span:first-child img {
        margin-right: 9rem;
        width: 16rem;
        height: 21rem;
    }

    .btn-call span:last-child {
        font-size: 14rem;
    }

    .chat-bot__thanksmsg-banner2 div > img {
        display: inline-block;
        width: auto;
        max-width: 214px;
    }
}


/* ========================================
   styles_lp.css
   ======================================== */
.lp_body {
}

.inner {
    max-width: 750px;
    margin-inline: auto;
    position: relative;
    overflow: clip;
}

.fv_section {
    margin-top: min(64px, calc(64 / 750 * 100vw));
    position: relative;
    background: linear-gradient(to top, #6eb7c5 0%, #bbdcef 60.54%, #fff 100%);
}

.fv_section .inner {
    padding-bottom: min(64px, calc(64 / 750 * 100vw));
}

.fv_section .fv_text {
    position: relative;
    z-index: 3;
}

.fv_section .fv_bg {
    position: absolute;
    width: 100%;
    bottom: 0;
}

.fv_section .button {
    position: relative;
    z-index: 3;
    display: block;
    width: calc(705 / 750 * 100%);
    margin-inline: auto;
    margin-top: 16px;
}

.fv_section .button img {
    width: 100%;
}

.fv_section .button_text {
    position: relative;
    z-index: 3;
    width: calc(525 / 750 * 100%);
    margin-inline: auto;
    margin-top: 12px;
}

.reviews_section {
    background-color: #F1F7FA;
    padding-bottom: 40px;
}

.reviews_section .review_list li + li {
    margin-top: 8px;
}

.solution_section {
    background-color: #F1F7FA;
}

.faq_section {
    background-color: #F1F7FA;
}

.faq_section .faq_list li + li {
    margin-top: 8px;
}

.cta_section {
    background-color: #BCDDF0;
    padding-bottom: 20px;
}

.cta_section .button {
    display: block;
    width: calc(705 / 750 * 100%);
    margin-inline: auto;
}

.cta_section .button img {
    width: 100%;
}

.cta_section .button_text {
    width: calc(525 / 750 * 100%);
    margin-inline: auto;
    margin-top: 12px;
}

.cta_section .button_text img {
    width: 100%;
}

@media screen and (max-width: 750px) {
    .pc_only {
        display: none !important;
    }
}

@media screen and (min-width: 751px) {
    .sp_only {
        display: none !important;
    }

    .inner {
        max-width: 1600px;
        margin-inline: auto;
        position: relative;
        overflow: clip;
    }

    .fv_section {
        margin-top: min(64px, calc(64 / 750 * 100vw));
        position: relative;
        background: linear-gradient(180deg, #fff 0%, #fff 30%, #bcddf0 70%, #6eb8c6 100%);
    }

    .fv_section .inner {
        padding-bottom: 0;
    }

    .hajimeni_section {
        padding-top: 70px;
    }

    .hajimeni_section .button {
        display: block;
        width: calc(1014 / 1600 * 100%);
        margin-inline: auto;
    }

    .hajimeni_section .button img {
        width: 100%;
    }

    .hajimeni_section .button_text {
        display: block;
        width: calc(756 / 1600 * 100%);
        margin-inline: auto;
        margin-top: 20px;
    }

    .hajimeni_section .button_text img {
        width: 100%;
    }

    .reviews_section {
        padding-bottom: 40px;
    }

    .reviews_section .review_list li + li {
        margin-top: 10px;
    }

    .faq_section {
        padding-bottom: 60px;
    }

    .cta_section {
        padding-bottom: 0;
    }
}
