@charset "UTF-8";

/* ======================================================================
 reset
====================================================================== */
html {
    overflow-y: scroll;
}

body {
    /* line-height: 1; */
    color: #000;
}

/* html5doctor.com Reset Stylesheet v1.6.1
  Last Updated: 2010-09-17 Author: Richard Clark - http://richclarkdesign.com Twitter: @rich_clark */
abbr, address, article, aside, audio, b, blockquote, body, canvas, caption, cite, code, dd, del, details,
dfn, div, dl, dt, em, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup,
html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, p, pre, q, samp, section,
small, span, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, ul, var, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    background: transparent;
}

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

ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

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

a {
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    background: transparent;
}

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

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

del {
    text-decoration: line-through;
}

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

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

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #cccccc;
    margin: 1em 0;
    padding: 0;
}

input, select {
    vertical-align: middle;
}

/* YUI 3.4.1 (build 4118) Copyright 2011 Yahoo! Inc. All rights reserved.
Licensed under the BSD License. http://yuilibrary.com/license/ */
/* ======================================================================
 setting
====================================================================== */
/* ======================================================================
 base
====================================================================== */
html {
    /* font-size: 62.5%; */
    margin-top: 0 !important;
}

body {
    position: relative;
    background: #fff;
    color: #001936;
    font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "游ゴシック", YuGothic, Verdana;
    word-wrap: break-word;
    word-break: break-all;
    -webkit-text-size-adjust: 100%;
    font-display: fallback;
}

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

.page {
    width: 100%;
    margin: 0 auto;
}

/* border-box */
* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* h1 - h6 */
h1, h2, h3, h4, h5, h6 {
    font-size: 1em;
}

/* a */
a:link {
    text-decoration: none;
    cursor: pointer;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}

a[href^="tel"] {
    color: #000;
}

/* Text Highlight */
/* button */
button {
    display: block;
    outline: none;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

/* input */
input, textarea, select {
    display: block;
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    border-image: none;
    background: transparent;
    font-family: inherit;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    -moz-appearance: none;
    -webkit-appearance: none;
}

input::-ms-expand, textarea::-ms-expand, select::-ms-expand {
    display: none;
}

textarea {
    resize: vertical;
}

select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000;
}

/* placeholder */
input:placeholder-shown, textarea:placeholder-shown {
    color: #000;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: #000;
}

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

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

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    color: #000;
}

input:focus:placeholder-shown, textarea:focus:placeholder-shown {
    color: #000;
}

input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
    color: #000;
}

input:focus:-moz-placeholder, textarea:focus:-moz-placeholder {
    color: #000;
    opacity: 1;
}

input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
    color: #000;
    opacity: 1;
}

input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
    color: #000;
}

img {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* ======================================================================
 utility
====================================================================== */
/* =================================
 layout
================================= */
.l_content {
    font-size: 62.5%;
}

.cf {
    *zoom: 1;
}

.cf:after {
    display: block;
    visibility: hidden;
    clear: both;
    overflow: hidden;
    height: 0;
    content: '\0020';
}

.u_center {
    text-align: center;
}

@media screen and (max-width: 768px) {
    .u_center {
        text-align: left;
    }
}

.u_pc {
    display: block;
}

.u_pc_i {
    display: inline;
}

.u_sp {
    display: none;
}

@media screen and (max-width: 768px) {
    .u_pc {
        display: none;
    }

    .u_pc_i {
        display: none;
    }

    .u_sp {
        display: block;
    }
}

/* =================================
 text pt
================================= */
.u_txt_1 {
    font-size: 1.6em;
    line-height: 1.7;
}

.u_txt_2 {
    font-size: 1.5em;
    line-height: 1.7;
}

@media screen and (max-width: 768px) {
    .u_txt_2 {
        font-size: 1.6em;
    }
}

.u_txt_3 {
    font-size: 1.4em;
    line-height: 1.7;
    letter-spacing: .1em;
}

.u_txt_4 {
    font-size: 1.2em;
    line-height: 1;
    letter-spacing: .1em;
}

.u_txt_5 {
    font-size: 1.3em;
    line-height: 1;
    letter-spacing: .1em;
}

.u_txt_6 {
    font-size: 1.6em;
    line-height: 1.7;
}

@media screen and (max-width: 768px) {
    .u_txt_6 {
        font-size: 1.4em;
    }
}

.u_txt_7 {
    font-size: 2em;
    line-height: 1.5;
}

@media screen and (max-width: 768px) {
    .u_txt_7 {
        font-size: 1.6em;
    }
}

.u_txt_8 {
    font-size: 5em;
    line-height: 1.5;
}

@media screen and (max-width: 768px) {
    .u_txt_8 {
        font-size: 4.6em;
    }
}

.u_txt_9 {
    font-size: 2.6em;
    line-height: 1.5;
}

@media screen and (max-width: 768px) {
    .u_txt_9 {
        font-size: 2.2em;
    }
}

.u_txt_10 {
    font-size: 2em;
    line-height: 1.5;
}

@media screen and (max-width: 768px) {
    .u_txt_10 {
        font-size: 1.8em;
    }
}

.u_txt_11 {
    font-size: 2em;
    line-height: 1.5;
}

@media screen and (max-width: 768px) {
    .u_txt_11 {
        font-size: 2.4em;
    }
}

.u_txt_12 {
    font-size: 2.4em;
    line-height: 1.5;
}

@media screen and (max-width: 768px) {
    .u_txt_12 {
        font-size: 2.4em;
    }
}

.u_txt_13 {
    font-size: 1.8em;
    line-height: 1.7;
}

@media screen and (max-width: 768px) {
    .u_txt_13 {
        font-size: 1.6em;
    }
}

.u_txt_14 {
    font-size: 1.4em;
    line-height: 1.7;
}

@media screen and (max-width: 768px) {
    .u_txt_14 {
        font-size: 1.2em;
    }
}

.u_txt_15 {
    font-size: 1.5em;
    line-height: 1.7;
}

@media screen and (max-width: 768px) {
    .u_txt_15 {
        font-size: 1.4em;
    }
}

.u_txt_small {
    font-size: 75%;
    font-weight: 400;
}

/* =================================
 text weight
================================= */
.u_lighter {
    font-weight: lighter;
}

.u_bold {
    font-weight: bold;
}

/* =================================
 title
================================= */
.en {
    font-family: "Nanum Gothic", sans-serif;
}

.num {
    font-family: "Nanum Gothic", sans-serif;
}

.c_ttl_1 {
    text-align: center;
}

.c_ttl_1 .en {
    display: block;
    font-size: 2em;
    color: #03C1EA;
    letter-spacing: .05em;
    font-family: "Nanum Gothic", sans-serif;
    font-weight: 800;
}

@media screen and (max-width: 768px) {
    .c_ttl_1 .en {
        font-weight: 800;
        font-size: 1.8em;
    }
}

.c_ttl_1 .jp {
    margin: 5px 0 0;
    font-size: 3.2em;
    line-height: 1.5;
}

@media screen and (max-width: 768px) {
    .c_ttl_1 .jp {
        font-size: 2.6em;
    }
}

.c_ttl_2 {
    position: relative;
    padding: 0 0 0 30px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-weight: bold;
    color: #004A80;
}

.c_ttl_2 .en {
    font-size: 2em;
    display: inline-block;
    margin: 0 10px 0 0;
}

@media screen and (max-width: 768px) {
    .c_ttl_2 .en {
        font-size: 1.8em;
    }
}

.c_ttl_2 .num {
    font-weight: bold;
    font-size: 4.6em;
    transform: translateY(-8px);
}

@media screen and (max-width: 768px) {
    .c_ttl_2 .num {
        font-size: 3.6em;
    }
}

.c_ttl_2:before {
    content: "";
    width: 10px;
    height: 3px;
    position: absolute;
    top: 50%;
    left: 0;
    background: #03C1EA;
    transform: translateY(-50%);
}

.c_ttl_2:after {
    content: "";
    width: 10px;
    height: 3px;
    position: absolute;
    top: 50%;
    left: 10px;
    background: #004A80;
    transform: translateY(-50%);
}

.c_ttl_3 {
    font-size: 2.8em;
    line-height: 1.5;
    font-weight: 600;
    position: relative;
    padding: 0 0 0 15px;
}

.c_ttl_3:before {
    width: 3px;
    height: 17px;
    background: #03C1EA;
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    border-radius: 10px 10px 0 0;
}

.c_ttl_3:after {
    width: 3px;
    height: 17px;
    background: #004A80;
    content: "";
    position: absolute;
    top: 21px;
    left: 0;
    border-radius: 0 0 10px 10px;
}

.c_ttl_4 {
    font-size: 2.6em;
    line-height: 1.5;
    font-weight: 600;
    position: relative;
    padding: 0 0 15px 0;
    text-align: center;
}

.c_ttl_4:before {
    width: 30px;
    height: 3px;
    background: #03C1EA;
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-75%);
}

.c_ttl_4:after {
    width: 30px;
    height: 3px;
    background: #004A80;
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(25%);
}

.c_ttl_5 {
    font-size: 3.2em;
    line-height: 1.5;
    font-weight: 600;
    position: relative;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .c_ttl_5 {
        font-size: 2.6em;
    }
}

.c_ttl_5 span {
    position: relative;
}

.c_ttl_5 span:before {
    content: url(/wp-content/themes/chatplus/assets/img/p_plan/ttl-ico1.svg);
    position: absolute;
    top: -10px;
    left: -65px;
}

@media screen and (max-width: 768px) {
    .c_ttl_5 span:before {
        content: url(/wp-content/themes/chatplus/assets/img/p_plan/sp/ttl-ico1.svg);
        top: 10px;
        left: -91px;
    }
}

.c_ttl_5 span:after {
    content: url(/wp-content/themes/chatplus/assets/img/p_plan/ttl-ico2.svg);
    position: absolute;
    top: -10px;
    right: -65px;
}

@media screen and (max-width: 768px) {
    .c_ttl_5 span:after {
        content: url(/wp-content/themes/chatplus/assets/img/p_plan/sp/ttl-ico2.svg);
        top: 12px;
        right: -71px;
    }
}

/* =================================
 buttons
================================= */
.c_btn_1 {
    display: inline-flex;
    padding: 13px 25px 7px;
    background: #FFEB3B;
    border-radius: 999px;
    font-size: 13px;
    font-weight: bold;
    transition: all .2s linear;
    color: #001936;
    box-shadow: 0px 2px 0px 0px #FFCE00;
}

.c_btn_1:hover {
    box-shadow: 0px 0px 0px 0px #FFCE00;
    transform: translateY(2px);
}

@media screen and (max-width: 768px) {
    .c_btn_1:hover {
        box-shadow: 0px 2px 0px 0px #FFCE00;
        transform: translateY(0);
    }
}

.c_btn_2 {
    background: #0092D3;
    display: flex;
    justify-content: center;
    border-radius: 999px;
    color: #fff;
    padding: 15px 0;
    box-shadow: 0px 5px 0px 0px #00397B;
    position: relative;
    font-weight: bold;
    transition: all .2s linear;
}

.c_btn_2:hover {
    box-shadow: 0px 0px 0px 0px #00397B !important;
    transform: translateY(5px) !important;
}

@media screen and (max-width: 768px) {
    .c_btn_2:hover {
        box-shadow: 0px 5px 0px 0px #00397B !important;
        transform: translateY(0) !important;
    }
}

.c_btn_2:hover:before {
    right: 24px;
}

@media screen and (max-width: 768px) {
    .c_btn_2:hover:before {
        right: 20px;
    }
}

.c_btn_2:hover:after {
    width: 21px;
    right: 25px;
}

@media screen and (max-width: 768px) {
    .c_btn_2:hover:after {
        width: 15px;
        right: 21px;
    }
}

.c_btn_2:before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
    top: 25px;
    right: 33px;
    transform: translateY(-1px) rotate(45deg);
    transition: all .2s linear;
    border-radius: 2px;
}

@media screen and (max-width: 768px) {
    .c_btn_2:before {
        right: 20px;
    }
}

.c_btn_2:after {
    content: "";
    width: 15px;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 28px;
    right: 33px;
    transform: translateY(-0.5px);
    transition: all .2s linear;
}

@media screen and (max-width: 768px) {
    .c_btn_2:after {
        right: 21px;
    }
}

.c_btn_2._380 {
    width: 380px;
}

.c_btn_2._300 {
    width: 300px;
}

.c_btn_2._400 {
    width: 400px;
}

.c_btn_2._contact {
    font-weight: 600;
    color: #001936;
    background: #FFEB3B;
    box-shadow: 0px 5px 0px 0px #FFCE00;
}

@media screen and (max-width: 768px) {
    .c_btn_2._contact:hover {
        box-shadow: 0px 5px 0px 0px #FFCE00 !important;
    }
}

.c_btn_2._contact:before {
    border-top: 2px solid #001936;
    border-right: 2px solid #001936;
}

.c_btn_2._contact:after {
    background: #001936;
}

.c_btn_2._download {
    font-weight: 600;
    background: #FA7726;
    box-shadow: 0px 5px 0px 0px #CE4A22;
}

@media screen and (max-width: 768px) {
    .c_btn_2._download:hover {
        box-shadow: 0px 5px 0px 0px #CE4A22 !important;
    }
}

.c_btn_2._pdf:before {
    content: url(/wp-content/themes/chatplus/assets/img/common/icon_pdf.svg);
    position: absolute;
    top: 56%;
    right: 26px;
    border-top: none;
    border-right: none;
    transform: rotate(0deg) translateY(-50%);
    width: auto;
    height: auto;
}

.c_btn_2._pdf:after {
    display: none;
}

.c_btn_2._freetrial {
    font-weight: 600;
    background: #07C2EB;
    box-shadow: 0px 5px 0px 0px #014D5E;
}

@media screen and (max-width: 768px) {
    .c_btn_2._freetrial:hover {
        box-shadow: 0px 5px 0px 0px #014D5E !important;
    }
}

.c_btn_3 {
    width: 140px;
    display: flex;
    justify-content: center;
    border-radius: 5px;
    color: #fff;
    padding: 15px 0;
    box-shadow: 0px 5px 0px 0px #00397B;
    position: relative;
    font-size: 14px;
    font-weight: bold;
}

.c_btn_3:hover {
    box-shadow: 0px 5px 0px 0px rgba(0, 0, 0, 0) !important;
    transform: translateY(5px) !important;
}

@media screen and (max-width: 768px) {
    .c_btn_3:hover {
        box-shadow: 0px 5px 0px 0px #00397B !important;
        transform: translateY(0) !important;
    }
}

.c_btn_3:hover._login {
    box-shadow: 0px 0px 0px 0px #000F21;
}

@media screen and (max-width: 768px) {
    .c_btn_3:hover._login {
        box-shadow: 0px 5px 0px 0px #000F21 !important;
        transform: translateY(0) !important;
    }
}

.c_btn_3:hover._download {
    box-shadow: 0px 0px 0px 0px #CE4A22;
}

@media screen and (max-width: 768px) {
    .c_btn_3:hover._download {
        box-shadow: 0px 5px 0px 0px #CE4A22 !important;
        transform: translateY(0) !important;
    }
}

.c_btn_3:hover._contact {
    box-shadow: 0px 0px 0px 0px #FFCE00;
}

@media screen and (max-width: 768px) {
    .c_btn_3:hover._contact {
        box-shadow: 0px 5px 0px 0px #FFCE00 !important;
        transform: translateY(0) !important;
    }
}

.c_btn_3._contact {
    font-weight: 600;
    color: #001936;
    background: #FFEB3B;
    box-shadow: 0px 5px 0px 0px #FFCE00;
}

.c_btn_3._contact:before {
    border-top: 2px solid #001936;
    border-right: 2px solid #001936;
}

.c_btn_3._contact:after {
    background: #001936;
}

.c_btn_3._download {
    font-weight: 600;
    background: #FA7726;
    box-shadow: 0px 5px 0px 0px #CE4A22;
}

.c_btn_3._login {
    font-weight: 600;
    background: #014171;
    box-shadow: 0px 5px 0px 0px #000F21;
}

.c_btn_4 {
    background: #0092D3;
    display: flex;
    justify-content: center;
    border-radius: 8px;
    color: #fff;
    padding: 15px 0;
    box-shadow: 0px 5px 0px 0px #00397B;
    position: relative;
    transition: all .2s linear;
    font-weight: bold !important;
}

.c_btn_4:hover {
    box-shadow: 0px 0px 0px 0px #00397B;
    transform: translateY(5px) !important;
}

@media screen and (max-width: 768px) {
    .c_btn_4:hover {
        box-shadow: 0px 5px 0px 0px #00397B;
        transform: translateY(0) !important;
    }
}

.c_btn_4:hover:before {
    right: 5px;
}

@media screen and (max-width: 768px) {
    .c_btn_4:hover:before {
        right: 20px;
    }
}

.c_btn_4:hover:after {
    width: 18px;
    right: 5px;
}

@media screen and (max-width: 768px) {
    .c_btn_4:hover:after {
        right: 21px;
    }
}

.c_btn_4:before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
    top: 25px;
    right: 9px;
    transform: translateY(-1px) rotate(45deg);
    transition: all .2s linear;
    border-radius: 2px;
}

@media screen and (max-width: 768px) {
    .c_btn_4:before {
        right: 20px;
    }
}

.c_btn_4:after {
    content: "";
    width: 15px;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 28px;
    right: 8px;
    transform: translateY(-0.5px);
    transition: all .2s linear;
}

@media screen and (max-width: 768px) {
    .c_btn_4:after {
        right: 21px;
    }
}

.c_btn_4._180 {
    width: 180px;
}

.c_btn_4._contact {
    font-weight: 600;
    color: #001936;
    background: #FFEB3B;
    box-shadow: 0px 5px 0px 0px #FFCE00;
}

.c_btn_4._contact:hover {
    box-shadow: 0px 0px 0px 0px #FFCE00;
}

@media screen and (max-width: 768px) {
    .c_btn_4._contact:hover {
        box-shadow: 0px 5px 0px 0px #FFCE00;
    }
}

.c_btn_4._contact:before {
    border-top: 2px solid #001936;
    border-right: 2px solid #001936;
}

.c_btn_4._contact:after {
    background: #001936;
}

.c_btn_4._download {
    font-weight: 600;
    background: #FA7726;
    box-shadow: 0px 5px 0px 0px #CE4A22;
}

.c_btn_4._download:hover {
    box-shadow: 0px 0px 0px 0px #CE4A22;
}

@media screen and (max-width: 768px) {
    .c_btn_4._download:hover {
        box-shadow: 0px 5px 0px 0px #CE4A22;
    }
}

.c_btn_5 {
    background: #99A8BA;
    display: flex;
    justify-content: center;
    border-radius: 999px;
    color: #fff;
    padding: 15px 0;
    box-shadow: 0px 5px 0px 0px #3C5879;
    position: relative;
    transition: all .2s linear;
}

.c_btn_5:hover {
    box-shadow: 0px 0px 0px 0px #3C5879;
    transform: translateY(5px) !important;
}

@media screen and (max-width: 768px) {
    .c_btn_5:hover {
        box-shadow: 0px 5px 0px 0px #3C5879;
        transform: translateY(0px) !important;
    }
}

.c_btn_5:hover:before {
    left: 24px;
}

@media screen and (max-width: 768px) {
    .c_btn_5:hover:before {
        left: 24px;
    }
}

.c_btn_5:hover:after {
    width: 21px;
    left: 25px;
}

@media screen and (max-width: 768px) {
    .c_btn_5:hover:after {
        left: 25px;
    }
}

.c_btn_5:before {
    content: "";
    width: 7px;
    height: 7px;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    position: absolute;
    top: 25px;
    left: 33px;
    transform: translateY(-1px) rotate(45deg);
    border-radius: 2px;
    transition: all .2s linear;
}

@media screen and (max-width: 768px) {
    .c_btn_5:before {
        right: 20px;
    }
}

.c_btn_5:after {
    content: "";
    width: 15px;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 28px;
    left: 33px;
    transform: translateY(-0.5px);
    transition: all .2s linear;
}

@media screen and (max-width: 768px) {
    .c_btn_5:after {
        right: 21px;
    }
}

/* ======================================================================
 layout
====================================================================== */
/* =================================
 l_container
================================= */
.l_container {
    position: relative;
}

/* =================================
 l_main
================================= */
.l_main>.inner {
    padding: 45px 0 120px;
}

@media screen and (max-width: 768px) {
    .l_main>.inner {
        padding: 50px 0 60px;
    }
}

.l_main.subpage {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .l_main.subpage {
        width: 100%;
        padding: 0 4.6875vw;
    }
}

/* ======================================================================
 p_chat
====================================================================== */
.p_chat .l_main_visual_chat {
    padding: 120px 0 125px;
    background: rgba(0, 0, 0, 0) linear-gradient(180deg, #ffffff 0%, #fafdfe 48%, #effafc 64%, #e0f4f9 76%, #bee6f5 100%) 0% 0% no-repeat padding-box;
    font-size: 62.5%;
}

@media screen and (max-width: 768px) {
    .p_chat .l_main_visual_chat {
        padding: 70px 4.6875vw 130px;
    }
}

.p_chat .l_main_visual_chat .l_main_visual_box {
    display: flex;
    justify-content: center;
    gap: 0 25px;
}

@media screen and (max-width: 768px) {
    .p_chat .l_main_visual_chat .l_main_visual_box {
        flex-wrap: wrap;
        position: relative;
    }
}

.p_chat .l_main_visual_chat .l_main_visual_box_txt {
    display: flex;
    align-items: center;
}

.p_chat .l_main_visual_chat .l_main_visual_box_txt .txt1 {
    margin: 20px 0 15px 25px;
}

.p_chat .l_main_visual_chat .l_main_visual_box_txt1 {
    width: 496px;
}

@media screen and (max-width: 768px) {
    .p_chat .l_main_visual_chat .l_main_visual_box_txt1 {
        width: 271px;
    }
}

.p_chat .l_main_visual_chat .l_main_visual_box_txt2 {
    width: 631px;
}

@media screen and (max-width: 768px) {
    .p_chat .l_main_visual_chat .l_main_visual_box_txt2 {
        width: 345px;
    }
}

.p_chat .l_main_visual_chat .l_main_visual_box_img {
    width: 570px;
}

@media screen and (max-width: 768px) {
    .p_chat .l_main_visual_chat .l_main_visual_box_img {
        width: 100%;
    }
}

.p_chat .l_main_visual_chat .l_main_visual_box_img img {
    max-width: 100%;
}

.p_chat .l_main_visual_chat .l_main_visual_box .btns {
    margin: 70px 0 0;
    display: flex;
}

@media screen and (max-width: 768px) {
    .p_chat .l_main_visual_chat .l_main_visual_box .btns {
        width: 100%;
        gap: 0 15px;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
    }
}

@media screen and (max-width: 768px) {
    .p_chat .l_main_visual_chat .l_main_visual_box .btns .c_btn_2 {
        width: calc(50% - 7.5px);
        padding: 8px 0;
        font-size: 14px;
    }

    .p_chat .l_main_visual_chat .l_main_visual_box .btns .c_btn_2:before, .p_chat .l_main_visual_chat .l_main_visual_box .btns .c_btn_2:after {
        display: none;
    }
}

.p_chat .l_main_visual_chat .l_main_visual_box .btns .c_btn_2._download {
    margin: 0 30px 0 0;
}

@media screen and (max-width: 768px) {
    .p_chat .l_main_visual_chat .l_main_visual_box .btns .c_btn_2._download {
        margin: 0;
    }
}

.p_chat .sec2 {
    position: relative;
    z-index: 1;
    padding: 0 0 170px;
}

@media screen and (max-width: 768px) {
    .p_chat .sec2 {
        padding: 0 4.6875vw 80px;
    }
}

.p_chat .sec2>.inner {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.p_chat .sec2>.inner>.u_txt_1 {
    text-align: center;
    margin: 40px 0 30px;
}

@media screen and (max-width: 768px) {
    .p_chat .sec2>.inner>.u_txt_1 {
        text-align: left;
        margin: 30px 0;
    }
}

.p_chat .sec2>.inner .c_ttl_1 .jp {
    position: relative;
}

.p_chat .sec2>.inner .c_ttl_1 .percent {
    position: relative;
}

.p_chat .sec2>.inner .c_ttl_1 .percent .kome {
    position: absolute;
    font-size: 14px;
    top: 5px;
    right: -13px;
    text-shadow: none;
}

.p_chat .sec2>.inner .c_ttl_1 .under {
    position: absolute;
    font-size: 14px;
    bottom: -19px;
    right: -13px;
    font-weight: normal;
    text-shadow: none;
}

.p_chat .sec2 .lists {
    display: flex;
    gap: 0 30px;
    margin: 60px 0 0;
}

@media screen and (max-width: 768px) {
    .p_chat .sec2 .lists {
        flex-wrap: wrap;
    }
}

.p_chat .sec2 .lists .list {
    width: 310px;
}

@media screen and (max-width: 768px) {
    .p_chat .sec2 .lists .list {
        width: 100%;
    }

    .p_chat .sec2 .lists .list:not(:first-of-type) {
        margin: 60px 0 0;
    }
}

.p_chat .sec2 .lists .list img {
    max-width: 100%;
}

.p_chat .sec2 .lists .list-ttl {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin: 0 0 15px;
}

.p_chat .sec2 .lists .list-ttl span {
    position: relative;
}

.p_chat .sec2 .lists .list-ttl span:before {
    content: url(/wp-content/themes/chatplus/assets/img/cp/ico1.svg);
    position: absolute;
    top: -20px;
    left: -26px;
}

.p_chat .sec2 .lists .list-txt {
    margin: 10px 0 0;
    text-align: center;
    font-size: 2em;
    font-weight: 600;
    line-height: 1.5;
}

.p_chat .sec2 .lists .list-txt span {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0) 70%, #fff389 70%);
}

.p_chat .sec2 .lists .list-txt .kome {
    position: absolute;
    top: 0;
    right: -15px;
    font-size: 14px;
    background: none;
}

.p_chat .sec2 .lists .list-sub {
    font-size: 14px;
    margin: 20px 0 0;
    text-align: right;
}

.p_chat .sec4 {
    padding: 125px 0 120px;
}

@media screen and (max-width: 768px) {
    .p_chat .sec4 {
        padding: 80px 4.6875vw 80px;
    }
}

.p_chat .sec4>.inner {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.p_chat .sec4>.inner>.u_txt_1 {
    text-align: center;
    margin: 40px 0 30px;
}

@media screen and (max-width: 768px) {
    .p_chat .sec4>.inner>.u_txt_1 {
        text-align: left;
        margin: 30px 0;
    }
}

.p_chat .sec4 .lists {
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 30px auto 0;
    background: #F0FBFD;
    border-radius: 30px;
    padding: 25px 0 60px;
}

@media screen and (max-width: 768px) {
    .p_chat .sec4 .lists {
        padding: 20px 20px 70px;
        border-radius: 0;
        gap: 10px;
    }
}

.p_chat .sec4 .lists .list {
    width: 230px;
    border-radius: 10px;
    text-align: center;
    padding: 15px;
    background: #fff;
}

@media screen and (max-width: 768px) {
    .p_chat .sec4 .lists .list {
        width: calc(50% - 5px);
    }
}

.p_chat .sec4 .lists .list img {
    max-width: 100%;
}

.p_chat .sec4 .lists .list-ttl {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin: 0 0 15px;
}

.p_chat .sec4 .lists .list-ttl span {
    position: relative;
}

.p_chat .sec4 .lists .list-ttl span:before {
    content: url(/wp-content/themes/chatplus/assets/img/cp/ico1.svg);
    position: absolute;
    top: -20px;
    left: -26px;
}

.p_chat .sec4 .lists .list-txt {
    margin: 10px 0 0;
    text-align: center;
    font-size: 1.8em;
    font-weight: 600;
    line-height: 1.5;
}

@media screen and (max-width: 768px) {
    .p_chat .sec4 .lists .list-txt {
        font-size: 1.4em;
    }
}

.p_chat .sec4 .lists .list-txt span {
    background: linear-gradient(rgba(0, 0, 0, 0) 70%, #fff389 70%);
}

.p_chat .sec4 .btns {
    width: 380px;
    margin: -40px auto 0;
}

@media screen and (max-width: 768px) {
    .p_chat .sec4 .btns {
        width: 100%;
    }
}

.p_chat .sec6 {
    padding: 0 0 120px;
}

@media screen and (max-width: 768px) {
    .p_chat .sec6 {
        margin: 80px 0 0;
        padding: 0 0 80px;
    }
}

.p_chat .sec6>.inner {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .p_chat .sec6>.inner {
        padding: 0 4.6875vw;
    }
}

.p_chat .sec6>.inner>.u_txt_1 {
    text-align: center;
    margin: 40px 0;
}

@media screen and (max-width: 768px) {
    .p_chat .sec6>.inner>.u_txt_1 {
        margin: 40px 0 20px;
        text-align: left;
    }
}

.p_chat .sec6 .img {
    max-width: 890px;
    width: 100%;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .p_chat .sec6 .img {
        width: 100%;
    }
}

.p_chat .sec6 .img img {
    max-width: 100%;
}

.p_chat .sec6 .btns {
    width: 380px;
    margin: 35px auto 0;
}

/* ======================================================================
  p_function
====================================================================== */
.p_function .update .inner {
    max-width: 1000px;
    width: 100%;
    margin: auto;
}

.p_function .inner .update_ttl {
    font-size: 2.6em;
    text-align: center;
    line-height: 1.4;
}

@media screen and (max-width: 768px) {
    .p_function .update .inner {
        width: 100%;
        padding: 1.5rem;
    }

    .p_function .inner .update_ttl {
        font-size: 1.6em;
        line-height: 2;
    }
}

.p_function .inner .update_ttl>span {
    position: relative;
}

.p_function .inner .update_ttl>span:before {
    position: absolute;
    content: url(/wp-content/themes/chatplus/assets/img/cp/ttl-ico1.svg);
    top: 0;
    left: -140px;
}

@media screen and (max-width: 768px) {
    .p_function .inner .update_ttl>span:before {
        content: url(/wp-content/themes/chatplus/assets/img/cp/sp/ttl-ico1.svg);
        top: initial;
        bottom: -10px;
        left: -112px;
    }
}

.p_function .inner .update_ttl>span:after {
    position: absolute;
    content: url(/wp-content/themes/chatplus/assets/img/cp/ttl-ico2.svg);
    top: 0;
    right: -90px;
}

@media screen and (max-width: 768px) {
    .p_function .inner .update_ttl>span:after {
        content: url(/wp-content/themes/chatplus/assets/img/cp/sp/ttl-ico2.svg);
        top: initial;
        bottom: -10px;
        right: -65px;
    }
}

.p_function .inner .update_img {
    margin: 30px 0;
}

.p_function .inner .update_img img {
    max-width: 100%;
}

.p_function .inner .update .u_txt_14 {
    color: #004A80;
    line-height: 2;
}

.p_function .inner .update .btnwrap {
    margin: 40px 0 0;
    display: flex;
    justify-content: center;
}

/* ======================================================================
  p_plan
====================================================================== */
.p_plan .inner .table {
    margin: 80px 0 0;
}

.p_plan .inner .table_col {
    display: flex;
    gap: 0 2px;
}

.p_plan .inner .table_col._fix {
    pointer-events: none;
    position: fixed;
    top: 190px;
    left: 50%;
    z-index: 1;
    display: flex;
    max-width: 1000px;
    width: 100%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all .2s linear;
}

.p_plan .inner .table_col._fix.show {
    opacity: 1;
}

.p_plan .inner .table_col.col2 {
    background: #F0FAFB;
}

.p_plan .inner .table_col.col3 {
    background: #fff;
}

.p_plan .inner .table_col.col4 {
    background: #F0FAFB;
}

.p_plan .inner .table_col.col5 {
    background: #F0FAFB;
}

.p_plan .inner .table_col.col6 {
    background: #F0FAFB;
}

.p_plan .inner .table_title {
    width: calc(100% / 6);
    padding: 30px 5px 20px;
    display: flex;
    justify-content: center;
}

.p_plan .inner .table_title .koseido {
    position: relative;
    display: inline-block;
    padding: 0 10px 0 0;
}

.p_plan .inner .table_title .koseido .kome {
    position: absolute;
    font-size: 10px;
    top: 0;
    right: 0;
}

.p_plan .inner .table_title .sub {
    margin: 10px 0 0;
    font-size: 12px;
    color: #fff;
    text-align: center;
}

.p_plan .inner .table_title:nth-child(1) {
    background: #56C3D6 0% 0% no-repeat padding-box;
}

.p_plan .inner .table_title:nth-child(2) {
    background: #04A0C3 0% 0% no-repeat padding-box;
}

.p_plan .inner .table_title:nth-child(3) {
    position: relative;
    background: rgba(0, 0, 0, 0) linear-gradient(180deg, #00d2ff 0%, #00a9e9 58%, #0082d3 100%) 0% 0% no-repeat padding-box;
}

.p_plan .inner .table_title:nth-child(4) {
    background: #1D7FC7 0% 0% no-repeat padding-box;
}

.p_plan .inner .table_title:nth-child(5) {
    background: #1D579A 0% 0% no-repeat padding-box;
}

.p_plan .inner .table_title:nth-child(6) {
    position: relative;
    background: var(--aa-gradient) 0% 0% no-repeat padding-box;
}

.p_plan .inner .table_title.nocolor {
    background: transparent;
}

.p_plan .inner .table_title .fukidashi {
    position: absolute;
    color: #F76600;
    line-height: 1.3;
    font-size: 17px;
    text-align: center;
    font-weight: bold;
    padding: 5px 15px;
    background: #FFEC41;
    border-radius: 5px;
    top: -49px;
    left: 50%;
    width: 140px;
    transform: translateX(-50%);
    box-shadow: 3px 4px 0px #00193626;
}

.p_plan .inner .table_title .fukidashi:before {
    content: "";
    position: absolute;
    bottom: -9px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    border-top: 10px solid #FFEC41;
    border-bottom: 0;
    z-index: 1;
}

.p_plan .inner .table_title .fukidashi:after {
    content: "";
    position: absolute;
    bottom: -14px;
    left: 52%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    border-top: 10px solid #00193626;
    border-bottom: 0;
    z-index: 0;
}

.p_plan .inner .table_title_inner {
    color: #fff;
    text-align: center;
}

.p_plan .inner .table_title .u_txt_3 {
    margin: 20px 0 0;
}

.p_plan .inner .table_charge {
    background: #fff;
    width: calc(100% / 6);
    padding: 30px 5px 20px;
    text-align: center;
}

.p_plan .inner .table_charge .u_txt_1:not(:first-of-type) {
    margin: 10px 0 0;
}

.p_plan .inner .table_charge .u_txt_12 {
    margin: -5px 0 0;
    color: #F76600;
}

.p_plan .inner .table_charge .u_txt_12 .num {
    font-weight: 600;
    font-weight: 700;
}

.p_plan .inner .table_charge .u_txt_12 span:not(:first-of-type) {
    font-size: 15px;
    font-weight: bold;
}

.p_plan .inner .table_account {
    width: calc(100% / 6);
    background: #E5F6FA;
    display: flex;
    justify-content: center;
    padding: 8px 0;
}

.p_plan .inner .table_site {
    width: calc(100% / 6);
    background: #E5F6FA;
    display: flex;
    justify-content: center;
    padding: 8px 5px;
    align-items: center;
    background: #fff;
}

.p_plan .inner .table_site_inner {
    padding: 20px 0;
}

.p_plan .inner .table_site_inner .u_txt_4 {
    padding: 0 0 0 1em;
    text-indent: -1em;
    line-height: 1.7;
}

.p_plan .inner .table_site_inner_wrap {
    display: inline-block;
    position: relative;
    transform: translateX(-5px);
}

.p_plan .inner .table_site_inner_wrap .u_txt_4 {
    font-size: 10px;
    position: absolute;
    top: 0;
    right: -15px;
}

.p_plan .inner .table_invoice {
    width: calc(100% / 6);
    background: #E5F6FA;
    display: flex;
    justify-content: center;
    padding: 8px 0;
}

.p_plan .inner .table_account.nocolor,
.p_plan .inner .table_invoice.nocolor {
    background: var(--c-white);
}

.p_plan .inner .table_invoice_inner {
    text-align: center;
}

.p_plan .inner .table_invoice_inner .u_txt_3.num {
    margin: 1px 0 0;
    font-size: 30px;
    line-height: 1;
}

.p_plan .inner .table_function {
    width: calc(100% / 6);
    background: #fff;
    padding: 8px;
}

.p_plan .inner .table_function_ttl {
    text-align: center;
}

.p_plan .inner .table_function_subttl {
    color: #56C3D6;
    text-align: center;
    padding: 0 0 30px;
    position: relative;
}

.p_plan .inner .table_function_subttl._minimum {
    color: #56C3D6;
}

.p_plan .inner .table_function_subttl._businesslight {
    color: #04A0C3;
}

.p_plan .inner .table_function_subttl._premium {
    color: #00CEFD;
}

.p_plan .inner .table_function_subttl._ailight {
    color: #1E7FC7;
}

.p_plan .inner .table_function_subttl:before {
    content: "+";
    color: #AECAD0;
    font-size: 30px;
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.p_plan .inner .table_function ul {
    margin: 5px 0 0;
}

.p_plan .inner .table_function ul li {
    margin: 5px 0;
    position: relative;
    padding: 0 0 0 10px;
}

.p_plan .inner .table_function ul li span {
    font-size: 10px;
    display: inline-block;
    transform: translateY(-5px);
}

.p_plan .inner .table_function ul li span.remove_ff {
    transform: translateY(0);
    font-size: 14px;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "游ゴシック", YuGothic, Verdana;
}

.p_plan .inner .table_function ul li:before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 0;
    background: #03C1EA;
}

.p_plan .inner .table_function>.right {
    text-align: right;
}

.p_plan .inner .table_function .desc {
    margin: 10px 0 0;
    font-size: 11px;
    text-indent: -1em;
    padding: 0 0 0 1em;
    color: rgba(0, 25, 54, 0.7);
    line-height: 1.5;
}

.p_plan .inner .table_function_inner {
    text-align: center;
}

.p_plan .inner .table_function_inner .u_txt_3.num {
    margin: 1px 0 0;
    font-size: 30px;
    line-height: 1;
}

.p_plan .inner .table_indent {
    font-size: 14px;
    line-height: 1.5;
    padding: 0 0 0 2.5em;
    text-indent: -2.5em;
}

.p_plan .inner .table_indent_box {
    margin: 30px 0 0;
}

.p_plan .inner .lead {
    margin: 40px 0 0;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .p_plan .inner .lead {
        margin: 30px 0 0;
        text-align: left;
    }
}

.p_plan .inner .option {
    margin: 85px 0 0;
}

@media screen and (max-width: 768px) {
    .p_plan .inner .option {
        margin: 60px 0 0;
    }
}

.p_plan .inner .option .c_ttl_1 {
    margin: 0 0 30px;
}

.p_plan .inner .option_row {
    display: flex;
    gap: 0 2px;
}

@media screen and (max-width: 768px) {
    .p_plan .inner .option_row {
        flex-wrap: wrap;
    }
}

.p_plan .inner .option_row:nth-child(even) .option_row_ttl,
.p_plan .inner .option_row:nth-child(even) .option_row_txt {
    background: #F0FAFB;
}

@media screen and (max-width: 768px) {

    .p_plan .inner .option_row:nth-child(even) .option_row_ttl,
    .p_plan .inner .option_row:nth-child(even) .option_row_txt {
        background: #fff;
    }
}

.p_plan .inner .option_row:nth-child(odd) {
    background: #F0FAFB;
}

.p_plan .inner .option_row:nth-child(odd) .option_row_ttl,
.p_plan .inner .option_row:nth-child(odd) .option_row_txt {
    background: #fff;
}

.p_plan .inner .option_row_ttl {
    text-align: center;
    width: 135px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .p_plan .inner .option_row_ttl {
        width: 100%;
        background: #F0FBFD !important;
        padding: 10px 0;
        font-weight: normal;
    }
}

.p_plan .inner .option_row_ttl span {
    font-size: 10px;
}

.p_plan .inner .option_row_txt {
    padding: 20px 75px;
    width: calc(100% - 120px);
}

@media screen and (max-width: 768px) {
    .p_plan .inner .option_row_txt {
        width: 100%;
        padding: 15px 0 25px;
    }
}

.p_plan .inner .option .u_txt_13+.u_txt_6 {
    margin: 10px 0 0;
}

.p_plan .inner .option>.u_txt_3 {
    margin: 5px 0 0;
    text-align: right;
}

@media screen and (max-width: 768px) {
    .p_plan .inner .option>.u_txt_3 {
        font-size: 12px;
        text-align: right;
        margin: -10px 0 0;
    }
}

.p_plan .inner .menu {
    margin: 100px 0 0;
}

@media screen and (max-width: 768px) {
    .p_plan .inner .menu {
        margin: 60px 0 0;
    }
}

.p_plan .inner .menu_flex {
    max-width: 850px;
    width: 100%;
    display: flex;
    gap: 0 40px;
    margin: 50px auto 0;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .p_plan .inner .menu_flex {
        flex-direction: column;
        gap: 2.5rem;
        width: 100%;
    }
}

.p_plan .inner .menu_flex_item {
    padding: 40px 20px;
    text-align: center;
    width: 405px;
    border-radius: 10px;
    background: #F0FBFD;
    position: relative;
    box-shadow: 4px 6px 0px #026C9B29;
}

@media screen and (max-width: 768px) {
    .p_plan .inner .menu_flex_item {
        width: 100%;
        transition: all .2s linear;
    }
}

.p_plan .inner .menu_flex_item .num {
    color: #03C1EA;
    position: absolute;
    font-size: 36px;
    top: -19px;
    left: 10px;
    font-weight: 700;
}

.p_plan .inner .menu_flex_item .u_txt_12 {
    text-align: center;
    position: relative;
    z-index: 1;
}

.p_plan .inner .menu_flex_item img {
    margin: -20px auto;
}

.p_plan .inner .menu_flex_item .u_txt_1 {
    text-align: center;
    margin: 0 0 15px;
}

.p_plan .inner .menu_flex_item .u_txt_1 span {
    color: #F76600;
}

.p_plan .inner .menu_flex_item .u_txt_3 {
    text-align: left;
}

.p_plan .inner .menu .c_ttl_5 {
    margin: 70px 0 0;
}

@media screen and (max-width: 768px) {
    .p_plan .inner .menu .c_ttl_5 {
        margin: 40px 0 0;
    }
}

.p_plan .inner .plan {
    margin: 40px 0 0;
}

.p_plan .inner .plan_item {
    background: #56C3D6;
    border-radius: 10px;
    padding: 15px;
    position: relative;
}

.p_plan .inner .plan_item .sub {
    margin: 10px 0 0;
    font-size: 12px;
    color: #fff;
    text-align: center;
}

.p_plan .inner .plan_item .kome {
    font-size: 10px;
    transform: translateY(-3px);
    display: inline-block;
}

.p_plan .inner .plan_item .fukidashi {
    white-space: nowrap;
    position: absolute;
    color: #F76600;
    line-height: 1.3;
    font-size: 17px;
    text-align: center;
    font-weight: bold;
    padding: 5px 15px;
    background: #FFEC41;
    border-radius: 5px;
    top: -42px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 3px 4px 0px #00193626;
}

@media screen and (max-width: 768px) {
    .p_plan .inner .plan_item .fukidashi {
        top: -25px;
    }
}

.p_plan .inner .plan_item .fukidashi:before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    border-top: 10px solid #FFEC41;
    border-bottom: 0;
    z-index: 2;
}

.p_plan .inner .plan_item .fukidashi:after {
    content: "";
    position: absolute;
    bottom: -14px;
    left: 51%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    border-top: 10px solid #00193626;
    border-bottom: 0;
    z-index: 1;
}

.p_plan .inner .plan_item._business {
    background: #01A0C3;
}

.p_plan .inner .plan_item._business .planname {
    color: #01A0C3;
}

.p_plan .inner .plan_item._business .show {
    background: #01A0C3;
}

.p_plan .inner .plan_item._premium {
    margin: 60px 0 0 !important;
    background: rgba(0, 0, 0, 0) linear-gradient(180deg, #00d2ff 0%, #0082d3 100%) 0% 0% no-repeat padding-box;
}

.p_plan .inner .plan_item._premium .planname {
    color: #00D2FF;
}

.p_plan .inner .plan_item._premium .show {
    background: #00D2FF;
}

.p_plan .inner .plan_item._ailight {
    background: #1E7FC7 0% 0% no-repeat padding-box;
}

.p_plan .inner .plan_item._ailight .planname {
    color: #1E7FC7;
}

.p_plan .inner .plan_item._ailight .show {
    background: #1E7FC7;
}

.p_plan .inner .plan_item._autoai {
    background: #1D579A 0% 0% no-repeat padding-box;
}

.p_plan .inner .plan_item._autoai .planname {
    color: #1D579A;
}

.p_plan .inner .plan_item._autoai .show {
    background: #1D579A;
}

.p_plan .inner .plan_item._autoai {
    background: #1D579A 0% 0% no-repeat padding-box;
}

.p_plan .inner .plan_item._autoai .planname {
    color: #1D579A;
}

.p_plan .inner .plan_item._aichatbot {
    margin: 60px 0 0 !important;
    background: #053772 0% 0% no-repeat padding-box;
}

.p_plan .inner .plan_item._aichatbot .planname {
    color: #053772;
}

.p_plan .inner .plan_item._aichatbot .show {
    background: #053772;
}

.p_plan .inner .plan_item:not(:first-of-type) {
    margin: 30px 0 0;
}

.p_plan .inner .plan_item:not(:first-of-type) .plan_item_desc_function {
    margin: -20px 0 0;
}

.p_plan .inner .plan_item>.u_txt_12 {
    text-align: center;
    color: #fff;
    font-weight: bold;
}

.p_plan .inner .plan_item>.u_txt_6 {
    text-align: center;
    color: #fff;
    font-weight: bold;
}

.p_plan .inner .plan_item_desc {
    background: #fff;
    border-radius: 10px;
    margin: 10px 0 0;
    padding: 20px;
    height: 430px;
    overflow: hidden;
    position: relative;
    transition: all .2s linear;
}

.p_plan .inner .plan_item_desc>.u_txt_1 {
    text-align: center;
}

.p_plan .inner .plan_item_desc>.u_txt_1:not(:first-of-type) {
    margin: -10px 0 0;
}

.p_plan .inner .plan_item_desc>.u_txt_1 .orange {
    color: #F76600;
    font-weight: 600;
    display: inline-block;
    margin: 0 0 0 5px;
}

.p_plan .inner .plan_item_desc>.u_txt_1 .num {
    font-size: 30px;
    font-weight: 600;
}

.p_plan .inner .plan_item_desc_flex {
    margin: 10px 0;
    display: flex;
}

.p_plan .inner .plan_item_desc_flex>.u_txt_6 {
    width: 120px;
}

.p_plan .inner .plan_item_desc_flex>.u_txt_1 {
    font-weight: bold;
}

.p_plan .inner .plan_item_desc_flex>.u_txt_1 .num {
    display: inline-block;
    transform: translateY(-1px);
}

.p_plan .inner .plan_item_desc_flex>.u_txt_3.num.u_bold {
    font-size: 30px;
    transform: translateY(-15px);
}

.p_plan .inner .plan_item_desc_flex>.u_txt_4 {
    font-size: 12px;
    line-height: 1.5;
    color: rgba(0, 25, 54, 0.7);
    text-indent: -1em;
    padding: 0 0 0 1em;
    margin: 5px 0;
}

.p_plan .inner .plan_item_desc_function>.u_txt_6 {
    text-align: center;
}

.p_plan .inner .plan_item_desc_function>.u_txt_3 {
    margin: 10px 0 0;
    text-align: center;
    padding: 0 0 30px;
    position: relative;
}

.p_plan .inner .plan_item_desc_function>.u_txt_3:before {
    content: "+";
    color: #AECAD0;
    font-size: 30px;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.p_plan .inner .plan_item_desc_function>.u_txt_3.right {
    padding: 0;
    text-align: right;
}

.p_plan .inner .plan_item_desc_function>.u_txt_3.right:before {
    display: none;
    padding: 0;
}

.p_plan .inner .plan_item_desc_function ul {
    margin: 10px 0;
}

.p_plan .inner .plan_item_desc_function ul li {
    position: relative;
    padding: 0 0 0 15px;
}

.p_plan .inner .plan_item_desc_function ul li:before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 0;
    background: #03C1EA;
}

.p_plan .inner .plan_item_desc_function ul li+li {
    margin: 5px 0 0;
}

.p_plan .inner .plan_item_desc_function ul li .remove_ff {
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "游ゴシック", YuGothic, Verdana;
}

.p_plan .inner .plan_item_desc_function .last {
    margin: 15px 0 0;
    font-size: 11px;
    color: rgba(0, 25, 54, 0.7);
}

.p_plan .inner .plan_item_desc .gradiation {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(0, 0, 0, 0) linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #ffffff 50%, #ffffff 100%) 0% 0% no-repeat padding-box;
}

.p_plan .inner .plan_item_desc .show {
    position: absolute;
    width: 185px;
    height: 35px;
    background: #56C3D6;
    border-radius: 999px;
    display: flex;
    justify-content: center;
    z-index: 1;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    align-items: center;
}

.p_plan .inner .plan_item_desc .show:before {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    transform-origin: center center;
    top: 10px;
    right: 15px;
    position: absolute;
}

.p_plan .inner .plan .function_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.p_plan .inner .plan .function_wrap .function_btn {
    padding: 5px 40px;
    position: relative;
    color: #fff;
    background: #56C3D6;
    border-radius: 999px;
    font-size: 16px;
    font-weight: bold;
}

.p_plan .inner .plan .function_wrap .function_btn:before {
    content: "";
    width: 7px;
    height: 7px;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(-45deg);
    transform-origin: center center;
    position: absolute;
    top: 10px;
    right: 15px;
}

.p_plan .inner .plan .function_wrap .function_btn.open:before {
    top: 14px;
    transform: rotate(-225deg);
}

.p_plan .inner .plan .function_wrap .function_btn._business {
    background: #01A0C3;
}

.p_plan .inner .plan .function_wrap .function_btn._premium {
    background: #00D2FF;
}

.p_plan .inner .plan .function_wrap .function_btn._ailight {
    background: #1E7FC7;
}

.p_plan .inner .plan .function_wrap .function_btn._autoai {
    background: #1D579A;
}

.p_plan .inner .plan .function_wrap .function_btn._autoai {
    background: #1D579A;
}

.p_plan .inner .plan .function_wrap .function_btn._aichatbot {
    background: #053772;
}

.p_plan .inner .btnwrap {
    display: flex;
    justify-content: center;
    margin: 40px 0 0;
}

@media screen and (max-width: 768px) {
    .p_plan .inner .btnwrap {
        margin: 30px 0 0;
    }
}

@media screen and (max-width: 768px) {
    .p_plan .inner .btnwrap .c_btn_2 span {
        transform: translateX(-15px);
    }
}

/* 2025_12_add */

/* .l_user_voice {
    background: #F0FBFD;
} */

.l_user_voice_inner {
    display: grid;
    grid-template-areas:
        "lead voice"
        "link voice";
    grid-template-rows: 100px auto;
    gap: 2.5rem;
    justify-content: space-between;
    max-width: 1148px;
    width: 100%;
    margin: 0 auto 7.5rem;
    padding: 8em 2.4em;
}

.l_user_voice_lead {
    grid-area: lead;
    font-size: clamp(1.375rem, 1.169rem + 0.8451vw, 1.75rem);
    font-weight: 600;
    line-height: 1.5;
}

.l_user_voice_inner .btns {
    grid-area: link;
}

.l_user_voice_list_wrapper {
    grid-area: voice;
    max-width: 600px;
}

.l_user_voice_list {
    font-size: 1.8em;
}

.l_user_voice_list li {
    margin-bottom: 2.5rem;
    position: relative;
    padding-left: 2rem;
}

.l_user_voice_list li::before {
    content: "";
    background: url(/wp-content/themes/chatplus/assets/img/common/voice.svg);
    width: 28px;
    height: 22px;
    position: absolute;
    top: -.25rem;
    left: 0;
    background-size: contain;
    vertical-align: middle;
}

@media screen and (max-width: 768px) {
    .l_user_voice_inner {
        grid-template-areas:
            "lead"
            "voice"
            "link";
        grid-template-rows: auto;
        justify-content: center;
    }

    .l_user_voice_lead {
        margin-bottom: 0;
    }

    .l_user_voice_inner .btns {
        display: flex;
        justify-content: center;
    }

    .l_user_voice_inner .btns a {
        width: 320px;
    }

    .l_user_voice_list_wrapper {
        max-width: 100%;
    }

    .l_user_voice_list {
        font-size: 1.6em;
    }

    .l_user_voice_list li::before {
        width: 24px;
        height: 19px;
    }
}

.benefit {
    background: linear-gradient(to bottom, #ffffff 6%, #F0FBFD 6%);
    padding-bottom: 10rem;
}

.benefit .inner .u_txt_1 {
    margin: 2.5rem 0;
    text-align: center;
    padding: 0 1.5rem;
}

.l_benefit_list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    flex-wrap: wrap;
    max-width: 1148px;
    width: 100%;
    margin: 0 auto 5rem;
    padding: 0 2.4em;
}

.l_benefit_list li {
    position: relative;
    background: var(--c-white);
    border: 3px solid #DDF5FC;
    box-shadow: 8px 8px 0px 0px #DDF5FC;
    border-radius: 10px;
    padding: 2rem 1rem 1.5rem;
}

.l_benefit_list_no {
    position: absolute;
    top: -1rem;
    left: .25rem;
    color: var(--cp-blue);
    font-size: 2.25rem;
    font-weight: 800;
}

.l_benefit_list li h3 {
    font-size: clamp(1.25rem, 1.1127rem + 0.5634vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.l_benefit_list li p {
    font-size: 1rem;
    line-height: 2;
}

.l_benefit_list li p span {
    color: #F76600;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .benefit {
        background: linear-gradient(to bottom, #ffffff 2%, #F0FBFD 2%);
    }

    .benefit .inner .u_txt_1 {
        text-align: left;
    }

    .l_benefit_list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.aa_link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--c-white);
    position: relative;
}

.aa_link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left: 8px solid var(--c-white);
}

.p_plan .inner .plan_item._aiagent {
    margin: 60px 0 0 !important;
    background: var(--aa-gradient) 0% 0% no-repeat padding-box;
    text-align: center;
}