@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
*/
/* =========================
   Mouse Stalker
========================= */
#mouse-stalker{
    position: fixed;
    top: 0;
    left: 0;
  
    width: 34px;
    height: 34px;
    border-radius: 999px;
    pointer-events: none;
  
    /* 重要：常に最前面 */
    z-index: 2147483647;
  
    /* 見えやすくする */
    border: 2px solid rgba(92,193,255,.95);
    background: rgba(92,193,255,.18);
  
    /* 重要：transformはJSで上書きするので初期はOK */
    transform: translate(-50%, -50%);
  
    /* 黒背景で消えないための一手 */
    mix-blend-mode: normal;
    box-shadow: 0 0 18px rgba(92,193,255,.35);
  }
  
  /* ホバー時 */
  #mouse-stalker.is-active{
    width: 60px;
    height: 60px;
    background: rgba(92,193,255,.22);
    box-shadow:
      0 0 30px rgba(92,193,255,.35),
      0 16px 50px rgba(92,193,255,.25);
  }
  
  /* スマホOFF */
  @media (max-width: 768px){
    #mouse-stalker{ display:none; }
  }
  #mouse-stalker{
    background: rgba(92,193,255,.28);
    box-shadow: 0 0 24px rgba(92,193,255,.45);
  }
  
  .w-pageTop {
    margin: 0 ;
  }
/* ===== 共通（初期状態） ===== */
.anim {
    opacity: 0;
    will-change: opacity, transform, mask-size;
  }
  
  /* 表示状態 */
  .anim.is-show {
    opacity: 1;
  }
  
  /* ===== ① 左 → 右に徐々に現れる ===== */
  .reveal-l2r {
    transform: translateX(-8px);
  
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 100%);
    -webkit-mask-size: 0% 100%;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: left center;
  
    mask-image: linear-gradient(90deg, #000 0%, #000 100%);
    mask-size: 0% 100%;
    mask-repeat: no-repeat;
    mask-position: left center;
  
    transition:
      opacity 0.8s ease,
      transform 0.8s ease,
      -webkit-mask-size 0.9s ease,
      mask-size 0.9s ease;
  }
  
  .reveal-l2r.is-show {
    transform: translateX(0);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
  
  /* ===== ② ふわっと（下 → 上） ===== */
  .fade-up {
    transform: translateY(12px);
    transition:
      opacity 1s ease,
      transform 1s ease;
  }
  
  .fade-up.is-show {
    transform: translateY(0);
  }
  
  /* ===== 遅延 ===== */
  .delay-1 { transition-delay: .15s; }
  .delay-2 { transition-delay: .3s; }
  .delay-3 { transition-delay: .45s; }
  
  /* ===== 動きを減らす設定の人向け ===== */
  @media (prefers-reduced-motion: reduce) {
    .anim,
    .reveal-l2r,
    .fade-up {
      opacity: 1;
      transform: none;
      transition: none;
      -webkit-mask-size: 100% 100%;
      mask-size: 100% 100%;
    }
  }
  
/* ファーストビューボタン */
/* ===== Circle CONTACT Button ===== */

  .flex-center {
    justify-content: center;
    display: flex;
  }

.yolito-contact-btn{
    --accent:#5cc1ff;
  
    width: 300px;
    height: 300px;
    display: grid;
    place-items: center;
  
    border-radius: 50%;
    border: 2px solid currentColor;
    background: transparent;
    color: #ffffff; /* ここはベース色。背景が白なら #111 などに */
  
    text-decoration: none;
    position: relative;
    overflow: visible;
  
    /* 変化はホバーから1秒待って開始 */
    transition:
      color .35s ease
      border-color .35s ease ;
  }
  
  /* 文字：CONTACTの字間を開ける */
  .yolito-contact-text{
    letter-spacing: .28em;   /* 好みで調整 */
    font-weight: 700;
    font-size: 22px;         /* 好みで調整 */
    line-height: 1;
  }
  
  /* ホバー時に背面へ広がる薄いシャドー（実体は擬似要素） */
  .yolito-contact-btn::after{
    content:"";
    position:absolute;
    inset: -3px;
    border-radius: 50%;
    background: transparent;
  
    box-shadow: 0 0 0 rgba(92,193,255,0);
    opacity: 0;
  
    /* これも1秒ディレイ */
    transition:
      box-shadow .15s ease ,
      opacity .15s ease ;
  }
  
  .yolito-contact-btn:hover{
    color: var(--accent);
    border-color: var(--accent);
  }
  
  .yolito-contact-btn:hover::after{
    opacity: 1;
    /* “全体に広がる”感：大きめのグロー */
    box-shadow:
      0 0 60px rgba(92,193,255,.22),
      0 0 120px rgba(92,193,255,.14);
  }
  

  .top-our-right > div {
    border-left: 2px solid var(--color_deep01);
    transition: all 0.3s ease;
  }
  .top-our-right > div:hover {
    transform: translateX(10px);
    border-left: 4px solid var(--color_deep01);
    box-shadow: #5cc1ff;
  }
  .top-our-right > div:hover h3 {
    color: #5cc1ff;
    transition: all 0.3s ease;
  }


  /* ===== Hover：ふわっと浮く＋シャドウ ===== */

  .is-hover-lift {
    position: relative;
    transition: transform 0.2s ease;
    border: 2px solid rgb(80, 80, 80);
    border-radius: 10px;
  }
  .is-hover-lift:hover h3 {
    color: #5cc1ff;
    transition: all 0.2s ease;
  }
  
  /* 外側専用の発光レイヤー */
  .is-hover-lift::before {
    content: "";
    position: absolute;
    inset: 0px; /* 光の広がり */
    border-radius: inherit;
    background: transparent;
    box-shadow:
      0 20px 50px rgba(92, 193, 255, 0.35),
      0 0 40px rgba(92, 193, 255, 0.25);
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
    z-index: -1; /* ← 中身の下に置く */
  }
  
  .is-hover-lift:hover {
    transform: translateY(-3px);
  }
  
  .is-hover-lift:hover::before {
    opacity: 1;
  }

  .is-hover-lift-text {
    color: rgb(213, 213, 213);
    transition: all 0.2s ease;
  }

  .is-hover-lift:hover .is-hover-lift-text {
    color: white;
  }
  
  .process-block {
    border: 2px solid gray;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    background-color: #353535;
    transition: all 0.2s ease;
  }
  .process-block:hover {
    border: 2px solid #5cc1ff;
  }
  .process-block > div > div:first-of-type p {
    line-height: 3rem;
    opacity: 0.7;    transition: all 0.2s ease;
    display: inline-block;
    
    padding-bottom: 0.3em;
    background-size: 100% 2px;
    background-repeat: no-repeat;
    background-position: left bottom;
    transition: left 0.2s ease;
  }
  .process-block:hover > div > div:first-of-type p{
        

    background-image: linear-gradient(
      to right,
      #5cc1ff 0%,
      rgba(92, 193, 255, 0) 100%
    );

  }
  .process-block:hover > div > div:first-of-type p {
    opacity: 1;
  }
  .process-block img {
    filter: grayscale(100%);
    transition: 
      filter 0.4s ease,
      transform 0.4s ease;
      border-radius: 15px;
  }
  .process-block:hover img {
    filter: grayscale(0%);
    transform: scale(1.02);

  }
    .process-block:hover h3{
    color: #5cc1ff;
    transition: all 0.2s ease;
  }
  .hover-light {
    color: #b4b4b4;
  }
  .process-block:hover .hover-light {
    color: white;
  }
  
  .process-block ul li::marker {
    color: #5cc1ff;
  }
  .process-block ul li {
    color: rgb(185, 185, 185);
    transition: all 0.2s ease;
  }
  .process-block ul li:hover {
    color: white;
  }
  .process-block h3 {
    margin-bottom: 0.5rem;
  }

  .process-block .text-point {
    display: inline-block;
    padding: 2.5px 5px;
    border: 1px solid #72a7c8;
    border-radius: 100px;
    background-color: #374752;
}
  @media screen and (min-width:1000px) {
    .process-block h3 {
        font-size: 1.7rem !important;
      }

      .process-block h3.process-normal {
        font-size: 1.4rem  !important;
      }
    
  }

  .text-group {
    display: flex;
    justify-content: center;
  }
  .text-group p{
    padding: 2rem;
    display: inline-block ;
    border: 2px solid #353535;
    border-radius: 15px;
    background-color: #222222;
  }

  .process-block::after {
    content: "";
    height: 2rem;
    width: 4px;
    background-color: #5cc1ff;
    position: absolute;
    bottom: -2rem;
    left: 5rem;
  }

  .u-mb-60.process-block::after {
    width: 0;
  }


    /* ＝＝＝＝＝＝＝＝＝＝＝　footer　＝＝＝＝＝＝＝＝＝＝＝ */
  
  .w-beforeFooter {
    margin-top: 0;
  }
  #content.l-content {
    margin-bottom: 0;
  }


  .l-container.w-footer {
    margin-left: 0;
    padding-left: 0;
  }
  


     /* ＝＝＝＝＝＝＝＝＝＝＝　service page　＝＝＝＝＝＝＝＝＝＝＝ */



      .service-block ul li::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        border: 1px solid #afaeae;
        background: rgba(255, 255, 255, 0.125);
        left: -30px;
        top: 0;
        z-index: -10;
        border-radius: 10px;
      }
      .service-block ul li {
        padding: 1.7rem 1rem 1.7rem 0;
        position: relative;
        margin-bottom: 1rem;
        border-radius: 10px;
        transition: transform 0.2s ease;
      }
      .service-block ul li::before {
        content: "";
        position: absolute;
        left: -30px;
        top: 0;
        width: 100%;
        height: 100%;
        border-radius: inherit;
        background: transparent;
        box-shadow: 0 0px 50px rgba(53, 178, 255, 0.406), 0 0 10px rgba(83, 189, 255, 0.406);
        opacity: 0;
        transition: opacity 0.2s ease;
        pointer-events: none;
        z-index: -1; /* ← 中身の下に置く */
      }
      .service-block ul li:hover {
        transform: translateY(-3px);
      }

      .service-block ul li:hover::before {
        opacity: 1;
      }
      
      .is-style-clmn-border>.swell-block-columns__inner>.swell-block-column.scope-block {
        border:none;
        border-left: #5cc1ff 2px solid;
      }
      .scope-block {
        background: #222222;
        transition: all 0.3s ease;
      }
      .scope-block:hover {
        transform: translateX(6px);
        border-left: #5cc1ff 4px solid !important;
      }
      .scope-block:hover h3 {
        color: #5cc1ff;
        transition: all 0.3s ease;
      }
      .scope-block li {
        margin-bottom: 10px;
      }


    /* ＝＝＝＝＝＝＝＝＝＝＝　about page　＝＝＝＝＝＝＝＝＝＝＝ */

      .policy-group {
        border: 1px solid #ababab;
        border-radius: 10px;
        transition: all 0.3s ease;
      }
      .policy-group:hover {
        border: #5cc1ff 2px solid;
        transform: translateX(10px);
      }
      .policy-group:hover h3 {
        color: #5cc1ff;
        transition: all 0.3s ease;
      }

      .what-block {
        margin-bottom: 3rem;
        border-bottom: 1px solid #363636;
        padding-bottom: 3rem;
        transition: all 0.3s ease;
      }
      .what-block:hover {
        transform: translateX(10px);
      }
      .what-block:hover h3 {
        color: #5cc1ff;
        transition: all 0.3s ease;
      }

      .company-block {
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.126);
        transition: all 0.3s ease;
      }
      .company-block:hover {
        transform: translateY(-5px);
        border: 1px solid #5cc1ff !important;
      }

      .message-block {
        border-radius: 10px;
      }

      .position-block {
        border-radius: 15px;
      }

      .engineer-block {
        border-radius: 10px;
        background: #353535;
        transition: all 0.3s ease;
      }
      .engineer-block:hover {
        border: 1px solid #5cc1ff !important;
      }
      .engineer-block p {
        display: flex;
        align-items: center;
      }
      .engineer-block span {
        font-size: 20px;
        color: #5cc1ff;
      }
      .engineer-block:hover span {
        transform: scale(1.05);
        transition: all 0.3s ease;
      }

      .encironment-block {
        border-radius: 10px;
        background: #ffffff10;
        position: relative;
      }

      .encironment-block:hover {
        transform: translatey(-7px);
        transition: all 0.3s ease;
      }
      .encironment-block:hover h3 {
        color: #5cc1ff;
        transition: all 0.3s ease;
      }
      .encironment-block:hover span {
        transform: scale(1.05);
      }
      .encironment-block:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0px;
        left: 0;
        border-radius: inherit;
        background: transparent;
        box-shadow: 0 0px 50px rgba(53, 178, 255, 0.406), 0 0 10px rgba(83, 189, 255, 0.406);
        opacity: 0;
        transition: opacity 0.2s ease;
        pointer-events: none;
        z-index: -1; /* ← 中身の下に置く */
      }
      .encironment-block:hover:before {
        opacity: 1;
      }





      /* =========================
   CF7 DARK UI (2 columns)
========================= */
.cf7-ui{
    --bg: rgba(10, 16, 26, .55);
    --line: rgba(255,255,255,.10);
    --text: rgba(255,255,255,.85);
    --muted: rgba(255,255,255,.55);
    --focus: rgba(92,193,255,.9);
  
    max-width: 920px;
    margin: 0 auto;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--bg);
    backdrop-filter: blur(6px);
  }
  
  /* grid */
  .cf7-ui .cf7-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 22px;
  }
  
  .cf7-ui .cf7-field label{
    display: inline-block;
    font-size: 13px;
    color: var(--muted);
    margin: 0 0 8px;
    letter-spacing: .02em;
  }
  
  .cf7-ui .cf7-req{
    color: var(--focus);
    margin-left: 4px;
  }
  
  .cf7-ui .cf7-note{
    color: rgba(255,255,255,.35);
    margin-left: 8px;
    font-size: 12px;
  }
  
  /* inputs */
  .cf7-ui .wpcf7-form-control{
    width: 100%;
    box-sizing: border-box;
    color: var(--text);
    border: 1px solid var(--line);
    border-radius: 4px;
    background: rgba(255,255,255,.06);
    outline: none;
  }
  
  .cf7-ui .cf7-input{
    height: 44px;
    padding: 10px 12px;
  }
  
  .cf7-ui .cf7-textarea{
    min-height: 180px;
    padding: 12px;
    resize: vertical;
  }
  
  /* focus */
  .cf7-ui .wpcf7-form-control:focus{
    border-color: rgba(92,193,255,.55);
    box-shadow: 0 0 0 3px rgba(92,193,255,.18);
  }
  
  /* textarea row full width */
  .cf7-ui .cf7-full{
    margin-top: 18px;
  }
  
  /* submit */
  .cf7-ui .cf7-actions{
    margin-top: 22px;
  }
  
  .cf7-ui .cf7-submit{
    width: 100%;
    height: 56px;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-weight: 700;
    letter-spacing: .08em;
    cursor: pointer;
    background: linear-gradient(90deg, #4fc3ff 0%, #4c6bff 100%);
    transition: transform .2s ease, filter .2s ease;
  }
  
  .cf7-ui .cf7-submit:hover{
    transform: translateY(-2px);
    filter: drop-shadow(0 18px 40px rgba(92,193,255,.35));
  }
  
  /* error messages */
  .cf7-ui .wpcf7-not-valid-tip{
    color: rgba(255,120,120,.95);
    font-size: 12px;
    margin-top: 6px;
  }
  .cf7-ui .wpcf7-response-output{
    border-color: rgba(255,255,255,.2);
    color: var(--text);
  }
  
  /* responsive */
  @media (max-width: 768px){
    .cf7-ui{ padding: 18px; }
    .cf7-ui .cf7-grid{ grid-template-columns: 1fr; }
  }
  
  .contact-block {
    border-radius: 10px;
  }