@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/pdf-ico.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;
    }
}

/* common */
.p_corporate.top .l_header .header_menu .u_txt_1 {
    color: #001936;
}

/* top page */
.p_corporate .l_main_visual_box {
    width: 100%;
    height: 810px;
    background: url(/wp-content/themes/chatplus/assets/img/corporate/kv.jpg);
    background-position: center center;
    position: absolute;
    top: 75px;
    left: 0;
    background-size: cover;
}

.p_corporate .l_main_visual_box_txt {
    padding-top: 240px;
    text-align: center;
    color: #001936;
    text-shadow: 2px 2px 1px rgba(255, 255, 255, 0.6);
}

.p_corporate .l_main_visual_box_txt-sub,
.p_corporate .l_main_visual_box_txt-main {
    max-width: 890px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1.875rem, 1.3257rem + 2.2535vw, 2.875rem);
    line-height: 1.2;
}

.p_corporate .l_main_visual_box_txt-main span {
    font-size: 130%;
}

.p_corporate .l_main>.inner {
    padding: 740px 0 120px;
}

.p_corporate .l-mission-wrapper {
    position: relative;
    max-width: 1200px;
    width: 100%;
    margin: auto;
    padding-top: 100px;
    backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 30px 30px 0 0;
}

.p_corporate .l-mission-content {
    max-width: 1000px;
    width: 100%;
    gap: 60px;
    margin: 60px auto 120px;
}

.p_corporate .l-mission-lead {
    width: 360px;
    font-size: 3em;
    line-height: 1.7;
    font-weight: 600;
}

.p_corporate .l-mission-text {
    width: calc(100% - 360px);
    font-size: 1.6em;
    line-height: 1.7;
}

.p_corporate .l-mission-text p {
    margin-bottom: 20px;
}

.p_corporate .co-service {
    margin-bottom: 120px;
}

.p_corporate .l-service-content {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    gap: 1rem;
    padding-top: 60px;
    padding-bottom: 120px;
}

.p_corporate .l-service-item {
    width: calc(100% / 3 - 1rem);
    position: relative;
    background-color: #fff;
    box-shadow: 8px 8px 0px 0px #03C1EAFD;
    border-radius: 30px;
    padding: 32px 24px;
    text-align: center;
}

.p_corporate .l-service-item .c_ttl_2 {
    position: absolute;
    top: -25px;
    left: 40px;
}

.p_corporate .l-service-item .c_ttl_2 .en {
    font-size: 1.25em;
    font-weight: 400;
}

.p_corporate .l-service-item .c_ttl_2 .num {
    font-size: 1.875em;
    font-weight: 600;
    transform: translateY(-3px);
}

.l-service-item_logo {
    width: 254px;
    max-height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.p_corporate .l-service-item .l-service-item_logo img {
    height: 38px;
    width: auto;
    max-width: 254px;
    object-fit: contain;
}

.l-service-item_lead {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.p_corporate .l-service-item p {
    font-size: 1.6em;
    line-height: 1.7;
    margin-bottom: 40px;
}

.p_corporate .l-service-item .btnwrap {
    display: flex;
    justify-content: center;
}

.p_corporate .l-about-wrapper,
.p_corporate .l-recruit-wrapper {
    margin-bottom: 120px;
}

.p_corporate .l-about-content {
    gap: 40px;
    justify-content: left;
    align-items: center;
}

.p_corporate .l-recruit-content {
    gap: 40px;
    justify-content: right;
    align-items: center;
}

.p_corporate .l-about-img,
.p_corporate .l-recruit-img {
    width: 50%;
}

.p_corporate .l-recruit-img {
    width: 50%;
}

.p_corporate .l-about-img img {
    width: 100%;
    border-radius: 0 30px 30px 0;
    box-shadow: 0px 8px 0 0 #DFF3FD,
        8px 8px 0 0 #DFF3FD;
}

.p_corporate .l-recruit-img img {
    width: 100%;
    border-radius: 30px 0 0 30px;
    box-shadow: 0px 8px 0 0 #DFF3FD,
        -8px 8px 0 0 #DFF3FD;
}

.p_corporate .l-about-wrapper .l-about-text,
.p_corporate .l-recruit-wrapper .l-recruit-text {
    max-width: 440px;
    width: 100%;
}

.p_corporate .l-about-text .c_ttl_1,
.p_corporate .l-recruit-text .c_ttl_1 {
    text-align: left;
    margin-bottom: 40px;
}

.p_corporate .l-about-text p,
.p_corporate .l-recruit-text p {
    font-size: 1.6em;
    line-height: 1.7;
    margin-bottom: 30px;
}

.p_corporate .l-recruit-text h3 {
    color: #03C1EA;
    font-size: 3em;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 10px;
}

.p_corporate .ir {
    margin: 120px 0 0;
}

.p_corporate .ir .inner {
    max-width: 805px;
    width: 100%;
    margin: 0 auto;
}

.p_corporate .ir .posts {
    margin: 30px 0 0;
}

.p_corporate .ir .btnwrap {
    margin: 35px 0 0;
    display: flex;
    justify-content: center;
}

/* a[href $='.pdf'] {
    background: url(/wp-content/themes/chatplus/assets/img/corporate/pdf_icon.svg) no-repeat center right;
    margin: 0;
    padding: 2px 32px 2px 0;
} */


@media screen and (max-width: 768px) {
    .p_corporate .l_main_visual_box {
        height: 100vh;
        top: 0;
        background-position: center center;
        background-size: cover;
    }

    .p_corporate .l_main_visual_box_txt {
        padding-top: 52%;
    }

    .p_corporate .l_main_visual_box_txt h2 {
        padding: 0 16px;
    }

    .p_corporate .l_main>.inner {
        padding-top: calc(100vh - 65px);
    }

    .p_corporate .l-mission-content.l-flex {
        padding: 0 20px;
        flex-direction: column;
    }

    .p_corporate .l-mission-lead {
        width: 100%;
    }

    .p_corporate .l-mission-text {
        width: 100%
    }

    .p_corporate .l-service-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .p_corporate .l-service-content.l-flex {
        flex-direction: column;
        gap: 3rem;
    }

    .p_corporate .l-service-item {
        width: 100%;
    }

    .l-service-item_logo {
        width: auto;
    }

    .p_corporate .l-about-content.l-flex {
        flex-direction: column;
    }

    .p_corporate .l-recruit-content.l-flex {
        flex-direction: column-reverse;
    }

    .p_corporate .l-about-img {
        width: calc(100% - 20px);
        margin-right: 20px;
    }

    .p_corporate .l-recruit-img {
        width: calc(100% - 20px);
        margin-left: 20px;
    }

    .p_corporate .l-about-text,
    .p_corporate .l-recruit-text {
        padding: 0 20px;
    }

    .p_corporate .l-about-text .c_btn_2._300,
    .p_corporate .l-recruit-text .c_btn_2._300 {
        margin: auto;
    }

    .p_corporate .ir .posts {
        padding: 0 20px;
    }
}

/* about us page */
.l-company-outline,
.l-company-map {
    margin-bottom: 120px;
}

.l-company-map {
    max-width: 1000px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 80px;
}

.l-company-outline dl,
.l-company-scta dl {
    display: flex;
    flex-wrap: wrap;
    font-size: 1.4em;
    line-height: 1.7;
}

.l-company-outline dl dt,
.l-company-scta dl dt {
    width: 20%;
    color: #4D5E72;
    padding: 25px 0;
    border-bottom: 2px solid #EAF8FB;
}

.l-company-outline dl dd,
.l-company-scta dl dd {
    width: 80%;
    padding: 25px 0;
    border-bottom: 2px solid #EAF8FB;
}

.l-company-outline dl dd a,
.l-company-scta dl dd a {
    padding-left: 10px;
    color: #001936;
    text-decoration: underline;
}

.l-company-outline dl dd a.map_link {
    color: #03C1EA;
}

.c-access-text {
    text-align: center;
    font-size: 1.6em;
    line-height: 1.7;
    margin: 40px 0;
}

.l-map {
    width: 100%;
    height: 480px;
}

.l-map iframe {
    width: 100%;
    height: 100%;
}

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

    .l-company-outline dl,
    .l-company-scta dl {
        flex-direction: column;
    }

    .l-company-outline dl dt,
    .l-company-scta dl dt {
        width: 100%;
        border-bottom: none;
        padding-bottom: 0;
    }

    .l-company-outline dl dd,
    .l-company-scta dl dd {
        width: 100%;
        padding-top: 10px;
    }

    .l-company-outline dl dd a,
    .l-company-scta dl dd a {
        padding-left: 0;
    }
}

/* recruit page */
.p_recruit .c-recruit-lead {
    color: #03C1EA;
    font-size: clamp(2.8rem, 2.1865rem + 2.5169vw, 4.2rem);
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: .05em;
    margin: 80px 0 160px;
}

.p_recruit .c-recruit-lead span {
    font-size: 85%;
}

.p_recruit .l-recruit-message {
    margin-bottom: 120px;
}

.p_recruit .l-recruit-message h2 {
    color: #03C1EA;
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 20px;
}

.p_recruit .l-recruit-message .l-flex {
    gap: 60px;
}

.p_recruit .l-recruit-message-lead {
    width: 260px;
}

.p_recruit .l-recruit-message-lead h3 {
    font-size: 3.2em;
    font-weight: 600;
    line-height: 1.7;
}

.p_recruit .l-recruit-message-content {
    width: calc(100% - 260px);
    font-size: 1.6em;
    line-height: 2;
}

.p_recruit .l-recruit-message-content p {
    margin-bottom: 30px;
}

.p_recruit .l-recruit-photo {
    position: relative;
    left: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-bottom: 120px;
}

.p_recruit .l-redruit-photo-list {
    width: 100%;
    gap: 20px;
    padding: 0 20px;
}

.p_recruit .l-redruit-photo-list img {
    width: calc(21.5% - 20px);
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.p_recruit .l-redruit-photo-list img.large {
    width: 35.5%;
}

.p_recruit .l-recruit-data {
    max-width: 1000px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 80px;
    margin-bottom: 120px;
}

.p_recruit .l-recruit-data-list {
    gap: 40px;
}

.p_recruit .l-recruit-data-content h3 {
    font-size: 2.4em;
    line-height: 1.7;
    font-weight: 600;
    text-align: center;
    margin-top: 80px;
    margin-bottom: 60px;
    position: relative;
}

.p_recruit .l-recruit-data-content h3:before {
    content: "";
    width: 10px;
    height: 3px;
    position: absolute;
    bottom: -20px;
    left: calc(50% - 10px);
    background: #03C1EA;
    transform: translateY(-50%);
}

.p_recruit .l-recruit-data-content h3:after {
    content: "";
    width: 10px;
    height: 3px;
    position: absolute;
    bottom: -20px;
    left: 50%;
    background: #004A80;
    transform: translateY(-50%);
}

.p_recruit .l-recruit-data-item {
    width: 33.333%;
    background-color: #fff;
    border-radius: 20px;
    padding: 30px 16px 16px;
    text-align: center;
}

.p_recruit .l-recruit-data-item h4 {
    font-size: 1.6em;
    font-weight: 600;
    margin-bottom: 20px;
}

.p_recruit .l-recruit-data-item img {
    max-width: 240px;
    width: 100%;
}

.p_recruit .l-recruit-data-num {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 2px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #416294;
    font-weight: 600;
    font-size: 1.8em;
}

.p_recruit .l-recruit-data-num span {
    font-size: 2.325em;
}

.p_recruit .cb-no1::before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 57px;
    background-image: url('/wp-content/themes/chatplus/assets/img/corporate/leaf_left.svg');
    background-position: center;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 52px;
}

.p_recruit .cb-no1::after {
    content: "";
    display: inline-block;
    width: 22px;
    height: 57px;
    background-image: url('/wp-content/themes/chatplus/assets/img/corporate/leaf_right.svg');
    background-position: center;
    background-size: contain;
    position: absolute;
    top: 0;
    right: 52px;
}

.p_recruit .cb-sub {
    font-size: 62%;
    position: absolute;
    top: 10px;
    left: 82px
}

.p_recruit .cb-main {
    letter-spacing: .1em;
}

.p_recruit .male-to-female {
    display: flex;
    width: calc(100% - 50px);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 2px;
    justify-content: space-between;
    font-size: 1.8rem;
    font-weight: 600;
}

.p_recruit .male-to-female span {
    font-size: 2.325em;
}

.p_recruit .male-to-female .male {
    color: #416294;
}

.p_recruit .male-to-female .female {
    color: #03C1EA;
}

.p_recruit .l-rectuit-data-day {
    font-size: 1em;
    text-align: right;
}

.p_recruit .l-recruit-benefits {
    margin-bottom: 120px;
}

.p_recruit .c-rectuit-b-list {
    gap: 40px;
    margin-top: 40px;
}

.p_recruit .c-rectuit-b-list-item {
    width: 33.333%;
    padding: 30px;
    background-color: #FFF;
    border: 2px solid #DFF3FD;
    border-radius: 20px;
    box-shadow: 4px 4px 0px 0px #DFF3FD;
}

.p_recruit .c-rectuit-b-list-item h3 {
    font-size: 1.8em;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

.p_recruit .c-rectuit-b-list-item h3::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url('/wp-content/themes/chatplus/assets/img/corporate/plus.svg');
    background-position: center;
    background-size: contain;
    position: relative;
    top: -8px;
}

.c-rectuit-b-list-item li {
    line-height: 1.7;
    margin-bottom: 10px;
}

.p_recruit .c-rectuit-b-list-item dt {
    font-size: 1.6em;
    font-weight: 600;
}

.p_recruit .c-rectuit-b-list-item dt::before {
    display: inline-block;
    content: "";
    margin-top: 10px;
    margin-right: 4px;
    width: 8px;
    height: 8px;
    vertical-align: top;
    border-radius: 4px;
    background-color: #03C1EA;
}

.p_recruit .c-rectuit-b-list-item dd {
    font-size: 1.6em;
    margin-left: 12px;
}

@media screen and (max-width: 768px) {
    .p_recruit .l-recruit-message .l-flex {
        flex-direction: column;
    }

    .p_recruit .l-recruit-message-lead {
        width: 100%;
    }

    .p_recruit .l-recruit-message-content {
        width: 100%
    }

    .p_recruit .l-redruit-photo-list {
        gap: 10px;
        padding: 0 10px;
    }

    .p_recruit .l-redruit-photo-list img {
        width: calc(21.5% - 10px);
    }

    .p_recruit .l-recruit-data-content .l-flex {
        flex-direction: column;
        padding: 0 60px;
    }

    .p_recruit .l-recruit-data-item {
        width: 100%;
    }

    .p_recruit .l-recruit-benefits .l-flex {
        flex-direction: column;
        padding: 0 20px;
    }

    .p_recruit .c-rectuit-b-list-item {
        width: 100%;
    }
}

/* IR Pressrelease page */
.p_ir .l_main>.inner,
.p_press .l_main>.inner {
    display: flex;
    justify-content: space-between;
    gap: 0 85px;
}

.p_ir .posts,
.c_post_ir .c_post_list,
.p_press .posts,
.c_post_press .c_post_list {
    width: 100%;
}

.c_post_ir .c_post_link,
.c_post_press .c_post {
    border: none;
    border-bottom: 2px solid #eaf8fb;
    display: block;
    box-shadow: none;
    position: relative;
    border-radius: 0;
}

.c_post_ir .c_post_box.txtbox {
    display: flex;
    column-gap: 20px;
    align-items: center;
    padding: 10px 0;
}

.c_post_press .c_post_box.txtbox {
    display: flex;
    gap: 20px;
    padding: 20px 0;
}

.c_post_ir .c_post_date,
.c_post_press .c_post_date {
    width: auto;
    font-weight: 600;
    display: block;
    color: #001936;
    margin: 0;
    text-align: left;
    font-weight: bold;
    align-items: center;
    white-space: nowrap;
}

.c_post_ir .c_post_box.txtbox .u_txt_13 {
    color: #001936;
    font-weight: 600;
    display: block;
    margin: 10px 0;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.c_post_ir .c_post_box.txtbox .u_txt_13 i {
    vertical-align: -4px;
}

.c_post_press .c_post_box.txtbox .txt {
    font-size: 1.6em;
    line-height: 1.7;
    color: #001936;
    display: block;
}

.c_post_ir .c_post_link:before {
    content: "";
    width: 0;
    height: 1px;
    background: #03C1EA;
    position: absolute;
    bottom: 0;
    left: -1px;
    transition: width .3s ease;
}

.c_post_ir .c_post_link:hover:before {
    width: 100%;
}

.p_ir .sidebar_ttl,
.p_press .sidebar_ttl {
    font-size: 2.4em;
    line-height: 1.5;
    font-weight: 600;
    position: relative;
    padding: 0 0 0 15px;
    white-space: nowrap;
}

.p_ir .sidebar_ttl:before,
.p_press .sidebar_ttl:before {
    width: 3px;
    height: 10px;
    background: #03C1EA;
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
}

.p_ir .sidebar_ttl:after,
.p_press .sidebar_ttl:after {
    width: 3px;
    height: 10px;
    background: #004A80;
    content: "";
    position: absolute;
    top: 19px;
    left: 0;
}

.p_ir .sidebar>ul,
.p_press .sidebar>ul {
    padding: 0 0 0 15px;
}

.p_ir .sidebar>ul li,
.p_press .sidebar>ul li {
    margin: 10px 0 0;
}

.p_ir .sidebar>ul li a,
.p_press .sidebar>ul li a {
    display: inline-block;
    padding: 0 0 0 10px;
    font-size: 16px;
    line-height: 1.5;
    color: #001936;
    position: relative;
    white-space: nowrap;
}

.p_ir .sidebar>ul li a:before,
.p_press .sidebar>ul li a:before {
    content: "";
    width: 8px;
    height: 2px;
    background: #001936;
    position: absolute;
    top: 12px;
    left: 0;
}

/* pp tos isp page */
.l-isp-content,
.l-tos-content,
.l-pp-content {
    font-size: 1.4em;
    line-height: 1.8;
}

.l-isp-content h2,
.l-tos-content h2,
.l-pp-content h2 {
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
}

.l-core-list .l-core-item {
    margin-bottom: 30px;
}

.l-core-list .l-core-item h3 {
    margin-bottom: 5px;
}

.l-core-list .l-core-item ul {
    margin-bottom: 15px;
}

.l-core-list .l-core-item ul li {
    margin-bottom: 5px;
    text-indent: -1em;
    padding-left: 1em;
}

.l-core-list .l-core-item ul li h4 {
    font-weight: 400;
}

.c-list-style {
    margin-bottom: 5px;
    text-indent: -1em;
    padding-left: 1em;
}

.c-signature {
    margin-top: 20px;
    text-align: right;
}

.l-flex-information {
    display: flex;
    flex-wrap: wrap;
}

.l-flex-information dt {
    width: 20%;
}

.l-flex-information dd {
    width: 80%;
}

/* commom css */
.bg_blue {
    position: relative;
    left: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: linear-gradient(rgba(0, 0, 0, 0) 55px, #f0fbfd 55px, #f0fbfd 100%);
}

.l-flex {
    display: flex;
}

.p_relative {
    position: relative;
}

.c-mb-5 {
    margin-bottom: 5px;
}

.c-mb-20 {
    margin-bottom: 20px;
}

.c-mb-30 {
    margin-bottom: 30px;
}

.c-mb-40 {
    margin-bottom: 40px;
}

.pc-only {
    display: block;
}

.sp-only {
    display: none;
}

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

    .sp-only {
        display: block;
    }
}