@charset "UTF-8";

/* *************************************************************************** */
/* 共通 */
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);

html { scroll-behavior: smooth;}
body {
    /* font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif; */
    font-family: 'Noto Sans Japanese',   sans-serif;
    font-weight: normal;
    /* background-color: #EDEDED; */
    margin: 0px;
    z-index: -9999;
    position: relative;
}
.body_inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0px 30px;
    box-sizing: border-box;
}
@media (max-width: 767px) {
    .body_inner {
        padding: 0px 15px;
    }
}
a {
    text-decoration: none;
}
@media (max-width: 767px) {
    img {
        width: 100%;
    }
}


/*== ボタン共通設定 */
a.normal{
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
    border: 2px solid #1D7E95;
    height: 60px;
    text-align: center;
    outline: none;
    transition: ease .2s;
    line-height: 60px;
    width: fit-content;
    padding: 0px 30px;
    border-radius: 100px;
    background: #1D7E95;
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}
@media (max-width: 767px) {
    a.normal{
        width: 100%;
        height: 70px;
        line-height: 70px;
        box-sizing: border-box;
    }
}
/*ボタン内spanの形状*/
a.normal span {
	position: relative;
	z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
	color:#fff;
    font-weight: bold;
}

a.normal:hover span{
	color:#1D7E95;
}

/*== 背景が流れる（斜め） */
.bgskew::before {
	content: '';
    /*絶対配置で位置を指定*/
	position: absolute;
	top: 0;
	left: -130%;
    /*色や形状*/
	background:#fff;
	width:120%;
	height: 100%;
	transform: skewX(-25deg);
}

/*hoverした時のアニメーション*/
.bgskew:hover::before {
	animation: skewanime .5s forwards;/*アニメーションの名前と速度を定義*/
}

@keyframes skewanime {
	100% {
		left:-10%;/*画面の見えていない左から右へ移動する終了地点*/
	}
}
section {
    padding-top: 80px;
    padding-bottom: 60px;
}
@media(max-width:750px){
    section{
        padding-top: 30px;
        padding-bottom: 20px;
        position: relative;
        z-index: -9999;
    }   
}
.background {
    background-color: #CDE0E6;
}
.background2 {
    background-color: #efefef;
}
.inner{
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 30px;
    box-sizing: border-box;
}
@media(max-width:750px){
    .inner{
        padding: 10px 25px;
    }   
}
.flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media(max-width:750px){
    .flex {
        flex-direction: column;
    }   
}
a {
    color: #000;
}
img {
    width: 100%;
}
h1 {
    font-size: 2.4rem;
    letter-spacing: 5px;
}
@media(max-width:750px){
    h1 {
        font-size: 1.6rem;
    }   
}
h2 {
    font-size: 2.2rem;
    letter-spacing: 5px;
    margin-bottom: 0px;
    margin-bottom: 30px;
    text-align: center;
}
@media(max-width:750px){
    h2 {
        font-size: 1.6rem;
    }   
}
h3 {
    font-size: 2.4rem;
}
@media(max-width:750px){
    h3 {
        font-size: 1.6rem;
    }   
}
p {
    font-size: 1.2rem;
    font-weight: bold;
}
@media(max-width:750px){
    p {
        font-size: 1.0rem;
    }   
}
@media(min-width:751px){
    .sp{
        display: none !important;
    }
}
@media(max-width:750px){
    .pc{
        display: none !important;
    }
}
.line_all{
    text-align: center;
    margin-bottom: 60px;
}
.line {
    display: inline-block;
    width: 20px;
    height: 4px;
    margin: 0 3px;
}
.line1 {
    background-color: #84B29A;
}
.line2 {
    background-color: #ECD16A;
}
.line3 {
    background-color: #7889BC;
}
.line4 {
    background-color: #CB5B91;
}
.line_left {
    /* text-align: left; */
    margin: 0px;
}


/* *************************************************************************** */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    width: 100%;
}
@media (max-width: 767px) {
    header {
        flex-direction: column;
        text-align: center;
    }
}
header h1 {
    margin: 0px;
}
header h1 img{
    width: 200px;
    margin: 10px;
}
@media(max-width:750px){
    header h1 img{
        width: 80%;
    }   
}
header .menu {
    display: flex;
    width: 100%;
    justify-content: end;
    align-items: center;
    /*
    font-size: 1.2rem;
    */
}

@media(max-width:750px){
    header .menu {
        position: fixed;
        bottom: 0;
    }   
}
header .menu a {
    display: inline-block;
    margin: 0;
    margin-right: 20px;
    font-weight: bold;
}
@media(max-width:750px){
    header .menu a {
        margin: auto;
        border: solid 1px #efefef;
        font-size: 1rem;
        border-radius: unset;
        z-index: 9999;
    }   
}


section.main .flex_left {
    width: 40%;
}
section.main .flex_left img.kintone{
    padding-bottom: 40px;
    width: 280px;
    padding-left: 40px;
}
@media(max-width:750px){
    section.main .flex_left img.kintone{
        width: 60%;
        margin: 100px auto 20px;
        display: block;
        padding: 0px;
    }   
}
section.main .flex_left img.klooker{
    width: 400px;
}
@media(max-width:750px){
    section.main .flex_left img.klooker{
        width: 100%;
        display: none;
    }   
}
section.main .flex_left a{
    font-size: 1.8rem;
    line-height: 80px;
    height: 80px;
}
section.main .flex_right {
    width: 60%;
}
section.main .flex_right img{
    width: 100%;
}
@media(max-width:750px){
    section.main .flex_left, section.main .flex_right {
        width: 100%;
    }   
}

section.feature h2{
    text-align: center;
}
section.feature .box{
    background-color: #fff;
    border-radius: 30px;
    padding: 30px 60px;
    align-items: unset;
    margin-bottom: 30px;
}
@media(max-width:750px){
    section.feature .box{
        padding: 20px 30px 40px;
    }   
}
section.feature .flex_left{
    width: 50%;
}
section.feature .flex_right{
    width: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media(max-width:750px){
    section.feature .flex_left, section.feature .flex_right {
        width: 100%;
    }   
}
section.feature .flex_right img{
    padding: 0px 30px;
    /* object-fit: none; */
}
@media(max-width:750px){
    section.feature .flex_right img{
        padding: 0px;
    }   
}
@media(max-width:750px){
    section.feature h3{
        text-align: center;
    }   
}
section.function h2{
    text-align: center;
}

section.function .flex {
    flex-wrap: wrap;
    justify-content: center;
}
section.function .box{
    background-color: #CDE0E6;
    border-radius: 20px;
    padding: 10px 20px;
    margin: 15px;
    margin-bottom: 30px;
    width: 300px;
}
@media(max-width:750px){
    section.function .box{
        width: 100%;
        margin: 0px;
        margin-bottom: 20px;
        box-sizing: border-box;
    }   
}
section.function .box h3{
    text-align: center;
    font-size: 2.0rem;
}
@media(max-width:750px){
    section.function .box h3{
        margin: 10px 0px;
        font-size: 1.6rem;
    }   
}
section.case h2 {
    text-align: center;
}
section.case p.message {
    text-align: center;
}
section.case .flex {
    flex-wrap: wrap;
    justify-content: center;
}
section.case .flex img{
    width: 40%;
    margin: 20px 30px;
}
@media(max-width:750px){
    section.case .flex img{
        width: 100%;
        margin: 0px;
        margin-bottom: 20px;
    }   
}

section.demo h2{
    text-align: center;
}
section.demo p {
    text-align: center;
    margin-bottom: 30px;
}
section.demo iframe {
    width: 100%;
    height: 900px;
}
@media(max-width:750px){
    section.demo iframe {
        height: 400px;
    }   
}
section.demo a {
    margin: 0 auto;
    margin-top: 40px;
}
section.demo .arrow_s {
    position: relative;
    /* display: inline-block; */
    /* padding-left: 12px; */
    /* color: #333; */
    text-decoration: none;
}
section.demo .arrow_s::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 0 20px 16px;
    border-color: transparent transparent transparent #333;
    position: absolute;
    top: 50%;
    right: -24px;
    margin-top: -20px;
}
@media(max-width:750px){
    section.demo .arrow_s::after {
        content: '';
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 20px 20px 20px 20px;
        border-color: #333 transparent transparent transparent;
        position: absolute;
        top: 100%;
        /* margin-top: 12px; */
        margin: 12px auto;
        left: 0;
        right: 0;
    }   
}


section.flow h2{
    text-align: center;
}
section.flow .box{
    background-color: #CDE0E6;
    border-radius: 20px;
    padding: 40px 30px;
    margin: 15px;
    margin-bottom: 30px;
    width: 300px;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
@media(max-width:750px){
    section.flow .box{
        padding: 30px;
        box-sizing: border-box;
        min-height: unset;
        z-index: -1;
        width: 100%;
    }   
}
section.flow .box span{
    font-size: 3rem;
    font-weight: bold;
}
section.flow .box h3{
    font-size: 1.8rem;
}
@media(max-width:750px){
    section.flow .box h3{
        margin: 10px;
    }   
}
section.flow .box p{
    text-align: left;
    font-size: 1.1rem;
}
section.flow .arrow_s {
    position: relative;
    /* display: inline-block; */
    /* padding-left: 12px; */
    /* color: #333; */
    text-decoration: none;
}
section.flow .arrow_s::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 0 20px 16px;
    border-color: transparent transparent transparent #333;
    position: absolute;
    top: 50%;
    right: -24px;
    margin-top: -20px;
}
@media(max-width:750px){
    section.flow .arrow_s::after {
        content: '';
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 20px 20px 20px 20px;
        border-color: #333 transparent transparent transparent;
        position: absolute;
        top: 100%;
        /* margin-top: 12px; */
        margin: 12px auto;
        left: 0;
        right: 0;
    }   
}

section.price a{
    
    margin: 0 auto;
}

section.price h2{
    text-align: center;
}

section.price p {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin: 60px auto 40px;
}
section.price span.yen {
    font-size: 1rem;
    margin-left: 5px;
}

section.price table {
border-collapse:collapse;
font-weight: bold;
margin-bottom: 30px;
}
section.price th {
background: #CDE0E6;
border: solid 1px #ccc;
padding: 10px;
}
section.price td {
border: solid 1px #ccc;
padding: 30px;
}


section.price td:nth-child(1) {
    width: 20%;
    background: #CDE0E6;
    text-align: center;
    font-size: 1.8rem;
}
@media(max-width:750px){
    section.price td:nth-child(1) {
        width: unset;
    }   
}
section.price td:nth-child(2) {
    width: 30%;
    text-align: center;
    font-size: 2.4rem;
}
@media(max-width:750px){
    section.price td:nth-child(2) {
        width: unset;
        /* font-size: 1rem; */
    }   
}

section.price td:last-child {
    width: 50%;
}
@media(max-width:750px){
    section.price td:last-child {
        width: unset;
    }   
}

table{
    border-collapse: collapse;
    width: 100%;
  }
  .tb01 th,
  .tb01 td{
    padding: 10px;
    border: solid 1px #ccc;
    text-align:center;
    box-sizing:border-box;
  }
  .tb01 th {
    background: #CDE0E6;
    /* color: #fff; */
    
  }
  @media screen and (max-width: 640px) {
    .tb01 .head{
      display:none;
    }
    .tb01 {
      width: 100%;
    }
    table.tb01 td {
      display: block;
      width: 100%;
      border-bottom:none;
    }
    table.tb01 td:first-child{
      background: #CDE0E6;
      /* color:#fff; */
      font-weight:bold;
    }
    .tb01 tr:last-child{
      border-bottom: solid 1px #ccc;
    }
  }
section.price .supplement {
margin-bottom: 60px;
}
section.price .supplement p{
    font-weight: normal;
    font-size: 0.9rem;
    text-align: left;
    margin: 10px;
}
section.price table ul{
    text-align: left;
}


section.form_link img{
    width: 400px;
    display: block;
    margin: 0 auto;
}
@media(max-width:750px){
    section.form_link img{
        width: 80%;
    }   
}
section.form_link .flex{
    justify-content: center;
}
section.form_link .flex a{
    font-size: 1.8rem;
    line-height: 80px;
    height: 80px;
    margin: 20px;
    width: 280px;
}
@media(max-width:750px){
    section.form_link .flex a{
        width: 100%;
        z-index: -1;
    }   
}

section.contact h2{
    text-align: center;
}
section.contact p.message {
    text-align: center;
    margin: 40px 0px;
    line-height: 40px;
}
@media(max-width:750px){
    section.contact p.message {
        text-align: left;
    }
}
section.contact .zcwf_lblTopBottom .zcwf_col_fld input[type=text]{
    width: 100%!important;
    height: 45px!important;
    font-size: 1.0rem;
    padding: 10px;
    background: #fff!important;
}
section.contact .zcwf_lblTopBottom .zcwf_col_fld textarea{
    width: 100%!important;
    height: 180px!important;
    font-size: 1.0rem;
    background: #fff!important;
    padding: 10px;
}
section.contact .zcwf_lblTopBottom .zcwf_col_lab{
    font-weight: bold;
    font-size: 1.0rem!important; 
    /* height: 40px; */
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: end;    */
}
@media(max-width:750px){
    section.contact .zcwf_lblTopBottom .zcwf_col_lab{
        justify-content: start;
    }   
}
@media(max-width:750px){
    section.contact .zcwf_lblTopBottom .zcwf_row{
        margin: 0px!important;
        margin-bottom: 15px!important;
    }
}
section.contact .zcwf_lblTopBottom .zcwf_title{
    display: none;
}
section.contact .zcwf_lblTopBottom .zcwf_button{
    background-color: #CDE0E6!important;
    height: 70px;
    font-weight: bold;
    max-width: 250px;
    width: 250px;
    margin-bottom: 20px;
    font-size: 1.0rem;
}
section.contact .zcwf_lblTopBottom .zcwf_privacy_txt {
    width: 100%;
    /* font-size: 1rem; */
}
section.contact .zcwf_lblTopBottom .zcwf_privacy{
    display: flex;
}
section.contact .zcwf_lblTopBottom .zcwf_privacy_txt span{
    /* width: fit-content; */
    font-size: 1rem!important;
}
section.contact .zcwf_lblTopBottom .zcwf_privacy_txt a{
    /* width: fit-content; */
    font-size: 1rem!important;
}
#privacyErr5088919000002735049,#privacyErr5088919000002735010 {
    display: none;
}
/* @media(max-width:750px){
    section.contact .zcwf_lblTopBottom .zcwf_privacy_txt {
        width: 100%;
    }   
} */
/* section.contact .zcwf_privacy {
    text-align: center;
} */
/* @media(max-width:750px){
    section.contact .zcwf_privacy {
        text-align: left;
    }   
} */
section.contact input[type="submit" i] {
    display: block;
    margin: 0 auto;
}
section.contact input[type="reset" i] {
    display: none;
}
#crmWebToEntityForm.zcwf_lblTopBottom {
    padding: 0px!important;
}
section.contact #crmWebToEntityForm.zcwf_lblTopBottom * {
    background-color: #efefef;
}
section.download #crmWebToEntityForm.zcwf_lblTopBottom * {
    background-color: #fff;
}
section.contact img {
    width: 500px;
    display: block;
    margin: 0 auto;
}
@media(max-width:750px){
    section.contact img {
        width: 100%;
    }   
}
footer {
    background-color: #efefef;
    text-align: center;
    padding: 30px;
    padding-bottom: 120px;
}
footer img {
    width: 200px;
}
footer ul {
    text-align: left;
    margin: 0 15px;
    width: fit-content;
}
@media(max-width:750px){
    footer ul {
        margin: 0;
    }   
}
footer .site_map {
    justify-content: center;
    align-items: unset;
    margin-bottom: 60px;
}
footer ul li{
    list-style: none;
}

.sf-shared-parts footer {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}