@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

/* =============================================
    # reset
============================================= */

html, body, footer, header,
div, section, article, aside, nav,
object, iframe, video, address, img,
h1, h2, h3, h4, h5, h6, p,
small, strong, b, i, span,
dl, dt, dd, ol, ul, li,
table, tr, th, td, form, label {
    font-size: 100%;
    vertical-align: baseline;
    border: 0;
    outline: 0;
    background: transparent;
    margin: 0;
    padding: 0;
}

body {
    line-height: 1;
}

footer, header, div, section, article, aside, nav {
    display: block;
}

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

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

input, select, textarea, img, th, td {
    vertical-align: middle;
}

ul, dl, ol {
    list-style: none;
}

/* =============================================
    # 変数
============================================= */

:root {

/* color */
    --base: #222;
    --half: #888;
    --white: #fff;
    --gray: #f5f5f5;
    --blue: #05e;
    --thin: #e5eefd;
    --orange: #f70;

/* bg */
    --graB: linear-gradient(90deg, #05e, #03c);

/* size */
    --fontA: 40px;
    --fontB: 28px;
    --fontC: 50px;
    --fontD: 46px;

/* margin */
    --mgtA: 40px 0 0;
    --mgtB: 20px 0 0;
    --mgtC: 80px 0 0;

/* padding */
    --pdgA: 0 30px;
    --pdgB: 0 40px;
    --pdgC: 0 20px;
}

/* =============================================
    # 共通設定
============================================= */

* {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-appearance: none;
            appearance: none;
    -webkit-text-size-adjust: 100%;
            text-size-adjust: none;
}

html,
body {
    width: 100%;
    height: 100%;
}

html {
    background: url(images/html-bg.webp) repeat-x left bottom #d8e9fd fixed;
    background-size: 72% auto;
}

body {
    font-family: 'Roboto', 'Noto Sans JP', Meiryo, sans-serif;
    font-size: 32px;
    font-weight: 600;
    font-feature-settings: "palt";
    letter-spacing: 0.06em;
    color: var(--base);
    line-height: 1.8;
    margin: 0;
}

h1, h2, h3, h4, h5, h6, strong, th {
    font-weight: 700;
}

a {
    color: #05d;
    text-decoration: none;
    transition: .3s;
}

a:hover {
    text-decoration: underline;
}

a:hover img {
    opacity: .6;
}

img, video, object {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    border: none;
    transition: .3s;
}

table {
    table-layout:fixed;
}

table th,
table td {
    vertical-align: middle;
}

/* =============================================
    #
============================================= */

main {
    width: 800px;
    background: var(--white);
    margin: 0 auto;
    position: relative;
    z-index: 10;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0,85,240,.2);
}

/* =============================================
    #
============================================= */

.label-01 {
    margin: 30px 0 0;
}

.label-01 span {
    display: inline-block;
    font-size: var(--fontA);
    font-weight: 700;
    background: #fff;
    padding: var(--pdgA);
    position: relative;
    z-index: 10;
}

.label-02 {
    margin: var(--mgtA);
}

.label-02 span {
    display: inline-block;
    color: var(--white);
    font-size: var(--fontA);
    font-weight: 700;
    background: var(--graB);
    padding: var(--pdgA);
    position: relative;
    z-index: 10;
}

.label-02 span + span {
    margin: 30px 0 0;
}

.label-03 {
}

.label-03 span {
    display: inline-block;
    font-size: var(--fontA);
    font-weight: 700;
    background: var(--white);
    margin: 30px 0 0;
    padding: var(--pdgA);
    position: relative;
    z-index: 10;
}

.label-03 span strong {
    color: var(--blue);
}

/* ======================================
    #
====================================== */

.fade {
    opacity: 0;
    transform: translateY(1em);
}

.visible {
    animation: inUp 1s forwards ease-out;
}

@keyframes inUp {
    0%   {}
    100% {opacity: 1;transform: translate(0);}
}

/* =============================================
    #
============================================= */

.lp-cta {
    background: var(--thin);
    padding: 80px 30px;
    position: relative;
    overflow: hidden;
}

.lp-cta::before {
    content: "PRESENT";
    display: block;
    color: #c6d5fa;
    font-size: 100px;
    font-weight: 700;
    line-height: 1;
    position: absolute;
    top: -14px;
    right: -10px;
}

.lp-cta h2 {
    font-size: var(--fontC);
    line-height: 1.4;
    font-weight: 700;
}

.lp-cta h2 span {
    display: inline-block;
    font-size: 28px;
    color: var(--white);
    background: var(--graB);
    margin: 0 0 10px;
    padding: .2em .5em;
    border-radius: 5px;
}

.cta-list {
    width: 520px;
    margin: var(--mgtB);
}

.cta-list li {
    font-size: var(--fontB);
    text-align: center;
    background: var(--white);
    margin: 10px 0 0;
    padding: .25em 0;
    border-radius: 3em;
}

.lp-cta h3 {
    font-size: var(--fontA);
    font-weight: 700;
    margin: var(--mgtB);
}

.lp-cta h3 strong {
    color: var(--blue);
    font-weight: 700;
}

.lp-cta-book {
    position: absolute;
    top: 120px;
    right: -180px;
}

.lp-cta-balloon {
    position: absolute;
    top: 40px;
    right: 100px;
    animation: fuwafuwa 2s infinite;
}

@keyframes fuwafuwa {
    0% {transform: translate(0, 0);}
    50% {transform: translate(-10px, -10px);}
    100% {transform: translate(0, 0);}
}

.next-button-wrap {
    margin: 20px auto;
    text-align: center;
}

.next-button-wrap .next-button {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
}

.next-button-wrap .next-button:active {
    transform: translateY(2px);
}

/* =============================================
    #
============================================= */

.lp-container {
    width: 800px;
    padding: 80px 0;
    position: relative;
}

.container {
    margin: var(--mgtA);
    padding: var(--pdgA);
    position: relative;
}

/* 親要素 */
.change-bg {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.layer-front {
    z-index: 2;
    opacity: 1;
    transition: opacity 1.2s ease-in-out;
}

.layer-back {
    z-index: 1;
}
/* =============================================
    #
============================================= */

#mainvisual {
    padding: 0;
    position: relative;
}

#mainvisual .bg-frame {
    background: url(images/mainvisual-bg-frame.webp) no-repeat center top;
    position: relative;
    z-index: 2;
}

.mainvisual-copy-group_01 {
    margin: 300px 0 0;
}

.badge-image {
    display: flex;
    flex-flow: wrap;
    width: 720px;
    margin: var(--mgtA);
    margin-left: 20px;
}

.badge-image li {
    width: 220px;
    margin: 0 10px;
    position: relative;
    overflow: hidden;
}

.badge-image li::after {
    content: "";
    display: block;
    width: 220px;
    height: 220px;
    background: url(images/mainvisual-badge-shine.webp) no-repeat center center;
    position: absolute;
    top: 20px;
    left: 0;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
}

.mainvisual-copy-group_02 {
    margin: var(--mgtA);
}

.mainvisual-copy-group_02 strong {
    display: inline-block;
    color: var(--blue);
    font-size: 30px;
    background: var(--white);
    line-height: 1;
    margin: 0 .5em 0 0;
    padding: 5px 10px;
    position: relative;
    top: -5px;
    border-radius: 5px;
}

.mainvisual-copy-group_02 .label-01 {
    color: var(--blue);
    position: relative;
}

.mainvisual-copy-group_02 .label-01::before {
    content: "";
    display: block;
    width: 160px;
    height: 4px;
    background: var(--blue);
    position: absolute;
    top: 50%;
    right: 0;
}

/* =============================================
    #
============================================= */

#correct {
    padding: 0 0 80px;
}

#correct h2 {
    font-size: 80px;
    padding: var(--pdgA);
    position: relative;
}

#correct h2 strong {
    display: inline-block;
    color: var(--blue);
    animation: gatagata .1s infinite;
}

@keyframes gatagata{
    0%{transform:translateY(0)}
    25%{transform:translate(0px, 2px) rotateZ(1deg)}
    50%{transform:translate(0px, 2px) rotateZ(0deg)}
    75%{transform:translate(2px, 2px) rotateZ(-1deg)}
    100%{transform:translate(0px, 0px) rotateZ(0deg)}
}

#correct h2::after {
    content: "";
    display: block;
    width: 420px;
    height: 110px;
    background: url(images/correct-h2.svg);
    position: absolute;
    top: 80px;
    right: 200px;
}

.correct-copy-group_01 {
    margin: var(--mgtC);
    padding: var(--pdgB);
}

#correct img {
    width: 240px;
    position: absolute;
    right: -20px;
    top: 20px;
}

/* =============================================
    #
============================================= */

.section-title {
    height: 400px;
    padding: 80px 0 0;
    position: relative;
}

.section-title .bg-layer {
    background-size: 640px;
    background-repeat: no-repeat;
}

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

/* =============================================
    #
============================================= */

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

.title-group_01 p {
    font-size: var(--fontA);
    font-weight: 700;
}

.title-group_01 h2 {
    font-size: var(--fontD);
}

/* =============================================
    #
============================================= */

#giveup {
    background: var(--gray);
}

#giveup .section-title .bg-layer {
    background-position: center left;
}

.giveup-list {
    margin: 80px 0;
    padding: var(--pdgB);
}

.giveup-list li {
    font-weight: 700;
    padding: 10px 10px 10px 60px;
    position: relative;
}

.giveup-list li::before {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    background: #aaa;
    position: absolute;
    top: calc(50% - 20px);
    left: 0;
    border-radius: 5px;
}

.giveup-list li::after {
    content: "";
    display: block;
    width: 18px;
    height: 9px;
    border-top: 5px solid #fff;
    border-right: 5px solid #fff;
    position: absolute;
    top: calc(50% - 9px);
    left: 9px;
    transform: rotate(135deg);
}

.giveup-list li strong {
    border-bottom: 6px double;
}

.giveup-image_01 {
    position: absolute;
    right: 0;
    bottom: 0;
}

/* =============================================
    #
============================================= */

#support {

}

.hide {
    display: none;
}

.tab {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 5px solid var(--blue);
    margin: 60px 20px 40px;
}

.tab li {
    flex: 1;
    color: var(--white);
    font-size: var(--fontB);
    text-align: center;
    line-height: 1.4;
    background: var(--blue);
    padding: .75em 0;
    cursor: pointer;
    border-radius: 10px 10px 0 0;
    opacity: .5;
    position: relative;
}

.tab li.active {
    opacity: 1;
}

.tab li.active::before {
    content: "";
    border: 20px solid transparent;
    border-top: 20px solid var(--blue);
    position: absolute;
    top: 100%;
    left: calc(50% - 20px);
}

.support-list {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: var(--pdgC);
}

.support-list li {
    flex: 1;
    font-size: var(--fontB);
    text-align: center;
}

.support-list li img {
    display: block;
    border-bottom: 2px solid;
    margin: 0 0 20px;
}

/* =============================================
    #
============================================= */

#rely {
    padding: 0 0 80px;
}

#rely .section-title .bg-layer {
    background-position: center right;
}

.rely-staff li {
    height: 140px;
    line-height: 140px;
    margin: var(--mgtB);
}

.rely-staff li:nth-child(1) {
    background: url(images/rely-staff-li_01.webp) no-repeat right center / 100%;
}
.rely-staff li:nth-child(2) {
    background: url(images/rely-staff-li_02.webp) no-repeat left center / 100%;
}
.rely-staff li:nth-child(3) {
    background: url(images/rely-staff-li_03.webp) no-repeat right center / 100%;
}

.rely-staff li p {
    width: 640px;
    text-align: center;
}

.rely-staff li:nth-child(odd) p {
    margin: 0 0 0 100px;
}

.rely-because span {
    display: inline-block;
    font-size: 28px;
    color: var(--white);
    background: var(--graB);
    padding: .2em 1em;
    border-radius: 5px 5px 0 0;
}

.rely-because p {
    color: var(--blue);
    font-weight: 700;
    text-align: center;
    background: var(--thin);
    padding: .5em 0;
}

.rely-find {
    text-align: center;
    margin: var(--mgtA);
    padding: var(--pdgA);
}

.rely-find h3,
.rely-find h4 {
    font-size: var(--fontA);
    position: relative;
}

.rely-find h3::before {
    content: "";
    display: block;
    width: 100%;
    height: 4px;
    background: var(--base);
    position: absolute;
    top: calc(50% - 2px);
    z-index: 1;
}

.rely-find h3 span {
    display: inline-block;
    background: var(--white);
    padding: var(--pdgA);
    position: relative;
    z-index: 2;
}

.rely-find p {
    color: var(--blue);
    font-size: var(--fontA);
    font-weight: 800;
    line-height: 1.2;
}

.rely-find p strong {
    display: inline-block;
    font-size: 100px;
    letter-spacing: -2px;
    margin: 0 5px;
    animation: poyopoyo 1s infinite ease-in-out;
}

@keyframes poyopoyo {
  0%  {transform: scale(1.0, 1.0) translate(0, 0);}
  15% {transform: scale(0.98, 0.9) translate(0, 5px);}
  30% {transform: scale(1.02, 1.0) translate(0, 8px);}
  50% {transform: scale(0.98, 1.05) translate(0, -8px);}
  70% {transform: scale(1.0, 0.9) translate(0, 5px);}
  100% {transform: scale(1.0, 1.0) translate(0, 0);}
}

.rely-line {
    margin: var(--mgtA);
}

.slide-wrap {
    margin: var(--mgtA);
}

.slide-img {
    display: flex;
    overflow: hidden;
}

.slide-img ul {
    display: flex;
}

.slide-img ul li {
    width: 1600px;
}
.slide-img ul li img {
    width: 100%;
}

.slide-left {
  animation: anime-left 16s infinite linear both;
}
@keyframes anime-left {
    from {transform: translateX(0);}
    to   {transform: translateX(-100%);}
}

.slide-right{
  animation: anime-right 16s infinite linear both;
}
@keyframes anime-right {
    from {transform: translateX(-100%);}
    to   {transform: translateX(0%);}
}

/* =============================================
    #
============================================= */

#compare {
}

#compare .section-title .bg-layer {
    background-position: center right;
}

.compare-table {
    margin: var(--mgtC);
    padding: var(--pdgA);
}

/* =============================================
    #
============================================= */

#member {
    padding: 0 0 80px;
}

#member .section-title .bg-layer {
    background-position: center left;
}

.member-list {
    margin: var(--mgtC);
}

.member-list ul {
    margin: var(--mgtA);
    overflow: hidden;
}

.member-list ul li.member-list-photo {
    width: 250px;
    height: 250px;
    float: left;
}

.member-list ul li.member-list-comment {
    width: 490px;
    padding: 0 0 0 40px;
    float: right;
}

.member-list ul.reverse li.member-list-photo {
    float: right;
}

.member-list ul.reverse li.member-list-comment {
    padding: 0 40px 0 0;
    float: left;
}

.member-list ul li {
    font-size: var(--fontB);
}

.member-list ul li h3 {
    color: var(--blue);
    margin: 0 0 10px;
}

.member-list ul li h3 span {
    font-size: 20px;
}

.member-movie {
    background: var(--thin);
    margin: var(--mgtC);
    padding: 60px 40px;
    position: relative;
    border-radius: 20px;
}

.member-movie h4 {
    font-size: var(--fontC);
    line-height: 1;
}

.member-movie h5 {
    color: var(--blue);
    margin: var(--mgtB);
    line-height: 1.6;
}

.member-movie h5 span {
    font-size: 20px;
}

.member-movie h6 {
    margin: var(--mgtB);
}

.member-movie video {
    margin: var(--mgtB);
}

.member-photo_04 {
    position: absolute;
    top: -60px;
    right: 40px;
}

/* =============================================
    #
============================================= */

#voice {
    background: var(--gray);
    padding: 80px 0 40px;
}

#voice .section-title {
    background: url(images/voice-bg.webp) no-repeat left center;
}

#voice .section-title h2 img {
    height: 48px;
    position: relative;
    top: -8px;
}

#voice .label-03 span strong {
    color: var(--orange);
}

.swiper {
    margin: var(--mgtC);
}

.swiper-wrapper {
    padding: 0 0 120px;
}

.swiper .swiper-slide {
    padding: var(--pdgB);
}

.swiper-pagination {
    bottom: 0;
}

.swiper-pagination-bullet {
    width: 25px;
    height: 25px;
    background: var(--base);
    margin: 0 20px!important;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--blue);
}

.swiper-button-next,
.swiper-button-prev {
    width: 80px;
    height: 80px;
    background: var(--blue);
    color: var(--white);
    border-radius: 50%;
    top: 40%;
}

.swiper-button-next {
    right: -20px;
}
.swiper-button-prev {
    left: -20px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: var(--fontB);
}

.voice-inner {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 10px 10px 20px rgba(0,0,0,.2);
}

.voice-content {
    padding: 40px;
}

.voice-content span {
    color: var(--blue);
    font-size: var(--fontB);
}

.voice-content h3 {
    font-size: var(--fontA);
}

.voice-content p {
    font-size: var(--fontB);
    margin: var(--mgtB);
}

/* =============================================
    #
============================================= */

#ceo {
    text-align: center;
}

.ceo-title {
    position: relative;
    overflow: hidden;
}

.ceo-title::before {
    content: "";
    display: block;
    width: 400px;
    height: 400px;
    background: var(--thin);
    position: absolute;
    top: 0;
    left: calc(50% - 200px);
    border-radius: 50%;
}

.ceo-title h3 {
    font-size: var(--fontB);
    border-bottom: 4px solid;
    padding: 80px 0 40px;
    position: relative;
    z-index: 2;
}

.ceo-title .ceo-logo {
    display: block;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.ceo-title .ceo-logo {
    display: block;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.ceo-title-kuzukawa {
    position: absolute;
    bottom: 0;
    left: 30px;
}

.ceo-title-iwashi {
    position: absolute;
    bottom: 0;
    right: 30px;
}

.ceo-message {
    margin: var(--mgtC);
}

.ceo-message p {
    margin: var(--mgtA);
}

/* =============================================
    #
============================================= */

#flow {
    background: var(--gray);
    padding: 80px 0 0;
}

#flow .section-title {
    background: url(images/flow-bg.webp) no-repeat right center;
}

.flow-list {
    margin: var(--mgtC);
    padding: var(--pdgA);
}

.flow-list li {
    background: var(--white);
    margin: var(--mgtA);
    padding: 20px 20px 20px 120px;
    box-shadow: 10px 10px 20px rgba(0,0,0,.1);
    border-radius: 20px;
    position: relative;
}

.flow-list li::after {
    display: block;
    width: 70px;
    height: 70px;
    color: var(--white);
    text-align: center;
    line-height: 70px;
    position: absolute;
    top: calc(50% - 35px);
    left: 20px;
    background: var(--blue);
    border-radius: 50%;
}

.flow-list li:nth-child(1)::after {
    content: "1";
}
.flow-list li:nth-child(2)::after {
    content: "2";
}
.flow-list li:nth-child(3)::after {
    content: "3";
}
.flow-list li:nth-child(4)::after {
    content: "4";
}
.flow-list li:nth-child(5)::after {
    content: "5";
}
.flow-list li:nth-child(6)::after {
    content: "6";
}
.flow-list li:nth-child(7)::after {
    content: "7";
}
.flow-list li:nth-child(8)::after {
    content: "8";
}

.flow-list li::before {
    content: "↓";
    color: var(--blue);
    font-size: var(--fontC);
    font-weight: 800;
    position: absolute;
    top: 60px;
    left: 30px;
}

.flow-list li:nth-child(8)::before {
    display: none;
}

.flow-attention {
    border: 4px solid;
    margin: 80px 30px;
    padding: 60px 30px;
    border-radius: 20px;
}

.flow-attention h3 {
    text-align: center;
    margin: -90px 0 0;
}

.flow-attention h3 span {
    background: var(--gray);
    padding: var(--pdgA);
}

.flow-attention dl {
    font-size: var(--fontB);
    margin: var(--mgtA);
    padding: var(--pdgA);
}

.flow-attention dl dt {
    color: var(--blue);
    margin: 0 0 10px;
    padding: 0 0 0 50px;
}

.flow-attention dl.flow-attention-service dt {
    background: url(images/flow-attention-service.svg) no-repeat left center;
    background-size: 40px;
}

.flow-attention dl.flow-attention-ng dt {
    background: url(images/flow-attention-ng.svg) no-repeat left center;
    background-size: 40px;
}

.flow-attention dl dd {
    padding: 5px 0 5px 40px;
    position: relative;
}

.flow-attention dl dd::before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background: var(--base);
    position: absolute;
    top: calc(50% - 15px);
    left: 0;
    border-radius: 5px;
}

.flow-attention dl dd::after {
    content: "";
    display: block;
    width: 12px;
    height: 6px;
    border-top: 4px solid #fff;
    border-right: 4px solid #fff;
    position: absolute;
    top: calc(50% - 7px);
    left: 7px;
    transform: rotate(135deg);
}

.flow-bottom {
    margin: var(--mgtC);
    padding-bottom: 80px;
    position: relative;
}

.flow-bottom p {
    padding: var(--pdgA);
}

.flow-bottom p strong {
    color: var(--blue);
}

.flow-bottom-image_01 {
    position: absolute;
    right: 0;
    bottom: 0;
}

/* =============================================
    #
============================================= */

#faq .title-group_01 p {
    color: var(--blue);
}

dl.accordion {
    font-size: var(--fontB);
}

dl.accordion dt {
    border-bottom: 4px solid;
    padding: 28px 10px 28px 70px;
    position: relative;
    cursor: pointer;
}

dl.accordion dt.open::after {
    transform: rotate(225deg);
}

dl.accordion dd {
    display: none;
    margin: 0 auto;
    padding: 28px 10px 28px 70px;
    position: relative;
}

dl.accordion dt::before,
dl.accordion dd::before {
    display: block;
    width: 50px;
    height: 50px;
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    line-height: 50px;
    position: absolute;
    left: 0;
    border-radius: 50%;
}

dl.accordion dt::before {
    content: "Q";
    background: var(--base);
    top: calc(50% - 25px);
}

dl.accordion dd::before {
    content: "A";
    background: var(--blue);
    top: 28px;
}

dl.accordion dt::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    border-right: 4px solid var(--blue);
    border-bottom: 4px solid var(--blue);
    position: absolute;
    top: 45%;
    right: 10px;
    transform: translateY(-50%) rotate(45deg);
    transition: .3s;
}

/* =============================================
    #
============================================= */

#footer {
    font-size: 20px;
    text-align: center;
    padding: 80px 0 240px;
}

#footer p {
    color: #aaa;
    font-size: 16px;
    margin: var(--mgtB);
}

/* =============================================
    #
============================================= */

.floating-cta {
    display: none;
}

@media (width < 810px) {

.floating-cta {
    display: block;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    padding-bottom: calc(15px + env(safe-area-inset-bottom));
}

.floating-cta.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cta-button {
    display: block;
    width: 100%;
    max-width: 600px;
    color: var(--white);
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border: 5px solid var(--white);
    background: linear-gradient(to bottom, #0a0, #080);
    margin: 0 auto;
    padding: 30px 0;
    position: relative;
    border-radius: 5em;
    animation: anime 1s ease 0s infinite alternate;
    transform-origin:center;
}

@keyframes anime {
    0% {transform: scale(1,1);}
    100% {transform: scale(1.05,1.05);}
}

.cta-button:hover {
    text-decoration: none;
}

.cta-button::after {
    display: block;
    content: "";
    width: 12px;
    height: 12px;
    margin-top: -5px;
    border-top: 4px solid #fff;
    border-right: 4px solid #fff;
    position: absolute;
    top: 45%;
    right: 40px;
    transform: rotate(45deg);
}

}

/* =============================================
    #
============================================= */

.cta-form {
    background: var(--white);
    margin: var(--mgtA);
    border-radius: 20px;
    box-shadow: 10px 10px 20px rgba(0,85,240,.2);
}

.cta-form-label {
    position: relative;
    top: -25px;
    left: -10px;
}

.cta-form-label span {
    display: inline-block;
    height: 52px;
    font-size: var(--fontB);
    line-height: 52px;
    color: var(--white);
    margin: 0 40px 0 0;
    padding: 0 20px 0 60px;
    position: relative;
}

.form-label_01 {
    background: var(--orange) url(images/form-label_01.svg) no-repeat 20px center / auto 50%;
}
.form-label_02 {
    background: var(--orange) url(images/form-label_02.svg) no-repeat 20px center / auto 50%;
}

.cta-form-label span:before,
.cta-form-label span:after {
    content: "";
    position: absolute;
    left: calc(100% - 18px);
    border: 18px solid transparent;
}

.cta-form-label span:before {
    top: calc(0% - 18px);
    border-bottom: 18px solid #f70;
    transform: rotate(-45deg);
}

.cta-form-label span:after {
    top: calc(100% - 18px);
    border-top: 18px solid #f70;
    transform: rotate(45deg);
}

.step-form {
}

/* ======================================
    #
====================================== */

.slider-wrapper {
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-item {
    flex: 0 0 100%;
    width: 100%;
    position: relative;
}

.slider-inner {
    padding: 0 40px 80px;
}

.form-title {
  display: block;
  position: relative;
  height: 80px;
  line-height: 80px;
  font-weight: 800;
  text-align: center;
  background: var(--thin);/*背景色*/
  color: var(--blue);/*文字色*/
  margin: 1em 0;
}

.form-title:before, .form-title:after {
  position: absolute;
  content: '';
  width: 0px;
  height: 0px;
  z-index: 1;
}

.form-title:before {
  /*左端の山形*/
  top: 0;
  left: 0;
  border-width: 40px 0px 40px 20px;
  border-color: transparent transparent transparent #fff;
  border-style: solid;
}

.form-title:after {
  /*右端の山形*/
  top: 0;
  right: 0;
  border-width: 40px 20px 40px 0px;
  border-color: transparent #fff transparent transparent;
  border-style: solid;
}

.step-label {
    text-align: center;
    margin: 1em 0 .5em;
}

.step-back {
    position: absolute;
    bottom: 10px;
    left: 10px;
}

.step-back span {
    display: inline-block;
    font-size: 75%;
    color: var(--half);
    background: var(--gray);
    padding: .25em 1em;
    border-radius: 15px;
    cursor: pointer;
}

.select {
    display: flex;
    flex-flow: wrap;
}

.select li {
    width: 50%;
    margin: 10px 0;
}

label {
    position: relative;
}

input[type="radio"] {
    position: absolute;
}

label span {
    display: block;
    width: 90%;
    color: #fff;
    font-weight: 500;
    text-align: center;
    border: 4px solid #fff;
    background: linear-gradient(to bottom, #05e, #04c);
    margin: 0 auto;
    padding: .5em 0;
    cursor: pointer;
    border-radius: 10vw;
    text-shadow: 2px 2px 2px rgba(0,0,0,.2);
    box-shadow: 3px 3px 6px rgba(0,0,0,.2);
}

label span:hover {
    background: linear-gradient(to bottom, #06f, #04c);
}

.input-wrap input,
select {
    width: 100%;
    font-family: 'Roboto', 'Noto Sans JP', Meiryo, sans-serif;
    font-size: 36px;
    font-weight: 500;
    border: 2px solid #ddd;
    background: #fff;
    padding: .5em;
    outline: none;
    border-radius: 5px;
}

form select {
    background: url("images/form-select.svg") no-repeat right center #fff;
    background-size: 50px 35px;
    cursor: pointer;
}

.input-wrap table {
    width: 100%;
    margin: 1em 0 .5em;
}

.input-wrap table th,
.input-wrap table td {
    padding: 10px 0;
}

.input-wrap table th {
    width: 33%;
    font-size: var(--fontB);
}

.agree {
    font-size: 23px;
    margin: .5em 0;
}

.agree a {
    text-decoration: underline;
}

form input[type="submit"] {
    display: block;
    width: 75%;
    color: #fff;
    font-size: 40px;
    font-weight: 500;
    text-align: center;
    border: 4px solid #fff;
    background: linear-gradient(to bottom, #4c5, #192);
    margin: 1em auto;
    padding: .8em 0;
    cursor: pointer;
    border-radius: 10vw;
    text-shadow: 2px 2px 2px rgba(0,0,0,.2);
    box-shadow: 3px 3px 6px rgba(0,0,0,.2);
}

form input[type="submit"]:hover {
    background: linear-gradient(to bottom, #4c5, #2a3);
}

::-webkit-input-placeholder {
    color: #ddd;
}

/* =============================================
    #
============================================= */

main#sub {
    margin: 0 auto;
}

main#sub #footer {
    padding: 80px 0;
}

/* =============================================
    #
============================================= */

.thanks {
    padding: var(--pdgA);
}

.thanks p {
    margin: 1em 0;
}

/* complete */

.complete {
    text-align: center;
    margin: var(--mgtA);
}

.complete img {
    display: block;
    width: 320px;
    margin: 0 auto 40px;
}

.complete h2 {
    color: var(--blue);
    font-size: var(--fontA);
}

.complete .phone {
    width: 80%;
    background: var(--thin);
    margin: 0 auto;
    padding: 20px 0;
    border-radius: 20px;
}

.complete .phone span {
    color: var(--blue);
    font-size: var(--fontA);
    background: url(images/thanks-phone_01.svg) no-repeat left center;
    background-size: auto 100%;
    padding: 0 0 0 60px;
}

/* download */

.download {
    border-top: 3px dashed;
    border-bottom: 3px dashed;
    text-align: center;
    margin: var(--mgtC);
    padding: 40px 0;
}

.download h2 {
    color: var(--blue);
    font-size: var(--fontA);
}

.download a {
    display: block;
    width: 90%;
    color: #fff;
    font-size: var(--fontB);
    font-weight: 500;
    text-align: center;
    border: 4px solid #fff;
    background: linear-gradient(to bottom, #05e, #04c);
    margin: .5em auto 0;
    padding: 1em 0;
    cursor: pointer;
    border-radius: 10vw;
    text-shadow: 2px 2px 2px rgba(0,0,0,.2);
    box-shadow: 3px 3px 6px rgba(0,0,0,.2);
}

.download a:hover {
    text-decoration: none;
    background: linear-gradient(to bottom, #06f, #04c);
}

/* line */

.line {
    text-align: center;
    margin: var(--mgtC);
}

.line a {
    display: block;
    width: 90%;
    margin: 0 auto 1em;
    position: relative;
    animation: anime2 1s ease 0s infinite alternate;
    transform-origin: center;
}

@keyframes anime2 {
    0% {transform: scale(1,1);}
    100% {transform: scale(1.05,1.05);}
}

/* Close */

.close {
    text-align: center;
    margin: var(--mgtC);
}

.close a {
    display: inline-block;
    color: var(--base);
    text-decoration: underline;
    background: var(--gray);
    padding: .5em 2em;
}

/* =============================================
    #
============================================= */

html.remodal-is-locked {
    overflow: hidden;
    -ms-touch-action: none;
    touch-action: none;
}

.remodal-overlay {
    position: fixed;
    z-index: 9999;
    top: -5000px;
    right: -5000px;
    bottom: -5000px;
    left: -5000px;
    display: none;
    background: rgba(0, 0, 0, 0.5);
}

.remodal-wrapper {
    position: fixed;
    z-index: 10000;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    overflow: auto;
    text-align: center;
    -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
    display: inline-block;
    height: 100%;
    margin-left: -0.05em;
    content: "";
    vertical-align: middle;
}

.remodal {
    position: relative;
    outline: none;
    display: inline-block;
    width: calc(100% - 80px);
    max-width: 780px;
    padding: 60px 40px;
    margin: 40px;
    vertical-align: middle;
    background: #fff;
    color: #333;
    box-sizing: border-box;
    border-radius: 20px;
}

.remodal-is-opened .remodal-overlay,
.remodal-is-opened .remodal-wrapper {
    display: block;
}

#sub-content {
    text-align: left;
}

/* =============================================
    #
============================================= */

.privacy h2 {
    font-size: var(--fontC);
}

.privacy h3 {
    font-size: var(--fontB);
}

.privacy h4,
.privacy h5,
.privacy h6,
.privacy p,
.privacy ul,
.privacy dl {
    margin: 1em 0;
}

.privacy h5,
.privacy h6 {
    font-size: var(--fontB);
}

.privacy p,
.privacy ul,
.privacy dl {
    font-size: 24px;
}

.privacy dl dt::before {
    content: "・";
    margin: 0 .25em 0 0;
}

.privacy dl dd {
    margin: 0 0 0 1em;
}

.privacy ul {
    list-style: disc;
    margin: 0 0 0 1em;
}

.privacy p.txt-right {
    text-align: right;
    margin: 2em 0;
}

/* =============================================
    #
============================================= */

.terms h2 {
    font-size: var(--fontA);
}

.terms h3,
.terms h4,
.terms p,
.terms ul {
    margin: 1em 0;
}

.terms p,
.terms ul,
.terms dl {
    font-size: 24px;
}

.terms ul {
    list-style: disc;
    margin: 0 0 0 1em;
}

.terms ul.decimal {
    list-style: decimal;
    margin: 0 0 0 1.5em;
}

/* =============================================
    #
============================================= */

.remodal-confirm {
    display: block;
    font-family: 'Roboto', 'Noto Sans JP', Meiryo, sans-serif;
    font-size: var(--fontB);
    font-weight: 400;
    font-feature-settings: "palt";
    letter-spacing: 0.06em;
    color: #fff;
    border: none;
    outline: none;
    background: #888;
    margin: 2em auto 0;
    padding: 1em 2.5em;
    cursor: pointer;
    border-radius: 5px;
    transition: .3s;
}
