@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');
body {
	background: #fff; 
	font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', Meiryo, 'メイリオ', 'MS PGothic', 'ＭＳ Ｐゴシック', sans-serif;
	font-size: 16px;
}
body main{
	font-family: 'Noto Sans JP','Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', Meiryo, 'メイリオ', 'MS PGothic', 'ＭＳ Ｐゴシック', sans-serif !important;
}
/* common.css 調整 */
img {
	max-width: 100%;
	height: auto;
	-webkit-backface-visibility: hidden;
}
ul li {
	list-style: none;
}

main * {
	box-sizing: border-box;
} 

/* section */
section {
	position: relative;
	padding: 5rem 0;
}
@media (max-width: 767px) {
section {
	padding: 3rem 0;
	}
}
.contents {
	position: relative;
	width: 90%;
	max-width: 1024px;  
	margin: auto;
}

/* flex-box */
.d-flex {
	display: -ms-flexbox;
	display: flex;
}
.flex-wrap {
	-ms-flex-wrap: wrap;
	flex-flow: wrap;
}
.justify-center {
	-ms-flex-pack: center;
	justify-content: center;
}
.justify-between {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.items-center {
	-ms-flex-align: center;
	align-items: center;
}

/* color */
.color-primary {
	color: #297f3a;
}
.color-accent {
	color: #ff7800;
}
.bgcolor-secondary {
	background-color: #edf5ed;
}
.bgcolor-tertiary {
	background-color: #fafafa;
}
.yellow_mark {
	background: linear-gradient(transparent 60%, #ff6 60%);
}

/* font */
.font-italic {
	font-style: italic;
}
.font-bold {
	font-weight: bold;
}
.font-note {
	display: block;
	padding-left: 1em;
	text-indent: -1em;
	color: #666;
	font-size: 14px;  
	line-height: 1.4;
}
.text-center {
	text-align: center;
}
.text-left {
	text-align: left;
}
.text-link{
	font-weight: 600;
}

/* common */
.section-tittle {
	margin-bottom: 4rem;
	font-size:28px;
/*  font-size: 32px;*/
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}
@media (max-width: 767px) {
.section-tittle {
	margin-bottom: 2rem;
	font-size: 22px;
	}
}

.text p {
	line-height: 1.8;
}
.text p:not(:last-of-type){
	margin-bottom: 1rem;
}
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;
}

/* Buttons */
.btn-cta {
    display: inline-block;
    position: relative;
    overflow: hidden;
    width: 360px;
    padding: 24px 0;
    border: 1px solid #fff;
	border-radius: 4px;
	background-color: #ff7800;
    box-shadow: 0 5px 12px rgb(0 0 0 / 40%);
    text-decoration: none;
    outline: none; 
    text-align: center;
    transition: ease .2s;
}

.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);
}
.btn-mt-2 {
	margin-top: 2rem;
}
@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;
	}
}

/* btn-normal */
.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;
}
.btn-normal.lh150,
.btn-normal.lh150_2 {
	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);
}
.btn-normal.lh150 .sp-block::after,
.btn-normal.lh150_2 .sp-block::after {
	content: none;
}
a:hover.btn-normal {
	box-shadow: 0 3px 5px rgb(0 0 0 / 20%);
}
@media (max-width: 1023px) {
.btn-normal.lh150 span::after {
	right: -3em;
}
.btn-normal.lh150_2 span::after {
	right: -2em;
}
.sp-block {
	display: block !important;
	}
}
/* 新CTAbtn */
.common-btn {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 35px auto 0;
	width: 95%;
}
.common-btn .btn-cta {
	border: none;
	transition: .3s;
	font-size: 18px;
	background-color: #419D53; /*各secにて変更*/
	padding: 20px 0;
}
.common-btn .btn-cta span {
	font-size: 18px;
}
.common-btn .btn-cta:hover {
	opacity: .7;
}
.common-btn .btn-cta span::after {
	right: -1.4em;
	margin-top: 0;
	transform: translateY(-50%) rotate(45deg);
}
.common-btn .btn-cta span::after {
	content: none;
}
.common-btn .btn-cta::after {
	color: #fff;
	font-weight: 700;
	letter-spacing: 0.1em;
	content: "";
	position: absolute;
	right: 1.4em;
	width: 0.6em;
	height: 0.6em;
	top: 50%;
	border-top-width: 3px;
	border-top-style: solid;
	border-right-width: 3px;
	border-right-style: solid;
	-webkit-transform: rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width:1023px){
.common-btn .btn-cta {
	width: 80%;
	}
}
@media (max-width: 767px) {
.common-btn .btn-cta {
	width: 100%;
	}
}

/* mainv */
#mainv {
	position: relative;
	width: 100%;
	background: url(/web/jp/seikyu/images/top/top_mainv_bg.svg) no-repeat;
	background-size: cover;
	background-position: bottom; 
}
#mainv .contents {
	max-width: 1140px; /*top_addで上書き*/
	position: relative;
	margin-top: 38px;
	padding: 3rem 0 1rem;
}
@media screen and (max-width:1023px){
#mainv .contents {
	margin-top: 0;
	padding-top: 3.5rem;
	}
.maniv-wrap{
	padding-top: 2rem;
	}
}
@media (max-width: 767px) {
#mainv .contents {
	padding-bottom: 2rem;
	text-align: center;
	}
}

/*202209 for new header*/
/*_________________________________________________________________*/
#seikyu main .main_v {
	padding-top: 56px;
}
@media screen and (min-width:75em) {
#seikyu main .main_v {
    padding-top: 73px;
}
}

.maniv-wrap {
    -ms-flex-pack: justify;
	justify-content: space-between;
    -ms-flex-align: end;
	align-items: flex-start;
}
.maniv-wrap > div {
    position: relative;
    width: 100%;
    flex: 0 0 50%;
    max-width: 50%;
    text-align: left;
}

@media (max-width: 859px) {
.maniv-wrap {
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	}
.maniv-wrap > div {
	flex: 0 0 100%;
	max-width: 100%;
	text-align: center;
	}
.mainv_img {
	margin-top: 3rem;
	}
.mainv_img img {
	width: 100%;
	max-width: 480px;
	}
}

.text_sub-linkbox{
	position: relative;
}
.text_sub-link{
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 100;
}
h1 {
	display: inline-block; 
	margin-top: 2rem;
	font-size: 36px;
	font-weight: 700;
	line-height: 1.4;
}
h1 span.em {
	font-size: 1.4em;
	font-weight: 700;
	letter-spacing: 0.08em;
}
h1 span.spacing {
	letter-spacing: 0.16em;
}
h1 span.note {
	color: #999;
	font-size: 12px;
	font-weight: 400;
}
h1 span.note-block {
	display: block;
	margin-right: 10px;
	text-align: right;
}
h1#text_h1 {
	display: inline-block;
	margin-top: 1rem;
	font-size: 38px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.08em;
}
h1#text_h1 span.small {
	font-size: 0.8em;
}
.text_sub {
	font-size: 38px;
	font-weight: 700;
	letter-spacing: 0.08em;
	margin-top: 0.5rem;
}
.text_sub span.note {
    color: #999;
    font-size: 12px;
    font-weight: 400;
    vertical-align: 20px;
}
.text_sub-link {
	display: block;
}
.note-block01 {
	color: #999;
	font-size: 12px;
	font-weight: 400;
	display: block;
	margin-right: 10px;
	text-align: right;
}
ol.text_sub-list {
	margin-top: 1rem;
	width: 500px;
}
@media (max-width: 859px) {
ol.text_sub-list {
	margin-top: 1rem;
	width: 380px;
	margin: 1rem auto 0;
	text-align: left;
	}
}
@media (max-width: 480px) {
ol.text_sub-list {
	margin-top: 1rem;
	width: 100%;
	text-align: left;
	}
}

ol.text_sub-list li {
	color: #297f3a;
	font-size: 20px;
	font-weight: 700;
	margin-left: 18px;
	position: relative;
	line-height: 1.4;
}
ol.text_sub-list 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: -18px;
}
.section-tittle_top {
	margin: 2.5rem 0 1rem;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.section-tittle_top p:nth-child(2) {
	padding-top: 10px;
	margin-left: 12px;
}
@media (max-width: 767px) {
.section-tittle_top {
	margin: 1rem 0 0.5rem;
	font-size: 25px;
	flex-direction: column;
	}
.section-tittle_top p:nth-child(2) {
	line-height: 1.3;
	}
}
.header_cta {
	width: 360px;
	margin: 2rem auto 0;
}

@media (max-width: 400px){
.header_cta{
	width: 100%;
	}
}
.header_cta .microcopy {
	color: #297f3a;
	text-align: center;
	font-size: 18px;
	font-weight: 700;
	padding-bottom: 8px;
}

@media (max-width: 1023px) {
h1 {
	font-size: 28px;
	}
h1#text_h1 {
	font-size: 28px;
	}
.text_sub {
	font-size: 28px;
	margin-top: 0.3em;
	}
ol.text_sub-list li {
	font-size: 15px;
	margin-left: 15px;
	}
}

@media (max-width: 767px) {
h1 {
	margin-top: 1rem;
	font-size: 22px;
	letter-spacing: 0;
	}
h1 span.em {
	font-size: 32px;
	}
h1#text_h1 {
	margin-top: 1rem;
	font-size: 32px;
	letter-spacing: 0;
	}
.text_sub {
	font-size: 32px;
	}
}

/*-- FV画像 --*/
.mainv_img_award {
	position: relative;
	max-width: 460px; 
	margin: 2rem 0 0 0;
	padding: 10px;
	background-color: #fff;
	border-radius: 10px;
	border: 1px solid #eaeaea;
}
.mainv_img_award_wrap img {
	width: 22.84%;
}
.mainv_img a{
	color: #333;
}
@media (max-width: 859px) {
.mainv_img_award {
	margin-right: auto;
	margin-left: auto;
	}
}
/* 利用企業数 */
#mainv h2 span.number {
	font-size: 2em;
	font-weight: 900;
	letter-spacing: 0.1em;
}
#mainv h2 span.amount {
	font-size: 1.4em;
}
#mainv p.note {
	display: block;
	margin-top: 1rem;
	color: #999;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.2;
	text-align: center;
}
@media (max-width: 767px) {
#mainv h2 span.number {
	font-size: 1.4em;
	letter-spacing: 0.05em;
	}
#mainv h2 span.amount {
	font-size: 1.0em; 
	}
}

/* sec-lead */
#sec-lead {
	padding: 0 0 3rem;
}
.company-logos {
	width: 100%;
	height: 100px;
	margin: 0 auto;
	background-size: 3200px auto;
	text-align: center;
	overflow: hidden;
}
.company-logos.top {
	background: url(/web/jp/seikyu/images/top/top_company_logos_top.png) repeat-x 0 0;
	-webkit-animation: loop 60s linear infinite;
	animation: loop 60s linear infinite;
}
.company-logos.bottom { 
	background: url(/web/jp/seikyu/images/top/top_company_logos_bottom.png) repeat-x 0 0;
	-webkit-animation: loop2 60s linear infinite;
	animation: loop2 60s linear infinite;
}
@keyframes loop {
0% {
	background-position: 0 0;
	}
100% {
	background-position: -3863px 0;
	}
}

@keyframes loop2 {
0% {
	background-position: 0 0;
	}
100% {
	background-position: 4100px 0;
	}
}

/* sec-about */
.about-title .section-title02 {
	font-size: 26px;
	font-weight: 700;
	line-height: 1.5;
	text-align: left;
	color: #484848;
	margin-right: 0.5rem;
}
.about-title figure img {
    width: 150px;
}
.about-wrap {
    text-align: center;
}

.about-wrap h3 {
	font-size: 28px;
	font-weight: 700;
	color: #484848;
	line-height: 1.7;
	text-align: center;
	margin-bottom: 8px;
}
.about-wrap p {
	font-size: 16px;
	margin-bottom: 2rem;
	line-height: 1.7;
}
.about-wrap span.about-point {
	color: #ffffff;
	background-color: #297f3a;
	padding: 3px 10px;
}
.about-function {
	max-width: 864px;
	margin: 3rem auto;
}
.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 h4 {
	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;
}
.about-function p {
	color: #387D3A;
	margin-top: 20px;
	font-size: 18px;
	font-weight: 700;
	position: relative;
	display: inline-block;
	padding-left: 20px;
}
.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 h4,
div.top_about_function_color p {
	color: #FFC000;
}
div.top_about_function_color ul li::before {
    border-bottom: 3px solid #FFC000;
    border-left: 3px solid #FFC000;
}
div.top_about_function_color p::before {
    border-bottom: 3px solid #FFC000;
    border-left: 3px solid #FFC000;
}
.about-em {
    position: relative;
    display: inline-block;
    margin-top: 3rem;
    padding: 1rem 2rem;
    color: #297f3a;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.4;
    text-align: center;
}
.about-em span {
    font-size: 1.8em;
}
.about-em::before,
.about-em::after {
    position: absolute;
    content: '';
}
.about-em::after {
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    border-top: 2px solid #297f3a;
    border-left: 2px solid #297f3a;
}
.about-em::before {
    right: 0;
    bottom: 0;
    width: 50px;
    height: 50px;
    border-right: 2px solid #297f3a;
    border-bottom: 2px solid #297f3a;
}
.about-em-sub{
	text-align: center;
	margin-top: 25px;
	font-weight: 600;
}
.about-highlight {
	max-width: 900px;
	margin: 3rem auto;
	text-align: center;
}
.about-highlight div {
	background-color: #ffffff;
	border: 1px dotted #297f3a;
	border-radius: 4px;
	padding: 1rem 0.5rem;
	width: 24%;
}
.about-highlight p {
	font-size: 19px;
	line-height: 1.2;
}
@media (max-width: 767px) {
.about-title {
	-ms-flex-direction: column;
	flex-direction: column;
	}
.about-title .section-title02 {
	font-size: 19px;
	text-align: center;
	margin-right: 0;
	}
.about-title figure img {
	width: 180px;
	margin: 25px 0;
	}
.about-wrap h3 {
	font-size: 19px;
	line-height: 1.6;
	margin: 1rem 0 0.5rem;
	}
.about-wrap span.about-point {
	padding: 2px 8px;
	}
.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;
	}
.about-em {
	margin-top: 1rem;
	padding: 1rem;
	font-size: 16px;
	}
.about-em span {
	font-size: 1.4em;
}
.about-em::after {
	width: 30px;
	height: 30px;
	}
.about-em::before {
	width: 30px;
	height: 30px;
	}
.about-highlight {
	flex-direction: column;
	font-size: 17px;
	margin: 2rem auto;
	}
.about-highlight div {
	margin: 0 auto 10px;
	width: 90%;
	}
.about-highlight p {
	font-size: 17px;
	}
}

/* sec-merit */
.merit-box {
	margin-bottom: 2rem;
	border: 1px dotted #297f3a;
	background-color: #fff;
	padding: 2.5rem 1.5rem 3rem 2.5rem;
}
.merit-box:last-child {
	margin-bottom: 0;
}
.merit-wrap figure {
	margin-left: 1.5rem;
	width: 260px;
}
.merit-wrap figure .merit-img {
	display: block;
	width: 150px;
	margin: 0 auto;
}
.merit-wrap .text {
	flex: 1;
	line-height: 1.8;
}
.merit-wrap h3 {
	position: relative;
	margin-bottom: 2rem;
	color: #297f3a;
	font-size: 24px;
	font-weight: bold;
	line-height: 1.2;
	padding-left: 80px;
}
.merit-wrap h3.merit-num01::before {
	content: "1";
	position: absolute;
	left: 40px;
	top: -23px;
	font-size: 48px;
	color: #297f3a;
}
.merit-wrap h3.merit-num02::before {
	content: "2";
	position: absolute;
	left: 40px;
	top: -23px;
	font-size: 48px;
	color: #297f3a;
}
.merit-wrap h3.merit-num03::before {
	content: "3";
	position: absolute;
	left: 40px;
	top: -23px;
	font-size: 48px;
	color: #297f3a;
}
.merit-wrap h3::after {
    content: "特徴";
    position: absolute;
    left: 0;
	top: 0;
    color: #297f3a;
	font-size: 1.2rem;
    }
#sec-merit .merit-btn {
	margin-top: 1rem;
}
@media (max-width: 959px) {
.merit-wrap figure {
	width: 100%;
	margin-top: 2rem;
	margin-left: 0;
	}
.merit-wrap figure img {
	display: block;
	margin: 0 auto;
	width: 50%;
	}
.merit-wrap .text {
	width: 100%;
	}
}
.cta-note {
	margin-top: 1rem;
	font-size: 14px;
	line-height: 1.4;
	text-align: center;
}
.cta-note a {
	text-decoration: underline;
}
.cta-note a:hover {
	text-decoration: none;
} 
@media (max-width: 767px) {
.merit-box {
	padding: 1.5rem;
	}
.merit-wrap h3 {
	font-size: 18px;
	padding-left: 60px;
	}
.merit-wrap h3::after {
	font-size: 1rem;
	}
.merit-wrap h3.merit-num01::before,
.merit-wrap h3.merit-num02::before,
.merit-wrap h3.merit-num03::before {
	top: -18px;
	left: 33px;
	font-size: 35px;
	}
.merit-box .text p {
	    line-height: 1.6;
	}
.merit-wrap figure img {
	display: block;
	margin: 0 auto;
	width: 80%;
	}
}
/* sec-function */
.function_inner{
	padding:2em 0;
	border:1px solid #40a83e;
	background:#edf5ed;
}
.function_inner h3 {
	font-size: 23px;
	font-weight: 700;
	line-height: 1.2;
	color: #333333;
	text-align: center;
}
.function_inner_box{
	width:80%;
	padding: 20px 15px;
	box-sizing: border-box;
	margin:0 1em 2em ;
	background:#fff;
	box-shadow:0px 1px 1px 0px #bcd8bc;
	border-radius:6px;
	position: relative;
}
.function_inner_box::after {
	content: "";
	position: absolute;
	right: 1rem;
	width: 0.6em;
	height: 0.6em;
	top: 50%;
    margin-top: -0.32em;
    border-color: #297f3a;
    border-top-width: 1px;
    border-top-style: solid;
    border-right-width: 1px;
    border-right-style: solid;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.function_inner_box .img_box{
	width:65px;
	margin-right: 20px;
}
.function_inner_box .img_box.img-ocr{
	margin-right: 10px;
}
.function_inner_box p.title{
	text-align: left;
	line-height:1.4;
	font-weight:bold;
	margin-bottom: 0 !important;
}
.function_inner_box p.function_link{
	font-size:0.9em;
	position:absolute;
	right:1em;
	bottom:1em;
	color: #2684e2;
}
.function_inner_box a{
	width: 100%;
	height: 100%;
	display: block;
	display: flex;
	align-items: center;
}
.function_inner_box a:hover{
	opacity: 0.7;
}
/*最終行をセンターにする*/
.box-outer{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 30px;
}


.function_inner .function-btn {
	margin: 15px auto 0;
}
.function_inner .function-btn .btn-cta {
	background-color: #419D53;
}

/* color02 */
.function_inner.color02 {
	margin-top: 30px;
	border: 1px solid #FFC000;
	background-color: #FFFAED;
}
.function_inner.color02 .function-btn .btn-cta {
	background-color: #FFC000;
}
@media screen and (min-width:48em){
.function_inner_box{
	width:40%;
	background:#fff;
	}
}
@media screen and (min-width:64em){
.function_inner_box{
	width:29%;
	}
}
@media screen and (max-width:768px){
.function_inner_box{
	margin:0 auto 1em;
	}
.function_inner h3 {
	font-size: 17px;
	}
.box-outer {
	margin-top: 25px;
	}
.function_inner .function-btn {
	margin: 15px auto 0;
	}
}
@media screen and (max-width:580px){
.function_inner {
	padding: 2.2em 0 2em;
	}
.function_inner_box{
	width:86%;
	}
}
@media screen and (max-width:380px){
.function_inner_box .img_box {
	width: 55px;
	margin-right: 15px;
}
.function_inner_box p.title{
	font-size: 15px;
	}
}
/* 機能紹介個別変更 */
#sec-function .btn-normal-wrapper {
	text-align: center;
	clear: both;
}
#sec-function .btn-normal.lh150 {
	line-height: 150%;
}
#sec-function .btn-normal {
	position: relative;
	padding: 0.8rem 3rem;
	border: 1px solid #297f3a;
	border-radius: 4px;
	background-color: #fff;
	text-decoration: none;
	outline: none;
	text-align: center;
}
#sec-function .btn-normal.lh150 span::after {
	right: -2em;
}
#sec-function .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);
}
#sec-function a:hover.btn-normal {
	box-shadow: 0 3px 5px rgb(0 0 0 / 20%);
}
/* sec-video */
.video-wrap{
	width: 100%;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px 40px; 
	margin-top: 30px;
}
.video-wrap li{
	display: flex;
	width: calc((100% - 40px) / 2);
}
.js-video-button{
	display: flex;
	width: 100%;
	flex-direction: column;
	align-items: center;
	background-color: #fff;
	box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
	border-radius: 10px;
	color: #333;
	transition: .3s;
	padding: 30px 50px;
	cursor: pointer;
}
.js-video-button:hover{
	box-shadow: 0 10px 15px 0 rgba(0,0,0,.2);
}
.video-outer {
	width: 100%;
	aspect-ratio: 16/9;
}

.video-outer iframe {
	border-radius: 5px;
}

.video-wrap h3 {
	font-size:18px;
	line-height: 1.5;
	font-weight: 700;
	text-align: center;
	margin: 20px auto;
}

.video-wrap h3 .video-ttl-g {
	color:#267C3A;
	font-size: 14px;
}

.video-wrap h3 .video-small-ttl {
	font-size: 14px;
}
.video-wrap .btn_event {
	width:100%;
	padding-bottom: 0;
}
a.js-video-button .btn_event .btn-inner {
	width: 80%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: auto;
	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.0;
	letter-spacing: 0.05em;
	font-feature-settings: "palt";
	transition: all 0.3s 0s ease;
	background:#267C3A;
	padding: 10px;
	border: 2px solid #267C3A;
	border-radius: 20px;
}
a.js-video-button .btn_event .btn-inner .free {
	display: inline-block;
	color: #267C3A;
	font-size: 12px;
	background: #ffffff;
	border-radius: 3px;
	padding: 2px 5px;
}
a.js-video-button .btn_event .btn-inner::after {
    flex: 0 0 auto;
    content: '';
    background-image: url(/web/jp/seikyu/seminar/images/seminar_btn-arrow-h.svg);
    background-size: cover;
    width: 12px;
    height: 12px;
}
/*ボタンホバー時スタイル*/
a.js-video-button:hover .video-wrap .btn_event {
	width: 100%;
	padding-bottom: 0;
}
a.js-video-button:hover .btn_event .btn-inner{
	width: 80%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
    gap: 8px;
	margin: auto;
	color: #267C3A;
	font-size: 16px;
    font-weight: 700;
    line-height: 1.0;
	letter-spacing: 0.05em;
	font-feature-settings: "palt";
    transition: all 0.3s 0s ease;
	background:#ffffff;
	padding: 10px;
	border: 2px solid #267C3A;
	border-radius: 20px;
}
a.js-video-button:hover .btn_event .btn-inner .free{
	display: inline-block;
	color: #ffffff;
	font-size: 12px;
	background: #267C3A;
	border-radius: 3px;
	padding: 2px 5px;
}
a.js-video-button:hover .btn_event .btn-inner::after{
	flex: 0 0 auto;
	content: '';
	background-image: url("/web/jp/seikyu/seminar/images/seminar_btn-arrow.svg");
	background-size: cover;
	width: 12px;
	height: 12px;
}
@media (max-width: 1140px) {
a.js-video-button:hover .btn_event .btn-inner {
	width: 90%;
	font-size: 14px;
	}
}
@media (max-width: 880px) {
.video-wrap {
	gap: 30px 20px;
	}
.js-video-button {
	padding: 20px;
	}
}
@media (max-width: 768px) {
.video-wrap li {
	width: 80%;
	}
}
@media (max-width: 630px) {
a.js-video-button:hover .btn_event .btn-inner {
	width: 100%;
	}
}
@media (max-width: 580px) {
.video-wrap li {
	width: 92%;
	}
}

/* sec-cooperation */
.cooperation-wrap h3 {
	color: #297f3a;
	font-size: 23px;
	font-weight: bold;
	line-height: 1.2;
	text-align: center;
	margin-bottom: 20px;
}
@media (max-width: 767px) {
.cooperation-wrap h3 {
	font-size: 20px;
	}
}
.cooperation-wrap dl,
.cooperation-wrap div,
.cooperation-wrap figure {
	width: 100%;
	max-width: 864px;
}
.cooperation-wrap figure {
	margin: 0.5rem 0 2.5rem;
}
.cooperation-wrap figure img {
	display: block;
	margin: 0 auto;
	padding: 8px;
	background-color: #fff;
	border: 1px solid #297f3a;
	border-radius: 6px;
}
.cooperation-wrap img {
	-webkit-backface-visibility: visible;
}
.cooperation-img-wrap a:nth-child(2) {
	margin: 0 50px;
}
.cooperation-img-wrap a:nth-child(4) {
	margin: 10px 50px 0 0;
}
.cooperation-img-wrap a:nth-child(5) {
	margin: 10px 0 0 0;
}
@media (max-width: 800px) {
.cooperation-img-wrap img {
	height: 50px;
	}
}
@media (max-width: 600px) {
.cooperation-img-wrap img {
	height: 40px;
	}
.cooperation-img-wrap a:nth-child(2) {
	margin: 0 20px;
	}
.cooperation-img-wrap a:nth-child(4) {
	margin: 10px 20px 0 0;
	}
}
@media (max-width: 450px) {
.cooperation-img-wrap img {
	height: 30px;
	}
}
dl.cooperation-list-wrap {
	margin-top: 2.5rem;
	margin-bottom: 2rem;
}
dl.cooperation-list-wrap dt {
	float: left;
	line-height: 1.6;
}
 dl.cooperation-list-wrap dd {
	margin-left: 6em;
	margin-bottom: 1rem;
	font-size: 14px;
	line-height: 1.6;
} 
dl.cooperation-list-wrap dd:last-child {
	margin-bottom: 0;
}
/* sec-trouble */
#sec-trouble h2 span {
	font-size: 38px;
}
#sec-trouble .trouble-bg {
	background-color: #EDEDED;
	padding: 38px;
	border-radius: 6px;
	border: 1px solid #419D53;
}
#sec-trouble .trouble-bg h3 {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	font-size: 25px;
	font-weight: 700;
	margin-bottom: 40px;
}
#sec-trouble .trouble-bg h3::before,
#sec-trouble .trouble-bg h3::after {
	content: "";
	flex: 0 0 40px;
	height: 2px;
	background-color: #419D53;
}
#sec-trouble .trouble-bg .trouble-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}
#sec-trouble .trouble-bg .trouble-wrap .trouble-card {
	background: #fff;
	border-radius: 6px;
	border: 1px solid #419D53;
	overflow: hidden;
	flex: 1 1 calc(25% - 20px);
	box-shadow: 0 3px 6px rgba(0,0,0,0.08);
	padding: 20px 15px;
}
#sec-trouble .trouble-bg .trouble-wrap .trouble-card img {
	display: block;
	margin: 0 auto 1rem;
	height: 30px;
}
#sec-trouble .trouble-bg .trouble-wrap .trouble-card p {
	line-height: 1.2;
	text-align: center;
	height: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}
/* color02 */
#sec-trouble .trouble-bg.color02 {
	margin-top: 30px;
	border: 1px solid #FFC000;
}
#sec-trouble .trouble-bg.color02 h3::before,
#sec-trouble .trouble-bg.color02 h3::after {
	background-color: #FFC000;
}
#sec-trouble .trouble-bg.color02 .trouble-wrap .trouble-card {
	border: 1px solid #FFC000;
}
.trouble-arrow {
	position: absolute;
	width: 80px;
	left: 0;
	right: 0;
	bottom: -40px;
	margin: auto;
	z-index: 10;
}
@media (max-width:767px) {
#sec-trouble h2 span {
	font-size: 22px;
	}
#sec-trouble .trouble-bg {
	padding: 20px 10px;
	}
#sec-trouble .trouble-bg h3 {
	font-size: 18px;
	}
#sec-trouble .trouble-bg .trouble-wrap {
	gap: 10px;
	}
#sec-trouble .trouble-bg .trouble-wrap .trouble-card {
	flex: 1 1 calc(50% - 20px);
	padding: 15px 8px;
	}
#sec-trouble .trouble-bg .trouble-wrap .trouble-card p {
	font-size: 15px;
	display: block;
}
.trouble-arrow {
	width: 70px;
	left: 0;
	right: 0;
	bottom: -25px;
	}
}
/* sec-trouble02 */
#sec-trouble02 .trouble-bg {
	background-color: #DCEFE0;
	padding: 38px;
	border-radius: 6px;
	border: 1px solid #419D53;
}
#sec-trouble02 .trouble-bg h3 {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	font-size: 25px;
	font-weight: 700;
	margin-bottom: 40px;
}
#sec-trouble02 .trouble-bg h3::before,
#sec-trouble02 .trouble-bg h3::after {
	content: "";
	flex: 0 0 40px;
	height: 2px;
	background-color: #419D53;
}
#sec-trouble02 .trouble-bg .trouble-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}
#sec-trouble02 .trouble-bg .trouble-wrap .trouble-card {
	background: #fff;
	border-radius: 6px;
	border: 1px solid #419D53;
	overflow: hidden;
	flex: 1 1 calc(25% - 20px);
	box-shadow: 0 3px 6px rgba(0,0,0,0.08);
	padding: 20px 15px;
}
#sec-trouble02 .trouble-bg .trouble-wrap .trouble-card img {
	display: block;
	margin: 0 auto 1rem;
	height: 50px;
}
#sec-trouble02 .trouble-bg .trouble-wrap .trouble-card p {
	font-size: 15px;
	line-height: 1.2;
	text-align: center;
}
#sec-trouble02 .trouble-bg .trouble-wrap .trouble-card p a {
	text-decoration: underline;
}
#sec-trouble02 .trouble-bg .trouble-wrap .trouble-card p a:hover {
	text-decoration: none;
}
#sec-trouble02 .trouble-bg .trouble-btn .btn-cta {
	background-color: #419D53;
}
/* color02 */
#sec-trouble02 .trouble-bg.color02 {
	margin-top: 30px;
	border: 1px solid #FFC000;
	background-color: #FFFAED;
}
#sec-trouble02 .trouble-bg.color02 h3::before,
#sec-trouble02 .trouble-bg.color02 h3::after {
	background-color: #FFC000;
}
#sec-trouble02 .trouble-bg.color02 .trouble-wrap .trouble-card {
	border: 1px solid #FFC000;
}
#sec-trouble02 .trouble-bg.color02 .trouble-btn .btn-cta {
	border: none;
	transition: .3s;
	font-size: 18px;
	background-color: #FFC000;
}
@media (max-width:767px) {
#sec-trouble02 h2 span {
	font-size: 22px;
	}
#sec-trouble02 .trouble-bg {
	padding: 35px 10px;
	}
#sec-trouble02 .trouble-bg h3 {
	font-size: 18px;
	}
#sec-trouble02 .trouble-bg .trouble-wrap {
	gap: 10px;
	}
#sec-trouble02 .trouble-bg .trouble-wrap .trouble-card {
	flex: 1 1 calc(50% - 20px);
	padding: 15px 8px;
	}
}

/* sec-consul */
#sec-consul {
	width: 100%;
	height: auto;
	background-color: #588e9a;
	background-image: url(/web/jp/seikyu/images/consul_bgmain.jpg);
	background-size: cover;
	background-position: right center;
	overflow: hidden;
}
#sec-consul h2.section-tittle {
	margin-bottom: 3rem;
}
.consul-box {
	padding: 2rem;
	border: 1px solid #588e9a;
	background-color: rgba(255,255,255, .7);
	text-align: center;
}
.consul-box h3 {
	font-size: 20px;
	margin-bottom: 2rem;
	font-weight: bold;
	line-height: 1.4;
}
.consul-btn-inner {
	text-align: center;
}
.consul-btn-inner .btn-normal {
	border: 0;
	background-color: #267C3A;
}
.consul-btn-inner .btn-normal span {
	position: relative;
	color: #fff;
}
@media (max-width: 767px) {
#sec-consul h2.section-tittle {
	margin-bottom: 1.5rem;
}
.consul-btn-inner .btn-normal {
	padding-right: 1rem;
	padding-left: 1rem;
}
.consul-btn-inner .btn-normal span::after {
	content: none;
	}
}
/* sec_fee_new */
.fee_calc {
	display: flex;
	flex-direction: column;
	gap: 10px;
	justify-content: center;
}
.fee_new_p {
	line-height: 1.7;
	text-align: center;
	margin-bottom: 24px;
}
.fee_calc_item {
	width: 100%;
	border-radius: 6px;
	box-shadow: 0 3px 6px rgba(51,51,51,.1);
}
.calc_ttl {
	border-radius: 6px 6px 0 0;
	padding: 20px 16px;
	text-align: center;
}
.calc_ttl h3 {
	font-size: 20px;
	font-weight: 700;
    /* margin-bottom: .6em; */
}
.calc_ttl p {
	font-size: 14px;
	line-height: 1.5em;
}
.fee_initial {
    position: relative;
    margin-bottom: 50px;
}
.fee_initial .calc_ttl {
    background-color: #FAF5E7;
}
.fee_initial h3,
.fee_initial p {
    color: #E87610;
}
.fee_monthly .calc_ttl {
    background-color: #51932A;
}
.fee_monthly h3,
.fee_monthly p {
    color: #fff;
}
.fee_calc_item ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px 20px 20px 24px;
}
.fee_calc_item li {
    width: 100%;
    padding-left: 28px;
    position: relative;
    font-size: 14px;
    line-height: 1.6em;
    font-weight: 700;
}

.fee_calc_item li::before {
    content: "";
    width: 12px;
    height: 9px;
    border-left: 3px solid #E87610;
    border-bottom: 3px solid #E87610;
    rotate: -45deg;
    position: absolute;
    top: 9px;
    left: 0;
    translate: 0 -50%;
}
.fee_monthly li::before {
    border-color: #51932A;
}
.calc_add_mark {
    width: 100%;
    height: 40px;
    position: absolute;
    bottom: -10px;
    left: 0;
    translate: 0 100%;
}
.calc_add_mark::before {
    content: "";
    width: 40px;
    height: 8px;
    background-color: #7B7B7B;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
}
.calc_add_mark::after {
    content: "";
    width: 8px;
    height: 40px;
    background-color: #7B7B7B;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
}
@media screen and (min-width:48em) {
.fee_new_p {
	font-size: 18px;
	margin-bottom: 40px;
	}
.fee_calc {
	flex-direction: row;
	gap: 0;
	justify-content: space-between;
	width: min(100%, 1060px);
	margin: 0 auto;
	}
.fee_calc_item {
	width: calc((100% - 80px) / 2);
	display: flex;
	flex-direction: column;
	}
    .fee_initial {
        margin: 0;
    }
    .calc_add_mark {
        height: 100%;
        width: 40px;
        bottom: 50%;
        left: calc(20px + 100%);
        translate: 0 50%;
    }
    .fee_calc_item ul {
        flex-grow: 1;
        justify-content: center;
    }
}
@media screen and (min-width:64em) {
.calc_ttl h3 {
	font-size: 24px;
	}
.calc_ttl p,
.fee_calc_item li {
	font-size: 16px;
	}
.fee_calc_item ul {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 20px 32px 32px 32px;
	}
}

/* sec_fee_cta */
#sec_fee_cta {
	width: 100%;
	padding: 0 0 5rem;
}
.cta_fee {
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
	justify-content: center;
	align-items: flex-end;
}
.copy-online {
	display: inline-block;
	position: relative;
	padding: 0.8rem;
	color: #297f3a;
	font-size: 16px;
	text-align: center;
}
.copy-online::before {
	border-left: solid 1px;
	left: 0;
	transform: rotate(-35deg);
}
.copy-online::after {
    border-right: solid 1px;
    right: 0;
    transform: rotate(35deg);
}
.copy-online::before, .copy-online::after {
    position: absolute;
    top: 0.5rem;
    height: 1.85rem;
    content: '';
}

.btn-cta-microcopy {
    color: #297f3a;
    text-align: center;
    font-size: 18px !important;
    font-weight: 700;
    margin: 0 !important;
}
.copy-download {
    display: inline-block;
    position: relative;
    padding: 0.8rem;
	color: #FD7822;
    font-size: 16px;
    text-align: center;
}

.copy-download::before {
    border-left: solid 1px;
    left: 0;
    transform: rotate(-35deg);
}

.copy-download::after {
    border-right: solid 1px;
    right: 0;
    transform: rotate(35deg);
}
.copy-download::before, .copy-download::after {
    position: absolute;
    top: 0.5rem;
    height: 1.85rem;
    content: '';
}
.btn_fee a {
    padding: 20px;
    background-color: #FD7822;
    border-radius: 6px;
    color: #fff;
    font-size: 1.3em;
    font-weight: bold;
    line-height: 1.3em;
    display: block;
    position: relative;
}
.btn_fee a::after {
  content: '>';
  position: absolute;
  top: 1em;
  right: 0.625em;
  -webkit-transform: scale(0.5, 1.0);
  -moz-transform: scale(0.5, 1.0);
  -ms-transform: scale(0.5, 1.0);
  transform: scale(0.5, 1.0);
  display: inline-block;
  font-size: 1.5em;
  font-weight: normal;
}
.cta_fee .btn_fee {
	max-width: 32em;
	text-align: center;
	position: relative;
	width: 100%;
}
.btn_fee.color_gr a{
	background-color: #297f3a;
}
.btn_fee a:hover {
	opacity: .7;
	}
/* SPサイズ ～767px */
@media screen and (max-width:767px) {
.btn_fee a::after {
	display: none;
/*    top: 0.6em;*/
  }
}
@media screen and (max-width: 580px) {
.copy-online::before, .copy-online::after {
	position: absolute;
	content: '';
	}
.copy-download::before, .copy-download::after {
position: absolute;
   /* top: 0.8rem;
    height: 2.5rem;*/
    content: '';
}
}
@media screen and (min-width: 48em) {
.cta_fee {
	gap: min(5%, 72px);
	}
.cta_fee .btn_fee {
	width: calc((100% - min(5%, 72px)) / 2);
	margin: 0;
	}
.btn_fee a::after {
	top: 0.65em;
	}
}

/* sec-security */
.security_logo {
	width: 100%;
	max-width: 293px;
	margin: 2rem auto;
}
.security_logo a:hover img {
	opacity: 0.8;
}
.security_logo img {
	width: 24%;
	margin: 0 3%;
	vertical-align: middle;
} 
@media (min-width:48em){
.security_logo img {
    margin: 0 4%;
}
}
/* 新CTA */
.sec-cnv {
    background-color: #f0f0f0;
    padding: 5em 0 5em;
    margin-bottom: 0;
}
.section_lead {
	text-align: center;
	margin-bottom: 20px;
	font-size: 1.8em !important;
	line-height: 1.3em;
	font-weight: bold;
}
ul.cnv-merit {
	margin: 0 auto 40px;
	max-width: 24em;
}
ul.cnv-merit li {
	margin-bottom: 0.5em;
	line-height: 1.5em;
	padding-left: 2em;
	text-indent: -2em;
}
ul.cnv-merit li span.icon-webfont-19 {
	padding-right: 1em;
}
.icon-webfont-19:before {
	content: "\e912";
}
ul.cnv-merit li span.marker {
	background: -webkit-linear-gradient(transparent 88%, #ff7f7f 88%);
	background: -o-linear-gradient(transparent 88%, #ff7f7f 88%);
	background: linear-gradient(transparent 88%, #ff7f7f 88%);
	font-weight: bold;
}
#cnv-include.cnv-include-btn-flex {
	display: flex;
	flex-wrap: wrap;
	gap: 16px 24px;
	align-items: center;
	justify-content: center;
	margin-bottom: 40px;
}
#cnv-include .cnv-include-btn {
	position: relative;
	padding-top: 1.5em;
	width: fit-content;
	margin: 0;
}
#cnv-include .cnv-include-btn.cnv-or::before {
	content: '＼  3分でわかる！  ／';
	width: 100%;
	height: auto;
	color: #FF7800;
	position: absolute;
	top: 0;
	text-align: center;
	font-size: 18px;
	font-weight: 700;
}
#cnv-include .cnv-include-btn.cnv-gr::before {
    content: '＼  お困りごと・不明点を解消  ／';
    width: 100%;
    height: auto;
    color: #297F3A;
    position: absolute;
    top: 0;
    text-align: center;
    font-size: 18px;    
    font-weight: 700;
}
#cnv-include .cnv-include-btn a {
    box-sizing: border-box;
    display: inline-block;
    min-width: 296px;
    padding: 16px 40px;
    border-radius: 6px;
    color: #fff;
    box-shadow: 0 5px 12px rgb(0 0 0 / 40%);
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}
#cnv-include .cnv-include-btn.cnv-or a {
    background-color: #FF7800;
}
#cnv-include .cnv-include-btn.cnv-gr a {
    background-color: #297F3A;
}
#cnv-include .cnv-include-btn a:hover {
    opacity: 0.7;
}
.cnv-include.cnv-include-btn-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}
.cnv-include .cnv-include-btn {
    position: relative;
    padding-top: 1.5em;
    width: fit-content;
    margin: 0;
}
.cnv-include .cnv-include-btn.cnv-or::before {
    content: '＼  3分でわかる！  ／';
    width: 100%;
    height: auto;
    color: #FF7800;
    position: absolute;
    top: 0;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
}
.cnv-include .cnv-include-btn.cnv-gr::before {
    content: '＼  お困りごと・不明点を解消  ／';
    width: 100%;
    height: auto;
    color: #297F3A;
    position: absolute;
    top: 0;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
}
.cnv-include .cnv-include-btn a {
    box-sizing: border-box;
    display: inline-block;
    min-width: 296px;
    padding: 16px 40px;
    border-radius: 6px;
    color: #fff;
    box-shadow: 0 5px 12px rgb(0 0 0 / 40%);
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}
.cnv-include .cnv-include-btn.cnv-or a {
    background-color: #FF7800;
}
.cnv-include .cnv-include-btn.cnv-gr a {
    background-color: #297F3A;
}
.cnv-include .cnv-include-btn a:hover {
    opacity: 0.7;
}
.cnv-img {
    width: 100%;
    max-width: 600px;
    display: block;
    margin: 0 auto;
}
@media screen and (min-width:75em) {
    .contents.cnv-flex {
        display: flex;
        gap: 40px;
        justify-content: center;
        align-items: center;
        width: 75em;
        max-width: 75em;
    }
    .cnv-flex-l {
        width: auto;
    }
    .cnv-flex-r {
        width: 455px;
    }
}

/* 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; /*top_addで上書き*/
}
.case-box:not([disabled]):hover {
	box-shadow: 0 2px 8px 0 rgba(0,0,0,.2); 
}
.case-box h3 {
	margin-top: 2rem; /*top_addで上書き*/
	font-size: 14px; /*top_addで上書き*/
	text-align: right; /*top_addで上書き*/
	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;
}

/* sec_effect */
.sec_effect p {
	margin: -30px auto 30px auto;
}
.effect-btn .btn-cta {
	border: none;
	transition: .3s;
	font-size: 18px;
	background-color: #FF3333;
	padding: 20px 0;
	display: block;
	width: 400px;
	margin:  0 auto;
}
.effect-btn .btn-cta span:before {
    content: '';
    height: 100%;
    width: 0.8em;
    background-image: url(/web/jp/seikyu/js-include/images/yen-sign-solid.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: -18px;
    transform: translateY(-50%);
}
.effect-btn .btn-cta span {
	font-size: 18px;
}
.effect-btn .btn-cta:hover {
	opacity: .7;
}
.effect-btn .btn-cta span::after {
	right: -1.4em;
	margin-top: 0;
	transform: translateY(-50%) rotate(45deg);
}
.effect-btn .btn-cta span::after {
	content: none;
}
.effect-btn .btn-cta::after {
	color: #fff;
	font-weight: 700;
	letter-spacing: 0.1em;
	content: "";
	position: absolute;
	right: 1.4em;
	width: 0.5em;
	height: 0.5em;
	top: 50%;
	border-top-width: 3px;
	border-top-style: solid;
	border-right-width: 3px;
	border-right-style: solid;
	-webkit-transform: rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}
/* SPサイズ ～767px */
@media screen and (max-width:767px) {
.effect_pc {
	display: none !important;
	}
.effect_sp img {
	width: 100%;
	margin-top: 20px;
	}
.effect-btn .btn-cta {
	width: 100%;
	}
.effect-btn .btn-cta::after,
.effect-btn .btn-cta span:before {
	content: none;
	}
}
/* タブレット縦サイズ 768px(16×48em)~ smサイズ */
@media screen and (min-width:48em) {
.effect_sp {
	display: none !important;
	}
.sec_effect p img {
	width: 100%;
	}
}
/* タブレット横サイズ 1024px(16×64em)~ mdサイズ */
@media screen and (min-width:64em) {
	.sec_effect p img {
	width: 1024px;
	}
}
/* sec-flow */
ul.flow-wrap {
	-ms-flex-pack: justify;
	justify-content: space-between;
}
ul.flow-wrap li {
	width: 24%;
}
.flow-box {
	background-color: #fff;
	box-shadow: 0 2px 8px 0 rgba(0,0,0,.2);
}
.flow-box figure img {
	width: 100%;
}
.flow-box .text {
	padding: 2rem 1rem;
}
.flow-btn .btn-cta {
	border: none;
	transition: .3s;
	background-color: #FF7800;
	padding: 15px 0;
	width: 95%;
	display: block;
	margin: 0 auto;
	text-align: center;
}
.flow-btn .btn-cta span {
	font-size: 16px;
}
.flow-btn .btn-cta:hover {
	opacity: .7;
}
.flow-btn .btn-cta span::after {
	right: -1.4em;
	margin-top: 0;
	transform: translateY(-50%) rotate(45deg);
}
.flow-btn .btn-cta span::after {
	content: none;
}
.flow-btn .btn-cta::after {
	color: #fff;
	font-weight: 700;
	letter-spacing: 0.1em;
	content: "";
	position: absolute;
	right: 0.5em;
	width: 0.5em;
	height: 0.5em;
	top: 50%;
	border-top-width: 2px;
	border-top-style: solid;
	border-right-width: 2px;
	border-right-style: solid;
	-webkit-transform: rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}
.flow-box.flow-00 p {
	text-align: center;
	margin-bottom: 3px;
}
.flow-btn .btn-cta.color_gre {
	background-color: #267C3A;
	margin: 20px auto 0;
}
.flow-box h3 {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px dotted #297f3a;
    color: #297f3a;
    font-size: 19px;
    font-weight: bold;
    line-height: 1.6;
    text-align: center;
}
.flow-box h3 span.step {
    display: block;
    font-size: 2em;
}
.flow-box h3 span.step span {
    font-size: 14px;
    font-family: Georgia, "Times New Roman", Times, "serif";
    font-style: italic;
    font-weight: 400;
}
@media (max-width:959px) {
ul.flow-wrap li {
	width: 70%;
	margin: 0 auto 2rem;
	}
ul.flow-wrap li:last-child {
	margin-bottom: 0;
	}
}
@media (max-width:767px) {
ul.flow-wrap li {
	width: 100%;
	}
}
/* sec-price */
.price-wrap {
	position:relative;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background-color: #fff;
    border: 1px solid #297f3a;
    border-radius: 6px;
}

.price-wrap-linkbox{
	position: absolute;
	width: 100%;
	height: 100%;
	top:0;
	left:0;
	z-index:100;
}
.price-note {
    margin-top: 2rem;
}
.price-note p {
    color: #666;
    margin-left: -0.5em;
    padding-left: 1em;
    text-indent: -1em;
    font-size: 14px;
    line-height: 1.6;
} 
.price-note {
    margin-top: 2rem;
} 
.price-wrap .text {
    margin-top: 2rem;
} 
.price-wrap h3 {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    padding: 0 50px;
    color: #297f3a;
    font-weight: bold;
    font-size: 22px;
    line-height: 1.4;
}
.price-wrap h3::before,
.price-wrap h3::after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 40px;
    height: 1px;
    background-color: #297c3a;
}  
    
.price-wrap h3::before {
    left: 0;
}

.price-wrap h3::after {
    right: 0;
}
    
@media (max-width:767px) {
.price-wrap {
    padding: 1rem;
}
.price-wrap h3 {
    font-size: 18px;
    padding: 0 36px;
}
    
.price-wrap h3::before,
.price-wrap h3::after {
    width: 30px;
}  
}
.price-initial {
    margin-bottom: 1rem;
}
.price-initial span {
    font-size: 1.4em;
}
.price-monthly {
    font-size: 2em;
    margin-bottom: 1rem;
}
    
.price-monthly .price-em {
    font-size: 1.8em;
}

@media (max-width:767px) {
.price-initial {
	font-size: 0.9em;
	}
.price-monthly {
	font-size: 1.2em;
	}
}
/* sec-faq */
#sec-faq .faq-btn .btn-cta {
	background-color: #44A9B3;
}

/* sec-info */
.info-wrap {
	-ms-flex-flow:row wrap;
	flex-flow:row wrap;
	-ms-flex-pack: center;
	align-items: center;
	line-height: 1.4;
}
.info-wrap:not(:last-of-type) {
	margin-bottom: 0.5rem;
}
.info-wrap .info-label {
	display: inline-block;
	margin-right: 8px;
	padding: 1px 0 2px;
	width: 100px;
	background-color: #fff;
	border: 1px solid #297f3a;
	color: #297f3a;
	font-size: 14px;
	text-align: center;
}
.info-wrap .info-text{
	display: inline-block;
	width:calc(100% - 108px);
}
.info-wrap .info-date {
	margin-right: 8px;
	color: #999;
	font-size: 14px;
}
.info-wrap a {
	color: inherit;
}

.info-wrap a:hover {
	text-decoration: underline;
}
#sec-info .info-btn .btn-cta {
	background-color: #97bf18;
}
@media (max-width: 767px) {
.info-wrap {
	-ms-flex-direction: column;
	flex-direction: column; 
	-ms-flex-pack: start;
	justify-content: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	text-align: left;
}
.info-wrap .info-label {
	margin-right: 0;
}
.info-wrap .info-text{
	width: 100%;
	}
}

/*202209 for new header&footer*/
/*_________________________________________________________________*/

/*説明文追加*/
.descriptive-wrap {
	width: 90%;
	max-width: 864px;
	margin: -2rem auto 2rem;
}
.descriptive-wrap p{
	line-height: 1.8;
}
.h3-center{
	text-align: center;
	padding-top:1rem !important;
	margin-bottom: 2rem !important;
}
@media (max-width: 767px) {
.descriptive-wrap {
	margin: 0 auto 1rem;
	}
.h3-center{
	margin-bottom: 1rem !important;
	}
}

/* 本採用になったら下記を/web/jp/seikyu/js-include/css/include.cssに移動 */
/*-----------------
 機能比較表
-----------------*/
.hikakuhyo {
	width: 90%;
	margin: auto;
	margin-top: 20px;
}
.hikakuhyo .cf:before, .cf:after {
	content: "";
	display: table;
}
.hikakuhyo .cf:after, .cf:after {
	clear: both;
}
.hikakuhyo h3{
	float: left;
}
.hikakuhyo .kome{
	font-size: 14px;
}
.hikakuhyo .tx-kaite {
	color: #dd145a !important;
}
.hikakuhyo .bg-kaite {
	background-color: #dd145a !important;
}
.hikakuhyo .mr10,
.hikakuhyo .mh10,
.hikakuhyo .ma10 {
    margin-right: 10px !important;
}
.hikakuhyo .h40 {
	height: 40px !important;
}
.hikakuhyo .w6 {
	width: 6px !important;
}
.hikakuhyo .ic-new-tx {
	display: block;
	float: left;
}
.hikakuhyo .pt10,
.hikakuhyo .pv10,
.hikakuhyo .pa10 {
    padding-top: 10px !important;
}
.hikakuhyo table {
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 100%;
}

.hikakuhyo .table_scroll th,
.hikakuhyo .table_scroll td{
	line-height: 1.0;
}

.hikakuhyo .table-small-txt{
	font-size: 12px;
	text-align: right;
	padding-right:35px;
}
.hikakuhyo .seller .table_layout02,
.hikakuhyo .buyer .table_layout02 {
    white-space: nowrap;
}

.hikakuhyo .seller.table_layout table th,
.hikakuhyo .seller.table_layout table td{
	border:1px solid #f3d896;
	font-size:12px;
}

.hikakuhyo .seller .table_layout01,
.hikakuhyo .buyer .table_layout01{
	white-space: nowrap;
}

.hikakuhyo .seller .table_layout01 .bk01 {
	background:#df9300;border:1px solid #df9300;
}

.hikakuhyo .seller .table_layout01 .bk03{
	border-bottom:1px solid #df9300;
}

.hikakuhyo .seller .table_layout02 .bk02 td{
	border-top:5px solid #df9300;border-bottom:5px solid #df9300;color:#bf8007;
}
.hikakuhyo .seller .table_layout02 .bk02 td.bk02_last{
	border-right:5px solid #df9300;
}

/*.seller .table_layout02{width:933px;}項目が増えた場合にこちらの横幅を調整*/
.hikakuhyo .seller .table_layout02 .w01{
	width:80px;
}

.hikakuhyo .seller .table_layout02 .w02{
	width:90px;
}

.hikakuhyo .seller .table_layout02 .w03{
	width:120px;
}

.hikakuhyo .seller .table_layout02 .w04{
	width:85px;
}
.hikakuhyo .seller .table_layout02 .w05{
	width:68px;
}
.hikakuhyo .seller .table_layout02 .w06{
	width:160px;
}
.hikakuhyo .seller .table_layout02 .w07{
	width:110px;
}
.hikakuhyo .seller .table_layout02 .w08{
	width:176px;
}

.hikakuhyo .buyer.table_layout table th, .buyer.table_layout table td{
	border:1px solid #f4bdd0;
	font-size:12px;
}
.hikakuhyo .buyer .table_layout01 .bk01{
	background:#db2364;
	border:1px solid #db2364;
}
.hikakuhyo .buyer .table_layout01 .bk03{
	border-bottom:1px solid #db2364;
}
.hikakuhyo .buyer .table_layout02 .bk02 td{
	border-top:5px solid #db2364;
	border-bottom:5px solid #db2364;
	color:#db2364;
}
.hikakuhyo .buyer .table_layout02 .bk02 td.bk02_last{
	border-right:5px solid #db2364;
}
/*.buyer .table_layout02{width:1700px !important;}項目が増えた場合にこちらの横幅を調整*/

.hikakuhyo .buyer .table_layout02 .w01{
	width:110px;
}
.hikakuhyo .buyer .table_layout02 .w02{
	width:200px;}
.hikakuhyo .buyer .table_layout02 .w03{width:95px;
}
.hikakuhyo .buyer .table_layout02 .w04{
	width:100px;
}
.hikakuhyo .buyer .table_layout02 .w05{
	width:150px;
}

.hikakuhyo .table_layout{
	margin:10px 0;display: flex;
}
.hikakuhyo .table_layout table{
	display:block;
	/*float:left;*/
}
.hikakuhyo .table_layout table th,.table_layout table td{
	border-collapse:collapse;
}
.hikakuhyo .table_layout table th,.table_layout table td{
	height:40px;padding:5px;vertical-align:middle;
}
.hikakuhyo .table_layout table th{
	padding-left:10px;
}
.hikakuhyo .table_layout table td{
	text-align:center;font-size:16px;
}
.hikakuhyo .table_layout01 td{
	width:65px;
}
.hikakuhyo .table_scroll{
	width:100%;
	overflow-x:auto;
	overflow-y: hidden;
}

.hikakuhyo .table_scroll.noOverflow{
	width: auto; overflow: visible;
}
.hikakuhyo .table_layout01 .bk01{
	color:#fff;font-weight:bold;font-size:17px;
}
.hikakuhyo .table_layout02 .bk02 td{
	height:32px;
}
.hikakuhyo .table_layout02 td span{
	font-size:14px;line-height:1.1;
}
.hikakuhyo .table_layout table .bk04{
	background:#f9f9f9;
}
.hikakuhyo .table_scroll::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 12px;
	height:12px;
	background-color: #eee;
}
.hikakuhyo .table_scroll::-webkit-scrollbar-thumb {
    background-color: #999;
	border-radius: 5px;
}
.hikakuhyo .table_scroll{
  scrollbar-width: auto;
  scrollbar-color: #999 #eee;
}

.hikakuhyo .table-subtxt{
  margin-top:20px;
}

.hikakuhyo .bg-urite02 {
    background-color: #bf8c0f !important;
}

.hikakuhyo .tx-urite02 {
    color: #bf8c0f !important;
}