 @charset "UTF-8";
 /*
     Template: swell
     Theme Name: SWELL CHILD
     Theme URI: https://swell-theme.com/
     Description: SWELLの子テーマ
     Version: 1.0.0
     Author: LOOS WEB STUDIO
     Author URI: https://loos-web-studio.com/
 
     License: GNU General Public License
     License URI: http://www.gnu.org/licenses/gpl.html
 */


 /* ヘッダー */

 @media (min-width: 960px) {
    
    .c-smallNavTitle {
        opacity: 1;
        font-weight: 400;
    }
    .-series .l-header__inner {
        align-items: center;
    }
    nav#gnav {
        height: 50px;
    }

    .contact-btn {
        position: relative;
        display: inline-block;
        background: linear-gradient(60deg, #0D79BE, #57C9F7);
        border-radius: 100px;
        color: #ffffff;
        padding: 10px 20px;
        margin-left: 10px;
        overflow: hidden;
        z-index: 0;
    }

    .contact-btn::before {
        background-image: linear-gradient(90deg, hsla(0, 0%, 100%, 0), hsla(0, 0%, 100%, .6) 80%, hsla(0, 0%, 100%, 0));
        content: "";
        height: 200px;
        left: -120px;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%) rotate(25deg);
        transform: translateY(-50%) rotate(25deg);
        width: 80px;
    }

    .contact-btn:hover::before {
        left: 130%;
        transition: all 0.5s;
    }

    ul.c-gnav {
        height: 50px;
    }
}

.l-fixHeader__gnav.c-gnavWrap {
    display: flex;
    align-items: center;
}

/* グローバルナビ */
.c-gnav > li:hover > a, .c-gnav > .-current > a {
    background: transparent;
}
.c-gnav > li:not(:last-child):hover > a {
    color: #4b8fcf;
    transition: all .25s;
}
.c-gnav > li:last-child:hover > a {
    color: #ffffff;
    transition: all .25s;
}

/* スマホメニュー */
.p-spMenu__nav{
	display:none;
}
/*メニューのタイトルを消す*/
.c-widget__title.-spmenu{
  display:none;
}

/* テキスト均等配置 */
.justify {
    text-align: justify;
}

/* 見出し */
.gradient-text span {
    background: linear-gradient(to right, #0D79BE, #90d6ef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
h2.wp-block-heading.title-line, h3.wp-block-heading.title-line {
    position: relative;
    padding: 0.25em 0;
    display: table;
    margin-left: auto;
    margin-right: auto;
}

h2.wp-block-heading.title-line::after,
h3.wp-block-heading.title-line::after  {
    content: "";
    display: block;
    height: 2px;
    width: calc(100% + 0.5em);
    margin-left: -0.25em;
    background: linear-gradient(to right, #0D79BE , #57C9F7);
    margin-top: 0.2em;
}

@media (max-width: 781px) {
    h3.sp-fssmall {
        font-size: 1.4rem !important;
    }
    .sp-fsmid span{
        font-size: 2.8rem !important;
        line-height: 1.2;
    }
}

/* ボタン */
@media (max-width: 781px) {
    a.swell-block-button__link {
        width: 80%;
    }
}



/* faq */
.faq_q {
    cursor: pointer;
    position: relative;
    padding-right: 30px; /* アイコン分のスペースを確保 */
}

.faq_q::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    font-weight: bold;
}

.faq_q.active::after {
    content: '-';
    font-size: 2em;
    font-weight: bold;
}


/* company */
.table-side {
    margin-left: 40px;
    margin-right: 40px;
}


/* ------------------------------
    お問い合わせページ
------------------------------ */

/* 入力欄100% */
.snow-monkey-form input.smf-text-control__control {
    width: 100%;
}

.snow-monkey-form {
    padding-left: 5px;
    padding-right: 5px;
}

/*エラーメッセージの色 */
.smf-error-messages {
    color: #f20c10;
    margin-top: var(--_margin-2);
}
/*エラーメッセージの枠 */
.smf-form [data-invalid="1"] {
    border-color: red;
}


/* 入力・確認画面非表示 */
[data-screen="confirm"] .input {
    display:none;
}

[data-screen="input"] .confirm,
[data-screen="invalid"] .confirm {
    display:none;
}

/* フォーム枠線 */
.smf-form--business .smf-item__col--label {
    background-color: transparent;
    border-right: none;
}

.smf-form--business .smf-item {
    border: 1px solid #c1c1c1;
    border-left: none;
    border-right: none;
}

.smf-form--business .smf-item:last-child {
    border: none;
}

.smf-form--business .smf-item__col--label {
    border-bottom: none;
}

.checkboxes-policy .smf-item__controls {
    text-align: center;
}
.checkboxes-policy .smf-item__controls p.has-text-align-left.input {
    text-align: center;
}
.address .smf-placeholder{
    width: 100%;
}

/* ボタン装飾 */
.snow-monkey-form .smf-action .smf-button-control__control {
    position: relative;
    display: inline-block;
    background: linear-gradient(60deg, #0D79BE, #57C9F7);
    border-radius: 100px;
    border: none;
    color: #ffffff;
    padding: 10px 40px;
    overflow: hidden;
    z-index: 0;
}

.smf-button-control__control::before {
    background-image: linear-gradient(90deg, hsla(0, 0%, 100%, 0), hsla(0, 0%, 100%, .6) 80%, hsla(0, 0%, 100%, 0));
    content: "";
    height: 200px;
    left: -120px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(25deg);
    transform: translateY(-50%) rotate(25deg);
    width: 80px;
}

.smf-button-control__control:hover::before {
    left: 130%;
    transition: all 0.5s;
}

/* トラッカー色 */
.snow-monkey-form[data-screen=input] .smf-progress-tracker__item--input .smf-progress-tracker__item__number {
    background-color: #4b8fcf;
}



