@charset "UTF-8";

/*-----------------
 common
-----------------*/ 
* {
    box-sizing: border-box;
}

header li, header a{
	box-sizing: content-box;
}

section p, section h1, section h2, section h3, section h4, section h5, section img, section ul, section li, section dl, section dt, section dd, table th, table td {
    line-height: 1.5em;
}
main {
    padding: 73px 0 0;
}

section p{
	line-height: 1.5em}

a,
button {
    -webkit-transition: all 0.2s ease-in-out 0.125s;
    transition: all 0.2s ease-in-out 0.125s;
}

a:hover {
 	text-decoration: none;
}

a:hover, a:focus , button:focus {
	text-decoration: none;
	outline: 0;
}

img {
    width: 100%;
}

span.inline_block {
    display: inline-block;
}

span.yellow_mark {
    background: linear-gradient(transparent 60%, #ff6 60%);
}


.sec_common {
    width: 100%;
    background-color: #fff;
}

.inner_common, .bgcolor-secondary {
    width: 90%;
    max-width: 64em;
    margin: auto;
    padding: 4em 0;
	/*padding: 80px min(4%, 56px);
    width: min(100%, 1440px);
	padding: 4em 0 2em;*/
}

.sec_common h2 {
	font-size: 29px;
 /*   font-size: 40px;*/
    color: #257C3A;
    text-align: center;
    font-weight: 700;
}

#sec-record.sec_common h2{
	text-align: left;
}

.sec_common .ttl_with_icon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.sec_common .ttl_with_icon img {
	height: 100px;
    /*height: 125px;*/
    width: auto;
	display: inline-block;
}

.sec_common .ttl_with_icon .ctl_icon_DtoD {
	width:150px;
    /*width: 184px;*/
    object-fit: cover;
}

.sec_common .ttl_with_icon span {
    flex-grow: 1;
    max-width: fit-content;
}

.desc_common {
    font-size: 18px;
    margin: 1.35em auto;
    width: min(100%, 1024px);
}

.sec_common .ttl_with_icon sup {
	font-size: 0.6em;
    font-weight: 400;
    vertical-align: text-top;
	color:#333;
}

@media screen and (max-width: 75em) {
    main {
        padding: 56px 0 0;
    }
    
}
@media screen and (max-width: 64em) {

    .sec_common h2 {
        font-size: 32px;
    }

    .sec_common .ttl_with_icon img {
        height: 90px;
    }

    .sec_common .ttl_with_icon .ctl_icon_DtoD {
        width: 142px;
    }

    .desc_common {
        font-size: 20px;
    }
}
@media screen and (max-width:48em) {
    .inner_common, .bgcolor-secondary {
		width: 100%;
        padding: 40px min(4%, 56px);
    }
    .sec_common h2 {
        font-size: 24px;
    }

    .sec_common .ttl_with_icon {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .sec_common .ttl_with_icon img {
        height: 64px;
    }

    .sec_common .ttl_with_icon .ctl_icon_DtoD {
        width: 100px;
    }
    .desc_common {
        font-size: 16px;
    }
}
/*-----------------
 Button
-----------------*/ 
.btn_cta {
    display: block;
    padding: 1.1em 56px;
	width: min(80%, 360px);
    margin: 0 auto;
    background-color: #FF7800;
    border: 2px solid #fff;
    border-radius: 6px;
    box-shadow: 4px 4px 6px rgba(51,51,51,.2);
    color: #fff;
	font-size: 20px;
    font-weight: 700;
    text-align: center;
    position: relative;
    transition: opacity .3s;
}

@media (max-width: 1200px) {
.btn_cta {
	width: min(80%, 460px);
}
}

.btn_cta:hover {
    opacity: .7 ;
}

.btn_cta::before {
    content: "";
	width: 15px;
    height: 15px;
	border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
/*    width: 20px;
    height: 20px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;*/
    position: absolute;
    top: 50%;
    right: 32px;
    translate: 0 -50%;
    rotate: -45deg;
}

.btn_cta:has(.fukidashi) {
    margin-top: 1em;
}

.btn_cta .fukidashi {
    width: 10em;
	font-size: 18px;
/*    font-size: 20px;*/
    font-weight: 700;
    color: #fff;
    position: absolute;
    top: -6px;
    left: 50%;
    translate: -50% -100%;
}

.btn_link {
    display: block;
    width: fit-content;
	min-width: 350px;
 /*   min-width: 456px;*/
    text-align: center;
    margin: 0 auto;
    padding: 0.67em 64px 0.75em 32px;
    border-radius: 4px;
    border: 2px solid #257C3A;
    box-shadow: 4px 4px 6px rgba(51, 51, 51, 0.2);
    background-color: #fff;
    color: #257C3A;
	font-size: 20px;
   /* font-size: 24px;*/
    font-weight: 700;
    line-height: 1.5;
    position: relative;
}

.btn_link:hover {
    background: #257c3a;
    color: #fff;
    box-shadow: none;
}

.btn_link::after {
    content: "";
    width: 16px;
    height: 16px;
    border-right: 2px solid #85B71C;
    border-bottom: 2px solid #85B71C;
    position: absolute;
    top: 50%;
    right: 25px;
    translate: 0 -50%;
    rotate: -45deg;
    transition: .3s;
}


.btn_link.shape_rounded {
    border-radius: 9999px;
    border-color: #40A83E;
    color: #40A83E;
    padding-inline: 32px;
}

.btn_link.shape_rounded:hover {
    background-color: #40A83E;
    color: #fff;
}

.btn_link.shape_rounded::before {
    content: none;
}

@media (max-width: 75em) {
    .btn_cta, .btn_link {
        font-size: 24px;
    }
}
@media (max-width: 64em) {
    .btn_cta, .btn_link {
        font-size: 20px;
    }
}
@media (max-width: 48em) {
    .btn_cta {
        font-size: 18px;
        padding: 1em 32px;
        width: min(80%, 400px);
    }
    .btn_cta::before {
        width: 10px;
        height: 10px;
        right: 16px;
    }
    .btn_cta .fukidashi {
        font-size: 16px;
    }
    .btn_link {
        font-size: 18px;
        width: 100%;
        min-width: unset;
        max-width: fit-content;
        padding: 0.67em 48px 0.75em 16px;
    }

    .btn_link::after {
        right: 8px;
    }
}
/*-----------------
 MV
-----------------*/ 
.sec_mv {
    background: #257C3A;
}

.inner_mv {
	width: min(100%, 1240px);
    padding: 56px min(4%, 56px);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    position: relative;
}

.mv_l {
    width: 68%;
}

.sec_mv h1 {
    margin: 0 0 .5em;
	font-size: min(3.25vw, 38px);
    font-weight: 700;
    color: #fff;
    -webkit-text-stroke: 4px #85B71C;
    -webkit-text-fill-color: #fff;
    text-stroke: 4px #85B71C;
    paint-order: stroke;
    text-shadow: 0 3px 3px rgba(51,51,51,.4);
}

.desc_mv_wrap {
    display: grid;
    grid-auto-rows: 1fr;
	padding: 0 0 0 20px;
    margin: 0 0 3.5em;
}

.desc_mv {
	font-size: min(2.4vw, 26px);
    font-weight: 700;
    color: #F8F688;
    text-shadow: 0 3px 3px rgba(51,51,51,.4);
}

.desc_mv .size_s {
    font-size: min(1.4vw, 20px);
    font-weight: 500;
    color: #fff;
}

.mv_r {
    width: 38%;
    position: absolute;
    top: 50%;
    right: 0;
    translate: 4% -50%;
}

@media (max-width: 64em) {
    .mv_l {
        width: 100%;
        text-align: center;
    }

    .sec_mv h1 {
        font-size: 36px;
    }

    .desc_mv_wrap {
        padding: 0;
        display: block;
    }

    .desc_mv:not(:has(.size_s)) {
        margin-bottom: .1em;
    }

    .desc_mv {
        font-size: 30px;
    }

    .desc_mv .size_s {
        font-size: 20px;
    }

    .mv_r {
        position: unset;
        translate: 0;
        margin: 2em auto 0;
        width: 50%;
    }
}

@media (max-width: 48em) {
    .inner_mv {
        padding: 24px min(4%, 56px);
    }

    .sec_mv h1 {
        font-size: 30px;
    }
    .desc_mv {
        font-size: 20px;
    }

    .desc_mv .size_s {
        font-size: 14px;
    }
    .mv_r {
        width: 70%;
    }
}

/*-----------------
 目次
-----------------*/ 
.sec_toc {
    background-color: #EDF5ED;
}

.sec_toc h2 {
    font-weight: 400;
    color: #333;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
}

.sec_toc h2 img {
	height: 38px;
    display: inline-block;
    width: fit-content;
}

.sec_toc h2 .size_l {
    font-size: 2em;
    font-weight: 700;
}

.toc_contents {
	margin: 48px auto 80px;
    display: grid;
    grid-auto-rows: 1fr;
    gap: 20px;
}

.toc_row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    gap: 15px;
}

.toc_item {
    width: min(calc((100% - 15px * 3) / 4), 249px);
    padding: 24px 15px 88px;
    background-color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: .3s;
}

.toc_item:has(a:hover) {
    box-shadow: 0 0 12px rgba(51, 51, 51, 0.1);
    scale: 1.05;
}

.toc_item img {
    height: 100px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}


.toc_item .ctl_icon_DtoD {
    object-fit: cover;
    width: min(100%, 140px);
}
.toc_item .ctl_icon_format {
    object-fit: cover;
    width: min(100%, 120px);
}

.toc_item .ttl {
	font-size: 23px;
    line-height: 1.4em;
    color: #257C3A;
    text-align: center;
    font-weight: 700;
    margin: 0.75em auto 0.25em;
}

.toc_item .ttl .size_s {
	font-size: 0.75em;
    display: inline-block;
    line-height: 1.5em;
}

.toc_item .txt {
	font-size: 18px;
    line-height: 1.6em;
    text-align: center;
}

.toc_item a {
    text-align: center;
    position: absolute;
    padding: 10px 56px 12px 40px;
    box-shadow: 4px 4px 6px rgba(51, 51, 51, 0.2);
    border-radius: 9999px;
    background-color: #85B71C;
    color: #fff;
    font-weight: 700;
    bottom: 32px;
    transition: .3s;
}

.toc_item a::before {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    position: absolute;
    top: 50%;
    right: 16px;
    translate: 0 -50%;
    rotate: -45deg;
}

.toc_item a:hover {
    box-shadow: none;
}

@media (max-width: 64em) {
    .sec_toc h2 img {
        width: 480px;
    }
    .toc_item .ttl {
        font-size: 26px;
    }

    .toc_item .txt {
        font-size: 14px;
    }

    .toc_item a {
        padding: 6px 56px 8px 40px;
        font-size: 14px;
    }
}

@media (max-width: 1020px) {
.toc_item {
     width: calc((100% - 15px) / 2);
     padding: 16px 16px 64px;
}
	
.toc_item a {
        width: 88%;
        padding: 6px 24px 8px 16px;
        bottom: 16px;
    }

.toc_item a::before {
        width: 8px;
        height: 8px;
        right: 10px;
}
}

@media (max-width: 48em) {
    .sec_toc h2 img {
        width: min(100%, 360px);
    }
    .toc_contents {
        display: flex;
        flex-direction: column;
        margin: 24px auto 56px;
    }
    .toc_contents, .toc_row {
        gap: 10px;
    }
    .toc_item {
        width: calc((100% - 15px) / 2);
        padding: 16px 16px 64px;
    }

    .toc_item img {
        height: 64px;
        width: 100%;
    }

    .toc_item .ctl_icon_DtoD {
        width: min(100%, 100px);
    }

    .toc_item .ctl_icon_format {
        width: min(100%, 80px);
    }

    .toc_item .ttl {
        font-size: 20px;
    }

    .toc_item .txt {
        font-size: 12px;
    }
}

@media (max-width: 350px) {
.toc_item {
     width: 100%;
	}
}

/*-----------------
DtoDのメリット
-----------------*/ 
/* ▼ メリットの表の画像 */
.merit_table_pc, .merit_table_sp{
    width: 100%;
    margin: 0 auto 32px;
}

.merit_table_sp{
	display:none;
}

.merit_table_pc img, .merit_table_sp img{
	width: 100%;
}


@media all and (max-width: 430px) {
.merit_table_pc{
	display: none;
}
.merit_table_sp{
	display: block;
}
}

/*-----------------
発行も受取もひとつのシステムで
-----------------*/ 
.sec_system {
    background-color: #EDF5ED;

}
.about-function {
	max-width: 864px;
	margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.about-function a {
	border: solid 4px #387D3A;
	border-radius: 10px;
	background-color: #ffffff;
	width: 48%;
	text-align: center;
	padding: 25px;
	-webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
	box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
}
.about-function a:hover {
	background-color: #edf5ed;
}
.about-function a:hover div img {
    transform: scale(1.2);
}
.about-function div img {
	width: 120px;
	transition: .3s;
}
.about-function div h3 {
	font-size: 30px;
	font-weight: 700;
	color: #297f3a;
	margin: 1.3rem 0;
}
.about-function div ul li {
	color: #484848;
	text-align: left;
	font-size: 18px;
	font-weight: 700;
    padding-left: 15px;
    position: relative;
	line-height: 1.3;
}
.about-function div ul li::before {
    content: "";
    display: block;
    height: 5px;
    width: 10px;
    border-bottom: 3px solid #297f3a;
    border-left: 3px solid #297f3a;
    transform: rotate(-45deg);
	position: absolute;
    top: 6px;
    left: -7px;
}
div.top_about_function_color ul li::before {
    border-bottom: 3px solid #FFC000;
    border-left: 3px solid #FFC000;
}
.about-function p {
	color: #387D3A;
	margin-top: 20px;
	font-size: 18px;
	font-weight: 700;
	position: relative;
	display: inline-block;
	padding-left: 20px;
    line-height: 1;
}

div.top_about_function_color h3, div.top_about_function_color p {
    color: #FFC000;
}
.about-function p::before {
	content: "";
	height: 5px;
	width: 5px;
	border-bottom: 3px solid #297f3a;
	border-left: 3px solid #297f3a;
	transform: rotate(-135deg);
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	margin: 6px auto 0;
}
.about-function a:nth-of-type(2) {
	border: solid 4px #FFC000;
}
div.top_about_function_color p::before {
    border-bottom: 3px solid #FFC000;
    border-left: 3px solid #FFC000;
}

@media (max-width: 48em) {
    .about-function {
        justify-content: center;
    }
    .about-function a {
        width: 90%;
        margin-bottom: 20px;
    }
    .about-function div img {
        width: 100px;
    }
    .about-function div ul li,
    .about-function p {
        font-size: 17px;
    }
}

/*-----------------
 あらゆる帳票に対応
-----------------*/ 
.desc_flex {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    margin: 1.35em auto;
    width: min(100%, 1024px);
}

.desc_flex p {
    flex-grow: 1;
	font-size: 18px;
   /* font-size: 24px;*/
}

.desc_flex img {
    width: max(10%, 50px);
    height: auto;
    object-fit: contain;
}

@media (max-width: 64em) {
.desc_flex img {
    width: max(15.5%, 80px);
}
}

.kinds_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.kinds_list li {
    width: calc((100% - 16px * 2) / 3);
}
.kinds_list li a {
    display: block;
    height: 100%;
    padding: 1em 0.75em;
    background-color: #fff;
    border: 3px solid #257C3A;
    border-radius: 10px;
    position: relative;
    color: #257C3A;
	font-size: 26px;
 /*   font-size: 30px;*/
    font-weight: 700;
    text-align: center;
    line-height: 1;
    box-shadow: 4px 4px 6px rgba(51, 51, 51, 0.2);
}
.kinds_list li a:hover {
    background: #257c3a;
    color: #fff;
    box-shadow: none;
}
.kinds_list li a span {
    font-size: 0.625em;
    font-weight: 400;
}

.kinds_list li a::after {
    content: "";
	width: 15px;
    height: 15px;
    border-right: 3px solid #85B71C;
    border-bottom: 3px solid #85B71C;
    position: absolute;
    top: 50%;
	right:20px;
    translate: 0 -50%;
    rotate: -45deg;
}

@media (max-width: 75em) {
    .kinds_list li {
        width: calc((100% - 16px) / 2);
    }
}

@media (max-width: 64em) {
    
    .desc_flex p {
        font-size: 20px;
    }
    .kinds_list li a {
        font-size: 24px;
    }

    .kinds_list li a::after {
        width: 16px;
        height: 16px;
        right: 20px;
    }
}

@media (max-width: 48em) {
    .desc_flex {
        gap: 10px;
    }
    .desc_flex p {
        font-size: 16px;
    }
    .kinds_list li {
        width: 100%;
    }
    .kinds_list li a {
        font-size: 20px;
        padding: .75em;
    }
}

/*-----------------
あらゆる形式に対応
-----------------*/ 
.sec_format {
    background-color: #EDF5ED;
}

.format_wrap {
    background-color: #fff;
    width: min(100%, 900px);
    margin: 0 auto;
}

.format_wrap + .format_wrap {
    margin-top: 32px;
}

.format_wrap h3 {
    font-size: 24px;
    padding: 0.42em 0;
    width: 100%;
    color: #fff;
    font-weight: 700;
    text-align: center;
}

.format_wrap.seller h3 {
    background-color: #FFC000;
}

.format_wrap.buyer h3 {
    background-color: #257C3A;
}

.format_content {
    padding: 24px 32px 24px;
} 

.format_content img {
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 2px solid rgba(51, 51, 51, 0.2);
}

.format_wrap.seller .btn_link {
    border-color: #FFC000;
    color: #E7AE01;
}

.format_wrap.seller .btn_link::after {
    border-color: #FFC000;
}

.format_wrap.seller .btn_link:hover {
    background-color: #FFC000;
    color: #fff;
}

.format_wrap.seller .btn_link:hover::after {
    border-color: #fff;
}

@media (max-width: 48em) {
    .format_wrap.seller h3{
        font-size: 18px;
    }
    .format_content {
        padding: 16px 24px 24px;
    }

    .format_content img{
        padding-bottom: 16px;
        margin-bottom: 16px;
    }
}


/*-----------------
　システム連携が楽
-----------------*/
.sec_service_cooperation{
    display:flex;
    flex-flow:wrap;
    justify-content:center;
    width: min(100%, 1024px);
    margin: 0 auto 72px;
}
.sec_service_cooperation img {width: auto}
.sec_service_cooperation img:nth-child(2){margin:0 50px}
.sec_service_cooperation img:nth-child(4){margin:10px 50px 0 0}
.sec_service_cooperation img:nth-child(5){margin:10px 0 0}

.cooperation-image{
	width: 50%;
	margin: 50px auto;
}

@media (max-width: 800px) {
    .sec_service_cooperation img{height:50px}
    .sec_service_cooperation{margin: 0 auto 40px}
	.cooperation-image{
	width: 70%;
	margin: 30px auto;
}
}
@media (max-width: 600px) {
    .sec_service_cooperation img{height:40px}
    .sec_service_cooperation img:nth-child(2){margin:0 20px}
    .sec_service_cooperation img:nth-child(4){margin:10px 20px 0 0}
	.cooperation-image{
	width: 85%;
	}
}
@media (max-width: 500px) {
    .sec_service_cooperation img{height:30px}
}
/*-----------------
　電子請求書（WEB請求書）シェアNo.1の豊富な導入実績
-----------------*/
.sec_record {
    background: url(/web/jp/seikyu/images/top/top_mainv_bg.svg) center / cover ,
                rgba(55, 127, 54, .1) ;
}
.record_desc {
    font-size: 24px;
    font-weight: 700;
    margin: 1.33em 0;
    text-align: center;
}

.record_desc sup {
    font-size: 0.6em;
    font-weight: 400;
    vertical-align: text-top;
}

.record_content {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.8em;
}

.record_content .size_l {
    font-size: 1.6em;
    color: #257C3A;
}

.record_content sup {
    font-size: 0.6em;
    font-weight: 400;
    vertical-align: text-top;
}

.record_attention {
    font-size: 14px;
    font-weight: 400;
    width: fit-content;
    margin: 0 auto 2.29em;
}

.sec_record .btn_link {
    background-color: #EDF5ED;
}

.sec_record .btn_link:hover {
    background-color: #257C3A;
}

@media (max-width: 48em) {

    .record_desc {
        font-size: 20px;
    }
    .record_content {
        line-height: 1.2;
        font-size: 24px;
    }

    .record_content .size_l:nth-of-type(1) {
        display: inline-block;
        margin-bottom: .4em;
    }

    .record_attention {
        font-size: 12px;
    }
}

/*-----------------
 セキュリティが万全
-----------------*/
.sec_security .inner_common, .bgcolor-secondary {
    width: min(100%, calc(1024px + min(4%, 56px) * 2));
}

.sec_security .security-read{
	padding:0 20px;
}
.sec_security .btn_link {
    border-color: #41A694;
    color: #41A694;
}
.sec_security .btn_link::after {
    border-color: #41A694;
}

.sec_security .btn_link:hover {
    background-color: #41A694;
    color: #fff;
}
.sec_security .btn_link:hover::before {
    border-color: #fff;
}
.sec-security_img-outer{
	display: flex;
	justify-content: center;
}
.sec-security_img {
	padding: 30px 30px 40px;
	width: 75%;
	position: relative;
}
.sec-security_img .soclink {
	display: block;
	position: absolute;
	width: 50%;
	height: 11vw;
	max-height: 136px;
	left: 76px;
	bottom: 57px;
	background-color: #fff;
	opacity: 0;
}
.sec-security_img .aspiclink {
	display: block;
	position: absolute;
	max-width: 178px;
	width: 48%;
	height: 11.9vw;
	max-height: 136px;
	top: 26%;
	left: 48%;
	background-color: #fff;
	opacity: 0;
}
.sec-security_img .cspalink {
	display: block;
	position: absolute;
	max-width: 119px;
	width: 23.1%;
	height: 10.9vw;
	max-height: 136px;
	top: 27%;
	right: 8.2%;
	background-color: #fff;
	opacity: 0;
}
.sec-security_img .soclink:hover,
.sec-security_img .aspiclink:hover,
.sec-security_img .cspalink:hover {
	opacity: 0.6;
}
.sec-security_img img {
	max-width: 100%;
	width: 100%;
}
.sec-security_d-flex {
	display: -ms-flexbox;
	display: flex;
}
.sec-security_flex-wrap {
	-ms-flex-wrap: wrap;
	flex-flow: wrap;
}
.sec-security_justify-center {
	-ms-flex-pack: center;
	justify-content: center;
}
ul.sec-security_flow-wrap {
	-ms-flex-pack: justify;
	justify-content: space-between;
}
ul.sec-security_flow-wrap li {
	width: 31.25%;
}

.security-merit {
    margin: 0 auto 32px;
}
.security-merit-box {
	background-color: #fff;
	box-shadow: 0 2px 8px 0 rgb(0 0 0 / 20%);
}
ul.security-merit li h3 {
	padding: 1rem 1.5rem;
	color: #ffffff;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	background-color: #41A694;
	border-radius: 5px 5px 0 0;
}
.security-merit-box img {
	width: min(60%, 250px);
	display: block;
	margin: 15px auto 0;
}
.security-merit-box .text {
	padding: 1.5rem;
}
.security-merit-box .text h4 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 8px;
	text-align: center;
}

.sec_security .btn_cta {
	margin-top:60px;
}
@media (max-width:959px) { 
	ul.sec-security_flow-wrap li {
        width: 100%;
        margin-bottom: 2rem;   
	}

	ul.sec-security_flow-wrap li:last-child {
		margin-bottom: 0;
	}
    
	.sec-security_img .aspiclink {
		max-width: auto;
		width: 23%;
	}
}

@media (max-width:830px) {
	.sec-security_img .aspiclink {
		width: 23.1%;
	}
	.sec-security_img .cspalink {
		width: 18.1%;
	}
	.sec-security_img .soclink {
		width: 50%;
		left: 63px;
		bottom: 47px;
	}
}

@media (max-width: 767px) {
	.sec-security_img .soclink {
		width: 41vw;
		left: 3.8vw;
		bottom: 5.4vw;
		height: 15.4vw;
	}
	.sec-security_img {
		width: 100%;
		padding: 5vw 0 5vw 0;
	}
	.sec-security_img .aspiclink {
		width: 29%;
		top: 28%;
		left: 47%;
		height: 15.9vw;
	}
	.sec-security_img .cspalink {
		width: 21.1%;
		height: 17.9vw;
		top: 27%;
		right: 3.2%;
	}
    .sec_security .btn_cta {
        margin-top: 56px;
    }
}
@media (max-width:480px) {
	.sec-security_img .cspalink {
		top: 15vw;
		right: 1.8%;
		height: 18.4vw;
	}
	.sec-security_img .soclink {
		width: 55%;
		left: 30px;
		bottom: 30px;
	}
}

/*-----------------
 料金体系
-----------------*/
.sec_price {
    background-color: #EDF5ED;
}

.sec_price h2 {
    color: #40A83E;
}

.fee-box {
    width: min(100%, calc(1024px + min(4%, 56px) * 2));
    margin: 0 auto;
}
.fee-box ul {
    display: flex;
    justify-content: center;
    margin-bottom: 2em;
    gap: 64px;
    border-radius: 6px;
    position: relative;
}

.fee-box ul::before,
.fee-box ul::after {
    content: "";
    width: 8px;
    height: 40px;
    background-color: #7B7B7B;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
}
.fee-box ul::after {
    width: 40px;
    height: 8px;
}

.fee-box ul li {
    margin: 0;
    width: min(calc((100% - 64px) / 2), 400px);
}

.fee-box ul li dl {
    background-color: #fff;
    height: 100%;
    border-radius: 6px;
}

.fee-box ul li dl dt {
    padding: 1.2em 1.2em 0.8em 1.2em;
    border-radius: 6px 6px 0 0;
    background-color: #fff;
    color: #40a83e;
    font-weight: 700;
    font-size: 24px;
    text-align: center;
}

.fee-box ul li dl dd {
    padding: 0 1.2em 1.7em 1.2em;
    border-radius: 0 0 6px 6px;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    text-align: center;
}

.cost_flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: min(100%, 864px);
    margin: 0 auto 32px;
    padding: 32px 24px;
    background-color: #fff;
}

.cost_flex_l {
    width: min(50%, 390px);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.cost_flex_l h3 {
    font-size: 24px;
    font-weight: 700;
    padding: 0;
    color: #40A83E;
}

.cost_txt {
    font-size: 16px;
    font-weight: 700;
}

.cost_txt_s {
    font-size: 12px;
    font-weight: 400;
}

.cost_flex_r {
    width: 50%;
}

@media (max-width: 64em) {
    .sec_cost_index h3 {
        font-size: 20px;
    }
}

@media (max-width: 48em) {
    .only_pc {
        display: none;
    }
    .fee-box ul {
        gap: 40px;
        margin-bottom: 1em;
    }
    .fee-box ul::before {
        width: 24px;
        height: 4px;
    }
    .fee-box ul::after {
        width: 4px;
        height: 24px;
    }
    .fee-box ul li {
        width: calc((100% - 40px) / 2);
    }

    .fee-box ul li dl dt {
        font-size: 18px;
    }

    .fee-box ul li dl dd {
        text-align: left;
        font-size: 13px;
    }

    .cost_flex {
        flex-direction: column;
        gap: 24px;
    }

    .cost_flex_l {
        width: 100%;
    }

    .cost_flex_l h3 {
        font-size: 20px;
        text-align: center;
    }
    .cost_flex_r {
        width: 100%;
    }
    .cost_txt {
        font-size: 16px;
    }

    .cost_txt_s {
        font-size: 10px;
    }
}
/*-----------------
課題を解決したお客様の声
-----------------*/
.sec_case h2 {
    color: #333;
}

.sec_case .slider {
    display: flex;
    gap: 10px;
}

.recommend_case_solution {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    width: min(100%, 1024px);
    margin: 32px auto;
}

.recommend_case_solution * {
    line-height: 1;
}
.recommend_case_solution a {
    width: calc((100% - 10px * 2) / 3);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .2);
    padding: 10px 20px;
}
.recommend_case_solution a p {
    color: #2684e2;
}

.recommend_case_solution a p:hover {
    color: #297f39;
}

.recommend_case_solution .recommend_case_title {
    font-weight: bold;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 5px;
}

.recommend_case_solution .zoom {
    display: inline-block;
    overflow: hidden;
}

.recommend_case_solution .zoom img {
    display: block;
    transition-duration: .5s;
    width: 100%;
    height: 185px;
    object-fit: contain;
}

.recommend_case_solution .zoom img:hover {
    transform: scale(1.1);
}

.recommend_case_solution .recommend_case_company {
    font-weight: bold;
    font-size: 15px;
    line-height: 1.3;
    margin: 10px 0;
}

.recommend_case_solution h4 {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 14px;
}

.recommend_case_solution ol li {
    line-height: 1.2;
    position: relative;
    padding-left: 1.75em;
    padding-bottom: 0.5em;
    font-size: 14px;
}

.recommend_case_solution ol li span {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 1.25em;
    color: #fff;
    text-align: center;
    border-radius: 3px;
    background: #267c3a;
}

.recommend_case_solution .recommend_case_category {
    margin-top: 10px;
}

.recommend_case_solution .recommend_case_category span {
    display: inline-block;
    margin: 0 3px 3px 0;
    padding: .3em .5em;
    color: #267c3a;
    border: 1px solid #267c3a;
    border-radius: 3px;
    font-size: 12px;
}

.recommend_case_solution .recommend_case_button {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 25px;
} 

.recommend_case_solution .recommend_case_button div {
    display: inline-block;
    position: relative;
    padding: 0.8rem 3rem;
    border: 1px solid #297f3a;
    border-radius: 4px;
    background-color: #fff;
    text-decoration: none;
    outline: none;
    text-align: center;
}

.recommend_case_solution .recommend_case_button div span {
    position: relative;
    color: #297f3a;
}

.recommend_case_solution .recommend_case_button div span::after {
    content: "";
    position: absolute;
    right: -1em;
    width: 0.4em;
    height: 0.4em;
    top: 50%;
    margin-top: -0.2em;
    border-top-width: 1px;
    border-top-style: solid;
    border-right-width: 1px;
    border-right-style: solid;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.sec_case .btn_link.color_bl {
    border: none;
    background-color: #44A9B3;
    color: #fff;
    padding: .75em 64px .83em 32px;
    width: 100%;
	max-width: 350px;
}



.sec_case .btn_link.color_bl::after {
    left: auto;
    right: 24px;
    border-color: #fff;
}

@media (max-width: 64em) {
    .recommend_case_solution .zoom img {
        height: 150px;
    }
}

@media (max-width: 48em) {
    .recommend_case_solution {
        flex-direction: column;
    }

    .recommend_case_solution a {
        width: 100%;
    }

    .recommend_case_solution .zoom img {
        height: auto;
    }
    .sec_case .btn_link.color_bl {
        padding: 0.75em 48px 0.83em 16px;
    }
    .sec_case .btn_link.color_bl::after {
        right: 16px;
    }
}

/*-----------------
 シリーズ紹介
-----------------*/
.sec_series {
    background-color: #EDF5ED;
}

.sec_series h2 {
    color: #333;
}

.sec_series h2 span {
    display: block;
    font-size: .6em;
    font-weight: 500;
    margin-top: -.5em;
}

.sec_series_flex{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    text-align: left;
}
.sec_series_flex p {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.6;
}
.sec_series_flex div{
    width: calc((100% - 24px) / 4);
    margin: 0;
    padding: 10px 10px 16px;
    color: #333;
    background: #fff;
    border: solid 1px #267C3A;
    border-radius: 5px;
}
.sec_series_flex img{
    width: 100%;
    padding: 0 1em;
    height: auto;
    aspect-ratio: 5 / 2;
    object-fit: contain;
}

@media (max-width: 48em) {
    .sec_series_flex div {
        width: calc(50% - 9px);
    }
}

/*-----------------
よくある質問
-----------------*/
#sec-faq h2 {
    color: #333;
}

/* sec-cta */
.sec-cta {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
    
.sec-cta {
    background-color: #337e86;
	background-image: url(/web/jp/seikyu/images/top/top_cta_bg.png); 
	background-position: top left;
  	background-repeat: no-repeat;
	background-size: cover;
    position: relative;
}

.sec-cta .contents {
    position: relative;
    width: 90%;
    margin: auto;
    max-width: 1200px;
}

.d-flex {
    display: flex;
}


.cta-link{
	position: absolute;
	width:100%;
	height: 100%;
	z-index:100;
}
@media (max-width: 1200px) and (min-width: 1025px) {
    .sec-cta {
        background-position: top left 20%;
    }    
}
        
.sec-cta::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #337e86;
    opacity: 0.2;
}	
        
.cta-wrap {
    -ms-flex-pack: end;
    justify-content: flex-end;
} 
    
.sec-cta h2 {
    margin-bottom: 2rem;
}   
.section-tittle {
    margin-bottom: 1.35rem;
    font-size: 29px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
	
}

@media (max-width: 767px) {
    .section-tittle {
        margin-bottom: 2rem;
        font-size: 22px;
    }
}
        
.cta-text-inner { 
    z-index: 1;      
}
    
.cta-text-inner * { 
    color: #fff;   
}

ul.list-square {
    padding-left: 2em;
} 
		
ul.list-square li {
	list-style-type: square;
	margin-bottom: 0.5em;
	line-height: 1.4;
}
	
ul.list-square li:last-child {
	margin-bottom: 0;
}  
    
.cta-btn-inner {
    position: relative;
    margin-top: 2rem;
    text-align: left;
}

.cta-btn-inner-center{
    margin-top: 2rem;
}
    
.cta-note {
    margin-top: 1rem;
    font-size: 14px;
    line-height: 1.4;
}
    
.cta-note a {
    color: #fff;
    text-decoration: underline;
}
    
.cta-note a:hover {
    color: #fff;
    text-decoration: none;
}

.btn-cta {
    display: inline-block;
    padding: 1.1em 56px;
    margin: 0 auto;
    background-color: #FF7800;
    border: 2px solid #fff;
    border-radius: 6px;
    box-shadow: 4px 4px 6px rgba(51,51,51,.2);
    color: #fff;
	font-size: 20px;
    font-weight: 700;
    text-align: center;
    position: relative;
    transition: opacity .3s;
}

.btn-cta:hover {
    opacity: .7 ;
}



.btn-cta span {
    position: relative; 
    z-index: 3;
    color: #fff; 
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.1em;
}
    
.btn-cta span::after {
    content: "";
    position: absolute;
    right: -1em;
    width: 0.6em;
    height: 0.6em;
    top: 50%;
    margin-top: -0.32em;
    border-top-width: 3px;
    border-top-style: solid;
    border-right-width: 3px;
    border-right-style: solid;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
    
.btn-cta:hover span {
    color: #fff; 
}

.bgleft::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background:#ec7104;
    width: 100%;
    height: 100%;
    transition: transform .4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transform: scale(0, 1);
    transform-origin: right top;
}

.bgleft:hover::before{
    transform-origin:left top;
    transform:scale(1, 1);
}


@media (max-width: 1023px) {
    .cta-wrap {
        -ms-flex-pack: center;
        justify-content: center; 
    } 
        
    .sec-cta::after {
        opacity: 0.7;
    }
        
    .cta-btn-inner {
        text-align: center;        
    }
}
@media (max-width: 767px) {
.btn-cta {
	display: block;
	width: 100%;
	margin: 0 auto;
	padding: 20px 0;
}
    
.btn-cta span {
	font-size: 18px;
}

.cta-btn-inner-center {
    width: 100%;
    padding: 0 20px;
}
}

@media (max-width: 480px) {	
    .cta-btn-inner-center {
        padding: 0;
    }
}

.sec-cta .contents {
    max-width: 1200px;
}

.sec-cta .section-tittle {
    text-align: left;
}




/*-----------------
レコメンド導入事例(reco14)スタイル
-----------------*/
/* sec-case */
.slider {
   width: 92%;
   margin: 2rem auto 0;
}

.slider img {
    width: 100%;
    height: auto;
}
    
.slider .slick-slide {
    margin: 0 10px;
}
    
.slick-prev, 
.slick-next {
    position: absolute; 
    top: 42%;
    cursor: pointer;
    outline: none;
    border-top: 4px solid #297f3a;
    border-right: 4px solid #297f3a;
    height: 20px;
    width: 20px;
}
    
.slick-prev { 
    left: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {
    right: -1.5%;
    transform: rotate(45deg);
}
    
.slick-dots li button:before {
    color: #297f3a !important;
}

.slick-dots li.slick-active button:before {
    color: #297f3a !important;
}

.slick-track {
    display: flex;
}
    
.slick-slide {
    height: auto !important;
} 
    
.case-box {
    margin-bottom: 2rem;
    background-color: #fff;
    border: 1px solid #D8D8D8;        
}
    
.case-box:not([disabled]):hover {
    box-shadow: 0 2px 8px 0 rgba(0,0,0,.2); 
}

.case-box h3 {
    margin-top: 2rem;
    font-size: 14px;
    text-align: right;
    font-weight: bold;
}
    
.case-box .case-discription {
    font-size: 14px;
    font-style: italic;
}
    
.case-box figure {
    margin: 0;
    overflow: hidden;
}

.case-box figure img {
    transition: .3s;
}

.case-box:hover figure img {
  transform: scale(1.08);
}
    
.case-box .text {
    padding: 2rem;
	padding:0 20px;
}



/* 202408 WA No6 改修 */
#mainv .contents {
    max-width: 1220px;
}

.btn-normal {
	display: inline-block;
    position: relative;
	padding: 0.8rem 3rem;
	border: 1px solid #297f3a;
	border-radius: 4px; 
    background-color: #fff;
    text-decoration: none;
    outline: none; 
    text-align: center;
	line-height: 150%;
}

.btn-normal span {
    position: relative; 
	color: #297f3a;
}

.btn-normal span::after {
    content: "";
    position: absolute;
    right: -1em;
    width: 0.4em;
    height: 0.4em;
    top: 50%;
    margin-top: -0.2em;
    border-top-width: 1px;
    border-top-style: solid;
    border-right-width: 1px;
    border-right-style: solid;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

a:hover.btn-normal {
    box-shadow: 0 3px 5px rgb(0 0 0 / 20%);
} 

.btn-normal.ctl-line-height {
    line-height: 150%;
}
#sec-trouble-bottom .section-tittle {
    margin-bottom: 0;
}

#sec-choose .text p a.txt-right {
    display: block;
    text-align: right;
}

.sec-cta .contents {
    max-width: 1200px;
}

.sec-cta .section-tittle {
    text-align: left;
}

.case-box {
    border: none;
}
.case-box a {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,.2);
}

.case-box a .case-image img {
    transition: .3s;
}

.case-box:hover .case-image img {
    transform: scale(1.08);
}

.case-box:hover .case-button .btn-normal,.case-box:hover .case-button .btn-diagnose {
    box-shadow: 0 3px 5px rgba(0,0,0,.2);
}

.case-box h3 {
    margin-top: 0;
    font-size: 16px;
    text-align: left;
}

.case-title {
    margin: 0 0 15px;
    font-weight: bold;
	line-height: 1.5em;
    min-height: 96px;
}

.bgcolor-secondary p{
	font-size: 18px;
	text-align: center;
}

.bgcolor-secondary .case-btn-wrap{
	margin-top: 4rem !important;
}

.bgcolor-secondary .btn_cta:hover {
    opacity: .7 !important;
}

.justify-center {
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (max-width: 767px) {
    .case-title {
        font-size:14px;
    }
}

.case-image {
    margin: 0 0 15px !important;
    overflow: hidden;
}

.case-image img {
    transition: .3s;
}

.case-content {
    margin-bottom: 20px;
}

.case-company {
    display: flex;
    align-items: center;
    margin: 0 0 15px;
}

.case-company-image {
    width: 80px;
    margin-right: 15px;
}

.case-company-image img {
    width: 80px;
    height: 36px;
    -o-object-fit: contain;
    object-fit: contain;
}

.case-company-name {
    color: #333;
    font-size: 14px;
    line-height: 1.5;
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    .case-company-name, .fw_bold {
        font-size:12px;
    }
}

.case-point {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.25;
}

.case-point * {
	line-height: 1.25;
}

@media screen and (max-width: 767px) {
    .case-point {
        font-size:12px;
    }
}

.case-point ul li {
    position: relative;
    margin-top: .5em;
    padding-left: 1.75em;
}

.case-point ul li span {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 1.25em;
    color: #fff;
    text-align: center;
    border-radius: 3px;
    background: #267c3a;
}

.case-category {
    font-size: 12px;
}

.case-category a,.case-category span {
    display: inline-block;
    margin: 0 3px 3px 0;
    padding: .2em .5em;;
    color: #267c3a;
    border: 1px solid #267c3a;
    border-radius: 3px;
	line-height: 1.2;
}

.case-button {
    margin-top: auto;
}

.text-center {
    text-align: center !important;
}

.fw_bold {
	font-size: 14px !important;
	text-align: left !important;
    line-height: 1.5 !important;
    font-weight: bold !important;
}

.slick-list {
    overflow: visible;
    overflow-x: hidden;
    padding: 10px 0;
}
