@charset "utf-8";

/* #region reset ============================================================================================================ */
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,
caption,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

ul {
    list-style: none;
}

ol,
li {
    list-style-type: none;
}

blockquote,
q {
    quotes: none;
}

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

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

del {
    text-decoration: line-through;
}

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

input,
select {
    vertical-align: middle;
}
/* #endregion reset */

/* #region root ============================================================================================================= */
:root {
    --color-main: #1677ff;
    --color-main-medium: #d1f3ff;
    --color-main-lighten: #e7f9ff;
    --color-yellow: #fff447;
    --color-orange: #ff9a16;
    --color-orange-medium: #ffe9ca;
    --color-orange-lighten: #fff4e3;
    --color-ocher: #ffb910;
    --color-ocher-darken: #c5841d;
}
/* #endregion */

/* #region common =========================================================================================================== */
body {
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #353535;
    font-size: 18px;
    font-weight: 500;
}

body * {
    box-sizing: border-box;
}

p, dd {
    text-align: justify;
    line-break: strict;
}

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

.-maincolor {
    color: var(--color-main);
}

.-maincolor.-underline {
    border-bottom: 1px solid var(--color-main);
}

.-yellow {
    color: var(--color-yellow);
}

.-marker {
    background: linear-gradient(transparent 60%, var(--color-yellow) 60%, var(--color-yellow) 95%, transparent 95%, transparent 100%);
}

.-balloon {
    position: relative;
    width: fit-content;
}

.-balloon::before,
.-balloon::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    height: 2px;
    background: var(--color-main);
}

.-balloon::before {
    transform: rotate(65deg);
}

.-balloon::after {
    transform: rotate(-65deg);
}

.-shadow {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn {
    position: relative;
    display: block;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    padding: 1em 2.5em;
    border-radius: 10em;
    border: 1px solid transparent;
    transition: color 0.3s, background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.btn::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 1.5em;
    width: 0.5em;
    height: 0.5em;
    border-top: 2px solid;
    border-right: 2px solid;
    transform: translate(0, -50%) rotate(45deg);
}

.btn.-baseOrange {
    color: #fff;
    background: var(--color-orange);
}

.btn.-baseOcher {
    color: #222222;
    background: var(--color-ocher);
    border: 3px solid var(--color-ocher);
    box-shadow: 0 11px 0 0 var(--color-ocher-darken);
}

.btn.-baseYellow {
    color: #222222;
    background: var(--color-yellow);
}

.btn.-baseMainColor {
    color: #fff;
    background: var(--color-main);
}

.btn.-baseWhite {
    color: #222222;
    background: #FFFFFF;
}

.btn.-balloonBtn {
    position: relative;
    padding: 0.85em 2.6em;
}

.btn.-balloonBtn::after {
    right: 1.1em;
}

.btn.-baseOcher.-balloonBtn span {
    position: absolute;
    top: -1.5em;
    left: 50%;
    font-size: 0.68em;
    font-weight: bold;
    white-space: nowrap;
    padding: 0.4em 1em;
    background: #fff;
    border: 3px solid var(--color-ocher);
    border-radius: 10em;
    transform: translate(-50%, 0);
    z-index: 3;
}

.btn.-baseOcher.-balloonBtn span::before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: calc(-0.65em - 4.5px);
    width: calc(1em + 6px);
    height: calc(0.65em + 3px);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background: var(--color-ocher);
    transform: translateX(-50%);
    z-index: 1;
}
.btn.-baseOcher.-balloonBtn span::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: -0.65em;
    width: 1em;
    height: 0.65em;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background: #fff;
    transform: translateX(-50%);
    z-index: 2;
}

.btn.-baseOcher.-balloonBtn span b {
    position: relative;
    z-index: 1;
}

.blackOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: background .3s;
    z-index: 1000;
}

.modalShow .blackOverlay {
    background: rgba(0, 0, 0, .2);
}

#imageModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: fit-content;
    height: fit-content;
    margin: auto;
    background: #fff;
    border-radius: 20px;
    transform: scale(0.9);
    transition: transform .3s;
    z-index: 1001;
}

.modalShow #imageModal {
    transform: scale(1);
}

.imageModal_inner {
    position: relative;
    padding: 20px;
}

.imageModal_close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 50px;
    height: 50px;
    cursor: pointer;   
}

.imageModal_close span {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.imageModal_close span::before,
.imageModal_close span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25px;
    height: 2px;
    background: #fff;
}

.imageModal_close span::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.imageModal_close span::after {
    transform: translate(-50%, -50%) rotate(135deg);
}

.imageModal_contents img {
    max-width: 80vw;
    max-height: 80vh;
}

.wrapper {
    position: relative;
}

@media screen and (min-width: 1080.1px) {
    .-sp:not(:root) {
        display: none !important;
    }

    .btn.-baseMainColor:hover {
        color: var(--color-main);
        background: #fff;
        border: 1px solid var(--color-main);
    }

    .btn.-baseOrange:hover {
        color: var(--color-orange);
        background: #fff;
        border: 1px solid var(--color-orange);
    }

    .btn.-baseOcher:hover {
        background: #fff;
        border: 3px solid var(--color-ocher);
    }

    .btn.-baseYellow:hover {
        color: #FFFFFF;
        background: #222222;
        border: 1px solid #FFFFFF;
    }

    .btn.-basePurpleGradation:hover {
        color: var(--color-main);
        background: #fff;
        border: 1px solid var(--color-main);
    }

    .btn.-baseWhite:hover {
        background: var(--color-yellow);
    }

    .wrapper {
        overflow-x: hidden;
    }
}

@media screen and (max-width: 1080px) {
    .-pc:not(:root) {
        display: none !important;
    }

    img {
        width: 100%;
        object-fit: contain;
    }

    .btn.btn.-balloonBtn::after {
        right: 0.8em;
        width: 0.4em;
        height: 0.4em;
    }

    .-balloon::before,
    .-balloon::after {
        height: calc(4/750*100vw);
    }

    .btn.-baseOcher {
        box-shadow: 0 calc(11/750*100vw) 0 0 var(--color-ocher-darken);
    }

    .btn.-baseOcher.-balloonBtn span {
        font-size: calc(26/750*100vw);
        border-width: calc(3/750*100vw);
    }
    .btn.-baseOcher.-balloonBtn span::after {
        bottom: calc(-15/750*100vw);
    }

    .wrapper>section {
        overflow: hidden;
    }
}
/* #endregion */

/* #region header =========================================================================================================== */
.header {
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

@media screen and (max-width: 1080px) {
    .header {
        box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
    }
}

.header .adlpC-headerInner {
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 1080px) {
    .header .adlpC-headerInner {
        box-shadow: none;
    }
}

.header .adlpC-headerInner2 {
    width: 1000px;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 1080px) {
    .header .adlpC-headerInner2 {
        width: 100%;
        pointer-events: auto;
    }
}

.header .adlpC-header_logo {
    flex: 0 0 218px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px 0 4px;
}

@media screen and (min-width: 1080.1px) {
    .header .adlpC-header_logo {
        width: 228px;
    }
}

@media screen and (max-width: 1080px) {
    .header .adlpC-header_logo {
        width: calc(228/750*100vw);
        flex: 0 0 40vw;
        padding: calc(10/750*100vw) 0 calc(10/750*100vw) calc(15/750*100vw);
    }
}

.header .adlpC-header_logo img {
    width: 100%;
}

.header .adlpC-header .header_btnWrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header .adlpC-header .header_btnWrapper .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    letter-spacing: 0.1em;
    height: 45px;
    padding: 0;
}

.header .adlpC-header .header_btnWrapper .btn::after {
    right: 1em;
}

.header .adlpC-header .header_btnWrapper .btn:nth-child(1) {
    width: 230px;
}

.header .adlpC-header .header_btnWrapper .btn:nth-child(2) {
    width: 200px;
}

@media screen and (max-width: 1080px) {
    .header .adlpC-header .header_btnWrapper {
        gap: 0px;
        z-index: 1;
        position: relative;
    }

    .header .adlpC-header .header_btnWrapper .btn {
        font-size: calc(12/375*100vw);
        height: calc(35/375*100vw);
    }

    .header .adlpC-header .header_btnWrapper .btn:nth-child(1) {
        width: calc(154/375*100vw);
        padding-right: calc(10/375*100vw);
    }
    .header .adlpC-header .header_btnWrapper .btn:nth-child(2) {
        display: none;
        width: calc(85/375*100vw);
        padding-right: calc(10/375*100vw);
        margin-left: calc(5/375*100vw);
    }
}

.header .adlpC-header_switch {
    display: block;
    position: relative;
    z-index: 999;
    width: calc(50/375*100vw);
    height: calc(50/375*100vw);
    box-sizing: border-box;
    padding: calc(15/375*100vw) calc(12.5/375*100vw);
    background-color: #fff;
    border: none;
    cursor: pointer !important;
    pointer-events: all;
}
.header .adlpC-header_switch * {
    cursor: pointer !important;
    pointer-events: auto;
}

@media screen and (min-width: 1080.1px) {
    .header .adlpC-header_switch {
        display: none;
    }
}

.header .adlpC-header_switch_inner {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.header .adlpC-header_switch_inner span {
    width: 100%;
    background: var(--color-main);
    height: 0.5vw;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.4s;
    position: absolute;
    transform-origin: left;
    display: block;
}

.header .adlpC-header_switch_inner span:nth-child(1) {
    top: 0;
}

.header .adlpC-header_switch_inner span:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%);
}

.header .adlpC-header_switch_inner span:nth-child(3) {
    bottom: 0;
}

.header .adlpC-header_switch_inner.-open span:nth-child(1) {
    top: 45%;
    transform: rotate(45deg) translateX(-50%);
}

.header .adlpC-header_switch_inner.-open span:nth-child(2) {
    opacity: 0;
}

.header .adlpC-header_switch_inner.-open span:nth-child(3) {
    bottom: 45%;
    transform: rotate(-45deg) translateX(-50%);
}

.header .adlpC-header_menu {
    z-index: 100;
}

@media screen and (max-width: 1080px) {
    .header .adlpC-header_menu {
        background-color: #fff;
        width: 100%;
        position: absolute;
        top: 100%;
        right: 0;
        box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
        display: none;
    }
}

@media screen and (min-width: 1080.1px) {
    .header .adlpC-header_menu {
        display: block !important;
    }

    .header .adlpC-header_menu_inner {
        height: 100%;
        width: 100%;
        margin: auto;
    }
}

@media screen and (max-width: 1080px) {
    .header .adlpC-header_menu_inner {
        padding: 0;
    }
}

.header .adlpC-header_menu_inner_list {
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    letter-spacing: 0.08em;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px;
    padding: 10px 0 8px;
    gap: 50px;
}

@media screen and (min-width: 1080.1px) {
    .header .adlpC-header_menu_inner_list {
        height: 100%;
    }
}

@media screen and (max-width: 1080px) {
    .header .adlpC-header_menu_inner_list {
        border-top: 1px solid #ccc;
        gap: 0;
        margin: 0;
        flex-direction: column;
    }
}

.header .adlpC-header_menu_inner_list a {
    text-decoration: none;
    text-align: left;
    color: #333;
    font-size: 14px;
}

@media screen and (min-width: 1080.1px) {
    .header .adlpC-header_menu_inner_list a {
        position: relative;
    }

    .header .adlpC-header_menu_inner_list a:hover {
        color: var(--color-main);
    }

    .header .adlpC-header_menu_inner_list a:not(:last-child)::after {
        content: "";
        display: block;
        position: absolute;
        width: 1px;
        height: 18px;
        background-color: #333;
        top: 50%;
        transform: translateY(-50%);
        right: -25px;
    }
}

@media screen and (max-width: 1080px) {
    .header .adlpC-header_menu_inner_list a {
        text-align: left;
        width: 100%;
        padding: 2vw 4vw;
        font-size: 4vw;
        position: relative;
    }

    .header .adlpC-header_menu_inner_list a::after {
        content: "";
        display: block;
        position: absolute;
        background-repeat: no-repeat;
        width: 1.8vw;
        height: 1.8vw;
        border-bottom: 0.4vw solid var(--color-main);
        border-right: 0.4vw solid var(--color-main);
        top: 50%;
        transform: rotate(-45deg) translateY(-55%);
        right: 4vw;
    }

    .header .adlpC-header_menu_inner_list a:not(:last-child) {
        border-bottom: 1px solid #ccc;
    }
}

.header .adlpC-header_close {
    cursor: pointer;
    margin: 4vw auto 0;
    width: fit-content;
    padding: 0 10px;
    border: 1px solid #666;
}

@media screen and (min-width: 1080.1px) {
    .header .adlpC-header_close {
        display: none;
    }
}
/* #endregion header */

/* #region footer =========================================================================================================== */
.footer {
    color: var(--color-main-lighten);
    padding: 40px 0 35px;
    background-color: var(--color-main);
    letter-spacing: 0.05em;
}

.footer_inner {
    max-width: 960px;
    margin: auto;
}

.footer_inner h2 {
    font-size: 24px;
    font-weight: 600;
}

.footer_inner p {
    font-size: 18px;
    padding: 20px 0 30px;
}

.footer .footer_list {
    display: flex;
    gap: 1.25em;
    justify-content: center;
    flex-direction: row;
    width: 1000px;
    padding: 18px 0;
    margin: 0 auto;
    border-top: 1px solid var(--color-main-lighten);
    border-bottom: 1px solid var(--color-main-lighten);
}

.footer .footer_list a {
    color: var(--color-main-lighten);
}

.footer .footer_copy {
    font-size: 14px;
    text-align: center;
    margin-top: 20px;
}

@media screen and (min-width: 1081px) {
    .footer .footer_list a:hover {
        text-decoration: underline;
    }
}

@media screen and (max-width: 1080px) {
    .footer {
        padding: calc(20/750*100vw) 0 calc(40/750*100vw);
    }

    .footer_inner {
        padding: calc(20/750*100vw) calc(25/750*100vw) calc(20/750*100vw);
    }

    .footer_inner h2 {
        font-size: calc(30/750*100vw);
        padding-bottom: calc(0/750*100vw);
        margin: 0 auto;
        line-break: strict;
        line-height: 1.35;
    }

    .footer_inner p {
        font-size: calc(25/750*100vw);
        line-height: calc(29/18);
        margin: 0 auto;
        padding: calc(20/750*100vw) 0 calc(20/750*100vw);
    }

    .footer .footer_list {
        flex-wrap: wrap;
        gap: 0.25em 1em;
        font-size: calc(29/750*100vw);
        width: calc(710/750*100vw);
        padding: calc(20/750*100vw) 0 calc(25/750*100vw);
        margin: 0 auto;
        border-top: calc(1/750*100vw) solid var(--color-main-lighten);
        border-bottom: calc(1/750*100vw) solid var(--color-main-lighten);
    }

    .footer .footer_copy {
        font-size: calc(24/750*100vw);
        letter-spacing: 0.02em;
        margin-top: calc(15/750*100vw);
    }
}
/* #endregion */

/* #region pagetop ========================================================================================================== */
.pagetop {
    display: none;
    position: fixed;
    right: 50px;
    bottom: 50px;
    z-index: 2;
}

.pagetop a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background: #fff;
    border: solid 2px var(--color-main);
    border-radius: 50%;
    transition: background 0.3s, border-color 0.3s;
}

.pagetop_arrow {
    height: 17.5px;
    width: 17.5px;
    border-top: 2px solid var(--color-main);
    border-right: 2px solid var(--color-main);
    transform: translate(0, 35%) rotate(-45deg);
    transition: border-color 0.3s;
}

.pagetop a:hover {
    background: var(--color-main);
    border: solid 2px #fff;
}

.pagetop a:hover .pagetop_arrow {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

@media screen and (max-width: 1080px) {
    .pagetop {
        right: calc(20/750*100vw);
        bottom: calc(20/750*100vw);
    }

    .pagetop a {
        width: calc(77/750*100vw);
        height: calc(77/750*100vw);
        border: solid calc(2/750*100vw) var(--color-main);
    }

    .pagetop_arrow {
        height: calc(17.5/750*100vw);
        width: calc(17.5/750*100vw);
        border-top: calc(2/750*100vw) solid var(--color-main);
        border-right: calc(2/750*100vw) solid var(--color-main);
    }

    .pagetop a:hover {
        background: var(--color-main);
        border: solid calc(2/750*100vw) #fff;
    }

    .pagetop a:hover .pagetop_arrow {
        border-top: calc(2/750*100vw) solid #fff;
        border-right: calc(2/750*100vw) solid #fff;
    }
}
/* #endregion pagetop */

/* #region fv =============================================================================================================== */
.fv {
    position: relative;
    line-height: 1.3;
    height: auto;
    margin-top: 98px;
    background: var(--color-main-lighten);
    padding-bottom: 30px;
}

.fv::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: 1190px;
    height: 100%;
    background: var(--color-main);
    transform: translate(-50%, 0) skewX(-18deg);
}

.fv_outer {
    position: relative;
}

.fv_title {
    color: #fff;
    font-size: 32px;
    text-align: center;
    z-index: 1;
    padding-top: 80px;
}

.fv_title .fs1 {
    font-size: calc(48/38*1em);
    display: inline-block;
    line-height: 1.3;
    letter-spacing: 0.01em;
}

.fv_title .fs2 {
    font-size: calc(58/38*1em);
    letter-spacing: 0.01em;
}

.fv_title .fs3 {
    font-size: calc(66/86*1em);
}

.fv_title .fs4 {
    display: inline-block;
    font-size: calc(91/38*1em);
    line-height: 1.1;
    letter-spacing: -0.1em;
    -webkit-text-stroke: 1px currentColor;
    padding-right: 0.1em;
}

.fv_functionHead {
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 0.02em;
    width: 18.3em;
    height: 1.5em;
    padding-left: 0.25em;
    margin: 10px auto 0;
}

.fv_functionHead use {
    stroke-width: 0.2em;
    paint-order: stroke;
    stroke-linejoin: round;
}

.fv_functionHead::before,
.fv_functionHead::after {
    width: 40px;
    background: #fff;
    top: 40%;
}

.fv_functionHead::before {
    left: -28px;
}

.fv_functionHead::after {
    right: -11px;
}

.fv_function {
    display: flex;
    justify-content: center;
    margin: 0;
    z-index: 1;
    gap: 5px;
}

.fv_function li {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-main);
    font-size: 17px;
    font-weight: bold;
    line-height: calc(20/19);
    text-align: center;
    letter-spacing: 0;
    width: 135px;
    height: 100px;
    padding-top: 75px;
    border-radius: 20px;
}

.fv_function li:nth-child(1) {
    background: #fff url("../img/fv_icon_01.svg") no-repeat top 10px center / 70px auto;
}

.fv_function li:nth-child(2) {
    line-height: 1.2;
    background: #fff url("../img/fv_icon_02.svg") no-repeat top 17px center / 55px auto;
}

.fv_function li:nth-child(3) {
    background: #fff url("../img/fv_icon_03.svg") no-repeat top 17px center / 65px auto;
}

.fv_function li:nth-child(4) {
    background: #fff url("../img/fv_icon_04.svg") no-repeat top 12px center / 50px auto;
}

.fv_function li:nth-child(5) {
    background: #fff url("../img/fv_icon_05.svg") no-repeat top 10px center / 45px auto;
}

.fv_hashtag {
    display: flex;
    position: absolute;
    left: 50%;
    top: 25px;
    translate: -50% 0;
    gap: 15px;
}

.fv_hashtag li {
    color: var(--color-yellow);
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 0;
    border-radius: 6px;
    padding: 2px 12px 1px;
    border: 2px solid var(--color-yellow);
    white-space: nowrap;
}

.fv_btn {
    margin: 55px auto 11px;
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.fv_btn .btn {
    font-size: 34px;
    padding: 0.8em 2.7em 0.65em;
}

@media screen and (max-width: 1080px) {
    .fv {
        height: auto;
        margin-top: calc(79.6/750*100vw);
        padding-bottom: calc(60/750*100vw);
    }

    .fv::before {
        width: 180vw;
        transform: translate(-49.5%, 0) skewX(-45deg);
    }

    .fv_title {
        font-size: calc(36/750*100vw);
        padding-top: calc(145/750*100vw);
    }

    .fv_title .fs1 {
        font-size: calc(50/38*1em);
    }

    .fv_title .fs2 {
        font-size: calc(60/38*1em);
        line-height: 1.35;
    }

    .fv_title .fs3 {
        font-size: calc(38/750*100vw);
    }

    .fv_title .fs4 {
        font-size: calc(86/38*1em);
        line-height: 1.15;
        font-feature-settings: "palt";
        letter-spacing: -0.05em;
    }

    .fv_functionHead {
        font-size: calc(36/750*100vw);
        text-align: center;
        z-index: 1;
        letter-spacing: 0.01em;
        margin-top: calc(36/750*100vw);
    }

    .fv_functionHead::before {
        left: calc(-28/750*100vw);
        width: calc(56/750*100vw);
        transform: rotate(75deg);
    }

    .fv_functionHead::after {
        right: calc(-28/750*100vw);
        width: calc(56/750*100vw);
        transform: rotate(-75deg);
        z-index: 1;
    }

    .fv_function {
        width: calc(690/750*100vw);
        margin: calc(20/750*100vw) auto 0;
        gap: calc(5/750*100vw);
    }

    .fv_function li {
        flex-basis: 100%;
        font-size: calc(20/750*100vw);
        height: calc(105/750*100vw);
        padding-top: calc(65/750*100vw);
        border-radius: calc(20/750*100vw);
    }

    .fv_function li:nth-child(1) {
        background: #fff url("../img/fv_icon_01.svg") no-repeat top calc(10/750*100vw) center / calc(70/750*100vw) auto;
    }

    .fv_function li:nth-child(2) {
        background: #fff url("../img/fv_icon_02.svg") no-repeat top calc(15/750*100vw) center / calc(55/750*100vw) auto;
    }

    .fv_function li:nth-child(3) {
        background: #fff url("../img/fv_icon_03.svg") no-repeat top calc(17/750*100vw) center / calc(65/750*100vw) auto;
    }

    .fv_function li:nth-child(4) {
        background: #fff url("../img/fv_icon_04.svg") no-repeat top calc(12/750*100vw) center / calc(50/750*100vw) auto;
    }

    .fv_function li:nth-child(5) {
        background: #fff url("../img/fv_icon_05.svg") no-repeat top calc(10/750*100vw) center / calc(45/750*100vw) auto;
    }

    .fv_hashtag {
        justify-content: center;
        width: 100%;
        top: calc(70/750*100vw);
        gap: calc(14/750*100vw);
    }

    .fv_hashtag li {
        font-size: calc(33/750*100vw);
        padding: calc(5/750*100vw) calc(10/750*100vw) calc(2/750*100vw);
        border-radius: calc(8/750*100vw);
        border: calc(2/750*100vw) solid var(--color-yellow);
        background: var(--color-main);
    }

    .fv_btn {
        display: flex;
        justify-content: center;
        margin-top: calc(80/750*100vw);
    }

    .fv_btn .btn {
        font-size: calc(46/750*100vw);
        letter-spacing: 0;
        padding: 0.6em 1em 0.6em 1em;
        width: calc(690/750*100vw);
    }

}
/* #endregion fv */

/* #region what ============================================================================================================= */
.what {
    position: relative;
    background: var(--color-main-lighten);
}

.what>* {
    position: relative;
    z-index: 1;
}

.what::before,
.what::after {
    content: "";
    display: block;
    position: absolute;
    top: 300px;
    left: 50%;
    width: 377px;
    height: 417px;
}

.what::before {
    transform: translateX(-632px);
    background: url(../img/what_bg_left.webp) no-repeat center center / 100% auto;
}

.what::after {
    transform: translateX(252px);
    background: url(../img/what_bg_right.webp) no-repeat center center / 100% auto;
}

.what>h2 {
    font-size: 41px;
    text-align: center;
    padding-top: 80px;
    line-height: 1.25;
    letter-spacing: 0.05em;
}

.what>h2 span {
    font-size: calc(60/40*1em);
    -webkit-text-stroke: 1px currentColor;
}

.what .worries {
    width: 660px;
    padding: 30px 30px 20px 70px;
    margin: 55px auto 0;
    background: #fff;
    border-radius: 20px;
}

.what .worries li+li {
    margin-top: 22px;
}

.what .worries li dt {
    position: relative;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.25;
}

.what .worries li dt::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: -40px;
    width: 31px;
    height: 26px;
    background: url(../img/icon_check.svg) no-repeat center center / 100% auto;
    transform: translate(0, -50%);
}

.what .worries li dd {
    font-size: 18px;
    font-weight: 500;
    margin-top: 5px;
    line-height: 1.6;
}

.what .solution {
    display: block;
    margin-top: 125px;
    padding: 35px 0 0x;
    background: #fff;
}

.what .solution::before {
    content: "";
    display: block;
    position: absolute;
    top: -160px;
    left: 50%;
    width: 0;
    height: 0;
    border-top: 160px solid transparent;
    border-right: calc(1920/2*1px) solid #fff;
    border-left: calc(1920/2*1px) solid #fff;
    transform: translate(-50%, 0);
}

.what .solution_contents {
    display: flex;
    justify-content: center;
    padding: 0 0 80px;
    background: #fff;
}

.what .solution_tag {
    font-size: 24px;
    font-weight: bold;
    padding: 0 0.8em;
    margin-left: -0.25em;
    border: 2px solid;
    border-radius: 10px;
}

.what .solution h2 {
    font-size: 40px;
    padding-top: 60px;
    text-align: center;
}

.what .solution_text {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    width: 478px;
    margin-right: 40px;
    font-weight: 500;
    text-align: justify;
}

.what .solution_text p {
    line-height: calc(32/18);
    margin-top: 10px;
}

.what .solution_img {
    padding-top: 40px;
}

@media screen and (max-width: 1080px) {
    .what::before,
    .what::after {
        top: 0;
        width: calc(377/750*100vw);
        height: calc(417/750*100vw);
    }

    .what::before {
        transform: translateX(calc(-494/750*100vw));
    }

    .what::after {
        transform: translateX(calc(100/750*100vw));
    }

    .what>h2 {
        font-size: calc(54/750*100vw);
        padding-top: 0;
        margin-top: calc(40/750*100vw);
        letter-spacing: 0.1em;

        span {
            font-size: 1.1em;
        }
    }

    .what .worries {
        width: calc(680/750*100vw);
        padding: calc(30/750*100vw) calc(50/750*100vw) calc(50/750*100vw) calc(70/750*100vw);
        margin: calc(20/750*100vw) auto 0;
        border-radius: calc(20/750*100vw);
    }

    .what .worries li+li {
        margin-top: calc(35/750*100vw);
    }

    .what .worries li dt {
        font-size: calc(33/750*100vw);
    }

    .what .worries li dt::before {
        top: calc(25/750*100vw);
        left: calc(-40/750*100vw);
        width: calc(31/750*100vw);
        height: calc(26/750*100vw);
    }

    .what .worries li dd {
        font-size: calc(25/750*100vw);
        margin-top: calc(10/750*100vw);
    }

    .what .solution {
        position: relative;
        margin-top: calc(160/750*100vw);
        padding: calc(20/750*100vw) 0 calc(25/750*100vw);
    }

    .what .solution::before {
        top: calc(-110/750*100vw);
        border-top: calc(110/750*100vw) solid transparent;
        border-right: calc(375/750*100vw) solid #fff;
        border-left: calc(375/750*100vw) solid #fff;
    }

    .what .solution_contents {
        flex-direction: column;
    }

    .what .solution_text {
        display: block;
        width: 100%;
        margin-right: 0;
        order: 2;
    }

    .what .solution_text .solution_tag {
        font-size: calc(30/750*100vw);
        width: fit-content;
        margin: calc(60/750*100vw) auto calc(10/750*100vw);
        border: calc(2/750*100vw) solid;
        border-radius: calc(10/750*100vw);
    }

    .what .solution h2 {
        padding-top: calc(40/750*100vw);
        font-size: calc(58/750*100vw);
        letter-spacing: 0.05em;
        line-height: 1.3;
        text-align: center;
    }

    .what .solution_text p {
        font-size: calc(28/750*100vw);
        line-height: calc(40/26);
        padding: 0 calc(40/750*100vw);
        margin: calc(20/750*100vw) auto 0;
    }

    .what .solution_img {
        padding: 0 calc(40/750*100vw) 0;
        margin: calc(40/750*100vw) auto 0;
        order: 1;
    }
}
/* #endregion what */

/* #region features ========================================================================================================= */
.features {
    padding: 120px 0 50px;
    background: var(--color-main-lighten);
}

.features h2 {
    font-size: 40px;
    text-align: center;
    line-height: 1;
}

.features h2 span {
    font-size: 1.5em;

}

.features h2 span b {
    font-size: 1.75em;
    vertical-align: baseline;
}

.features .title_bottom {
    text-align: center;
    margin-top: 20px;
}

.features_list {
    width: 1000px;
    margin: 60px auto 0;
}

.features_list>li {
    padding: 30px 20px 50px;
    background: #fff;
    border-radius: 20px;
}

.features_list>li:nth-child(3) {
    padding-bottom: 20px;
}

.features_list>li+li {
    margin-top: 50px;
}

.features_list h3 {
    font-size: 40px;
    text-align: center;
    padding: 25px 0 15px;
    border-bottom: 1px solid var(--color-main);
}

.features_list .number {
    position: relative;
    display: block;
    color: #fff;
    font-size: 23px;
    font-style: italic;
    width: fit-content;
    margin: 0 auto;
}

.features_list .number::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 1.5em;
    background: var(--color-main);
    transform: skewX(-30deg);
}

.features_list .number span {
    position: relative;
    padding: 0 0.3em 0 0.5em;
    z-index: 1;
}

.features_list .number svg {
    font-size: calc(40/23*1em);
    width: 1.5em;
    height: 1em;
    transform: translate(0, 3px);
}

.features_list .number svg use {
    stroke-width: 0.2em;
    paint-order: stroke;
    stroke-linejoin: round;
}

.features_list .explanation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 25px 0;
}

.features_list li .explanation.image_left {
    margin-top: 20px;
}

.features_list .explanation .text,
.features_list .explanation .textWrap {
    line-height: calc(32/18);
    width: calc(100% - 448px - 24px);
    line-break: strict;
    text-align: justify;
}

.features_list li:nth-child(3) .explanation .text {
    width: calc(100% - 460px - 24px);
    padding-bottom: 10px;
}

.features_list li:nth-child(3) .explanation .text .campaign {
    display: inline-block;
    margin-top: 1em;
}

.features_list li .explanation.image_left .textWrap {
    order: 2;
    width: calc(100% - 200px - 24px);
}

.features_list li .explanation.image_left .textWrap .textInner {
    padding: 0;
}

.features_list .explanation .image {
    width: 421px;
    img {
        width: 100%;
    }
}

.features_list li .explanation.image_left .image {
    width: 200px;
    padding: 0 10px 5px;
}

.features_list li:nth-child(3) .explanation .image {
    text-align: center;
    width: 460px;
}

.features_list .furthermore {
    position: relative;
    color: #fff;
    font-size: 30px;
    width: fit-content;
    padding: 0.1em 1em 0.1em;
    margin: 40px auto 20px;
    border-radius: 1em;
    background: var(--color-main);
}

.features_list .explanation.image_left .furthermore {
    margin: 0 auto 35px 0;
}

.features_list .furthermore::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: -13px;
    width: 0;
    height: 0;
    border-top: 15px solid var(--color-main);
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    transform: translate(-50%, 0);
}

.features_list .explanation.image_left .furthermore::after {
    left: 13%;
}

.features_list .function_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 40px;
    padding: 25px;
}

.features_list .function_list li {
    flex: 1;
    flex-direction: 50%;
}

.features_list .function_list li .image {
    text-align: center;
    padding-bottom: 15px;
    background: linear-gradient(transparent 60%, #fffad1 60%);
}

.features_list .function_list li .image img {
    width: 250px;
}

.features_list .function_list li h4 {
    font-size: 24px;
    line-height: 1.35;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    align-content: center;
    gap: 20px;

    &::before {
        content: '';
        width: 152px;
        height: 152px;
        line-height: 152px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
    }
}

.features_list .function_list li:nth-child(1) h4::before {
    background: url(../img/features_icon_01.svg) no-repeat center center / 80% 80% #f5f5f5;
}
.features_list .function_list li:nth-child(2) h4::before {
    background: url(../img/features_icon_02.svg) no-repeat left 57.5% center / 55% 55% #f5f5f5;
}
.features_list .function_list li:nth-child(3) h4::before {
    background: url(../img/features_icon_03.svg) no-repeat center center / 55% 55% #f5f5f5;
}
.features_list .function_list li:nth-child(4) h4::before {
    background: url(../img/features_icon_04.svg) no-repeat center center / 75% 75% #f5f5f5;
}

.features_list .function_list li p {
    line-height: calc(32/18);
    text-align: justify;
    line-break: strict;
}

.features_list .image.js-imageModal {
    position: relative;
    cursor: pointer;
}

.features_list .image.js-imageModal img {
    transition: 0.3s;
}

@media screen and (min-width: 1080.1px) {
    .features_list .image.js-imageModal:hover img {
        opacity: 0.8;
    }

    .features_list .image.js-imageModal::after {
        content: "";
        display: block;
        position: absolute;
        right: 0;
        bottom: 0;
        width: 50px;
        height: 50px;
        border-radius: 100% 0 0 0;
        background: url(../img/icon_expansion.svg) no-repeat left 66.667% top 66.667% / 50% auto rgba(70,140,255,0.67);
    }
}

@media screen and (max-width: 1080px) {
    .features {
        padding: calc(65/750*100vw) 0 calc(120/750*100vw);
    }

    .features h2 {
        font-size: calc(60/750*100vw);
    }

    .features h2 span {
        font-size: calc(60/60*1em);
    }

    .features h2 span b {
        font-size: calc(90/60*1em);
    }

    .features .title_bottom {
        font-size: calc(26/750*100vw);
        width: calc(700/750*100vw);
        margin: calc(30/750*100vw) auto 0;
    }

    .features_list {
        width: calc(690/750*100vw);
        margin: calc(50/750*100vw) auto 0;
    }

    .features_list>li {
        padding: calc(50/750*100vw) calc(30/750*100vw);
        border-radius: calc(20/750*100vw);
    }

    .features_list>li+li {
        margin-top: calc(65/750*100vw);
    }

    .features_list h3 {
        font-size: calc(48/750*100vw);
        line-height: 1.2;
        letter-spacing: 0.05em;
        padding: calc(30/750*100vw) 0 calc(20/750*100vw);
        border-bottom: calc(2/750*100vw) solid var(--color-main);
    }

    .features_list .number {
        font-size: calc(24/750*100vw);
    }

    .features_list .number svg {
        transform: translate(0, calc(3/750*100vw));
    }

    .features_list .explanation {
        flex-wrap: wrap;
        padding: calc(0/750*100vw);
        margin: calc(20/750*100vw) auto 0;
    }

    .features_list .explanation .text,
    .features_list li .explanation.image_left .textWrap {
        font-size: calc(25/750*100vw);
        width: 100%;
        margin-top: calc(20/750*100vw);
        line-height: 1.5;
    }

    .features_list li:not(:nth-child(1)) .explanation .text {
        order: 2;
    }

    .features_list li:nth-child(1) .explanation .image {
        padding: calc(20/750*100vw);
        order: 1;
    }

    .features_list li:nth-child(1) .explanation .text {
        margin: calc(20/750*100vw) auto 0;
        order: 2;
    }

    .features_list li:nth-child(3) .explanation .text {
        padding-bottom: 0;
        width: 100%;
    }

    .features_list .explanation .image,
    .features_list li:nth-child(3) .explanation .image {
        width: calc(635/750*100vw);
    }

    .features_list li:nth-child(2) .explanation > .image {
        padding: calc(20/750*100vw) 0 calc(10/750*100vw);
    }

    .features_list li:nth-child(2) .explanation.image_left .image img{
        width: calc(220/750*100vw);
        display: block;
        margin: auto;
    }

    .features_list li:nth-child(3) .explanation .image img {
        width: calc(466/750*100vw);
    }

    .features_list .furthermore {
        font-size: calc(36/750*100vw);
        line-height: 1.5;
        text-align: center;
        width: 100%;
        padding: 0.15em 0 0.1em;
        margin: calc(40/750*100vw) auto calc(40/750*100vw);
        border-radius: 10em;
        transform: translate(calc(-5/750*100vw), 0);
    }

    .features_list .furthermore::after,
    .features_list .explanation.image_left .furthermore::after {
        left: 50%;
        bottom: calc(-17/750*100vw);
        border-top: calc(20/750*100vw) solid var(--color-main);
        border-right: calc(20/750*100vw) solid transparent;
        border-left: calc(20/750*100vw) solid transparent;
    }

    .features_list .function_list {
        display: block;
        padding: 0;
    }

    .features_list .function_list li {
    }

    .features_list .function_list li+li {
        margin-top: calc(40/750*100vw);
    }

    .features_list .function_list li h4 {
        font-size: calc(32/750*100vw);
        margin-bottom: calc(15/750*100vw);
        background-size: calc(72/750*100vw) !important;
        line-break: strict;
        text-align: justify;
        gap: calc(15/750*100vw);

        &::before {
            width: calc(210/750*100vw);
            height: calc(210/750*100vw);
        }
    }

    .features_list .function_list li p {
        font-size: calc(25/750*100vw);
        line-height: calc(36/26);
    }

    .features_list li .explanation.image_left {
        position: relative;
        margin-top: calc(40/750*100vw);
    }

    .features_list li .explanation.image_left .textWrap  {
        margin: 0;
    }

    .features_list li .explanation.image_left .textWrap .textInner {
        padding: 0;
    }

    .features_list .explanation.image_left .furthermore {
        margin: 0 auto calc(500/750*100vw);
    }

    .features_list li .explanation.image_left .text {
        margin-top: calc(60/750*100vw);
    }

    .features_list li .explanation.image_left .image  {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: calc(520/750*100vw);
        padding: 0;
        margin: calc(100/750*100vw) auto 0;
    }
}
/* #endregion features */

/* #region pricePlan ======================================================================================================== */
.pricePlan {
    position: relative;
    padding: 50px 0 75px;
    margin-top: 160px;
}

.pricePlan>* {
    position: relative;
    z-index: 1;
}

.pricePlan::before,
.pricePlan::after {
    content: "";
    display: block;
    position: absolute;
}

.pricePlan::before {
    top: -161px;
    left: 50%;
    width: 0;
    height: 0;
    border-top: 161px solid var(--color-main-lighten);
    border-right: calc(1920/2*1px) solid var(--color-main);
    border-left: calc(1920/2*1px) solid var(--color-main);
    transform: translate(-50%, 0);
}

.pricePlan::after {
    top: -1px;
    width: 100%;
    height: 771px;
    background: var(--color-main);
}

.pricePlan h2 {
    width: 1000px;
    margin: auto;
    color: #fff;
    font-size: 48px;
    line-height: 1;
    text-align: center;
    padding-left: 380px;
    letter-spacing: 0.05em;
}

.pricePlan h2 .fs {
    font-size: calc(60/48*1em);
    letter-spacing: 0.05em;
}

.pricePlan h2 .fs b {
    font-size: calc(110/60*1em);
    vertical-align: -0.1em;
    margin: 0 0.075em 0 0.15em;
}

.pricePlan_commentWrap {
    width: 1000px;
    margin: 10px auto 0;
    padding-left: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricePlan_commentHead {
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.pricePlan_commentHead::before,
.pricePlan_commentHead::after {
    width: 50px;
    background: #fff;
}

.pricePlan_commentHead::before {
    left: -50px;
}

.pricePlan_commentHead::after {
    right: -50px;
}

.pricePlan_comment {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 48px;
    font-weight: bold;
    margin-top: 20px;
    width: 100%;
    letter-spacing: 0.125em;
    font-feature-settings: "palt";
}

.pricePlan_comment svg {
    width: 100%;
}

.pricePlan_comment svg use {
    stroke-width: 0.25em;
    paint-order: stroke;
    stroke-linejoin: round;    
}

.pricePlan_commentImage {
    position: absolute;
    top: 0;
    left: 0;
    margin: -265px 0 0;
    z-index: 1;
}

.pricePlan_tableWrap {
    width: 1000px;
    padding: 20px 20px 0;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
}

.pricePlan_tableHead {
    display: flex;
    border-bottom: 3px solid #fff;
}

.pricePlan_tableHead dd {
    display: flex;
}

.pricePlan_tableHead dd div {
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    line-height: calc(75/22);
    border-left: 1px solid #fff;
}

.pricePlan_tableHead dt,
.pricePlan_table>dd dl dt {
    width: 320px;
}

.pricePlan_tableHead dd,
.pricePlan_table>dd dl dd {
    width: calc(100% - 320px);
}

.pricePlan_tableHead dd div:nth-child(1),
.pricePlan_table>dd dl dd div:nth-child(1),
.pricePlan_tableHead dd div:nth-child(2),
.pricePlan_table>dd dl dd div:nth-child(2) {
    width: calc(50% - 0.5px);
}

.pricePlan_tableHead dd .-balloonImage {
    position: relative;
}

.pricePlan_tableHead dd .-balloonImage::before {
    content: "";
    display: block;
    position: absolute;
    top: -32.5px;
    left: 50%;
    width: 176px;
    height: 51px;
    background: url(../img/pricePlan_balloonImage.webp) no-repeat center center / 100% auto;
    transform: translate(-50%, 0);
}

.pricePlan_table>dt {
    color: #fff;
    font-size: 24px;
    line-height: calc(50/24);
    text-align: center;
    background: var(--color-main);
}

.pricePlan_table>dd {
    background: #dbdad8;
    border: 1px solid #dbdad8;
    border-top: none;
}

.pricePlan_tableMoreWrap .pricePlan_table:not(:last-child)>dd {
    border-bottom: none;
}

.pricePlan_table>dd dl {
    display: flex;
    line-height: calc(24/18);
}

.pricePlan_table>dd dl dt,
.pricePlan_table>dd dl dd {
    display: flex;
}

.pricePlan_table>dd dl dt {
    align-items: center;
    min-height: 55px;
    padding: 10px 0 10px 20px;
}

.pricePlan_table>dd dl dt span {
    font-size: calc(20/24*1em);
}

.pricePlan_table>dd dl dt div.crm_info {
    position: relative;

    button {
        margin-left: 0.25em;
        font-size: calc(22/24*1em);
        width: 1.35em;
        height: 1.35em;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        outline: none;
        border: 1.5px solid #aaa;
        background-color: #ffffff;
        cursor: pointer;
        padding-top: 0.15em;
    }

    p.crm_info_bubble {
        position: absolute;
        bottom: 2em;
        left: 1.85em;
        span {
            display: block;
            position: relative;
            text-align: justify;
            border-radius: 0.7em;
            width: 19em;
            padding: 1em 2em;
            background-color: #ffffff;
            filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
            line-break: strict;
            letter-spacing: 0.01em;
            &::after {
                content: '';
                width: 1.5em;
                height: 0.7em;
                display: block;
                background-color: inherit;
                clip-path: polygon(0 0, 100% 0, 50% 100%);
                position: absolute;
                bottom: -0.6em;
                left: 2.75em;
                translate: 50% 0;
            }
        }
    }
}

.pricePlan_table>dd dl dt,
.pricePlan_table>dd dl dd.colspan {
    background: #f8f7f5;
}

.pricePlan_table>dd dl:nth-child(even) dt,
.pricePlan_table>dd dl:nth-child(even) dd.colspan {
    background: #ffffff;
}

.pricePlan_table>dd dl dd {
    text-align: center;
}

.pricePlan_table>dd dl dd div,
.pricePlan_table>dd dl dd.colspan {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    border-left: 1px solid #dbdad8;
}

.pricePlan_tableHead dd div:nth-child(1) {
    background: var(--color-main);
}

.pricePlan_tableHead dd div:nth-child(2) {
    background: var(--color-orange);
}

.pricePlan_table>dd dl dd div:nth-child(1) {
    background: var(--color-main-medium);
}

.pricePlan_table>dd dl dd div:nth-child(2) {
    background: var(--color-orange-medium);
}

.pricePlan_table>dd dl:nth-child(even) dd div:nth-child(1) {
    background: var(--color-main-lighten);
}

.pricePlan_table>dd dl:nth-child(even) dd div:nth-child(2) {
    background: var(--color-orange-lighten);
}

.pricePlan_table>dd dl dd.expectation {
    background: #ffffff;
}

.pricePlan_table>dd dl sup {
    font-size: 14px;
}

.pricePlan_table>dd dl .-fs24 {
    font-size: 28px;
    margin-bottom: -3px;
}

.pricePlan_table>dd dl small {
    font-size: 11px;
    line-height: calc(24/11);
}

.pricePlan_tableMore {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    height: 85px;
}

.pricePlan_tableMore span {
    position: relative;
    cursor: pointer;
}

.pricePlan_tableMore span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -35px;
    width: 15px;
    height: 15px;
    border-top: 2px solid;
    border-left: 2px solid;
    background: #fff;
    transform: translate(0, -75%) rotate(225deg);
}

.pricePlan_tableMore.open span::after {
    transform: translate(0, -15%) rotate(45deg);
}

.pricePlan_tableMoreWrap {
    display: none;
    padding-bottom: 20px;
}

@media screen and (max-width: 1080px) {
    .pricePlan {
        padding: calc(120/750*100vw) 0 calc(115/750*100vw);
        margin-top: 0;
    }

    .pricePlan::before {
        top: 0;
        border-top: calc(80/750*100vw) solid var(--color-main-lighten);
        border-right: calc(380/750*100vw) solid var(--color-main);
        border-left: calc(380/750*100vw) solid var(--color-main);
        z-index: 1;
    }

    .pricePlan::after {
        top: calc(75/750*100vw);
        height: calc(760/750*100vw);
    }

    .pricePlan h2 {
        font-size: calc(54/750*100vw);
        width: auto;
        padding-left: 0;
        margin-top: calc(30/750*100vw);
    }

    .pricePlan h2 .fs {
        font-size: 1em;
    }

    .pricePlan h2 .fs b {
        font-size: calc(90/50*1em);
        vertical-align: -0.1em;
    }

    .pricePlan_commentWrap {
        font-size: calc(40/750*100vw);
        margin: calc(20/750*100vw) auto 0;
        transform: translate(calc(80/750*100vw), 0);
        width: auto;
        padding-left: 0;
    }

    .pricePlan_commentHead {
        font-size: calc(32/750*100vw);
        letter-spacing: 0.05em;
    }

    .pricePlan_commentHead::before,
    .pricePlan_commentHead::after {
        width: calc(50/750*100vw);
    }

    .pricePlan_commentHead::before {
        left: calc(-50/750*100vw);
    }

    .pricePlan_commentHead::after {
        right: calc(-50/750*100vw);
    }

    .pricePlan_comment {
        color: #fff;
        font-size: calc(46/750*100vw);
        margin: calc(20/750*100vw) 0 calc(20/750*100vw);
        height: calc(160/750*100vw);

        svg use:last-of-type {
            transform: translateY(15/750*100vw);
        }
    }

    .pricePlan_commentImage {
        width: calc(470/750*100vw);
        margin: calc(-80/750*100vw) 0 0 0;
        left: calc(calc(140/750*100vw)*-1);
    }

    .pricePlan_tableWrap {
        width: calc(690/750*100vw);
        padding: calc(20/750*100vw) calc(20/750*100vw) 0;
        border-radius: calc(20/750*100vw);
    }

    .pricePlan_tableHead {
        border-bottom: calc(2/750*100vw) solid #fff;
    }

    .pricePlan_tableHead dd div {
        font-size: calc(30/750*100vw);
        line-height: calc(50/26);
        border-left: calc(2/750*100vw) solid #fff;

        &:nth-of-type(1) {
            border-left: none;
        }
    }

    .pricePlan_tableHead dt {
        display: none;
    }

    .pricePlan_tableHead dd {
        width: 100%;
    }
    .pricePlan_table>dd dl {
        flex-wrap: wrap;
        justify-content: center;
    }
    .pricePlan_table>dd dl dt {
        width: 100%;
        justify-content: center;
        background-color: #f8f7f5 !important;
        border-bottom: 1px solid #dbdad8;
    }
    .pricePlan_table>dd dl dd {
        width: 100%;
    }
    .pricePlan_table>dd dl dd div {
        width: 100%;
        border-bottom: 1px solid #dbdad8;
    }

    .pricePlan_table>dd dl dd.colspan {
        border-bottom: 1px solid #dbdad8;
        border-left: none;
    }
    .pricePlan_table>dd dl:last-of-type dd div {
        width: 100%;
        border-bottom: none;
    }

    .pricePlan_table>dd dl dd div:nth-child(1) {
        background-color: var(--color-main-lighten) !important;
        border-left: none;
    }

    .pricePlan_table>dd dl dd div:nth-child(2) {
        background-color: var(--color-orange-lighten) !important;
        border-left: none;
    }

    .pricePlan_tableHead dd div:nth-child(1),
    .pricePlan_table>dd dl dd div:nth-child(1),
    .pricePlan_tableHead dd div:nth-child(2),
    .pricePlan_table>dd dl dd div:nth-child(2) {
        width: calc(100%/2);
    }

    .pricePlan_table>dd dl dt div.crm_info {
        width: 100%;
        text-align: center;
        font-size: calc(34/750*100vw);

        button {
            position: absolute;
            left: calc(50% + 2.5em);
            scale: 0.8;
            border-width: 2px;
        }
        
        p.crm_info_bubble {
            position: absolute;
            bottom: 2em;
            left: 50%;
            span {
                font-weight: 500;
                display: block;
                position: relative;
                text-align: justify;
                border-radius: 0.3em;
                width: 20.5em;
                padding: 1.25em;
                background-color: #ffffff;
                filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
                translate: -50% 0;
                &::after {
                    left: calc(50% + 2.25em);
                    translate: 50% 0;
                }
            }
        }
    }

    .pricePlan_tableHead dd .-balloonImage::before {
        display: none;
    }

    .pricePlan_table>dt {
        font-size: calc(30/750*100vw);
        line-height: calc(60/30);
    }

    .pricePlan_table>dd {
        font-size: calc(26/750*100vw);
        border: calc(2/750*100vw) solid #dbdad8;
        border-top: none;
        background: none;
    }

    .pricePlan_table>dd dl dd.expectation {
        padding: calc(15.45 / 750 * 100vw) 0 calc(10.375 / 750 * 100vw);
    }

    .pricePlan_tableMoreWrap .pricePlan_table:not(:last-child)>dd {
        border-bottom: none;
    }

    .pricePlan_table>dd dl dt {
        flex-wrap: wrap;
        font-size: calc(26/750*100vw);
        font-weight: bold;
        min-height: auto;
        padding: calc(10/750*100vw) 0 calc(4/750*100vw);
        letter-spacing: 0.05em;
    }

    .pricePlan_table>dd dl dt span {
        display: block;
        width: 100%;
    }

    .pricePlan_table>dd dl:last-child dd {
        border-bottom: none;
    }

    .pricePlan_table>dd dl dd div {
        padding: calc(15/750*100vw) 0 calc(10/750*100vw);
        font-size: calc(28/750*100vw);
    }

    .pricePlan_table>dd dl dd div+div {
        border-left: calc(2/750*100vw) solid #dbdad8;
    }

    .pricePlan_table>dd dl sup {
        font-size: calc(24/750*100vw);
    }

    .pricePlan_table>dd dl .-fs24 {
        font-size: calc(30/750*100vw);
        line-height: 1;
        padding: calc(5.2/750*100vw) 0 calc(5.75/750*100vw);
    }

    .pricePlan_table>dd dl small {
        font-size: calc(21/750*100vw);
        line-height: calc(24/11);
    }
    
    .pricePlan_tableMore {
        font-size: calc(24/750*100vw);
        height: calc(85/750*100vw);
    }

    .pricePlan_tableMore span::after {
        right: calc(-35/750*100vw);
        width: calc(15/750*100vw);
        height: calc(15/750*100vw);
        border-top: calc(2/750*100vw) solid;
        border-left: calc(2/750*100vw) solid;
    }

    .pricePlan_tableMoreWrap {
        padding-bottom: calc(40/750*100vw);
    }

    .pricePlan_note {
        font-size: calc(14/750*100vw);
        width: calc(710/750*100vw);
        margin: calc(25/750*100vw) auto 0;
    }
}

@media screen and (min-width: 1081px) {
    .pricePlan_tableMore:hover {
        text-decoration: underline;
    }

    .pricePlan_table>dd dl dd[class*="rowspan-"] {
        position: relative;
        &::after {
            content: attr(data-text);
            position: absolute;
            left: 0;
            top: 0;
            right: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: inherit;
        }
    }

    .pricePlan_table>dd dl dd.row-hidden {
        visibility: hidden;
    }

    .pricePlan_table>dd dl dd.rowspan-2::after {
        height: 200%;
    }
    .pricePlan_table>dd dl dd.rowspan-3::after {
        height: 300%;
    }
}
/* #endregion pricePlan */

/* #region why ============================================================================================================== */
.why {
    padding: 0 0 140px;
    background: #fff;
}

.why h2 {
    position: relative;
    color: #fff;
    font-size: 62px;
    line-height: 1;
    text-align: center;
    height: 225px;
    padding-top: 30px;
    background: var(--color-main);
    letter-spacing: 0.05em;
}

.why h2 span {
    display: inline-block;
    font-size: calc(70/60*1em);
    transform: translate(-5px, 0);
}

.why h2 b {
    font-size: calc(100/60*1em);
    vertical-align: -0.05em;
}

.why h2::before,
.why h2::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
}

.why h2::before {
    top: -40px;
    width: 269px;
    height: 136px;
    background: url(../img/why_bg.svg) no-repeat center center / 100% auto;
}

.why h2::after {
    top: calc(100% - 1px);
    width: 0;
    height: 0;
    border-top: 54px solid var(--color-main);
    border-right: calc(188/2*1px) solid transparent;
    border-left: calc(188/2*1px) solid transparent;
}

.why_reason {
    display: flex;
    justify-content: center;
    gap: 46px;
    margin-top: 105px;
}

.why_reason li {
    width: 448px;
}

.why_reason li img {
    margin-bottom: 10px;
}

.why_reason li h3 {
    font-size: 30px;
    line-height: calc(80/30);
    text-align: center;
}

.why_reason li .text {
    line-height: calc(32/18);
}

@media screen and (max-width: 1080px) {
    .why {
        padding: 0 0 calc(75/750*100vw);
    }

    .why h2 {
        font-size: calc(60/750*100vw);
        line-height: 0.9;
        height: calc(350/750*100vw);
        padding-top: calc(70/750*100vw);
        background: linear-gradient(transparent 10.5%, var(--color-main) 10.5%);
    }

    .why h2 span {
        margin-bottom: calc(40/750*100vw);
        transform: translate(calc(-5/750*100vw), 0);
    }

    .why h2::before {
        top: 0;
        width: calc(259/750*100vw);
        height: calc(126/750*100vw);
    }

    .why h2::after {
        border-top: calc(54/750*100vw) solid var(--color-main);
        border-right: calc(97/750*100vw) solid transparent;
        border-left: calc(97/750*100vw) solid transparent;
    }

    .why_reason {
        display: block;
        margin-top: calc(85/750*100vw);
        padding: 0 calc(40/750*100vw);
    }

    .why_reason li {
        width: 100%;
        margin: 0 auto;
    }

    .why_reason li+li {
        margin-top: calc(60/750*100vw);
    }

    .why_reason li h3 {
        font-size: calc(40/750*100vw);
        line-height: calc(100/46);
    }

    .why_reason li .text {
        font-size: calc(25/750*100vw);
        letter-spacing: 0.02em;
        line-height: 1.5;
    }
}
/* #endregion why */

/* #region step ============================================================================================================= */
.step {
    position: relative;
    padding-bottom: 75px;
    background: var(--color-main);
}

.step::before {
    content: "";
    display: block;
    position: absolute;
    top: -160px;
    left: 50%;
    width: 0;
    height: 0;
    border-top: 161px solid transparent;
    border-right: calc(1920/2*1px) solid var(--color-main);
    border-left: calc(1920/2*1px) solid var(--color-main);
    transform: translate(-50%, 0);
}

.step_commentWrap {
    width: 1000px;
    margin: 25px auto 45px;
    padding-left: 330px;
    position: relative;
}

.step_commentHead {
    color: #fff;
    font-size: 40px;
    letter-spacing: 0.1em;
    line-height: 1.35;
}

.step_commentHead span {
    font-size: calc(52/40*1em);
}

.step_commentHead span b {
    font-size: calc(100/50*1em);
    vertical-align: sub;
}

.step_commentHead::before,
.step_commentHead::after {
    top: 55%;
    width: 60px;
    background: #fff;
}

.step_commentHead::before {
    left: -60px;
}

.step_commentHead::after {
    right: -60px;
}

.step_comment {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    line-height: calc(38/24);
    letter-spacing: 0.1em;;
}

.step_commentImage {
    position: absolute;
    top: 0;
    left: 0;
    margin: -10px 0 0 0;
}

.step_merit {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.step_merit li {
    display: flex;
    align-items: center;
    color: var(--color-main);
    font-size: 34px;
    font-weight: bold;
    line-height: 1;
    height: 60px;
    padding: 0 30px;
    background: #fff;
    border-radius: 20px;
}

.step_flow {
    display: grid;
    grid-template-columns: 248px 248px 248px;
    grid-template-rows: 1fr auto auto;
    justify-content: space-between;
    width: 1000px;
    padding: 60px 50px 80px;
    margin: 30px auto 0;
    background: #fff;
    border-radius: 20px;
    z-index: 2;
    gap: 20px;
    position: relative;
}

.step_flow::before {
    content: "";
    display: block;
    position: absolute;
    top: calc(calc(248px/2) + 60px);
    left: 50%;
    width: 70%;
    transform: translate(-50%, -50%);
    height: 3px;
    background: #dbdbdb;
}

.step_flow li {
    display: contents;
}

.step_flow li .image {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 248px;
    height: 248px;
    border-radius: 50%;
    padding-top: 45px;
    background-color: #f5f5f5;
    grid-row: 1 / 2;
    span {
        font-size: 24px;
        font-weight: bold;
    }
}

.step_flow li:nth-of-type(1) .image img {
    margin-top: 5px;
}
.step_flow li:nth-of-type(2) .image img {
    margin-top: 10px;
}
.step_flow li:nth-of-type(3) .image img {
    margin-top: 10px;
}

.step_flow li .textWrap {
    display: contents;
}

.step_flow li h3 {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: calc(34/24);
    text-align: center;
    grid-row: 2 / 3;
    align-content: center;
}

.step_flow li .text {
    line-height: calc(32/18);
    margin: 0 auto;
    grid-row: 3 / 4;
}

.step_buttonWrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 55px 47px;
    width: 1000px;
    margin: 80px auto 0;
}

.step_buttonWrap .btn:nth-child(1) {
    font-size: 40px;
    padding: 0.75em 2.75em;
}

.step_buttonWrap .btn:nth-child(2),
.step_buttonWrap .btn:nth-child(3) {
    font-size: 30px;
    width: 440px;
    color: var(--color-main);
}

@media screen and (max-width: 1080px) {
    .step {
        padding-bottom: calc(80/750*100vw);
        background: linear-gradient(transparent 1px, var(--color-main) 1px);
    }

    .step::before {
        top: 0;
        border-top: calc(80/750*100vw) solid #fff;
        border-right: calc(375/750*100vw) solid var(--color-main);
        border-left: calc(375/750*100vw) solid var(--color-main);
    }

    .step_commentWrap {
        width: auto;
        padding-top: calc(90/750*100vw);
        padding-left: 0;
        margin: 0 auto calc(20/750*100vw);
        transform: none;
    }

    .step_commentHead {
        font-size: calc(44/750*100vw);
        line-height: 1;
        margin: 0 auto;
        letter-spacing: 0.075em;
    }

    .step_commentHead span {
        font-size: inherit;
    }

    .step_commentHead span b {
        font-size: calc(110/50*1em);
        vertical-align: -0.05em;
    }

    .step_commentHead::before,
    .step_commentHead::after {
        width: calc(60/750*100vw);
    }

    .step_commentHead::before {
        left: calc(-60/750*100vw);
    }

    .step_commentHead::after {
        right: calc(-60/750*100vw);
    }

    .step_comment {
        font-size: calc(32/750*100vw);
        width: calc(400/750*100vw);
        margin-top: calc(10/750*100vw);
        transform: translate(calc(280/750*100vw), 0);
        letter-spacing: 0;
        line-height: 1.5;
    }

    .step_commentImage {
        width: calc(280/750*100vw);
        margin: calc(200/750*100vw) 0 0 calc(-20/750*100vw);
    }

    .step_merit {
        gap: calc(10/750*100vw);
        padding: 0 calc(30/750*100vw);
        justify-content: space-between;
    }

    .step_merit li {
        justify-content: center;
        font-size: calc(38/750*100vw);
        line-height: 1.15;
        text-align: center;
        flex-basis: 100%;
        flex-shrink: 1;
        flex-grow: 1;
        height: calc(120 / 750* 100vw);
        padding: 0;
        border-radius: calc(20/750*100vw);
    }

    .step_flow {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: calc(50/750*100vw);
        width: calc(690/750*100vw);
        padding: calc(35/750*100vw) calc(30/750*100vw) calc(50/750*100vw);
        margin: calc(15/750*100vw) auto 0;
        border-radius: calc(20/750*100vw);
    }

    .step_flow::before {
        content: none;
    }

    .step_flow li {
        width: 100%;
        display: block;
    }

    .step_flow li .image {
        margin: auto;
        width: calc(248/750*100vw);
        height: calc(248/750*100vw);
        padding-top: calc(45/750*100vw);
        span {
            font-size: calc(26/750*100vw);
        }
        img {
            height: auto;
        }
    }

    .step_flow li:nth-of-type(1) .image img {
        margin-top: calc(5/750*100vw);
        width: calc(85/750*100vw)
    }
    .step_flow li:nth-of-type(2) .image img {
        margin-top: calc(15/750*100vw);
        width: calc(115/750*100vw)
    }
    .step_flow li:nth-of-type(3) .image img {
        margin-top: calc(15/750*100vw);
        width: calc(100/750*100vw)
    }

    .step_flow li .textWrap {
        padding: 0 calc(20/750*100vw);
    }

    .step_flow li h3 {
        font-size: calc(42/750*100vw);
        line-height: calc(52/46);
        margin: calc(20/750*100vw) auto;
    }

    .step_flow li .text {
        font-size: calc(28/750*100vw);
        line-height: calc(40/24);
        width: auto;
    }

    .step_buttonWrap {
        display: block;
        width: auto;
        margin: calc(70/750*100vw) auto 0;
    }

    .step_buttonWrap .btn {
        margin: 0 auto;
    }

    .step_buttonWrap .btn:nth-child(1) {
        font-size: calc(48/750*100vw);
        width: calc(690/750*100vw);
        padding: 0.525em 0 0.45em;
        &::after {
            right: 0.75em;
            width: 0.35em;
            height: 0.35em;
        }
    }

    .step_buttonWrap .btn:nth-child(2),
    .step_buttonWrap .btn:nth-child(3) {
        font-size: calc(40/750*100vw);
        padding: 0.8em 0 0.75em;
        width: calc(480/750*100vw);
        &::after {
            right: 1.25em;
            width: 0.35em;
            height: 0.35em;
        }
    }

    .step_buttonWrap .btn:nth-child(2) {
        margin-top: calc(40/750*100vw);
    }

    .step_buttonWrap .btn:nth-child(3) {
        margin-top: calc(30/750*100vw);
    }
}
/* #endregion step */

/* #region faq ============================================================================================================== */
.faq {
    padding: 100px 0 45px;
    background: #fff;
}

.faq h2 {
    font-size: 40px;
    text-align: center;
}

.faq .faq_list {
    width: 1000px;
    margin: 70px auto 0;
}

.faq .faq_list a {
    border-bottom: 1px solid;
}

.faq .faq_list a:hover {
    border-bottom: 1px solid transparent;
}

.faq .faq_list li+li {
    margin-top: 25px;
}

.faq .faq_list li dt,
.faq .faq_list li dd {
    position: relative;
    padding-left: 100px;
    padding-right: 40px;
    letter-spacing: 0.05em;
}

.faq .faq_list li dt {
    font-size: 20px;
    line-height: calc(84/20);
    background: var(--color-main-lighten);
    cursor: pointer;
    font-weight: 600;
}

.faq .faq_list li dt::before,
.faq .faq_list li dt::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 20px;
    height: 2px;
    background: var(--color-main);
    transform: translate(0, -50%);
}

.faq .faq_list li dt::after {
    transform: translate(0, -50%) rotate(90deg);
}

.faq .faq_list li dt.open::after {
    display: none;
}

.faq .faq_list li dd {
    display: none;
    line-height: calc(33/18);
    padding-top: 25px;
    padding-bottom: 25px;
}

.faq .faq_list li span {
    font-size: 40px;
    line-height: 1;
    margin-left: calc(-0.9em - 20px);
    padding-right: 20px;
    font-weight: 600;
}

.faq .faq_list li dt span {
    color: var(--color-main);
}

@media screen and (max-width: 1080px) {
    .faq {
        padding: calc(90/750*100vw) 0 calc(55/750*100vw);
    }

    .faq h2 {
        font-size: calc(60/750*100vw);
    }

    .faq .faq_list {
        width: calc(710/750*100vw);
        margin: calc(50/750*100vw) auto 0;
    }

    .faq .faq_list li+li {
        margin-top: calc(45/750*100vw);
    }

    .faq .faq_list li dt,
    .faq .faq_list li dd {
        position: relative;
        padding-left: calc(80/750*100vw);
        padding-right: calc(60/750*100vw);
    }

    .faq .faq_list li dt {
        font-size: calc(27/750*100vw);
        line-height: calc(40/26);
        padding-top: calc(20/750*100vw);
        padding-bottom: calc(20/750*100vw);
    }

    .faq .faq_list li dt::before,
    .faq .faq_list li dt::after {
        right: calc(20/750*100vw);
        width: calc(20/750*100vw);
        height: calc(2/750*100vw);
    }

    .faq .faq_list li dd {
        font-size: calc(25/750*100vw);
        padding-top: calc(25/750*100vw);
        padding-bottom: calc(25/750*100vw);
    }

    .faq .faq_list li span {
        position: absolute;
        font-size: calc(48/750*100vw);
        margin-left: calc(-65/750*100vw);
        margin-top: calc(-5/750*100vw);
    }
}
/* #endregion faq */