/*
========================================
  all.css - 全CSS結合版
  結合順: bundle.css → text_sections.css → sp_fixed.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;
    }
}


/* ========================================
   text_sections.css
   ======================================== */
.text-section {
    text-align: center;
    padding: 40px 20px;
}

.text-main {
    font-size: 24px;
    font-weight: 700;
    color: #1a5c6b;
    line-height: 1.5;
    margin: 24px 0;
    text-align: center;
}

.text-sub {
    font-size: 14px;
    font-weight: 400;
    color: #333;
    line-height: 1.9;
    margin: 16px 0;
    text-align: center;
}

.text-sub-small {
    font-size: 12px;
    font-weight: 400;
    color: #555;
    line-height: 1.8;
    margin: 12px 0;
    text-align: center;
}

.text-accent {
    font-size: 14px;
    font-weight: 500;
    color: #1a5c6b;
    margin: 20px 0;
    text-align: center;
}

.text-title {
    text-align: center;
}

.text-quote {
    text-align: center;
}

.fv_text01_text {
    padding: 20px 15px 0;
    position: relative;
    z-index: 3;
    text-align: center;
}

.fv_text01_text .text-main {
    font-size: 28px;
    margin-bottom: 16px;
    text-align: center;
}

.fv_text01_text .text-sub {
    font-size: 13px;
    text-align: center;
}

.guide_text_text {
    padding: 36px 24px;
}

.guide_text_text .text-sub,
.guide_text_text .text-sub-small {
    font-size: 14px;
    line-height: 1.9;
    text-align: center;
    margin: 14px 0;
    color: #444;
}

.guide_text_text .text-main {
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
    margin: 28px 0;
}

.guide_text_text .text-quote {
    font-size: 20px;
    color: #1a5c6b;
    font-weight: 700;
    text-align: center;
    margin: 28px 0 12px;
}

.mind_text_text {
    background: #fff;
    border-radius: 16px;
    padding: 40px 24px;
    margin: 0 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.mind_text_text .text-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
}

.mind_text_text .text-main {
    font-size: 20px;
    margin: 28px 0;
}

.footer_text_text {
    padding: 40px 20px 24px;
}

.footer_text_text .text-main {
    font-size: 20px;
    color: #1a5c6b;
}

.footer_text_text .text-sub {
    font-size: 13px;
    color: #444;
}

.blacklist_section {
    background: #fff;
    padding: 50px 20px;
}

.blacklist_text {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.blacklist_text .text-main {
    font-size: 20px;
    color: #1a5c6b;
    margin-bottom: 20px;
}

.blacklist_text .text-sub {
    font-size: 13px;
    color: #555;
    line-height: 2;
}

/* よくある不安セクション - padding追加 */
#worries.faq_section {
    background: #f5f9fa;
    padding: 50px 20px;
}

.faq_text {
    max-width: 500px;
    margin: 0 auto;
}

.faq_list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.faq_list li {
    background: #fff;
    padding: 16px 20px;
    margin-bottom: 12px;
    border-radius: 10px;
    font-size: 13px;
    color: #333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.faq_text .text-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a5c6b;
    text-align: center;
    margin-bottom: 28px;
}

.faq_list li .check {
    color: #27ae60;
    font-weight: 700;
    margin-right: 8px;
}

.faq_text .text-closing {
    font-size: 12px;
    color: #666;
    text-align: center;
    line-height: 1.9;
}

.flow_section {
    background: #fff;
    padding: 50px 20px;
}

.flow_text {
    max-width: 400px;
    margin: 0 auto;
}

.flow_text .text-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a5c6b;
    text-align: center;
    margin-bottom: 32px;
}

.flow_steps {
    position: relative;
}

.flow_step {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.flow_step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 44px;
    width: 2px;
    height: calc(100% - 4px);
    background: #ddd;
}

.flow_num {
    width: 40px;
    height: 40px;
    background: #1a5c6b;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.flow_content {
    margin-left: 16px;
    font-size: 13px;
    color: #333;
}

.flow_content .highlight {
    color: #e74c3c;
    font-weight: 700;
}

.custom_section {
    background: #fff;
    padding: 50px 20px;
}

.custom_text {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.custom_text .text-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a5c6b;
    margin-bottom: 20px;
}

.custom_text .text-main {
    font-size: 20px;
    color: #1a5c6b;
    margin-bottom: 16px;
}

.custom_text .text-sub {
    font-size: 13px;
    color: #555;
    line-height: 1.9;
}


/* ========================================
   sp_fixed.css（PC時もスマホスタイルで表示）
   ======================================== */
@media screen and (min-width: 751px) {
    html {
        background: linear-gradient(180deg, #f5f9fa 0%, #e8f4f8 100%);
        min-height: 100%;
    }

    body {
        background: transparent;
    }

    .lp_body {
        max-width: 375px;
        margin: 0 auto;
        background: #fff;
        min-height: 100vh;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    }
    
    .main {
        margin-top: 0 !important;
    }

    .inner {
        max-width: 375px !important;
        margin-inline: auto;
    }

    .fv_section {
        margin-top: 0 !important;
    }
    
    .hajimeni_section {
        padding-top: 0 !important;
    }
    
    .fv_section .inner {
        padding-bottom: min(64px, calc(64 / 750 * 100vw));
    }
    
    .sp_only {
        display: block !important;
    }
    
    .pc_only {
        display: none !important;
    }

    .header {
        max-width: 375px;
        margin: 0 auto;
        background: #fff;
    }

    .chat {
        max-width: 375px;
        margin: 0 auto;
        min-height: calc(100vh - 196px) !important;
    }

    .chat::before {
        width: 76px !important;
        height: 40px !important;
        top: 240px !important;
    }

    .chat-body {
        padding: 20px 0 100px !important;
    }

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

    .chat-bot__img {
        width: 34px !important;
        min-width: 34px !important;
        height: 34px !important;
        margin-top: 0 !important;
    }

    .chat-bot__content {
        margin-left: 10px !important;
    }

    .chat-bot__name {
        font-size: 12px !important;
        width: 267px !important;
    }

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

    .chat-bot__options {
        width: 267px !important;
        height: auto !important;
        margin-top: 10px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 8px;
    }

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

    .chat-bot__input {
        width: 267px !important;
        margin-top: 10px !important;
    }

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

    .chat-bot__input .btn-next {
        height: unset !important;
        border-radius: 10px !important;
        padding: 13px !important;
        margin-top: 8px !important;
        font-size: 18px !important;
    }

    .chat-bot__input .btn-skip {
        font-size: 14px !important;
    }

    .chat-user__txt {
        border-radius: 18.5px !important;
        padding: 10px 12px !important;
        margin-top: 18px !important;
        font-size: 15px !important;
        max-width: 267px !important;
    }

    .chat-user__txt::after {
        font-size: 10px !important;
        left: -24px !important;
    }

    .privacy-content {
        width: 267px !important;
        font-size: 14px !important;
        line-height: 21px !important;
    }

    .privacy-content__img {
        height: 142px !important;
    }

    .fv_text01_text {
        padding: 20px 15px 0 !important;
    }
    
    .guide_text_text {
        padding: 0 15px 30px !important;
    }
    
    .mind_text_text {
        margin: 0 16px !important;
        padding: 30px 20px !important;
    }
    
    .footer_text_text {
        padding: 30px 15px !important;
    }

    .footer {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .footer-nav,
    .footer-copyright {
        max-width: 375px;
        margin: 0 auto;
    }
}

/* ========================================
   複数画像縦並び（ギャラリー）
======================================== */
.section_image_gallery {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 15px 0;
}

.section_image_gallery img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* CTAバッジ */
.cta-social-proof {
  text-align: center;
  margin: 0 auto 8px;
  position: relative;
  z-index: 3;
}
.cta-social-proof .proof-chip {
  display: inline-block;
  background: #fff;
  color: #1a3a5c;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 20px;
  border-radius: 30px;
  border: 1.5px solid #1a3a5c;
  letter-spacing: 0.5px;
}
.cta-social-proof .proof-chip strong {
  font-size: 18px;
  font-weight: 900;
  margin: 0 1px;
}
.cta-social-proof .proof-chip small {
  display: block;
  font-size: 9px;
  font-weight: 400;
  color: #888;
  margin-top: 2px;
  letter-spacing: 0;
}
.cta-note {
  text-align: right;
  font-size: 9px;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
  padding-right: 20px;
  position: relative;
  z-index: 3;
}

.cta-trust-badges {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  position: relative;
  z-index: 3;
}
.cta-trust-badges .badge {
  background: #fff;
  border: 1px solid #1a3a5c;
  color: #1a3a5c;
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: bold;
}

/* 電話番号プライバシー吹き出し */
.chat-privacy-note {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 16px;
  margin: 8px 16px 12px;
  font-size: 13px;
  color: #555;
  line-height: 1.7;
}
.chat-privacy-note p {
  margin: 0 0 4px;
}
.chat-privacy-note p:last-child {
  margin: 0;
}

/* ご相談までの流れ */
.section-flow-steps {
  background: #f7fafc;
  padding: 48px 20px;
}
.flow-steps-inner {
  max-width: 640px;
  margin: 0 auto;
}
.flow-steps-title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: #1a3a5c;
  margin-bottom: 32px;
}
.flow-steps-title span {
  display: block;
  font-size: 14px;
  font-weight: normal;
  color: #666;
  margin-top: 4px;
}
.flow-steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.flow-steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #e0e8f0;
}
.flow-steps-list li:last-child {
  border-bottom: none;
}
.flow-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: #1a3a5c;
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
  font-weight: bold;
}
.flow-step-body strong {
  display: block;
  font-size: 15px;
  color: #1a3a5c;
  margin-bottom: 4px;
}
.flow-step-body p {
  font-size: 13px;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

/* ========================================
   安心訴求セクション
   ======================================== */
.reassurance_section {
  background: #fff;
  padding: 50px 20px;
}

.reassurance_text {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.reassurance_text .text-title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  line-height: 1.7;
  margin-bottom: 28px;
}

.reassurance_text .text-main {
  font-size: 22px;
  font-weight: 700;
  color: #1a5c6b;
  margin: 28px 0;
  line-height: 1.6;
}

.reassurance_text .text-sub-small {
  font-size: 15px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 20px;
}

/* ========================================
   誤解セクション（lp4: 知識武装型）
   ======================================== */
.misconceptions_section {
  background: #fff;
  padding: 50px 20px;
}

.misconceptions_text {
  max-width: 500px;
  margin: 0 auto;
}

.misconceptions_text .text-title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 32px;
}

.misconception_item {
  background: #f5f9fa;
  border-radius: 12px;
  padding: 20px 20px;
  margin-bottom: 16px;
}

.misconception_myth {
  font-size: 16px;
  font-weight: 700;
  color: #c0392b;
  margin: 0 0 8px;
  line-height: 1.6;
}

.misconception_fact {
  font-size: 14px;
  color: #555;
  margin: 0;
  line-height: 1.8;
}

.misconceptions_closing {
  font-size: 18px;
  font-weight: 700;
  color: #1a5c6b;
  text-align: center;
  margin-top: 32px;
  line-height: 1.7;
}

/* ========================================
   体験ストーリーセクション（lp5）
   ======================================== */
.story_section {
  background: #f5f9fa;
  padding: 50px 20px;
}

.story_text {
  max-width: 500px;
  margin: 0 auto;
}

.story_text .text-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a5c6b;
  text-align: center;
  margin-bottom: 32px;
}

.story_chapter {
  background: #fff;
  border-radius: 12px;
  padding: 20px 20px;
  margin-bottom: 16px;
}

.story_label {
  font-size: 13px;
  font-weight: 700;
  color: #1a5c6b;
  margin: 0 0 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e0e8f0;
}

.story_body {
  font-size: 14px;
  color: #555;
  margin: 0;
  line-height: 1.9;
}

.story_note {
  font-size: 12px;
  color: #999;
  text-align: center;
  margin-top: 24px;
}
