/* ------------------------------------------------------
content
------------------------------------------------------ */
.pages #header {
    background: transparent;
}

.pages #header::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(45, 78, 145, 1) 0%, rgba(0, 78, 41, 0.7) 100%);
    top: 0;
    left: 0;
    z-index: -1;
    transform: translateY(-100%);
    transition: all .5s cubic-bezier(.15, 0, .25, 1);
}

.pages #header.is-show::before {
    transform: translateY(0);
}

.pages #header .gnavi li a {
    color: var(--white-color);
}

.pages #header .h_contact a {
    background: var(--white-color);
}

.pages #header .h_contact a span {
    background: linear-gradient(to right, rgba(56, 92, 176, 1) 0%, rgba(0, 78, 41, 0.5) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
    transition: all .3s ease;
}

.pages #main {
    padding-top: 0;
}

.pages #content .section:not(:last-child) {
    padding: 0 0px 55px 0;
}

.pages #content .section .section {
    padding-top: 30px;
}

.pages #content .section p:last-child {
    margin-bottom: 0;
}

.pages .contents_detail {
    letter-spacing: 0.05em;
}

.pages .contents_detail p {
    line-height: 2;
}

.pages .contents_detail p:not(:last-child) {
    margin-bottom: 42px;
}

/*.pages .contents_detail a {
    text-decoration: underline;
}*/

.pages .contents_detail .hasimg {
    line-height: 0;
}

.pages .contents_detail ul li,
.pages .contents_detail ol li {
    list-style: inherit;
    margin-left: 15px;
}

.pages .contents_detail .wp-block-image {
    margin-bottom: 47px;
}

/* ------------------------------------------------------
h3 h4 h5 h6
------------------------------------------------------ */
.pages h3,
.pages h4,
.pages h5,
.pages h6 {
    letter-spacing: 0.15em;
}

.pages h3.under_mainttl {
    font-size: 24px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 40px;
}

.pages h3.under_mainttl span.en {
    display: block;
    font-size: 100px;
    letter-spacing: 0.1em;
    line-height: 1.2;
    color: var(--blue-color);
    margin-bottom: 2px;
}

/* ------------------------------------------------------
p_mainvisual
------------------------------------------------------ */
.pages #p_mainvisual {
    width: 100%;
    height: 350px;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(to right, rgba(56, 92, 176, 1) 0%, rgba(0, 78, 41, 0.5) 100%);
    padding-bottom: 78px;
    position: relative;
}

.pages #p_mainvisual::before {
    position: absolute;
    content: '';
    background-image: url(../images/common/under_mv_bg.png);
    background-repeat: repeat;
    background-position: right;
    width: 52.5%;
    height: 100%;
    opacity: 0.7;
    top: 0;
    left: 0;
}

.pages #p_mainvisual .p_mv_component {
    width: 94%;
    max-width: 1200px;
    margin: 0 auto;
}

.pages #p_mainvisual .p_mv_component h2 {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--white-color);
}

.pages #p_mainvisual .p_mv_component h2 span.en {
    display: block;
    font-size: 64px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.5;
    margin-bottom: 2px;
}

.pages #p_mainvisual .p_mv_cover {
    width: 50%;
    height: 100%;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
    position: absolute;
    bottom: -50%;
    right: 0;
    overflow: hidden;
}

.pages #p_mainvisual .p_mv_cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ------------------------------------------------------
topic_path
------------------------------------------------------ */
.pages #topic_path {
    padding: 23px 0 216px;
}

.pages #topic_path .inner {
    max-width: 1200px;
}

.pages #topic_path ul {
    width: 48%;
}

.pages #topic_path li {
    display: inline-block;
    font-family: var(--en-font);
    font-weight: 400;
    color: #3e3a39;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.1em;
    color: var(--blue-color);
    position: relative;
}

.pages #topic_path li:not(:last-child)::after {
    display: inline-block;
    content: '';
    background-image: url(../images/common/topic_path.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 7px;
    height: 6px;
    margin: 0 3px 0 6px;
    position: relative;
    top: -2px;
}

.pages #topic_path li a {
    letter-spacing: 0.1em;
    color: var(--blue-color);
    position: relative;
}

.pages #topic_path li a::before {
    position: absolute;
    content: '';
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: currentColor;
    transform-origin: bottom right;
    transition: transform .4s cubic-bezier(.86, 0, .07, 1);
}

/* ------------------------------------------------------
table
------------------------------------------------------ */
.pages table {
    margin-bottom: 35px;
}

.pages table th,
.pages table td {
    line-height: 2.125;
    letter-spacing: 0.15em;
    border-bottom: 1px solid #dddddd;
    padding: 15px 15px 15px;
}

.pages table th {
    font-weight: 400;
    color: var(--blue-color);
    text-align: left;
    vertical-align: top;
    border-bottom-color: var(--blue-color);
}

.pages table.td_top td {
    vertical-align: top;
}

.pages table.td_center td {
    text-align: center;
}

.pages table.tb_fix {
    table-layout: fixed;
}

.pages #content table:last-child {
    margin-bottom: 0;
}

.pages table td a {
    text-decoration: underline;
}

.pages table td ol li,
.pages table td ul li {
    list-style: inherit;
    margin-left: 15px;
}

.pages table.tb_block th {
    width: 20%;
}

/*-----txt_note-----*/
.pages .txt_note {
    display: none;
}

.pages .txt_bold {
    font-weight: 700;
}

/* ------------------------------------------------------
under list
------------------------------------------------------ */
.pages .list01 li {
    margin-bottom: 22px;
    padding-left: 35px;
    position: relative;
}

.pages .list01 li::before {
    position: absolute;
    content: "";
    width: 20px;
    height: 3px;
    background: #1e3c72;
    top: 9px;
    left: 0;
}

.pages .list_check li {
    margin-bottom: 22px;
    padding-left: 35px;
    position: relative;
}

.pages .list_check li::before {
    position: absolute;
    content: "";
    width: 7px;
    height: 12px;
    border: solid #1e3c72;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    display: inline-block;
    top: 8px;
    left: 0;
}

.pages .list01:last-child,
.pages .list01 li:last-child,
.pages .list_check:last-child,
.pages .list_check li:last-child {
    margin-bottom: 0px;
}

/* ------------------------------------------------------
under frame
------------------------------------------------------ */
.pages .frame01 {
    background: rgba(255, 211, 216, 0.3);
    padding: 25px 30px 25px;
    margin: 0 auto 30px;
    border-radius: 10px;
    box-sizing: border-box;
}

.pages .frame01:last-child {
    margin: 0 auto;
}

/* ------------------------------------------------------
under_step
------------------------------------------------------ */
.pages .under_step dl {
    margin-bottom: 60px;
}

.pages .under_step dl:last-child {
    margin-bottom: 0px;
}

.pages .under_step dl dt {
    font-size: 18px;
    color: #fff;
    background: #e06277;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border: 2px solid #e06277;
    padding: 10px 20px 5px;
    box-sizing: border-box;
}

.pages .under_step dl dt span {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    margin-right: 5px;
}

.pages .under_step dl dd {
    display: flex;
    align-items: center;
    border: 2px solid #e06277;
    padding: 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.pages .under_step dl:nth-child(odd) dd {
    flex-direction: row-reverse;
}

.pages .under_step dl dd .step_img {
    flex-shrink: 0;
    padding-left: 40px;
    margin-bottom: 0 !important;
    box-sizing: border-box;
}

.pages .under_step dl:nth-child(even) dd .step_img {
    padding: 0 40px 0 0;
}

/* ------------------------------------------------------
qa_dl
------------------------------------------------------ */
.pages .qa_dl dl {
    padding-left: 80px;
    padding-bottom: 60px;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

.pages .qa_dl dl:after {
    position: absolute;
    z-index: -1;
    left: 25px;
    top: 0;
    height: 100%;
    width: 1px;
    content: '';
    display: block;
    border-left: rgba(119, 119, 119, 0.30) 1px dotted;
}

.pages .qa_dl dl:last-child {
    padding-bottom: 0;
}

.pages .qa_dl dl dt,
.pages .qa_dl dl dd {
    position: inherit;
    z-index: 1;
}

.pages .qa_dl dl dt span,
.pages .qa_dl dl dd span {
    position: absolute;
    z-index: 1;
    left: -80px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #fff;
    font-size: 18px;
}

.pages .qa_dl dl dt {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #00478A;
    min-height: 50px;
    display: flex;
    align-items: center;
    line-height: 1.4em;
}

.pages .qa_dl dl dd {
    padding: 30px;
    background: rgba(109, 178, 216, 0.15);
}

/* ------------------------------------------------------
under_bnr
------------------------------------------------------ */
.pages .under_bnr_full {
    background: url(../images/under_btn_bg.jpg) no-repeat center;
    background-size: cover;
    width: 700px;
    height: 150px;
    border-radius: 8px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.25);
    margin: 0 auto;
    transition: all 0.25s linear;
}

.pages .under_bnr_full a {
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
    width: 100%;
    height: 100%;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 .5em;
}

/* ------------------------------------------------------
others
------------------------------------------------------ */
.pages .center {
    margin-bottom: 35px;
}

.pages .image_l {
    margin: 0 40px 15px 0;
}

.pages .image_r {
    margin: 0 0 15px 40px;
}

.pages .a_hover:hover {
    text-decoration: none;
}

.pages .wp-pagenavi {
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
}

.pages .wp-pagenavi span,
.pages .wp-pagenavi a {
    font-family: var(--en-font);
    font-size: 20px;
    font-weight: 400;
    color: var(--blue-color);
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 50%;
    border: 1px solid var(--blue-color);
    background: var(--white-color);
    margin: 0 15px 10px;
    position: relative;
}

.pages .wp-pagenavi a,
.pages .wp-pagenavi a:link,
.pages .wp-pagenavi a:visited {
    transition: all 0.3s ease;
    position: relative;
}

.pages .wp-pagenavi .current {
    font-weight: 400;
    color: var(--white-color);
    background: var(--blue-color);
    border-color: var(--blue-color);
    position: relative;
}

.pages .wp-pagenavi a.previouspostslink,
.pages .wp-pagenavi a.nextpostslink {
    width: auto;
    height: auto;
    flex-direction: column;
    justify-content: flex-end;
    font-size: 18px;
    letter-spacing: 0.05em;
    border: 0;
    padding: 0 0;
    margin-bottom: 7px;
}

.pages .wp-pagenavi a.previouspostslink::before,
.pages .wp-pagenavi a.nextpostslink::before {
    display: block;
    content: '';
    background-image: url(../images/common/under_blog_next.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 31px;
    height: 27px;
    margin-bottom: 5px;
}
.post-thumbnail img {
    border-radius: 16px;
}
.pages .wp-pagenavi a.previouspostslink::before {
    transform: rotate(-180deg);
}

.pages .wp-pagenavi a.previouspostslink {
    margin-right: 33px;
}

.pages .wp-pagenavi a.nextpostslink {
    margin-left: 33px;
}

.pages .wp-pagenavi .pages,
.pages .wp-pagenavi .first,
.pages .wp-pagenavi .last,
.pages .wp-pagenavi .extend {
    display: none;
}

.pages .btn_back {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pages .btn_back li:not(.special-btn) {
    font-size: 13px;
    font-weight: 300;
    padding-top: 10px;
}

.pages .btn_back li:not(.special-btn) a {
    letter-spacing: 0.1em;
    color: #b3b3b3;
    display: inline-flex;
    align-items: center;
    transition: all .3s ease;
}

.pages .btn_back li:not(.special-btn) a i {
    display: inline-block;
    background-repeat: no-repeat;
    background-size: 100% auto;
    width: 39px;
    height: 11px;
    position: relative;
    top: -4px;
}

.pages .btn_back li.prev-btn {
    margin-right: 93px;
}

.pages .btn_back li.prev-btn a i {
    background-image: url(../images/common/prev_icon.svg);
    margin-right: 7px;
}

.pages .btn_back li.next-btn {
    margin-left: 93px;
}

.pages .btn_back li.next-btn a i {
    background-image: url(../images/common/next_icon.svg);
    margin-left: 7px;
}

.pages .btn_back li.special-btn {
    width: 303px;
}

.pages .btn_back li.special-btn .btn_primary a {
    text-transform: uppercase;
}

/* ------------------------------------------------------
p_privacypolicy
------------------------------------------------------ */
.pages #privacypolicy_info {
    padding: 0 0 163px;
}

.pages #privacypolicy_info .inner {
    max-width: 1200px;
}

.pages #privacypolicy_info .under_mainttl {
    margin-bottom: 105px;
}

.pages #privacypolicy_info .privacypolicy_txt {
    line-height: 2.5;
    margin-bottom: 85px;
}

.pages #privacypolicy_info .privacypolicy_contents dl {
    margin-bottom: 100px;
}

.pages #privacypolicy_info .privacypolicy_contents dl:last-child {
    margin-bottom: 0;
}

.pages #privacypolicy_info .privacypolicy_contents dl dt {
    display: flex;
    justify-content: space-between;
    font-size: 32px;
    font-weight: 500;
    line-height: 2;
    gap: 20px;
    margin-bottom: 34px;
}

.pages #privacypolicy_info .privacypolicy_contents dl dt .tag {
    width: 100%;
    max-width: 190px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 0.1em;
    color: var(--white-color);
    background: var(--blue-color);
    border-radius: 35px;
}

.pages #privacypolicy_info .privacypolicy_contents dl dt .title {
    width: 100%;
    letter-spacing: 0.15em;
    color: var(--blue-color);
    border-bottom: 1px solid var(--blue-color);
    flex: 1;
}

.pages #privacypolicy_info .privacypolicy_contents dl dd {
    line-height: 2.5;
    letter-spacing: 0.15em;
    text-align: justify;
}

.pages #privacypolicy_info .privacypolicy_contents dl dd p:not(:last-child) {
    margin-bottom: 23px;
}

.pages #privacypolicy_info .privacypolicy_contents dl dd ul.policy_list01 {
    margin-left: 20px;
    margin-bottom: 36px;
}

.pages #privacypolicy_info .privacypolicy_contents dl dd ul.policy_list01:last-child {
    margin-bottom: 0;
}

.pages #privacypolicy_info .privacypolicy_contents dl dd ul.policy_list01 li {
    list-style: decimal;
    padding-left: 5px;
}

.pages #privacypolicy_info .privacypolicy_contents dl dd ul.policy_list01 li::marker {
    color: var(--blue-color);
    font-weight: 700;
    letter-spacing: 0;
}

.pages #privacypolicy_info .privacypolicy_contents dl dd .privacypolicy_frame {
    background: #eaf4f9;
    border-radius: 20px;
    padding: 20px 36px;
    margin-bottom: 35px;
}

.pages #privacypolicy_info .privacypolicy_contents dl dd .privacypolicy_frame:last-child {
    margin-bottom: 0;
}

.pages #privacypolicy_info .privacypolicy_contents dl dd .privacypolicy_frame ul li {
    letter-spacing: 0.15em;
    padding-left: 33px;
    position: relative;
}

.pages #privacypolicy_info .privacypolicy_contents dl dd .privacypolicy_frame ul li::before {
    position: absolute;
    content: '';
    width: 16px;
    height: 23px;
    border: 6px solid var(--blue-color);
    border-left: 0;
    border-top: 0;
    transform: rotate(45deg);
    top: 5px;
    left: 0;
}

.pages #privacypolicy_info .privacypolicy_contents dl dd .privacypolicy_frame h4 {
    font-size: 25px;
    font-weight: 400;
    color: var(--blue-color);
    margin-bottom: 8px;
}

.pages #privacypolicy_info .privacypolicy_contents dl dd .privacypolicy_2col {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 35px;
}

.pages #privacypolicy_info .privacypolicy_contents dl dd .privacypolicy_2col p {
    margin-bottom: 0;
}

.pages #privacypolicy_info .privacypolicy_contents dl dd .privacypolicy_2col .btn_primary a {
    background-color: var(--white-color);
}

.pages #privacypolicy_info .privacypolicy_contents dl dd .privacypolicy_frame.set02 {
    padding-top: 26px;
    padding-bottom: 33px;
}

.pages #privacypolicy_info .privacypolicy_contents dl dd .privacypolicy_frame.set02 .btn_primary {
    margin-bottom: 10px;
}

/* ------------------------------------------------------
p_company
------------------------------------------------------ */
.pages #company_greeting {
    padding-bottom: 82px;
}

.pages #company_greeting .inner {
    max-width: 1630px;
}

.pages #company_greeting .greeting_wrap {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    gap: 35px;
    margin: 0 auto;
}

.pages #company_greeting .greeting_image {
    padding-top: 11px;
}

.pages #company_greeting .greeting_image figure {
    border-radius: 20px;
    overflow: hidden;
}

.pages #company_greeting .greeting_image figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pages #company_greeting .greeting_image figure.image01 {
    width: 41.667vw;
    max-width: 500px;
    height: 41.667vw;
    max-height: 500px;
}

.pages #company_greeting .greeting_image figure.image02 {
    width: 33.333vw;
    max-width: 400px;
    height: 33.333vw;
    max-height: 400px;
    position: absolute;
    left: 0;
    bottom: 18px;
}

.pages #company_greeting .greeting_component {
    width: 50%;
}

.pages #company_greeting .under_mainttl {
    text-align: left;
    margin-bottom: 43px;
}

.pages #company_greeting .greeting_txt {
    line-height: 2.5;
    text-align: justify;
}

.pages #company_greeting .greeting_txt p:not(:last-child) {
    margin-bottom: 40px;
}

.pages #company_greeting .tag_name {
    text-align: right;
    margin-top: -3px;
}

.pages #company_greeting .tag_name span {
    font-size: 24px;
    letter-spacing: 0.15em;
    margin-left: 6px;
}

.pages #company_profile {
    /*padding-bottom: 100px;*/
}

.pages #company_profile .profile_headline {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pages #company_profile .profile_headline::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(30deg, #385cb0 0%, rgba(0, 78, 41, 0.5) 100%);
    top: 0;
    left: 0;
}

.pages #company_profile .profile_headline::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: url(../images/company/company_profile_bg.jpg) no-repeat center;
    background-size: cover;
    top: 0;
    left: 0;
    z-index: -1;
}

.pages #company_profile .profile_headline .under_mainttl {
    font-size: 18px;
    color: var(--white-color);
    position: relative;
    z-index: 1;
}

.pages #company_profile .profile_headline .under_mainttl span.en {
    font-size: 80px;
    color: var(--white-color);
    margin-bottom: 15px;
}

.pages #company_profile .inner {
    max-width: 1200px;
    background: var(--white-color);
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    margin-top: -128px;
}

.pages #company_profile .profile_contents {
    width: 94%;
    max-width: 1000px;
    padding: 100px 0;
    margin: 0 auto;
}

.pages #company_profile .profile_contents dl {
    display: flex;
    justify-content: space-between;
    gap: 23px;
}

.pages #company_profile .profile_contents dl dt {
    width: 100%;
    max-width: 250px;
    color: var(--blue-color);
    letter-spacing: 0.15em;
    line-height: 2.125;
    border-bottom: 1px solid var(--blue-color);
    padding: 17px 10px 18px 32px;
}

.pages #company_profile .profile_contents dl dd {
    width: 100%;
    letter-spacing: 0.15em;
    line-height: 2.125;
    border-bottom: 1px solid #ddd;
    padding: 17px 10px 18px 30px;
    flex: 1;
}

/* ------------------------------------------------------
p_contact
------------------------------------------------------ */
/*#contact #content {
    padding-bottom: 161px;
}*/

.pages #contact_info {
    padding-bottom: 120px;
}

.pages #contact_info .inner {
    max-width: 1200px;
}

.pages #contact_info .contact_txt {
    line-height: 2.5;
    text-align: center;
    margin-bottom: 67px;
}

.pages #contact_info .contact_txt p:not(:last-child) {
    margin-bottom: 40px;
}

.pages #contact_info .contact_wrap {
    display: flex;
    justify-content: space-between;
    gap: 35px;
}

.pages #contact_info .contact_frame {
    width: 100%;
    max-width: 550px;
    text-align: center;
    background: #eaf4f9;
    border-radius: 30px;
    padding: 52px 20px 0;
    overflow: hidden;
}

.pages #contact_info .contact_frame h4 {
    font-size: 32px;
    font-weight: 500;
    color: var(--blue-color);
    margin-bottom: 36px;
}

.pages #contact_info .contact_frame:nth-child(2) h4 {
    margin-bottom: 30px;
}

.pages #contact_info .contact_frame .contact_phone {
    font-size: 46px;
    color: var(--blue-color);
    letter-spacing: 0.1em;
    line-height: 1;
    margin-bottom: 26px;
}

.pages #contact_info .contact_frame .contact_time {
    line-height: 2.5;
    margin-bottom: 32px;
}

.pages #contact_info .contact_frame .notes {
    font-size: 14px;
    line-height: 2.5;
	margin-bottom: 47px;
}

.pages #contact_info .contact_frame i {
    display: block;
    width: 196px;
    max-width: 196px;
    height: 196px;
    max-height: 196px;
    border-radius: 50%;
    background: var(--blue-color);
    margin: 0 auto -36px;
    position: relative;
}

.pages #contact_info .contact_frame i::before {
    position: absolute;
    content: '';
    background-repeat: no-repeat;
    background-size: contain;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pages #contact_info .contact_frame i.icon_phone::before {
    background-image: url(../images/contact/icon_phone.png);
    width: 61px;
    height: 67px;
}

.pages #contact_info .contact_frame i.icon_line::before {
    background-image: url(../images/contact/icon_line.png);
    width: 76px;
    height: 76px;
}

.pages #mail_form {
    color: var(--white-color);
    background: var(--blue-color);
    padding: 109px 0 113px;
}

.pages #mail_form .inner {
    max-width: 900px;
}

.pages #mail_form .under_mainttl {
    font-size: 18px;
    margin-bottom: 97px;
}

.pages #mail_form .under_mainttl span.en {
    font-size: 80px;
    color: var(--white-color);
    margin-bottom: 13px;
}

.pages #mail_form .smf-progress-tracker {
    width: 100%;
    max-width: 560px;
    justify-content: space-between;
    gap: 40px;
    margin: 0 auto 29px;
}

.pages #mail_form .smf-progress-tracker__item {
    width: 100px;
    flex: inherit;
}

.smf-progress-tracker__item::before {
    display: none;
}

.smf-progress-tracker__item:not(:last-child)::after {
    position: absolute;
    content: '';
    background-image: url(../images/contact/step_arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-color: transparent;
    width: 36px;
    height: 31px;
    top: 34px;
    right: -83px;
    left: auto;
    pointer-events: none;
}

.pages #mail_form .smf-progress-tracker__item__number {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--en-font);
    font-size: 46px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
    background: transparent;
    border: 1px solid var(--white-color);
    border-radius: 50%;
    margin-bottom: 12px;
}

.pages #mail_form .smf-progress-tracker__item__text {
    font-size: 14px;
    font-weight: 500;
    color: transparent;
    margin-top: 0;
}

.pages #mail_form .smf-progress-tracker__item__text::before {
    display: block;
    letter-spacing: 0.15em;
    color: var(--white-color);
    text-align: center;
}

.pages #mail_form .smf-progress-tracker__item--input .smf-progress-tracker__item__text::before {
    content: '入力';
}

.pages #mail_form .smf-progress-tracker__item--confirm .smf-progress-tracker__item__text::before {
    content: '確認';
}

.pages #mail_form .smf-progress-tracker__item--complete .smf-progress-tracker__item__text::before {
    content: '送信';
}

.pages #mail_form .smf-progress-tracker__item[aria-current=true] .smf-progress-tracker__item__number {
    color: var(--blue-color);
    background: var(--white-color);
}

.pages #mail_form .smf-form--letter .smf-item {
    padding: 0 0;
    margin-bottom: 37px;
}

.pages #mail_form .smf-form--letter .smf-item:last-child {
    margin-bottom: 0;
}

.pages #mail_form .smf-form--letter .smf-item__col--label {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 14px;
}

.pages #mail_form .smf-item__label__text {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--white-color);
}

.pages #mail_form .smf-item__description {
    width: 80px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: #fff;
    background: #28bee6;
    border-radius: 15px;
    padding-bottom: 2px;
    margin-right: 14px;
    margin-top: 0;
}

.pages #mail_form .smf-form--letter + .smf-action {
    margin: 49px 0 0;
}

.pages #mail_form .input_custom,
.pages #mail_form .txt_custom {
    width: 100%;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 10px;
    background: #f5f5f5;
    padding: 8px 15px 10px;
}

.pages #mail_form .input_custom {
    height: 50px;
}

.pages #mail_form .txt_custom {
    height: 100px;
    text-align: justify;
    resize: none;
}

.pages #mail_form .smf-action .smf-button-control__control {
    width: 100%;
    max-width: 250px;
    height: 70px;
    letter-spacing: 0.15em;
    color: var(--blue-color);
    text-align: left;
    background: var(--white-color);
    border-radius: 35px;
    border: none;
    padding: 0 0 0 23px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.pages #mail_form .smf-action .smf-button-control__control .smf-sending {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--blue-color);
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    overflow: hidden;
    transition: all .5s cubic-bezier(.19, 1, .22, 1);
    visibility: visible;
    pointer-events: none;
}

.pages #mail_form .smf-action .smf-button-control__control .smf-sending::before,
.pages #mail_form .smf-action .smf-button-control__control .smf-sending::after {
    position: absolute;
    content: '';
    background-image: url(../images/common/icon_arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 25px;
    height: 22px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all .5s cubic-bezier(.19, 1, .22, 1);
    animation: none;
    border: 0;
    border-radius: 0;
}

.pages #mail_form .smf-action .smf-button-control__control .smf-sending::after {
    transform: translate(-70%, -50%);
    opacity: 0;
}

.pages #mail_form [data-screen="confirm"] .smf-item__description {
    display: none;
}

.pages #mail_form [data-screen="confirm"] .smf-placeholder {
    letter-spacing: 0.15em;
}

.pages #mail_form .smf-action .smf-button-control__control[data-action="back"] {
    text-align: right;
    padding: 0 23px 0 0;
}

.pages #mail_form .smf-action .smf-button-control__control[data-action="back"] .smf-sending {
    left: 5px;
    right: auto;
    transform: translateY(-50%) rotate(-180deg);
}

.pages #mail_form .smf-complete-content {
    text-align: center;
}

.privacy-policy .wp-block-group.is-row {
    justify-self: center;
}

.privacy-policy .smf-checkboxes-control__control {
    line-height: 1.4;
}

.privacy-policy .smf-checkboxes-control__control span.smf-checkbox-control__label {
    display: none;
}

.privacy-policy .wp-block-group-is-layout-flex {
    display: flex;
    justify-content: center;
}

.privacy-policy a {
    color: #Fff;
    padding-bottom: 3px;
    border-bottom: 1px solid;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.privacy-policy a:hover {
    color: var(--green-color);
    border-bottom-color: var(--green-color);
}

.privacy-policy input.smf-checkbox-control__control {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

/* ------------------------------------------------------
p_features
------------------------------------------------------ */
.pages #features_intro {
    padding: 0 0 90px;
}

.pages #features_intro .inner {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.pages #features_intro .intro_contents {
    width: 50%;
}

.pages #features_intro .features_intro_list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 34px;
}

.pages #features_intro .features_intro_list li {
    width: calc((100% - 10px) / 2);
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    background: linear-gradient(to right, rgba(56, 92, 176, 1) 0%, rgba(56, 92, 176, 0.5) 100%);
    border-radius: 16px;
    padding: 0 10px 5px;
}

.pages #features_intro .features_intro_list li:nth-child(2) {
    background: linear-gradient(to right, rgba(26, 26, 26, 1) 0%, rgba(26, 26, 26, 0.5) 100%);
}

.pages #features_intro .features_intro_list li:last-child {
    width: 100%;
    background: linear-gradient(to right, rgba(0, 78, 41, 1) 0%, rgba(0, 78, 41, 0.5) 100%);
}

.pages #features_intro .features_intro_list li h4 {
    font-size: 35px;
    font-weight: 400;
    color: var(--white-color);
    text-align: center;
}

.pages #features_intro .features_intro_list li h4 span {
    display: block;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-top: 23px;
}

.pages #features_intro .features_intro_txt {
    line-height: 2.5;
    text-align: center;
}

.pages #features_strength .strength_headline {
    min-height: 525px;
    color: var(--white-color);
    background: var(--blue-color);
}

.pages #features_strength .strength_headline .inner {
    height: 100%;
    display: flex;
    justify-content: space-between;
}

.pages #features_strength .strength_headline .headline_frame {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.pages #features_strength .strength_headline .headline_subttl {
    font-size: 180px;
    font-weight: 300;
    letter-spacing: 0.1em;
    white-space: nowrap;
    opacity: .1;
    margin-bottom: 0;
    position: absolute;
    top: 45px;
    left: 0;
    z-index: -1;
}

.pages #features_strength .strength_headline .headline_title {
    font-size: 45px;
    font-weight: 500;
    letter-spacing: 0.15em;
    line-height: 1.78;
    margin-bottom: 7px;
}

.pages #features_strength .strength_headline .headline_notes {
    font-size: 24px;
}

.pages #features_strength .strength_headline .headline_notes span {
    /*min-width: 357px;*/
    display: inline-block;
    letter-spacing: 0.15em;
    color: var(--blue-color);
    background: var(--white-color);
    padding: 8px 15px 11px;
	border-radius: 8px;
}

.pages #features_strength .strength_headline .headline_image {
    display: flex;
    gap: 27px;
    margin-top: -45px;
    margin-bottom: -87px;
}

.pages #features_strength .strength_headline .headline_image figure {
    width: 23.36vw;
    max-width: 292px;
}
.pages #features_strength .strength_headline .headline_image figure img {
    border-radius: 16px;
}
.pages #features_strength .strength_headline .headline_image figure:nth-child(1) {
    padding-top: 150px;
}

.pages #features_strength .strength_wrap {
    background: #eaf4f9;
    padding: 164px 0 212px;
}

.pages #features_strength .strength_list {
    width: 94%;
    max-width: 1200px;
    margin: 0 auto;
}

.pages #features_strength .strength_card {
    display: flex;
    justify-content: space-between;
	align-items: center;
    gap: 25px;
    counter-increment: num;
    margin-bottom: 147px;
    position: relative;
    z-index: 1;
}

.pages #features_strength .strength_card::before {
    position: absolute;
    content: '';
    width: 100vw;
    height: 100%;
    background: var(--white-color);
    right: 110px;
    top: 0;
    z-index: -1;
	border-radius: 0 200px 200px 0;
}

.pages #features_strength .strength_card:last-child {
    margin-bottom: 0;
}

.pages #features_strength .strength_card .strength_frame {
    width: 100%;
    max-width: 670px;
    padding: 0 0 72px;
}

.pages #features_strength .strength_card .tag {
    display: flex;
    align-items: center;
    color: var(--blue-color);
    margin-top: -60px;
}

.pages #features_strength .strength_card .tag::after {
    content: counter(num, decimal-leading-zero);
    font-size: 100px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1;
    margin-left: 10px;
}

.pages #features_strength .strength_card .tag span {
    font-size: 14px;
    letter-spacing: 0;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

.pages #features_strength .strength_card .strength_title {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 0.15em;
    line-height: 1.66;
    color: var(--blue-color);
    margin-bottom: 9px;
}

.pages #features_strength .strength_card .strength_txt {
    line-height: 2.5;
    text-align: justify;
}

.pages #features_strength .strength_card figure {
    width: 100%;
    max-width: 480px;
    height: 360px;
    max-height: 360px;
   /* margin: 52px 0 -41px;*/
}
.pages #features_strength .strength_card:nth-child(1) figure, .pages #features_strength .strength_card:nth-child(2) figure, .pages #features_strength .strength_card:nth-child(4) figure{
	height: 360px;
}
.pages #features_strength .strength_card:nth-child(1) img, .pages #features_strength .strength_card:nth-child(2) img, .pages #features_strength .strength_card:nth-child(4) img{
	border-radius: 32px;
    width: 100%;
    object-fit: cover;
}
.pages #features_strength .strength_card figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pages #features_strength .strength_card:nth-child(even) {
    flex-direction: row-reverse;
}

.pages #features_strength .strength_card:nth-child(even)::before {
    left: 110px;
    right: auto;
    border-radius: 200px 0 0 200px;
}

.pages #features_plan {
    display: flex;
}

.pages #features_plan .plan_block {
    width: 50%;
    color: var(--white-color);
}

.pages #features_plan .plan_block h3.under_mainttl span.en {
    color: var(--white-color);
}

.pages #features_plan .plan_block .features_plan_title {
    font-size: 45px;
    font-weight: 500;
    letter-spacing: 0.15em;
    line-height: 1.56;
    text-align: left;
    margin-bottom: 20px;
}

.pages #features_plan .plan_block .features_plan_txt {
    line-height: 2.5;
}

.pages #features_plan .plan_block:nth-child(1) {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--blue-color);
    padding: 0 3%;
}

.pages #features_plan .plan_block:nth-child(2) {
    background: #29abe2;
    padding: 128px 3% 124px 0;
}

.pages #management_plan {
    background: #f2f2f2;
    padding: 112px 0 119px;
}

.pages #management_plan .inner {
    max-width: 1200px;
}

.pages #management_plan .management_plan_ttl {
    font-size: 45px;
    font-weight: 500;
    color: var(--blue-color);
    text-align: center;
    margin-bottom: 24px;
}

.pages #management_plan .management_plan_txt {
    line-height: 2.5;
    text-align: center;
    margin-bottom: 53px;
}

.pages #management_plan .management_plan_list {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.pages #management_plan .plan_card {
    width: calc((100% - 36px) / 3);
    background: var(--white-color);
    border-radius: 16px;
    overflow: hidden;
}

.pages #management_plan .plan_card .plan_card_ttl {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.43;
    color: var(--white-color);
    text-align: center;
    background: linear-gradient(to right, #29abe2 0%, #385cb0 100%);
}

.pages #management_plan .plan_card .plan_card_component {
    padding: 34px 29px 40px;
}

.pages #management_plan .plan_card .plan_card_subttl02 {
    font-size: 20px;
    font-weight: 500;
    line-height: 2;
    color: #29abe2;
    text-align: center;
    margin-bottom: 18px;
}

.pages #management_plan .plan_card .plan_card_subttl03 {
    width: 100%;
    min-height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.875;
    text-align: center;
    color: var(--white-color);
    background: var(--blue-color);
    border-radius: 10px;
    padding: 8px 8px;
    margin-bottom: 32px;
}

.pages #management_plan .plan_card .plan_card_details li {
    font-size: 16px;
    letter-spacing: 0.15em;
    border-bottom: 1px solid #dddddd;
    padding: 9px 0 11px 40px;
    position: relative;
}

.pages #management_plan .plan_card .plan_card_details li:first-child {
    border-top: 1px solid #dddddd;
}

.pages #management_plan .plan_card .plan_card_details li::before {
    position: absolute;
    content: '';
    background-image: url(../images/features/icon_check01.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
    top: 7px;
    left: 0;
}

.pages #management_plan .plan_card:nth-child(2) .plan_card_ttl {
    background: linear-gradient(to right, #29abe2 0%, var(--main-color) 100%);
}

.pages #management_plan .plan_card:nth-child(2) .plan_card_subttl03 {
    background: var(--main-color);
}

.pages #management_plan .plan_card:nth-child(2) .plan_card_details li::before {
    background-image: url(../images/features/icon_check02.png);
}

.pages #management_plan .plan_card:nth-child(3) .plan_card_ttl {
    background: linear-gradient(to right, #29abe2 0%, var(--green-color) 100%);
}

.pages #management_plan .plan_card:nth-child(3) .plan_card_subttl03 {
    background: var(--green-color);
}

.pages #management_plan .plan_card:nth-child(3) .plan_card_details li::before {
    background-image: url(../images/features/icon_check03.png);
}

.pages #management_plan .management_plan_notes {
    font-size: 14px;
    line-height: 2.14;
}

.pages #optional_services {
    background: var(--blue-color);
    padding: 113px 0 128px;
}

.pages #optional_services .inner {
    max-width: 1200px;
}

.pages #optional_services .optional_services_ttl {
    font-size: 45px;
    font-weight: 500;
    color: var(--white-color);
    text-align: center;
    margin-bottom: 66px;
}

.pages #optional_services .optional_services_list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.pages #optional_services .optional_services_list li {
    width: calc((100% - 32px) / 3);
    height: 90px;
    display: flex;
    border-radius: 16px;
    overflow: hidden;
}

.pages #optional_services .optional_services_list li figure {
    width: 90px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #29abe2;
}

.pages #optional_services .optional_services_list li h4 {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
	justify-content: flex-start;
    font-size: 22px;
    font-weight: 600;
    color: var(--blue-color);
    text-align: center;
    background: var(--white-color);
    flex: 1;
	padding: 0 25px 0;
}

/* ------------------------------------------------------
p_blog
------------------------------------------------------ */
.pages #blog_category .inner {
    max-width: 1200px;
}

.pages #blog_category h4 {
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding-left: 28px;
    margin-bottom: 26px;
    position: relative;
}

.pages #blog_category h4::before {
    position: absolute;
    content: '';
    width: 7px;
    height: 29px;
    background: var(--blue-color);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.pages #blog_category .category_list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.pages #blog_category .category_list li {
    width: calc((100% - 90px) / 4);
    height: 70px;
}

.pages #blog_category .category_list li a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    letter-spacing: 0.15em;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--main-color);
    padding: 0 8px;
    transition: all .3s ease;
}

.pages #blog_category .category_list li.active a {
    color: var(--white-color);
    background: var(--blue-color);
    border-color: var(--blue-color);
    pointer-events: none;
}
#blog .search-wrap, .pages .search-wrap {
    background: #f7f7f7;
    padding: 10px;
    margin: 80px auto 0;
    max-width: 1200px;
    border-radius: 16px;
}
#blog .searchwp-form, .pages .searchwp-form{
    position: relative;
    max-width: 1000px;
    margin: 50px auto;
    border-radius: 8px;
    overflow: hidden;
}

.pages #blog_information {
    padding: 99px 0 0;
}

.pages #blog_information .inner {
    max-width: 1200px;
}

.pages #blog_information .blog_list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 100px;
}

.pages #blog_information .blog_list .blog_card {
    width: calc((100% - 80px) / 3);
    margin-bottom: 29px;
}

.pages #blog_information .blog_list .blog_card a {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 16px;
    border: 1px solid #ddd;
    overflow: hidden;
}

.pages #blog_information .blog_list .blog_card figure {
    width: 100%;
    height: 18.011vw;
    max-height: 230px;
    overflow: hidden;
}

.pages #blog_information .blog_list .blog_card figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateZ(0);
    transition: all 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pages #blog_information .blog_card .blog_component {
    padding: 26px 29px 23px;
}

.pages #blog_information .blog_card .blog_date {
    font-family: var(--Poppins-font);
    font-size: 14px;
    letter-spacing: 0.05em;
    color: #aaa;
    margin-bottom: 2px;
}

.pages #blog_information .blog_card .group_cate {
    margin-bottom: 17px;
}

.pages #blog_information .blog_card .group_cate span {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--white-color);
    background: var(--blue-color);
    border-radius: 12px;
    padding: 1px 10px 2px;
    margin: 0 5px 5px 0;
}

.pages #blog_information .blog_card .blog_title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.83;
    text-align: justify;
}

.pages #blog_wrap {
    width: 100%;
    max-width: 1630px;
    padding-bottom: 128px;
    margin: 0 auto;
}

.pages #blog_wrap .inner {
    max-width: 1300px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 35px;
    margin: 0 auto;
}

.blog_contents .contents_detail h2 {
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    padding: 0.8em 1em;
    background-color: #f7f7f7;
    border-left: 8px solid #385cb0;
    color: #333;
    margin: 2em 0 1em;
    font-weight: bold;
}


.blog_contents .contents_detail h3 {
    font-size: clamp(1.25rem, 3.5vw, 1.6rem); 
    position: relative;
    padding: 0.5em 0 0.5em 1.5em;
    border-bottom: 2px solid #385cb0;
    margin: 1.8em 0 0.8em;
}

.blog_contents .contents_detail h3::before {
    content: "";
    position: absolute;
    left: 0.2em;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-color: #385cb0;
    border-radius: 2px; 
}


.blog_contents .contents_detail h4 {
    font-size: clamp(1.1rem, 3vw, 1.3rem); 
    padding: 0.6em 0.8em;
    border: 1px solid #385cb0;
    background-color: #ffffff;
    display: inline-block;
    border-radius: 4px;
    color: #385cb0;
    margin: 1.5em 0 0.6em;
}


.blog_contents .contents_detail h5 {
    font-size: clamp(1rem, 2.5vw, 1.15rem); 
    padding: 0.4em 0;
    border-bottom: 2px dotted #385cb0;
    color: #333;
    margin: 1.2em 0 0.5em;
    display: flex;
    align-items: center;
}

.blog_contents h5::before {
    content: "●";
    color: #385cb0;
    margin-right: 0.5em;
    font-size: 0.8em;
}
.pages #sidenavi {
    width: 33.333vw;
    max-width: 350px;
    background: #f7f7f7;
    border-radius: 16px;
}

.pages #sidenavi dl {
    width: 88%;
    max-width: 350px;
    border-top: 1px solid var(--main-color);
    padding: 47px 0 47px;
    margin: 0 auto;
}

.pages #sidenavi dl:first-child {
    border-top: 0;
}

.pages #sidenavi dl dt {
    font-size: 23px;
    font-weight: 500;
    letter-spacing: 0.09em;
    color: var(--blue-color);
    padding-left: 20px;
    margin-bottom: 23px;
    position: relative;
}

.pages #sidenavi dl dt::before {
    position: absolute;
    content: '';
    width: 5px;
    height: 30px;
    background: var(--blue-color);
    top: 2px;
    left: 0;
}

.pages #sidenavi dl dd .btn_search {
    position: relative;
}

.pages #sidenavi dl dd .btn_search #sbox {
    width: 100%;
    height: 60px;
    border: 0;
    padding: 0 80px 0 20px;
}

.pages #sidenavi dl dd .btn_search input::placeholder {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.09em;
    color: #aaaaaa;
}

.pages #sidenavi dl dd .btn_search #noEasy {
    width: 74px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}

.pages #sidenavi dl dd .btn_search #noEasy .sb-search-submit {
    border: 0;
}

.pages #sidenavi dl dd .btn_search #noEasy .icon-search {
    display: inline-block;
    background: url(../images/common/icon_search.svg) no-repeat;
    background-size: contain;
    width: 36px;
    height: 36px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pages #sidenavi .new_articles .article_item {
    width: 100%;
    margin-bottom: 30px;
}

.pages #sidenavi .new_articles .article_item:last-child {
    margin-bottom: 0;
}

.pages #sidenavi .new_articles .article_item a {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-direction: column;
}

/*.pages #sidenavi .article_item figure {
    width: 14.348vw;
    max-width: 300px;
    height: 9.13vw;
    max-height: 105px;
    overflow: hidden;
}*/
.pages #sidenavi .article_item figure {
    width: 16.348vw;
    max-width: 300px;
    height: 9.13vw;
    max-height: 170px;
    overflow: hidden;
    border-radius: 8px;
}

.pages #sidenavi .article_item figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateZ(0);
    transition: all 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pages #sidenavi .article_item .article_component {
    width: 100%;
    flex: 1;
}

.pages #sidenavi .article_item .article_component .group_cate {
    margin-bottom: 1px;
}

.pages #sidenavi .article_item .article_component .group_cate span {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--white-color);
    background: var(--blue-color);
    border-radius: 12px;
    padding: 1px 10px 2px;
    margin: 0 5px 5px 0;
}

.pages #sidenavi .article_item .article_component .article_date {
    font-family: var(--Poppins-font);
    font-size: 14px;
    letter-spacing: 0.05em;
    color: #aaaaaa;
    margin-bottom: 10px;
}

.pages #sidenavi .article_item .article_component .article_title {
    font-size: 14px;
    line-height: 1.57;
    letter-spacing: 0.01em;
    text-align: justify;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
}

.pages #sidenavi dl dd .category_list li {
    padding-left: 20px;
    margin-bottom: 11px;
    position: relative;
}

.pages #sidenavi dl dd .category_list li::before {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    background: var(--blue-color);
    border-radius: 50%;
    top: 9px;
    left: 0;
}

.pages #sidenavi dl dd .category_list li:last-child {
    margin-bottom: 0;
}

.pages #sidenavi dl dd .category_list li a {
    letter-spacing: 0.07em;
    position: relative;
}

.pages #sidenavi dl dd .category_list li a::before {
    position: absolute;
    content: '';
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: currentColor;
    transform-origin: bottom right;
    transition: transform .4s cubic-bezier(.86, 0, .07, 1);
}

.pages .blog_contents {
    width: 100%;
    max-width: 867px;
    flex: 1;
}

.pages .blog_contents .blog_headline {
    margin-bottom: 50px;
}

.pages .blog_contents .blog_headline .blog_date {
    font-family: var(--Poppins-font);
    font-size: 18px;
    letter-spacing: 0.05em;
    margin-bottom: 13px;
}

.pages .blog_contents .blog_headline .group_cate {
    margin-bottom: 9px;
}

.pages .blog_contents .blog_headline .group_cate span {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--white-color);
    background: var(--blue-color);
    border-radius: 16px;
    padding: 2px 10px 3px;
    margin: 0 5px 5px 0;
}

.pages .blog_contents .blog_headline .headline_title {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 0.09em;
    line-height: 1.6;
    color: var(--blue-color);
}

.pages .blog_contents .contents_detail {
    margin-bottom: 90px;
}

.pages .blog_contents .contents_detail p {
    line-height: 2.25;
    margin-bottom: 36px;
}

.pages .blog_contents .contents_detail .wp-block-image {
    margin-bottom: 42px;
}

.pages .blog_contents .contents_detail .wp-block-image img {
    border-radius: 16px;
}

.pages .blog_contents .contents_detail p:last-child,
.pages .blog_contents .contents_detail .wp-block-image:last-child {
    margin-bottom: 0;
}

.pages .blog_contents .contents_detail .blog_section {
    margin-bottom: 105px;
}

.pages .blog_contents .contents_detail .blog_subsection {
    margin-bottom: 94px;
}

.pages .blog_contents .contents_detail .blog_section:last-child,
.pages .blog_contents .contents_detail .blog_subsection:last-child {
    margin-bottom: 0;
}

.pages .blog_contents .contents_detail .table_contents {
    background: #eaf4f9;
    border-top: 10px solid var(--blue-color);
    padding: 44px 35px 46px;
    margin-bottom: 150px;
}

.pages .blog_contents .contents_detail .table_contents .table_title {
    display: flex;
    align-items: flex-end !important;
    padding-bottom: 11px;
    padding-left: 8px;
}

.pages .blog_contents .contents_detail .table_contents .table_title .txt_title {
    font-size: 26px;
    font-weight: 500;
    color: var(--blue-color);
    letter-spacing: 0.09em;
    line-height: 1.5;
    padding-left: 46px;
    margin: 0 7px 0 0;
    position: relative;
}

.pages .blog_contents .contents_detail .table_contents .table_title .txt_title::before {
    position: absolute;
    content: '';
    background-image: url(../images/common/table_contents_icon.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
    top: 6px;
    left: 0;
}

.pages .blog_contents .contents_detail .table_contents .table_title .txt_notes {
    font-size: 14px;
    color: #aaaaaa;
    letter-spacing: 0.09em;
}

.pages .blog_contents .contents_detail .table_contents .wp-block-list {
    font-size: 16px;
}

.pages .blog_contents .contents_detail .table_contents .wp-block-list li {
    letter-spacing: 0.15em;
    list-style: none;
}

.pages .blog_contents .contents_detail .table_contents .wp-block-list li a {
    letter-spacing: 0.15em;
    text-decoration: none;
}

.pages .blog_contents .contents_detail .table_contents .wp-block-list li a:hover {
    text-decoration: underline;
}

.pages .blog_contents .contents_detail .table_contents ol > li {
    margin-bottom: 40px;
    counter-increment: level1;
    counter-reset: level2;
}

.pages .blog_contents .contents_detail .table_contents ol > li:last-child {
    margin-bottom: 0;
}

.pages .blog_contents .contents_detail .table_contents ol > li::before {
    content: counter(level1) ".";
    font-family: var(--en-font);
    letter-spacing: 0.1em;
    margin-right: 9px;
}

.pages .blog_contents .contents_detail .table_contents ol > li > ul {
    margin-top: 9px;
}

.pages .blog_contents .contents_detail .table_contents ol > li > ul > li {
    padding-left: 26px;
    margin-bottom: 9px;
    margin-left: 19px;
    position: relative;
    counter-increment: level2;
}

.pages .blog_contents .contents_detail .table_contents ol > li > ul > li:last-child {
    margin-bottom: 0;
}

.pages .blog_contents .contents_detail .table_contents ol > li > ul > li::before {
    content: counter(level1) "-"counter(level2) ".";
    font-family: var(--en-font);
    letter-spacing: 0.1em;
    margin-right: 9px;
}

.pages .blog_contents .contents_detail .table_contents ol > li > ul > li::after {
    position: absolute;
    content: '';
    width: 17px;
    height: 1px;
    background: var(--main-color);
    top: 14px;
    left: 0;
}

.pages .blog_contents .contents_detail .blog_section .catcher_title_lv1 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 0.09em;
    color: var(--white-color);
    background: var(--blue-color);
    padding: 6px 10px 6px 31px;
    margin-bottom: 30px;
    counter-increment: level1;
}

.pages .blog_contents .contents_detail .blog_section .catcher_title_lv1::before {
    content: counter(level1) ".";
    font-family: var(--en-font);
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-right: 6px;
}

.pages .blog_contents .contents_detail .blog_section .catcher_title_lv2 {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.09em;
    color: var(--blue-color);
    border-bottom: 1px solid var(--blue-color);
    border-left: 5px solid var(--blue-color);
    padding: 5px 11px;
    margin-bottom: 19px;
    counter-increment: level2;
}

.pages .blog_contents .contents_detail .blog_section .catcher_title_lv2::before {
    content: counter(level1) "-"counter(level2) ".";
    font-family: var(--en-font);
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-right: 7px;
}

.pages .blog_contents .btn_primary {
    margin: 0 auto;
}

.pages #idx_blog.same_category {
    background: #eaf4f9;
    padding: 118px 0 127px;
}

.pages .same_category h3.under_mainttl {
    text-align: left;
    margin-bottom: 66px;
}

.pages #idx_blog.same_category .idx_blog_slider {
    margin-bottom: 0;
}

.pages #idx_blog.same_category .idx_blog_control::before {
    background: #eaf4f9;
}

.pages #idx_blog.same_category .idx_blog_control .swiper-button-next,
.pages #idx_blog.same_category .idx_blog_control .swiper-button-prev {
    width: 130px;
    height: 130px;
}

.pages #idx_blog.same_category .idx_blog_control .swiper-button-next {
    margin-bottom: 29px;
}

.pages #idx_blog.same_category .idx_blog_control .swiper-pagination {
    max-width: 130px;
    margin-top: 40px;
}

.pages #idx_blog.same_category .idx_blog_control .swiper-pagination-bullet {
    background: #aaa;
}

.pages #idx_blog.same_category .idx_blog_control .swiper-pagination-bullet-active {
    background: var(--blue-color);
}

.pages #idx_blog.same_category .swiper-slide .idx_blog_component {
    background: var(--white-color);
    padding: 16px 20px;
}

.pages #idx_blog.same_category .swiper-slide .idx_blog_date {
    margin-bottom: 2px;
}

.pages #idx_blog.same_category .swiper-slide .group_cate {
    margin-bottom: 9px;
}

.pages #idx_blog.same_category .swiper-slide .group_cate span {
    font-size: 13px;
    padding: 1px 13px 2px;
}

.pages #idx_blog.same_category .swiper-slide .idx_blog_title {
    font-size: 16px;
    letter-spacing: 0.13em;
    line-height: 1.6875;
    text-align: justify;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}
#footer .footer_info .footer_connect a {
    color: #fff;
}

/* MOZZILLA CSS */
@-moz-document url-prefix() {}

/* IE CSS */
@media screen\0 {}

/* EDGE 12+ CSS */
@supports (-ms-ime-align:auto) {}
