@charset "UTF-8";

/* =====================================================================
Common
 =====================================================================*/
:root {
    --black: 51, 51, 51;
    --ltblue: 97, 166, 209;
    --border: rgba(var(--black), .6);
    --contents_width: 1226px;
    --contents_width_with_padding: 1286px;
    --default-font: 'M PLUS Rounded 1c', sans-serif;
    --custom-font: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo", "メイリオ", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

html {
    font-size: 62.5%;
    word-break: break-all;
}

body {
    -webkit-text-size-adjust: 100%;
}

article,
aside,
details,
figcaption,
figure,
main,
footer,
header,
menu,
nav,
section {
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    word-break: break-word;
    line-break: strict;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

ul:not([class]),
ol:not([class]) {
    padding-left: 1.25em;
}

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

span {
    font-weight: inherit;
}

blockquote,
q {
    quotes: none;
}

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

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

a:hover {
    text-decoration: none;
    opacity: 0.7;
}

a[class] {
    text-decoration: none;
}

ins {
    background-color: #ff9;
    text-decoration: none;
}

mark {
    background-color: #ff9;
    font-weight: bold;
}

del {
    text-decoration: line-through;
}

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

address {
    font-style: normal;
}

table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    border-spacing: 0;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid rgb(var(--border));
    margin: 1em 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

iframe {
    max-width: 100%;
}

/* form */
input[type=text],
input[type=email],
input[type=tel],
textarea,
button,
select,
option {
    display: block;
    width: 100%;
    max-width: 100%;
    font-family: var(--custom-font);
    outline: none;
    border: 1px solid;
    border-radius: 0;
    background: none;
}

@media all and (max-width: 767px) {

    input[type=text],
    input[type=email],
    input[type=tel],
    textarea,
    button,
    select,
    option {
        font-size: 1.6rem;
    }
}

input[type=text],
input[type=email],
input[type=tel],
textarea,
button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}

input[type=radio],
input[type=checkbox] {
    margin: 0;
    padding: 0;
    vertical-align: middle;
}

textarea {
    resize: vertical;
}

button {
    cursor: pointer;
}

/* ------------ */

/* ―――――追従バナー―――――― */
.following {
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: #0C2156;
    width: 100%;
    z-index: 100;
}

.following img {
    width: 100%;
}

.following-wrap {
    max-width: 620px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
    padding: 10px;
    box-sizing: border-box;
}

.following-btn {
    width: 15%;
}

.following-contents {
    flex-grow: 1;
    text-align: center;
    color: #FFF;
}

.following-contents .tel {
    font-size: 30px;
    font-weight: 900;
    color: #FFF;
    text-decoration: none;
}

.following-contents .info {
    display: flex;
    justify-content: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
    font-size: 16px;
    white-space: nowrap;
}

.following a {
    color: #FFF;
    text-decoration: none;
}

@media screen and (max-width: 600px) {
    .following-wrap {
        padding: 2.5%;
    }

    .following-contents .tel {
        font-size: 4.6vw;
    }

    .following-contents .info {
        font-size: clamp(1.8vw, 50px, 2.5vw);
    }
}


/*# sourceMappingURL=following.css.map */

.floating-popup {
    font-size: 16px;
}

.floating-btn {
    width: 2.5em;
    height: 2.5em;
    padding: 0.5em;
    background-color: #f6d100;
    color: #FFF;
    cursor: pointer;
    border-radius: 10px;
    position: fixed;
    bottom: 1em;
    right: 1em;
}

.floating-btn.dishabled {
    pointer-events: none;
    background-color: #999;
}

.floating-btn img {
    width: 100%;
}

.floating-content {
    max-width: 620px;
    position: fixed;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    padding: 2.5%;
    background-color: #fff;
    box-sizing: border-box;
    /*z-index: -1;*/
}

.floating-content .close {
    cursor: pointer;
    width: 3em;
    height: 3em;
    position: absolute;
    top: -1em;
    right: -1em;
}

.floating-content .close::before,
.floating-content .close::after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    z-index: 5;
    position: absolute;
    inset: 0;
}

.floating-content .close::before {
    background-color: #000;
    border-radius: 50%;
}

.floating-content .close::after {
    background-color: #fff;
    clip-path: polygon(20% 0%, 0% 20%, 30% 50%, 0% 80%, 20% 100%, 50% 70%, 80% 100%, 100% 80%, 70% 50%, 100% 20%, 80% 0%, 50% 30%);
    z-index: 10;
    scale: 0.4;
}

.floating-content img {
    width: 100%;
}

.floating-content.open {
    animation-name: fadeIn;
    animation-duration: 1s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}

@media screen and (max-width: 600px) {
    .floating-content {
        width: 80%;
    }
}

.floating-layer {
    position: fixed;
    width: 100%;
    height: 100%;
    inset: 0;
    margin: auto;
    background-color: rgba(0, 0, 0, 0.35);
    transition: 0.25s;
    z-index: 0;
}

.floating-btn+.floating-content {
    pointer-events: none;
}

.floating-btn.dishabled+.floating-content {
    pointer-events: auto;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        z-index: -9999;
    }

    50% {
        opacity: 0;
        z-index: 100;
    }

    100% {
        opacity: 1;
        z-index: 100;
    }
}

/* ――――――― */
/* お電話一本で */
p {
    margin: 0;
}

.contactBnr__area {
    width: calc(100% - 20px);
    height: auto;
    margin: 0 auto;
    background: linear-gradient(to right, #02c755 1%, #02c755 100%);
    border-radius: 0 20px 0 20px;
    padding: 20px 10px 10px;
}

.contactBnr__header .head {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin: 0;
}

.contactBnr__header .head_surround {
    color: #eaa706;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin: 10px 0 0;
}

.contactBnr__header .head_surround .square {
    background: #fff;
    border-radius: 3px;
    padding: 5px;
}

.contactBnr__header .subhead {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin: 10px 0 0;
}

.contactBnr__inner {
    background-color: #fff;
    border-radius: 0 20px 0 20px;
    margin-top: 20px;
    padding: 10px;
}

.contactBnr__inner .btn {
    border-radius: 10px;
    padding: 3px 0;
    margin: 5px auto 0;
    display: block;
    background: #ccc;
    color: #fff;
    text-align: center;
    text-decoration: none;
}

.btn._bigBtn {
    padding: 10px 0;
}

.btn._red {
    background: #C7243A;
}

.btn._green {
    background: #009250;
}

.btn._blue {
    background: #007AB7;
}

.btn .txt {
    display: block;
    font-size: 14px;
    font-weight: bold;
}

._clYellow {
    color: #F3C759;
    font-size: 12px;
}

.txt.icon {
    padding-left: 25px;
    position: relative;
    display: inline-block;
}

.txt.icon:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 20px;
    height: 20px;
    image-rendering: -webkit-optimize-contrast;
}

.txt.icon.icon-tel:before {
    background: url('https://file.mysquadbeyond.com/uploads/article_photo/photo/2550280/bcbd9f69-4740-4f1d-be29-2593da9dbe89.png');
}

.txt.icon.icon-line:before {
    background: url('https://file.mysquadbeyond.com/uploads/article_photo/photo/2550278/83e27552-ccdd-4e18-8785-744747f2ba42.png');
}

.txt.icon.icon-mail:before {
    background: url('https://file.mysquadbeyond.com/uploads/article_photo/photo/2550279/1a3739ad-837d-4c8d-b2e3-3df1f272c518.png');
}

.contactBnr__msgBox {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.msgHead {
    font-size: 16px;
    font-weight: bold;
}

.msgTxt {
    font-size: 14px;
    font-weight: bold;
}

.msgRight {
    width: 100%;
    max-width: 50px;
    height: auto;
}

.msgRight img {
    width: 100%;
    height: auto;
}


/* ――――――― */
/* 安心明朗会計 */
.cta-box {
    background-color: #06c755;
    font-size: 16px;
}

.cta-box img {
    width: 100%;
}

.cta-box-wrap {
    max-width: 1050px;
    margin: 0 auto;
    padding: 2em 2em;
    text-align: center;
}

.cta-box-wrap>*+* {
    margin-block-start: 2em;
}

.cta-box-title {
    text-align: center;
    font-size: 1.3em;
    color: #fff;
    font-weight: 600;
}

.cta-box-title .tag {
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.25);
    padding: 0.25em 0.5em;
    border-radius: 0.5em;
}

.cta-box-title .tag+.tag {
    margin-left: 0.5em;
}

.cta-box-images .title {
    background-color: #ffff00;
    color: #05ae4a;
    padding: 0.75em 0;
    text-align: center;
    font-size: 1.2em;
    font-weight: 600;
    border-radius: 0.75em 0.75em 0 0;
}

.cta-box-images .image-wrap {
    background-color: #fff;
    display: grid;
    grid-template-columns: repeat(3, auto);
    padding: 1.5em;
    gap: 1em;
    box-sizing: border-box;
    border-radius: 0 0 0.75em 0.75em;
}

.cta-box-images .image-item {
    box-sizing: border-box;
    display: block;
    text-decoration: none;
    text-align: left;
}

.cta-box-images .image-item .text {
    font-size: 0.9em;
    color: #333;
    padding: 0.5em 0;
}

.cta-box-btn .btn {
    background-color: #ff4444;
    color: #fff;
    text-decoration: none;
    display: block;
    border-radius: 0.75em;
    padding: 1em 0;
    position: relative;
    font-size: 1.1em;
    font-weight: 600;
    position: relative;
    transition: 0.25s;
}

.cta-box-btn .btn::before,
.cta-box-btn .btn::after {
    content: "";
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    top: 50%;
    right: 1em;
    translate: 0 -50%;
}

.cta-box-btn .btn::after {
    background-color: transparent;
    border-radius: 0;
    border-right: solid 5px #006529;
    border-bottom: solid 5px #006529;
    scale: 0.35;
    rotate: -45deg;
}

.cta-box-btn .btn:hover {
    opacity: 0.75;
}

@media (max-width: 500px) {
    .cta-box {
        font-size: 3vw;
    }
}

/* ―――――――― */
/* ――――比較表――――― */
/*全体テーブル設定*/
#hikaku table {
    /*幅*/
    width: 600px;
    border-collapse: collapse;
    margin: 0 auto;
    padding: 0;
    table-layout: fixed;
}

/*1行目ヘッダー部分*/
#hikaku table th {
    /*セル内側余白*/
    padding: 1em;
    /*右側の線。太さ｜種類｜色*/
    border-right: 2px solid #fff;
    /*文字サイズ*/
    font-size: 0.85em;
}

#hikaku table thead th {
    /*背景色*/
    background-color: #0C2156;
    /*文字色*/
    color: #fff;
}

/*1行目ヘッダーの強調したいセル*/
#hikaku table thead th.red {
    /*文字色*/
    color: white;
    /*背景色*/
    background: #e81010;
    /*線。太さ｜種類｜色*/
    border: 4px solid red !important;
}

/*左端のテーブルヘッダー*/
#hikaku table tbody th {
    /*右側の線。太さ｜種類｜色*/
    border-right: 2px solid #eee;
    /*背景色*/
    background-color: #fff;
    /*文字サイズ*/
    font-size: 0.85em;
}

/*2行目以降の比較結果セル*/
#hikaku table tr {
    /*背景色*/
    background-color: #fff;
    /*外側の線。太さ｜種類｜色*/
    border: 2px solid #eee;
}

/*比較結果のセル部分*/
#hikaku table td {
    /*セル内側余白。上下｜左右*/
    padding: 1em 0.2em;
    /*右側の線。太さ｜種類｜色*/
    border-right: 2px solid #eee;
    /*文字の水平方向の配置。左寄せはleft、真ん中はcenter*/
    text-align: center;
}

/*各比較結果セルの単位文字*/
#hikaku td span {
    /*文字サイズ*/
    font-size: .6em;
}

/*2行目以降の強調したいセル*/
#hikaku .red {
    /*文字色*/
    color: red;
    /*文字の太さ。太字はbold、標準の太さはnormal*/
    font-weight: bold;
    /*文字サイズ*/
    font-size: 1em;
    /*線。太さ｜種類｜色*/
    border: 4px solid red !important;
}

/*スマホの場合*/
@media screen and (max-width: 600px) {


    /*横にスクロール*/
    .wrap {
        overflow-x: scroll;
    }
}

/* ―――――――― */
/* ――――よくある質問―――― */

@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@500&display=swap');

.faq {
    width: 750px;
    margin: auto;
    font-size: 16px;
    color: #343434;
    box-sizing: border-box;
    margin-bottom: 15px;
}

.faq-bg {
    background-color: #009287;
    padding: 1em;
}

.faq>*+* {
    margin-block-start: 1em;
}

.faq-item {
    background-color: #FFFFFF;
}

.faq-item[open] .faq-question::after {
    rotate: 180deg;
}

.faq-item[open] .faq-answer {
    /*animation: fadeIn .5s ease-in-out .25s forwards;*/
    opacity: 1;
    transform: translateY(0px);
}

.faq-question {
    cursor: pointer;
    position: relative;
    padding: 1em 2.5em 1em 1em;
    font-weight: 800;
    transition: 0.5s;
}

.faq-question::after {
    content: "";
    position: absolute;
    top: calc(50% - 0.625em);
    right: 1.5em;
    transition: 0.5s;
    width: .75em;
    height: .75em;
    border-bottom: 4px solid #4f5ed2;
    border-right: 4px solid #4f5ed2;
    transform: rotate(45deg);
}

.faq-answer {
    font-weight: 400;
    padding: 1em 1em;
    background-color: #fff;
    margin: .5em 0;
    opacity: 0;
    transform: translateY(-10px);
    animation-delay: .5s;
    transition-property: transform;
}

summary {
    display: block;
    list-style: none;
    border-radius: 5px;
    line-height: 1;
}

.faq-answer::before,
summary::before {
    content: "";
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 500;
    font-size: 1.4em;
}

.faq-answer::before {
    content: "A";
    color: #f1487c;
}

summary::before {
    content: "Q";
    color: #4f5ed2;
}

summary::-webkit-details-marker {
    display: none;
}

@media screen and (max-width: 550px) {
    .faq {
        font-size: 3.6vw;
        width: 100%;
    }

    .faq-question::after {
        right: 1em;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

/* ----- */
.lp-wrapper {
    width: 750px;
    margin: auto;
    padding: 0 15px;
}

h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    padding: 16px 0;
    position: relative;
}

h2 span {
    font-size: 16px;
    display: block;
}

h2::before {
    position: absolute;
    bottom: -1px;
    left: calc(50% - 40px);
    width: 77px;
    height: 5px;
    content: '';
    border-radius: 3px;
    background: #fa4141;
}

#FV {
    margin: auto;
}

.banner {
    margin-bottom: 15px;
}

.l-header {
    position: unset;
}

@media all and (max-width:750px) {
    .lp-wrapper {
        width: 100%;
        box-sizing: border-box;
        padding: 0 10px;
    }
}