@charset "UTF-8";
/* CSS Document */
body {
    margin: 0;
    padding: 0;
    color: #333333;
    background: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
    overflow-x: hidden;
    font-family: "Noto Sans JP", sans-serif;
    -webkit-text-size-adjust: 100%;
}
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

.en {
    font-family: "Poppins", sans-serif;
}

body.open,
body.modaal-noscroll {
    overflow: hidden;
}
input,
textarea {
    border-radius: 0;
    outline: none;
    margin: 0;
    padding: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    -webkit-border-radius: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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

a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease-in-out 0s;
}

a:hover {
    text-decoration: none;
}
.flex_wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap; /* Safari */
    flex-wrap: wrap;
}
.flex_wrap_between {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap; /* Safari */
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.flex_wrap_center {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap; /* Safari */
    flex-wrap: wrap;
    justify-content: center;
}
.flex_wrap_middle {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap; /* Safari */
    flex-wrap: wrap;
    align-items: center;
}

.sp {
    display: none !important;
}
.note {
    font-size: 75%;
}

/************************
header
************************/
header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease-in-out 0s;
}
header.sub_head {
    background: #fff;
}
header.fix {
    background: #fff;
    box-shadow: 0px 3px 10px 5px rgba(0, 0, 0, 0.05);
}
.inner_header {
    margin: auto;
    width: 92%;
    max-width: 1400px;
    align-items: center;
}
.logo {
    width: 145px;
}
.gnav {
    padding: 15px 0;
    gap: 22px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease-in-out 0s;
}
.gnav a:hover {
    opacity: 0.5;
}
.gnav_list {
    gap: 28px;
}
.gnav_list > li {
    position: relative;
    line-height: 3;
}
.gnav_list > li.has_sub > a {
    position: relative;
    padding-right: 20px;
}
.gnav_list > li.has_sub > a::after {
    position: absolute;
    display: block;
    content: "";
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #333;
    border-right: 2px solid #333;
    transform: rotate(45deg);
    right: 0px;
    margin: auto;
    top: 0;
    bottom: 0;
    transition: all 0.3s ease-in-out 0s;
}

.h_b_list {
    gap: 8px;
}
.h_b_list li a {
    display: block;
    padding: 12px 24px;
    border: 2px solid #c5093b;
    color: #c5093b;
    border-radius: 100vh;
}
.h_b_list li a span {
    font-size: 10px;
    color: #c5093b;
    display: inline-block;
    padding: 1px 6px;
    background: #fff;
    margin-right: 5px;
}
.h_b_list li:nth-child(2) a {
    background: #c5093b;
    color: #fff;
}
.sub_menu {
    position: absolute;
    background: #fff;
    padding: 10px;
    min-width: 160px;
    left: -10px;
    transform: scale(1, 0);
    transition: 0.5s;
    transform-origin: top center;
}
.gnav_list > li .sub_menu li {
    line-height: 1.6;
}
.gnav_list > li:hover .sub_menu {
    transform: scale(1, 1);
}
/************************
btn
************************/
.btn {
    width: 100%;
    max-width: 360px;
    margin: auto;
}
.btn a {
    display: block;
    text-align: center;
    padding: 12px 24px;
    border: 2px solid #c5093b;
    color: #c5093b;
    border-radius: 100vh;
}
.btn a:hover {
    opacity: 0.5;
}
.sec_def .btn {
    margin-top: 40px;
}

/************************
menu btn
************************/
.menu_btn {
    display: none;
    position: relative;
    width: 50px;
    height: 50px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out 0s;
    z-index: 101;
    background: #c5093b;
}
.sp_nav_btn {
    width: 100%;
    height: 100%;
    z-index: 1000;
    text-align: center;
    position: relative;
}
#panel-btn {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
#panel-btn:hover {
}
#panel-btn-icon {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 3px;
    margin: auto;
    background: #fff;
    transition: 0.2s;
}
#panel-btn-icon:before,
#panel-btn-icon:after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background: #fff;
    transition: 0.5s;
}
#panel-btn:hover #panel-btn-icon,
#panel-btn:hover #panel-btn-icon:before,
#panel-btn:hover #panel-btn-icon:after {
}
#panel-btn-icon:before {
    margin-top: -10px;
}
#panel-btn-icon:after {
    margin-top: 8px;
}
#panel-btn .close,
#panel-btn:hover #panel-btn-icon.close {
    background: transparent;
}
#panel-btn .close:before,
#panel-btn .close:after {
    margin-top: 0;
}
#panel-btn .close:before {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
#panel-btn .close:after {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

/************************
mv
************************/
.kv {
    padding: 90px 0 54px;
    background: url("../img/bg_kv.webp") center top;
    background-size: cover;
}
.inner_kv {
    margin: auto;
    width: 92%;
    max-width: 1400px;
    justify-content: flex-end;
    gap: 2.8%;
}
.inner_kv figure {
    width: 41.3%;
}
.kv_cnt {
    width: 50%;
    font-size: 18px;
}
.kv_lead {
    margin-bottom: 24px;
    font-size: 20px;
    color: #c5093b;
}
.kv_lead span {
    display: inline-block;
    padding: 8px 30px;
    border: 2px solid #c5093b;
}
.kv_cnt h1 {
    font-size: 52px;
    line-height: 1.4;
    margin-bottom: 16px;
}
.kv_catch {
    margin-top: 60px;
}

.sec_logo {
    padding: 40px 0;
    text-align: center;
}
.sec_logo h2 {
    font-size: 24px;
    margin: 0 auto 32px;
    width: 92%;
}
.logo_s_01 {
    margin-bottom: 30px;
}

.sec_def {
    padding: 60px 0;
}
.inner_1200 {
    width: 84%;
    max-width: 1200px;
    margin: auto;
}
.inner_1000 {
    width: 84%;
    max-width: 1000px;
    margin: auto;
}
.inner_860 {
    width: 84%;
    max-width: 860px;
    margin: auto;
}
.sec_def h2 {
    font-size: 36px;
    /* margin-bottom: 30px; */
    text-align: center;
}
.sec_def h2 span {
    font-family: "Roboto", sans-serif;
    display: block;
    text-align: center;
    font-size: 20px;
    color: #7bb5e0;
    margin-bottom: 30px;
    font-weight: 600;
}
.sec_def .section-title-en {
    font-family: "Roboto", sans-serif;
    display: block;
    text-align: center;
    font-size: 20px;
    color: #7bb5e0;
    margin-bottom: 30px;
    font-weight: 600;
}

.list_news_top {
    border-top: 1px solid #e6e6e6;
}
.list_news_top li {
    border-bottom: 1px solid #e6e6e6;
}
.list_news_top a {
    font-weight: bold;
    padding: 16px 20px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.list_news_top a .cate {
    padding: 2px 20px;
    background: #f4f4f4;
    border-radius: 100vh;
    font-size: 14px;
    width: 160px;
    text-align: center;
    font-weight: 500;
}
.list_news_top a .date {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    color: #c4c4c4;
    width: 140px;
    text-align: right;
}
.list_news_top a .ttl_news {
    width: calc(100% - 340px);
}
/* .list_news_top a .ttl_news strong{
	font-weight: 400;
} */

.sec_about {
    background: url("../img/bg_about.webp") no-repeat center top;
    background-size: 100% auto;
    padding-bottom: 80px;
}

.about_lead {
    text-align: center;
    font-size: 24px;
    margin-bottom: 40px;
    background: #c5093b;
    color: #fff;
}
.about_lead_security {
    background: none;
    color: #333;
}
.pic_about {
    text-align: center;
    margin-bottom: 80px;
}
.list_point {
    margin-bottom: 80px;
}
.list_point li {
    width: 32%;
    border: 1px solid #e6e6e6;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}
.list_point li h3 {
    /*color: #c5093b;*/
    text-align: center;
    font-size: 26px;
    font-family: "Roboto", sans-serif;
    padding-bottom: 10px;
    margin-bottom: 20px;
    position: relative;
}
.list_point li h3::after {
    content: "";
    position: absolute;
    display: block;
    width: 30px;
    height: 2px;
    background: #7bb5e0;
    bottom: 0;
    left: 45%;
}
.list_point li p {
    font-size: 18px;
}
.ct_area {
    padding: 68px 0;
    /*background: url("../img/bg_cta.webp") center;*/
    background-size: cover;
    text-align: center;
}
.ct_area.ct2 {
    background: none;
}
.ct_area h2 {
    font-size: 36px;
    margin-bottom: 36px;
    line-height: 1.4;
}
.list_ct {
    margin-bottom: 30px;
    gap: 20px;
}
.ct_area.ct2 .list_ct {
    margin-bottom: 0;
}
.list_ct li {
    width: 100%;
    max-width: 400px;
    font-size: 14px;
}
.list_ct li a {
    display: block;
    background: #fff;
    border: 2px solid #c5093b;
    font-size: 22px;
    font-weight: bold;
    padding: 16px;
    border-radius: 100vh;
    margin-top: 6px;
    color: #c5093b;
}
.list_ct li:last-child a {
    background: #c5093b;
    color: #fff;
}
.list_ct li a:hover {
    opacity: 0.5;
}
.lead_ct {
    font-size: 20px;
    margin-top: 30px;
}

.sec_prob {
    padding: 60px 0 106px;
    background: #e5f0f9;
    text-align: center;
}
.sec_prob h2 {
    font-size: 36px;
    margin-bottom: 36px;
    line-height: 1.4;
}
.prob_wrap {
    gap: 4.2%;
}
.prob_wrap ul {
    width: 34.5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}
.prob_wrap ul li {
    min-height: 122px;
    padding: 10px;
    background: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sec_reason {
    padding: 1px 0 10px;
}
.sec_reason .fuki {
    text-align: center;
    font-size: 24px;
    margin: -44px 0 50px;
    color: #fff;
}
.sec_reason .fuki span {
    padding: 32px 52px;
    background: #c5093b;
    border-radius: 100vh;
    display: inline-block;
    position: relative;
}
.sec_reason .fuki span::after {
    display: block;
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    margin: auto;
    border-right: 8px solid transparent;
    border-top: 14px solid #c5093b;
    border-left: 8px solid transparent;
    bottom: -13px;
    left: 0;
    right: 0;
}
.reason_catch {
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
}
.reason_catch .num_reason {
    font-size: 40px;
    color: #c5093b;
}
.sec_reason h2 {
    font-size: 36px;
    margin-bottom: 36px;
    line-height: 1.4;
    text-align: center;
}
.list_reason li {
    gap: 5%;
    align-items: flex-end;
    justify-content: center;
}
.list_reason li:not(:last-child) {
    margin-bottom: 36px;
}
.list_reason li figure {
    width: 32%;
}
.list_reason li .reason_cnt {
    width: 50%;
}
.list_reason li:nth-child(odd) {
    flex-direction: row-reverse;
}
.list_reason li h3 {
    font-size: 20px;
    gap: 16px;
    margin-bottom: 24px;
}
.list_reason li h3 .num {
    font-size: 70px;
    color: #c5093b;
    line-height: 1;
}
.list_reason li h3 .ttl_reason {
    width: calc(100% - 102px);
    line-height: 1.4;
}
.reason_maker {
    font-weight: bold;
    color: #c5093b;
}

.ct_fuki {
    margin: 0 auto 30px;
    width: 100%;
    max-width: 413px;
    position: relative;
    background: #df8099;
    border-radius: 4px;
    padding: 16px;
    color: #fff;
}
.ct_fuki span {
    font-size: 20px;
}
.ct_fuki::after {
    display: block;
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    margin: auto;
    border-right: 7px solid transparent;
    border-top: 12px solid #df8099;
    border-left: 7px solid transparent;
    bottom: -11px;
    left: 0;
    right: 0;
}

.tb_wrap {
    overflow: auto;
}
.sec_feature {
    background: #f5f5f5;
}

.feature_catch {
    text-align: center;
    margin-bottom: 35px;
}
.feature_catch span {
    background: #fff;
    padding: 24px 30px;
    border-radius: 100vh;
    position: relative;
    display: inline-block;
}
.feature_catch span::after {
    display: block;
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    margin: auto;
    border-right: 7px solid transparent;
    border-top: 12px solid #fff;
    border-left: 7px solid transparent;
    bottom: -11px;
    left: 0;
    right: 0;
}

.chart {
    margin-bottom: 120px;
    gap: 30px;
}
.chart li {
    font-size: 20px;
    padding: 6px 20px;
    background: #c5093b;
    border-radius: 4px;
    color: #fff;
    position: relative;
}
.chart li:not(:last-child)::after {
    display: block;
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    margin: auto;
    border-bottom: 7px solid transparent;
    border-top: 7px solid transparent;
    border-left: 8px solid #c5093b;
    bottom: 0;
    top: 0;
    right: -20px;
}
.list_chart > li:not(:last-child) {
    margin-bottom: 120px;
}
.chart_head {
    margin-bottom: 44px;
    align-items: flex-end;
}
.chart_head h3 {
    width: 360px;
    position: relative;
    font-size: 36px;
    z-index: 1;
    line-height: 1;
}
.chart_head h3 .en_ttl {
    position: absolute;
    z-index: -1;
    color: #ecd5d9;
    font-size: 80px;
    letter-spacing: 5px;
    font-family: "Roboto", sans-serif;
    bottom: 8px;
}
.chart_head p {
    width: 100%;
    max-width: 640px;
    margin-top: 20px;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    z-index: 2;
}
.list_f_i {
    gap: 4%;
    margin-bottom: 40px;
}
.list_f_i li {
    width: 30%;
    max-width: 220px;
    font-size: 14px;
}
.list_f_i li figure {
    text-align: center;
    margin-bottom: 10px;
}
.list_f_i li h4 {
    font-size: 16px;
    margin-bottom: 4px;
    text-align: center;
}
.other_box {
    padding: 1px 36px 28px;
    border: 2px solid #e7aebd;
    border-radius: 4px;
}
.other_box h4 {
    font-size: 18px;
    color: #033333;
    margin-bottom: 20px;
    margin-top: -16px;
}
.other_box h4 span {
    padding: 0 26px;
    background: #f5f5f5;
}
.list_f_o {
    gap: 40px;
}
.list_f_o li {
    align-items: center;
    gap: 12px;
    font-weight: 500;
    min-width: 280px;
}
.case_btn {
    margin: 0 0 40px;
}
.case_btn a {
    display: block;
    background: #c5093b;
    border: 2px solid #c5093b;
    font-size: 22px;
    font-weight: bold;
    padding: 16px;
    border-radius: 100vh;
    margin-top: 6px;
    color: #fff;
    text-align: center;
    width: 100%;
    max-width: 400px;
}
.case_btn a:hover {
    opacity: 0.5;
}
.slider_case {
    border-bottom: 1px solid #d6d6d6;
    border-top: 1px solid #d6d6d6;
    margin: auto;
    max-width: 900px;
    margin-bottom: 30px !important;
}
.slick-dots {
    position: absolute;
    bottom: -30px;
    text-align: center;
}
.slick-dots li {
    width: auto;
    margin: 0 5px;
}
.slick-dots li button {
    padding: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #d6d6d6;
}
.slick-dots li.slick-active button {
    border: 2px solid #c5093b;
    background: #c5093b;
}
.slider_case .inner_slider {
    padding: 40px 44px;
}
.case_head {
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}
.case_head figure img {
    width: 100px;
}
.case_head h3 {
    font-size: 20px;
}
.slider_case li article {
    margin-top: 30px;
}
.slider_case li article h4 {
    padding-bottom: 4px;
    margin-bottom: 8px;
    border-bottom: 1px solid #d6d6d6;
}
.slider_case li article p {
    font-weight: 400;
}

.sec_flow {
    background: #e5f0f9;
}

.lead_flow {
    text-align: center;
    margin-bottom: 30px;
}
.list_flow {
    text-align: center;
}
.list_flow li {
    width: 15%;
    min-height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    border-radius: 4px;
    position: relative;
    background: #fff;
    color: #415c87;
    font-size: 14px;
}
.list_flow li:not(:last-child)::after {
    display: block;
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    margin: auto;
    border-left: 10px solid #fff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    bottom: 0;
    top: 0;
    right: -9px;
}
.wrap_faq {
    margin: auto;
    max-width: 800px;
}
.wrap_faq dl {
    margin-bottom: 20px;
}
.wrap_faq dl:last-of-type {
    margin-bottom: 0;
}

.icon_faq {
    font-size: 42px;
    color: #262d45;
    width: 46px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    line-height: 1;
}
.icon_faq.icon_a {
    color: #c5093b;
}
.wrap_faq dl dt {
    cursor: pointer;
    position: relative;
    background: #f5f5f5;
    border-radius: 4px;
    padding: 16px 50px 16px 24px;
}
.wrap_faq dl dt h3 {
    width: calc(100% - 46px);
    font-size: 18px;
    font-weight: 600;
}
.wrap_faq dl dt span {
    display: block;
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 20px;
    height: 20px;
}
.wrap_faq dl dt span::before,
.wrap_faq dl dt span::after {
    display: block;
    content: "";
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #484848;
    transition: all 0.3s ease-in-out 0s;
}
.wrap_faq dl dt span::before {
    width: 100%;
    height: 2px;
}
.wrap_faq dl dt span::after {
    height: 100%;
    width: 2px;
}
.wrap_faq dl dt.is-active span::after {
    height: 0;
}
.wrap_faq dl dd {
    display: none;
    padding: 16px 50px 16px 24px;
}
.a_box {
    width: calc(100% - 46px);
    align-self: center;
    font-weight: 500;
}

.ft_info {
    padding: 36px 0;
}
.tb_ft {
    margin: auto;
}
.tb_ft th {
    text-align: right;
    vertical-align: top;
    padding-right: 60px;
}
.tb_ft th.th_b {
    font-size: 28px;
}
.tb_ft tr:first-of-type th,
.tb_ft tr:first-of-type td {
    padding-bottom: 30px;
}
.tb_ft tr td {
    font-size: 14px;
    font-weight: 400;
}
.name_comp {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}
.sub_comp {
    font-weight: 700;
    margin-bottom: 10px;
}
.ft_nav {
    padding: 32px 4%;
    border-top: 1px solid #d6d6d6;
    font-size: 14px;
}
.ft_nav li {
    padding: 0 16px;
}
.ft_nav li:not(:last-child) {
    border-right: 1px solid #333333;
}
.copy {
    background: #333333;
    text-align: center;
    color: #fff;
    font-size: 10px;
    font-family: "Roboto", sans-serif;
    padding: 32px 0;
}
main {
    padding: 80px 0 80px;
}
.bg_g {
    background: #f8f8f8;
}
.ttl_sub {
    text-align: center;
    padding: 70px 4% 50px;
    font-size: 36px;
}
.ttl_sub span {
    font-family: "Roboto", sans-serif;
    display: block;
    font-size: 20px;
    color: #7bb5e0;
}
.contat_lead {
    text-align: center;
    font-weight: 500;
}
.form_wrap {
    margin: 40px auto 0;
    max-width: 800px;
    border-radius: 10px;
    padding: 30px 100px;
    background: #fff;
}

.lead_news {
    text-align: center;
    font-weight: 500;
    margin-bottom: 60px;
}
.lead_news.tag_lead {
    text-align: left !important;
}
.lead_news p:not(:last-of-type) {
    margin-bottom: 10px;
}
.list_news_archive {
    margin: 0 auto 60px;
    max-width: 960px;
    gap: 58px 6.5%;
}
.list_news_archive li {
    width: 29%;
}
.list_news_archive li a:hover {
    opacity: 0.5;
}
.list_news_archive li:nth-child(n + 4) {
    border-top: 1px solid #e6e6e6;
    padding-top: 40px;
}
.list_news_archive li figure {
    overflow: hidden;
    border-radius: 5px;
    border: 1px solid #e6e6e6;
    margin-bottom: 10px;
    aspect-ratio: 278 / 185;
}
.list_news_archive li figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.list_news_archive li .cate {
    padding: 2px 20px;
    background: #f4f4f4;
    border-radius: 100vh;
    font-size: 14px;
    width: 160px;
    text-align: center;
    font-weight: 500;
}
.list_news_archive li .ttl_news {
    font-size: 14px;
    margin: 10px 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 行数を指定 */
}
.list_news_archive li .date {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    color: #c4c4c4;
    text-align: right;
}
.pagination {
    margin: 40px 0 0;
    text-align: center;
    position: relative;
}
.pagination a,
.pagination span {
    display: inline-block;
    height: 60px;
    width: 60px;
    text-align: center;
    line-height: 60px;
    margin: 0 3px;
}
.pagination a {
    color: #222;
    border: 1px solid #222;
}
.pagination a:hover {
}
.pagination span.current {
    border: 1px solid #222;
}
.pagination a.pg_pre,
.pagination a.pg_next {
    color: #fff;
    position: relative;
}
.pagination a.pg_pre::after {
    display: block;
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 26px;
    margin: auto;
    border-bottom: 1px solid #222;
    border-left: 1px solid #222;
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.pagination a.pg_next::after {
    display: block;
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 26px;
    margin: auto;
    border-top: 1px solid #222;
    border-right: 1px solid #222;
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.pagination a:hover {
    text-decoration: none;
}
@media screen and (max-width: 750px) {
    .pagination {
        margin: 10% 0 0;
    }
    .pagination a,
    .pagination span {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
    .pagination a.pg_pre::after {
        left: 13px;
        width: 6px;
        height: 6px;
    }
    .pagination a.pg_next::after {
        right: 13px;
        width: 6px;
        height: 6px;
    }
}
.pan {
    padding: 80px 0 60px;
    font-size: 12px;
    font-weight: 500;
}
.pan a {
    padding-right: 20px;
    margin-right: 16px;
    position: relative;
}
.pan a::after {
    position: absolute;
    display: block;
    content: "";
    width: 4px;
    height: 4px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    transform: rotate(45deg);
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.wrap_single {
    margin: auto;
    max-width: 960px;
}
.single__dates {
    display: flex;
    gap: 10px;
    font-size: 14px;
    font-weight: 400;
}
.wrap_single h1 {
    font-size: 36px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #e6e6e6;
}
.date_single {
    text-align: right;
    font-size: 14px;
    color: #c4c4c4;
    margin-bottom: 48px;
}
.single_body {
    padding-bottom: 100px;
}
.wrap_single p {
    font-weight: 500;
    margin-bottom: 16px;
}
.wrap_single h1,
.wrap_single h2,
.wrap_single h3,
.wrap_single h4,
.wrap_single h5,
.wrap_single h6 {
    clear: both;
    font-weight: 900;
    margin: 80px 0 30px;
}
.wrap_single h2 {
    font-size: 26px;
    line-height: 1.25;
}

.wrap_single h3 {
    font-size: 20px;
    line-height: 1.2173913043;
}

.wrap_single h4,
.wrap_single h5,
.wrap_single h6 {
    font-size: 19px;
    line-height: 1.1052631579;
}

.wrap_single h4 {
    letter-spacing: 0.13333em;
}

.wrap_single h6 {
    font-style: italic;
}

.wrap_single h2:first-child,
.wrap_single h3:first-child,
.wrap_single h4:first-child,
.wrap_single h5:first-child,
.wrap_single h6:first-child {
    margin-top: 0;
}

.wrap_single b,
.wrap_single strong {
    font-weight: 700;
}

.wrap_single ul,
.wrap_single ol {
    margin: 0 0 28px 0;
    padding: 0;
}

.wrap_single ul {
    list-style: disc;
    margin-left: 20px;
}

.wrap_single ol {
    list-style: decimal;
}

.wrap_single li > ul,
.wrap_single li > ol {
    margin-bottom: 0;
}

.wrap_single li > ul,
.wrap_single blockquote > ul {
    margin-left: 20px;
}

.wrap_single li > ol,
.wrap_single blockquote > ol {
    margin-left: 24px;
}

.wrap_single dl {
    margin: 0 0 28px;
}

.wrap_single dt {
    font-weight: bold;
}

.wrap_single dd {
    margin: 0 0 28px;
}

.wrap_single table,
.wrap_single th,
.wrap_single td,
.mce-item-table,
.mce-item-table th,
.mce-item-table td {
    border: 1px solid #d1d1d1;
}

.wrap_single a {
    color: #007acc;
}

.wrap_single table,
.mce-item-table {
    border-collapse: separate;
    border-spacing: 0;
    border-width: 1px 0 0 1px;
    margin: 0 0 28px;
    width: 100%;
}
.wrap_single table th {
    background: #8498ac;
    text-align: left;
    color: #fff;
    font-weight: 600;
}
.wrap_single table th,
.mce-item-table th,
.wrap_single table caption {
    border-width: 0 1px 1px 0;
    font-size: 16px;
    font-weight: 700;
    padding: 7px;
    text-align: left;
    vertical-align: baseline;
}

.wrap_single table td,
.mce-item-table td {
    border-width: 0 1px 1px 0;
    font-size: 16px;
    padding: 7px;
    vertical-align: baseline;
}
.relation h2 {
    font-size: 24px;
    margin-bottom: 40px;
}
.relation h2 span {
    font-family: "Roboto", sans-serif;
    display: block;
    font-size: 16px;
    color: #7bb5e0;
}
.pan.pan_list {
    padding-top: 0;
}

.aboutus-text {
    text-align: left;
}

.aboutus-text p {
    font-size: 18px;
    font-weight: 500;
    padding: 0 50px;
    letter-spacing: 2px;
}

.aboutus-title {
    margin: 50px 0;
}

.aboutus-title span {
    position: relative;
    padding: 20px 60px;
    background: #c5093b;
    z-index: 1;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    letter-spacing: 2px;
    font-weight: 600;
}

.aboutus-title span:before {
    position: absolute;
    content: "";
    left: 0px;
    top: -3px;
    width: 0;
    height: 0;
    border: none;
    border-left: solid 60px #fafcfc;
    border-bottom: solid 100px transparent;
    z-index: 2;
}

.aboutus-title span:after {
    position: absolute;
    content: "";
    right: 0px;
    top: -3px;
    width: 0;
    height: 0;
    border: none;
    border-left: solid 60px transparent;
    border-bottom: solid 100px white;
    z-index: 2;
}

.indivision {
    margin: 0px 50px;
}

.indivision h2,
.indivision h2 a {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 2px;
}

.indivision p {
    font-size: 18px;
    letter-spacing: 2px;
}
.tags a {
    display: inline-block;
    line-height: 30px;
    margin-right: 5px;
    padding: 0 1em;
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 3px;
    white-space: nowrap;
    color: #333;
    font-size: 13px;
    text-decoration: none;
}
.tags a:hover {
    opacity: 0.5;
}

.option_disc_body {
    font-weight: 500;
    margin-bottom: 60px;
}
.option_disc_body h2 {
    font-size: 24px;
    margin: 24px 0;
}
.option_disc_body h3 {
    font-size: 20px;
    margin: 20px 0;
}
.option_disc_body p {
    margin-bottom: 16px;
}
.option_disc_body figure {
    margin: 30px 0;
}
.option_disc_body a {
    text-decoration: underline;
    color: #999;
}

.aligncenter {
    text-align: center;
    margin: auto;
    display: block;
}
.kv_p {
    font-size: 20px;
}
/********************************
sp
********************************/
@media screen and (max-width: 1316px) {
    .gnav_list {
        gap: 16px;
    }
}
@media screen and (max-width: 1100px) {
    .menu_btn {
        display: block;
    }
    .inner_header {
        height: 50px;
    }
    .gnav {
        position: fixed;
        top: 50px;
        width: 100%;
        background: #fff;
        right: 0;
        padding: 15px 4%;
        transform-origin: top;
        transform: scale(1, 0);
    }
    .open .inner_header {
        background: #fff;
    }
    .open .gnav {
        transform: scale(1, 1);
    }
}
@media screen and (max-width: 768px) {
    .inner_header {
        background: #fff;
    }
    .gnav_list li {
        width: 100%;
        font-size: 18px;
    }
    .h_b_list li {
        width: 100%;
        text-align: center;
    }
    .h_b_list {
        gap: 20px;
    }
    .gnav {
        height: calc(100% - 50px);
    }
    .sub_menu {
        position: relative;
        transform: scale(1, 1);
    }
}
@media screen and (max-width: 1406px) {
    .kv_cnt h1 {
        font-size: 3vw;
    }
}
@media screen and (max-width: 1245px) {
    main {
        padding-top: 50px;
    }
}
@media screen and (max-width: 768px) {
    body {
        font-size: 14px;
    }
    .sp {
        display: block !important;
    }
    .pc {
        display: none !important;
    }
    .kv {
        background: none;
    }
    .kv_p {
        font-size: 14px;
    }
    .kv_cnt {
        width: 100%;
        font-size: 10px;
    }
    .kv_lead {
        font-size: 12px;
    }
    .kv_cnt h1 {
        font-size: 26px;
        text-align: center;
    }
    .inner_kv figure {
        width: 100%;
        margin: 25px 0;
        text-align: center;
    }
    .inner_kv figure img {
        width: 70%;
    }
    .sec_logo h2 {
        font-size: 18px;
    }
    .sec_about,
    .sec_prob,
    .sec_reason,
    .sec_feature,
    #anc_04,
    #anc_03,
    .sec_flow,
    #anc_06 {
        content-visibility: auto;
        contain-intrinsic-size: 1px 900px;
    }
    .sec_def h2 {
        font-size: 20px;
    }
    .sec_def h2 span {
        font-size: 12px;
    }
    .sec_def {
        padding: 40px 0;
    }
    .list_news_top a {
        display: block;
    }
    .list_news_top a .ttl_news {
        width: 100%;
        margin: 10px 0;
    }
    .list_news_top a .date {
        width: 100%;
    }
    .about_lead {
        font-size: 18px;
    }
    .list_point {
        margin-bottom: 40px;
        gap: 30px;
    }
    .list_point li {
        width: 100%;
    }
    .list_point li h3 {
        font-size: 24px;
        padding-bottom: 6px;
        margin-bottom: 10px;
    }
    .ct_area h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .ct_fuki span {
        font-size: 18px;
    }
    .lead_ct {
        font-size: 16px;
    }
    .sec_prob h2,
    .sec_reason h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .prob_wrap {
        gap: 20px;
    }
    .prob_wrap ul {
        width: 100%;
    }
    .prob_wrap ul:last-of-type {
        order: 2;
    }
    .prob_wrap figure {
        order: 3;
        margin: auto;
    }
    .sec_reason .fuki {
        font-size: 18px;
        margin: -50px 0 30px;
    }
    .sec_reason .fuki span {
        padding: 20px 30px;
    }
    .list_reason li .reason_cnt {
        width: 100%;
    }
    .list_reason li figure {
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }
    .list_reason li h3 {
        font-size: 15px;
    }
    .list_reason li h3 .num {
        font-size: 28px;
    }
    .list_reason li h3 .ttl_reason {
        width: calc(100% - 50px);
    }
    .tb_wrap img {
        width: 600px;
        max-width: 600px;
    }
    .feature_catch {
        font-size: 12px;
    }
    .feature_catch span {
        padding: 20px;
    }
    .chart li {
        font-size: 14px;
        padding: 4px 10px;
    }
    .chart {
        gap: 20px;
    }
    .chart li:not(:last-child)::after {
        right: -14px;
    }
    .list_chart > li:not(:last-child) {
        margin-bottom: 80px;
    }
    .chart_head h3 {
        font-size: 30px;
        width: 100%;
    }
    .chart_head h3 .en_ttl {
        font-size: 60px;
    }
    .list_f_i {
        gap: 30px;
    }
    .list_f_i li {
        width: 100%;
    }
    .other_box {
        padding: 1px 20px 20px;
    }
    .list_f_o {
        gap: 20px;
    }
    .list_f_o li p {
        width: calc(100% - 82px);
    }
    .slider_case .inner_slider {
        padding: 20px;
    }
    .slider_case {
        width: 88%;
    }
    .case_head h3 {
        font-size: 18px;
    }
    .list_flow {
        gap: 15px;
    }
    .list_flow li {
        width: 100%;
        min-height: 60px;
    }
    .list_flow li:not(:last-child)::after {
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid #fff;
        border-bottom: none;
        bottom: -9px;
        top: auto;
        right: 0;
        left: 0;
    }
    .icon_faq {
        font-size: 30px;
        width: 34px;
    }
    .wrap_faq dl dt h3 {
        width: calc(100% - 34px);
        font-size: 16px;
    }
    .tb_ft th {
        padding-right: 30px;
        width: 120px;
    }
    .tb_ft th.th_b {
        font-size: 18px;
    }
    .ft_nav li {
        padding: 0 12px;
        font-size: 12px;
    }
    .ttl_sub {
        font-size: 24px;
    }
    .ttl_sub span {
        font-size: 14px;
    }
    .list_news_archive li {
        width: 100%;
    }
    .list_news_archive {
        gap: 30px;
    }
    .list_news_archive li:nth-child(n + 4),
    .list_news_archive li:nth-child(n + 2) {
        padding-top: 30px;
        border-top: 1px solid #e6e6e6;
    }
    .lead_news {
        margin-bottom: 30px;
    }
    .pan {
        padding: 40px 0 30px;
    }
    .wrap_single h1 {
        font-size: 24px;
        padding-bottom: 8px;
        margin-bottom: 8px;
    }
    .date_single {
        margin-bottom: 24px;
    }
    .single_body {
        padding-bottom: 50px;
    }
    .relation h2 {
        margin-bottom: 30px;
    }
    .aboutus-text p {
        font-size: 15px;
    }
    .aboutus-title span {
        padding: 10px 25px 10px 30px;
        font-size: 15px;
        letter-spacing: 0;
    }
    .aboutus-title span:before {
        border-left: solid 35px #fafcfc;
        border-bottom: solid 65px transparent;
    }
    .aboutus-title span:after {
        border-left: solid 35px transparent;
        border-bottom: solid 65px white;
    }
    .indivision h2 {
        font-size: 18px;
    }
    .indivision p {
        font-size: 15px;
    }
    .form_wrap {
        padding: 20px;
    }
}

/* start 2026/5/27 */

.wp-block-list {
    margin: 30px 0 0 !important;

    li {
        font-size: 18px;
    }
}

.wp-block-table {
    table {
        thead {
            tr {
                td {
                    background-color: rgba(132, 152, 172, 0.5);
                    font-weight: 500;
                    text-align: center;
                }
            }
        }
    }
}

.cdp-text-overlay h1 {
    display: none !important;
}

/* end 2026/5/27*/

.js-anchor {
    scroll-margin-top: 100px;
}

@media (max-width: 768px) {
    .js-anchor {
        scroll-margin-top: 70px;
    }
    .section-title-en {
        font-size: 12px !important;
    }
}
