@charset "UTF-8";

:root {
    --theme-color:#0fa89d;
    --accent-color:#f15b84;

    --line-theme-color: var(--theme-color);
    --line-accent-color: var(--accent-color);    
    --line-lightgray:#dee2e6;

    --text-default-color: #414141;
    --text-theme-color: var(--theme-color);
    --text-accent-color: var(--accent-color);
    --text-lightgray:rgba(33, 37, 41, 0.75);

    --bg-theme-color:var(--theme-color);
    --bg-lightgreen:#eaf5e8;
    --bg-lightgray:#f9f9f9;
    --bg-lightblue:#c6e8f1;
    --bg-lightorange:#fbe8e1;
    --bg-lightpink:#fbe2e7;

    --text-size-small:0.875rem;
}

html{
    font-size: 14px;    
}

@media (min-width: 992px) {
    html{
        font-size: 16px;
    }
}

body{
    font-family: "Noto Sans JP", sans-serif;
    color:var(--text-default-color);
    box-sizing:border-box;
    background-color: #fff;
    padding: 0;
    margin: 0;
    line-height: 1.5;
}

section{
    padding-top: 4rem;
    padding-bottom: 4rem;
}

h2{
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-align: center;
}

strong{
    color: var(--text-theme-color);
}

img{
    max-width: 100%;
    height: auto;
    max-height: 100%;
}

/*boostrap クラス上書き*/
.container{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.lead{
    font-size: 1rem;
}

@media (min-width: 768px){
    .lead{
        font-size: 1.25rem;
    }
}

/*ページ内共通クラス*/
/*背景*/
.wk-bg-lightgray{
    background-color: var(--bg-lightgray);
}
.wk-bg-lightgreen{
    background-color: var(--bg-lightgreen);
}
/*テキスト*/
.wk-text-dot{
    position: relative;
    display: inline-block;
    padding-top: 10px; /* ドットのスペースを確保 */
}
.wk-text-dot::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    left: calc(50% - 5px);
    background: var(--text-theme-color);
    border-radius: 100%;
    transform: translateY(-50%);
}

/*CTAボタン*/
.wk-cta-btn{
    width: 100%;
    display: block;
    text-align: center;
    text-decoration: none;
    font-size: 1.25rem;
    color: #ffffff;
    padding: 1.0rem 1.618rem;
    border: none;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(0); /* 初期位置 */
}
.wk-cta-btn:hover {
    color: #ffffff;
    /*transform: translateY(-4px) scale(1.02); /* 浮いて少し拡大 */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* 影を強く */
}

.wk-cta-btn--brand {
    background: linear-gradient(135deg, #3B8E8F, #45A6A7);
}
.wk-cta-btn--brand:hover {
    background: linear-gradient(135deg, #0fa89d, #2cc5ba);
}
.wk-cta-btn--accent {
    background: linear-gradient(135deg, #f15b84, #f77d9e);
}
.wk-cta-btn--accent:hover {
    background: linear-gradient(135deg, #ff6e95, #ff88a9)
}
.wk-cta-btn--border{
    background: #ffffff;
    color: #0fa89d;
    border: solid 1px #0fa89d;
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.1);
}
.wk-cta-btn--border:hover {
    color: #3B8E8F;
}

/*パネルリスト*/
.wk-panel-list-box{
    border-radius: 0.5rem;
    padding: 1.5rem;
    height: 100%;
    background: #ffffff;
    border: solid 2px var(--line-theme-color);
}

.wk-panel-list-title{
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}
@media (min-width: 768px){
    .wk-panel-list-title{
        font-size: 1.25rem;
    }
}



/*ヘッダー*/
#wk-header-top{
    background: rgba(255, 255, 255, 0.5);
    transition: background-color 0.3s ease;
}
#wk-header-top.wk-header-top--scrolled{
  background-color: #ffffff !important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.wk-header-subnav{
    font-size: var(--text-size-small);
    padding: 0;
}
.wk-header-subnav a{
    font-weight: bold;
}

@media (min-width: 1400px) {
    .wk-header-navbar .container-fluid,
    .wk-header-subnav .container-fluid {
        max-width: 1600px;
    }
}

.wk-hamburger-btn{
    border: none;
}

.wk-header-navbar-list {
    margin-left: 0;
    justify-content: center;
    width: 100%;
}

@media(min-width: 992px) {
    .wk-header-navbar-list {
        justify-content: end;
    }
}

.wk-header-navbar-item {
    margin: 0.5rem 0;
    font-weight: bold;
    text-align: center;
    font-size: 1rem;
}
@media(min-width: 992px) {
    .wk-header-navbar-item{
        margin: 0 0 0 0.8rem;
        font-weight: bold;
    }
    .wk-header-navbar-item:first-child{
        margin: 0 0 0 0;
    }
}

.wk-header-navbar-item .wk-cta-btn,
.wk-header-navbar-item .wk-cta-btn--border{
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    padding: 0.5rem;
    width: 9rem;
}

.wk-header-navbar-item .wk-cta-btn--border{
    padding: calc(0.5rem - 1px);
}

#wk-offcanvas-nav {
    transition: transform 0.4s ease-in-out, visibility 0.4s ease-in-out;
    background-color: #f5f5f5;
}

#wk-offcanvas-nav .wk-header-navbar-item,
#wk-offcanvas-nav .wk-header-navbar-item .wk-cta-btn,
#wk-offcanvas-nav .wk-header-navbar-item .wk-cta-btn--border{
    font-size: 1.15rem;
}
#wk-offcanvas-nav .wk-header-navbar-item .wk-cta-btn,
#wk-offcanvas-nav .wk-header-navbar-item .wk-cta-btn--border{
    width: 60%;
}


/*ファーストビュー*/
.wk-hero-bg{
    background-image: url('/assets/wk/img/hero-bg.png');
    background-size: cover;    
    background-position: 50% 50%;
    padding-top: 70px;
}
@media(min-width: 992px) {
    .wk-hero-bg{
        padding-top: 100px;
    }
}

#wk-hero{
    padding: 0;
    border-radius: 20px;
    width: 100%;
    border-radius: 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (min-width: 1200px) {
    #wk-hero{
        min-height: 560px;
    }
}

#wk-hero .wk-hero-copy{
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-theme-color);
}
@media (min-width: 768px) {
    #wk-hero .wk-hero-copy{
        font-size: 3.75rem
    }
}
@media (min-width: 992px){
    #wk-hero .wk-hero-copy {
        font-size: calc(1.0vw + 2rem);
    }
}
@media (min-width: 1200px) {
    #wk-hero .wk-hero-copy{
        font-size: calc(1.25vw + 2.2rem);
    }
}
@media (min-width: 1400px) {
    #wk-hero .wk-hero-copy{
        font-size: 3.75rem;
    }
}


#wk-hero .wk-hero-title{
    font-size: 1.125rem;
    line-height: 1.5;
    margin-top: 1.5rem;
    font-weight: 700;
}
@media (min-width: 992px){
    #wk-hero .wk-hero-title{
        margin-left: 0.5rem;
    }
}

#wk-hero .wk-hero-lead{
    font-size: 1rem;
    margin-top:1rem;
    margin-bottom:1rem;
}
@media (min-width: 992px){
    #wk-hero .wk-hero-lead {
        margin-bottom: 2rem;
    }    
}


#wk-hero .wk-hero-image{
    max-width: 420px;
    width: 100%;
    height: auto;
}
@media (min-width: 768px) {
    #wk-hero .wk-hero-image{
        max-width: 100%;
    }    
}
@media (min-width: 1200px) {
    #wk-hero .wk-hero-image{
        width: 80%;
    }
}


#wk-hero .wk-hero-content{
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 768px) {
    #wk-hero .wk-hero-content{
        max-width: 100%;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    #wk-hero .wk-hero-cta-block{
        flex-direction: column !important;
    }
    #wk-hero .wk-hero-cta-inner{
        width: 80% !important;
        margin-left: auto;
        margin-right: auto;
    }
}

/*CTAセクション*/
.wk-cta-sec,
.wk-cta-sec--full{
    text-align: center;
    background-color: var(--bg-lightgreen);
}
.wk-cta-sec-title{
    color: var(--text-theme-color);
}


/*料金枠*/
.wk-plan-note{
    font-size: var(--text-size-small);
}
.wk-plan-num{
    font-size: 2.25em;
    font-weight: bold;
    color: var(--text-theme-color);
}

/*お悩み枠*/
#wk-problems{
    /*background: var(--bg-lightgray);*/
}
.wk-problems-solution-strong{
    font-size: 1.25em;
    font-weight: bold;
    color:var(--text-theme-color);
}
#wk-problems .wk-panel-list-title{
    text-align: center;
    padding: 0;
    margin: 0 0 1.125rem;
}
#wk-problems .wk-panel-list-title .strong{
    color: var(--text-theme-color);
    /*background-image: linear-gradient(transparent 80%, #ffe7a4 80%);*/
    background-image: linear-gradient(transparent 65%, #F0F4C3 0);
}

@media (min-width: 768px){
    #wk-problems .wk-panel-list-title{
        margin-bottom: 1.25rem;
    }
}

#wk-problems .wk-panel-list-box{
    border: none;
    border-radius: 0.5rem;
    padding: 1.5rem;
    height: 100%;
    background: #ffffff;
    border: solid 2px var(--line-theme-color);
}

#wk-problems .wk-panel-list-text{
    margin-bottom: 0.25rem;
}

#wk-problems .wk-mark-big-arrow{
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 5px;
  vertical-align: middle;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-top: 30px solid var(--bg-theme-color); /* ▼部分の色 */
  transition: transform 0.3s ease;
}

/*選ばれる理由*/
#wk-reason .wk-panel-list-title{
    color: var(--text-theme-color);
    text-align: center;
    margin: 1.5rem 0;
}
#wk-reason .wk-panel-list-title span{
    /*background-image: linear-gradient(transparent 80%, #ffe7df 80%);*/
    background-image: linear-gradient(transparent 80%, #ffe7a4 80%);
    text-decoration: none;
    line-height: 1.75;    
}

#wk-reason .wk-panel-list-text{
    margin-bottom: 0;
    /*font-size: 0.875em;*/
}
#wk-reason .wk-reason-img-box{
    text-align: center;
}
#wk-reason .wk-reason-img-box img{
    width: 80%;
    cursor:pointer;
}


/*機能枠*/
#wk-func .wk-panel-list-text{
    margin-bottom: 0;
}

.wk-func-category{
    margin-bottom: 1.5rem;
    background-position: 50% 50%;
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 36px 10px;
    max-width: 100%;
    margin: 0 auto;
}
.wk-func-category--bg1{
    background-image: url('/assets/wk/img/func-category-bg1.png');
    width: 420px;
    padding: 40px 10px 50px;
}
.wk-func-category--bg2{
    background-image: url('/assets/wk/img/func-category-bg2.png');
    width: 340px;
    padding: 50px 10px 40px;
}
.wk-func-category--bg3{
    background-image: url('/assets/wk/img/func-category-bg3.png');
    width: 350px;
    padding: 50px 10px 50px;
}
.wk-func-category--bg4{
    background-image: url('/assets/wk/img/func-category-bg4.png');
    width: 350px;
    padding: 50px 10px 50px;
}

.wk-func-category-title{
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-theme-color);
}
.wk-func-category-list{
    margin: 0 auto;
    padding: 0;
}

/*補助金枠*/
.wk-subsidy-panel{
    text-align: center;    
}

@media (min-width: 768px){
    .wk-subsidy-panel{
        text-align: left;
    }
}
.wk-subsidy-title{
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.0rem;
    color: var(--text-theme-color);
}
.wk-subsidy-text{
    font-size: var(--text-size-small);
    text-align: left;
    color: var(--text-default-color);
}
.wk-subsidy-text-link{
    text-align: center;
    font-size: var(--text-size-small);
    margin-bottom: 0;
    text-decoration: underline;
    text-underline-position: under;
    color: var(--text-theme-color);
}

.wk-subsidy-panel{
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    border: solid 1px var(--line-lightgray);
    border-radius: 0.5rem;
    padding: 1rem;
    background-color: #ffffff;          
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
}
.wk-subsidy-panel:hover{
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: 0.2s ease;
}


/*他社比較*/

.wk-differ-table{
    margin: 1rem auto;
    text-align: center;
    vertical-align: middle;
}

.wk-differ-table thead tr{
    border: none;
}
.wk-differ-table thead th{
    color: white;
    font-weight: bold;
}
.wk-differ-table thead th:nth-of-type(1){
    width: 20%;
    border: none;
}

.wk-differ-table thead th:nth-of-type(2){
    border-top:solid 1px var(--bg-theme-color);
    background-color: var(--bg-theme-color);
    width: 25%;
}

.wk-differ-table thead th:nth-of-type(3),
.wk-differ-table thead th:nth-of-type(4){
    border:solid 1px var(--line-lightgray);
    background-color: #8f8f8f;
    width: 20%;
}

.wk-differ-table td{
    border:solid 1px var(--line-lightgray);
}

.wk-differ-table tbody{
    border: solid 1px var(--line-lightgray);
}

.wk-differ-table tbody th{
    font-size: var(--text-size-small);
}

.wk-differ-table thead > tr > th:nth-of-type(2),
.wk-differ-table tbody > tr > td:nth-of-type(1){
    border-left: solid 2px var(--line-theme-color);
    border-right: solid 2px var(--line-theme-color);
}
.wk-differ-table tbody > tr:last-child > td:nth-of-type(1){
    border-bottom: solid 2px var(--line-theme-color);
}

.wk-differ-table-text{
    font-size: 0.785rem;
}

@media (min-width: 992px){
    .wk-differ-table-text{
        font-size: var(--text-size-small);
    }
}

.wk-differ-table-strong-mark{
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--text-theme-color);    
}


/*QA*/

.wk-qa-list{
    max-width: 800px;
    margin: 2.5rem auto 0;
    padding: 0;
}
.wk-qa-list-item{
    list-style: none;
    padding: 0;
}

#wk-qa .accordion-button {
  background-color: #ffffff;
}

#wk-qa .accordion-button:hover {
  background-color: var(--bg-lightgreen);
}

#wk-qa .accordion-button:focus {
  box-shadow: none;
  outline: 2px solid var(--line-theme-color);
}

/* 開いている状態 */
#wk-qa .accordion-button:not(.collapsed) {
  background-color: var(--bg-lightgreen); 
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

/* 閉じている状態 */
#wk-qa .accordion-button.collapsed {
  background-color: #ffffff;
}

.wk-qa-list-item button:focus{
    background-color: var(--bg-lightgreen);
}

.wk-qa-list-title{
    display: block;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    color: var(--line-theme-color);
}
@media (min-width: 992px){
    .wk-qa-list-title{
        font-size: 1.125rem;
    }
}

.wk-qa-list-cta{
    max-width: 400px;
    margin: 1.25rem auto;
}


/*WK紹介*/

#wk-intro .wk-intro-bnr{
    display: block;
    border: solid 1px var(--line-lightgray);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
#wk-intro .wk-intro-bnr:hover{
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: 0.2s ease;    
}

/*セキュリティ*/
.wk-security-img{
    max-width:300px;
    width: 50%;
}
@media (min-width: 768px){
    .wk-security-img{
        width: 75%;
    }
}
.wk-security-list{
    list-style: none;
    padding: 0;
}
.wk-security-list li{
    margin-bottom: 1.0rem;
}

/*提携パートナー枠*/
.wk-partner-list{
    list-style: none;
    padding: 0;
}
.wk-partner-list li{
    margin-bottom: 1rem;
}
.wk-partner-list-card{
    transition: background-color 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    /*justify-content: start;*/
    justify-content: center;    
    align-items: center;
    padding: 1rem;
    border-radius: 0.5rem;
    height: 100%;
    width: 100%;
}
.wk-partner-list-card:hover {
    background-color: #f0f0f0;
}
.wk-partner-list-logo-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 120px;
    height: 50px;
}

/*サポート枠*/
#wk-support .wk-panel-list-title{
    color: var(--text-theme-color);
    text-align: center;
    margin-bottom: 1rem;
}

/*導入の流れ枠*/
#wk-flow .wk-flow-list{
    list-style: none;
    padding: 0;
}

#wk-flow .wk-flow-list li{
    position: relative;
}

/* 下三角矢印を追加 */
#wk-flow .wk-flow-list li:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: -17px; /* 枠の下に矢印を配置 */
    transform: translateY(-50%);
    left: 50%;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--bg-theme-color); /* 三角形の色 */
}

@media(min-width: 992px) {
    /* 右三角矢印を追加 */
    #wk-flow .wk-flow-list li:not(:last-child)::after {
      top: 50%;
      left: calc(100% - 2px);
      border-top: 6px solid transparent;
      border-bottom: 6px solid transparent;
      border-left: 6px solid var(--bg-theme-color); /* 三角形の色 */
    }
}

#wk-flow .wk-flow-list-title{
    color: var(--text-theme-color);
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    #wk-flow .wk-flow-list-title{
        height: 3rem;
        display: flex;
        justify-content: center;
        align-items: center;  
    }
}

#wk-flow .wk-flow-list-text{
    font-size: var(--text-size-small);
    margin-bottom: 0;
    /*color: var(--text-lightgray);*/
}
@media(min-width: 992px) {
    #wk-flow .wk-flow-list-text{
        font-size: 1rem;
    }   
}

#wk-flow .wk-flow-list .wk-cta-btn{
    padding: 0.3rem 0.5rem;
    font-size: 1rem;
    max-width: 200px;
    margin: auto;
}
/*事例*/
#wk-case h3{
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.5;
}
#wk-case .wk-case-text{
    font-size: 14px;
    color: var(--text-lightgray);
}

/*フッター*/
#wk-footer{
    padding: 60px 0 10px;
    font-size: var(--text-size-small);
}
@media(min-width: 992px) {
    #wk-footer{
        padding-top: 60px;
        font-size: var(--text-size-small);
    }
}

.wk-footer-category-title{
    font-weight: bold;
    margin-bottom: 0.5rem;
}
.wk-footer-category-content{
    padding-left: 1rem;
}
.wk-footer-category-content li{
    list-style: none;
    margin-bottom: 0.5rem;
}
#wk-footer a{
    color: var(--text-default-color);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.wk-company-info-list{
    margin-top: 40px;
    list-style: none;
    padding: 0;
}
.wk-company-info-list li{
    margin: 0 10px 10px;
    text-align: center;
}


/*旧キャンペーン枠用*/

div.topBox#campaign div.campaignBox {
    padding: 0;
    max-width: 100%;
    padding: 0 0.5em 1em;
}
div.topBox#campaign div.campaignRow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    overflow: visible;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
    justify-content: center;
    padding-bottom: 0;
    margin: 1em 0;
}
