@charset "utf-8";

/*Font Awesomeの読み込み*/
/*---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

/*Google Fontsの読み込み*/
/*---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Old+Mincho&display=swap');

/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）*/
/*---------------------------------------------------------------------------*/
:root {
  --space-large: 8vw;
}

/*fadeInのキーフレーム設定（汎用的）*/
/*---------------------------------------------------------------------------*/
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/*fadeOutのキーフレーム設定（汎用的）*/
/*---------------------------------------------------------------------------*/
@keyframes fadeOut {
  0% { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}

/* 全体の設定
---------------------------------------------------------------------------*/
body * {
  box-sizing: border-box;
}

html,
body {
  font-size: 13px;
  height: 100%;
  overflow-x: hidden;
}

@media screen and (min-width:1000px) {
  html, body { font-size: 14px; }
}

@media screen and (min-width:1600px) {
  html, body { font-size: 1vw; }
}

body {
  overflow-x: clip;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  -webkit-text-size-adjust: none;
  color: #333;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

/*リセット他*/
figure, dd, nav, ul, li, ol {
  margin: 0;
  padding: 0;
}

nav ul {
  list-style: none;
}

p {
  display: block;
  margin-block-start: 0em;
  margin-block-end: 0em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  unicode-bidi: isolate;
  text-align: center;
}

.text {
  font-size: 1rem;
  align-items: center;
}

table { border-collapse: collapse; }

img, video {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

img { border: none; }
iframe { width: 100%; }
input { font-size: 1rem; }

.content-wrapper {
  padding: 0 10rem 2.5rem;
}

@media screen and (max-width: 767px) {
  .content-wrapper { padding: 0 2rem 2.5rem; }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .content-wrapper { padding: 0 5rem 2.5rem; }
}

a {
  color: inherit;
  transition: 0.3s;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  opacity: 0.9;
}

#container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* header
---------------------------------------------------------------------------*/
.agency-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: #ffffff;
  padding: 0 30px;
  z-index: 1000;
  pointer-events: auto;
  box-shadow: 0 4px 20px rgba(0, 102, 254, 0.06);
  transition: height 0.3s ease, padding 0.3s ease;
}

.hd_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.hd_left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.top-message {
  font-size: 0.7rem;
  color: #64748b;
  letter-spacing: 0.05em;
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: -6px;
}

.hd_logo img {
  width: 165px;
  height: auto;
  display: block;
  transition: opacity 0.3s ease;
}

#menubar_pc #menubar {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

#menubar_pc ul.flex {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

#menubar_pc .menu-item {
  position: relative;
}

#menubar_pc .menu-link {
  position: relative;
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #1e293b;
  text-decoration: none;
  padding: 14px 6px;
  background: transparent;
  transition: color 0.3s ease;
}

#menubar_pc .menu-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #0066fe, #00b4d8);
  border-radius: 999px;
  transform: translateX(-50%);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#menubar_pc ul.ddmenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #ffffff;
  border: 1px solid #e6f0ff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 102, 254, 0.12);
  padding: 10px 0;
  min-width: 210px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  list-style: none;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.3s;
}

#menubar_pc ul.ddmenu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
  height: 12px;
  background: transparent;
}

#menubar_pc .submenu-link {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: #1e293b;
  text-decoration: none;
  padding: 10px 20px;
  white-space: nowrap;
  transition: color 0.25s ease, background-color 0.25s ease, padding-left 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
  .hd_logo a:hover img {
    opacity: 0.8;
  }

  #menubar_pc .menu-link:hover {
    color: #0066fe;
  }

  #menubar_pc .menu-link:hover::after {
    width: 100%;
  }

  #menubar_pc .menu-item:hover ul.ddmenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }

  #menubar_pc .submenu-link:hover {
    color: #0066fe;
    background-color: #e6f0ff;
    padding-left: 24px;
  }
}

/* ハンバーガーボタン */
#menubar_hdr {
  position: fixed;
  top: 25px;
  right: 30px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#menubar_hdr span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #0066fe;
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

#menubar_hdr.ham span:nth-of-type(1) {
  transform: translateY(8px) rotate(45deg);
}

#menubar_hdr.ham span:nth-of-type(2) {
  opacity: 0;
  transform: scaleX(0);
}

#menubar_hdr.ham span:nth-of-type(3) {
  transform: translateY(-8px) rotate(-45deg);
}


/* スマホ全画面メニュー (#menubar_sp) */
#menubar_sp {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 1000;
  display: flex !important;
  align-items: flex-start;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  clip-path: circle(0% at calc(100% - 50px) 50px);
  transition: clip-path 0.5s cubic-bezier(0.77, 0, 0.175, 1),
              opacity 0.4s ease,
              visibility 0.4s ease;
}

#menubar_sp.db {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  clip-path: circle(150% at calc(100% - 50px) 50px);
}

#menubar_sp #menubar {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  height: 100%;
}

#menubar_sp nav {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding: 120px 32px 60px;
  box-sizing: border-box;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

#menubar_sp nav::-webkit-scrollbar {
  display: none;
}

#menubar_sp ul.flex {
  display: flex;
  flex-direction: column;
  gap: 0; /* 境界線ベースのリストに変更 */
  list-style: none;
  padding: 0;
  margin: 0;
}

#menubar_sp .menu-item {
  border-bottom: 1px solid #f1f5f9;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* メニュー開いた時に上から順番にふわっと表示する時差アニメーション */
#menubar_sp.db .menu-item:nth-child(1) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
#menubar_sp.db .menu-item:nth-child(2) { transition-delay: 0.20s; opacity: 1; transform: translateY(0); }
#menubar_sp.db .menu-item:nth-child(3) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
#menubar_sp.db .menu-item:nth-child(4) { transition-delay: 0.30s; opacity: 1; transform: translateY(0); }
#menubar_sp.db .menu-item:nth-child(5) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }
#menubar_sp.db .menu-item:nth-child(6) { transition-delay: 0.40s; opacity: 1; transform: translateY(0); }
#menubar_sp.db .menu-item:nth-child(7) { transition-delay: 0.45s; opacity: 1; transform: translateY(0); }
#menubar_sp.db .menu-item:nth-child(8) { transition-delay: 0.50s; opacity: 1; transform: translateY(0); }

/* メインメニューリンク */
#menubar_sp .menu-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 8px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  letter-spacing: 0.04em;
  background: transparent;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

/* 右側の矢印アイコンを擬似要素で自動生成 */
#menubar_sp .menu-link::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #0066fe;
  border-right: 2px solid #0066fe;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

#menubar_sp .menu-link:active {
  color: #0066fe;
  padding-left: 10px;
}

/* 子メニュー（ドロップダウン） */
#menubar_sp ul.ddmenu {
  list-style: none;
  padding: 0 0 16px 12px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#menubar_sp .submenu-link {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  padding: 10px 12px 10px 16px;
  border-left: 2px solid #e2e8f0; /* 左側に青いアクセントラインのベース */
  transition: all 0.2s ease;
}

#menubar_sp .submenu-link:active {
  color: #0066fe;
  border-left-color: #0066fe; /* タップ時に左ラインが青く光る */
  background: #f8fafc;
}


/* ===========================================================================
 * レスポンシブ設定
 * =========================================================================== */
@media screen and (min-width: 1401px) {
  .pc-only { display: block !important; }
  .smart-only { display: none !important; }
  #menubar_hdr { display: none !important; }
  #menubar_sp { display: none !important; }
}

@media screen and (max-width: 1400px) {
  .pc-only { display: none !important; }
  .smart-only { display: flex !important; }
}

@media screen and (min-width: 768px) and (max-width: 1400px) {
  .agency-header {
    height: 80px;
    padding: 0 24px;
  }
  .hd_logo img {
    width: 150px;
  }
  #menubar_hdr {
    top: 16px;
    right: 11px;
  }
}

@media screen and (max-width: 767px) {
  .agency-header {
    height: 60px;
    padding: 0 16px;
  }
  .top-message {
    font-size: 0.5rem;
    margin-bottom: -6px;
    margin-top: 2px;
  }
  .hd_logo img {
    width: 110px;
  }
  #menubar_hdr {
    top: 10px;
    right: 5px;
    width: 44px;
    height: 44px;
  }
  #menubar_sp nav {
    padding: 90px 24px 40px;
  }
}

/* メインビジュアル設定
-------------------------------------------------------------------------- */
#mainimg{
    position:relative;
    width:100%;
    height:100vh;
    min-height:700px;
    overflow:hidden;
}

aside.mainimg{
    position:relative;
    width:100%;
    height:100%;
}

/* 背景画像 */
.fv-pc,
.fv-smart{
    width:100%;
    height:100%;
}

.fv-smart{
    display:none;
}

[class^="slide"]{
    position:relative;
    width:100%;
    height:100%;
}

[class^="slide"] img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* キャッチコピー */
.img_com {
    position:absolute;
    inset:0;
    z-index:20;
    display:flex !important;
    align-items:center;
    justify-content:flex-start;
    padding-left:9%;
    padding-right:45%;
    overflow:visible;
}

.img_com_inner {
    position:relative;
    z-index:2;
    max-width:640px;
}

.img_com::before {
    content:"";
    position:absolute;
    left:0%;
    top:55%;
    transform:translateY(-50%);
    width:clamp(520px,48vw,900px);
    height:clamp(520px,48vw,900px);
    border-radius:50%;
    background:
        radial-gradient(
            circle,
            rgba(255,255,255,.93) 0%,
            rgba(255,255,255,.82) 38%,
            rgba(255,255,255,.55) 60%,
            rgba(255,255,255,.20) 78%,
            rgba(255,255,255,0) 100%
        );
    filter:blur(65px);
    z-index:1;
    pointer-events:none;
}

.img_com p,
span.img_com{
    margin:0;
    color:#333;
    line-height:1.6;
}

.big_fv_text{
    font-family:"Zen Old Mincho", serif;
    font-weight:bold;
    font-size:clamp(2.6rem,4vw,4rem);
    line-height:1.25;
}

.middle_fv_text{
    display:block;
    margin-top:10px;
    margin-bottom:15px;
    color:#0065a8;
    font-weight:bold;
    font-size:clamp(1.4rem,2vw,2rem);
}

/* ボタン */
.solution-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    margin-top:20px;
    min-width:260px;
    height:60px;
    padding:0 30px;
    border-radius:999px;
    background:linear-gradient(
    180deg,
    #2d73cf,
    #225fb7
    );
    color:#fff;
    text-decoration:none;
    font-weight:bold;
    box-shadow:
    0 10px 25px rgba(0,0,0,.15);
}

.solution-btn .arrow{
    font-size:22px;
    transition:.25s;
}

.solution-btn:hover .arrow{
    transform:translateX(5px);
}

/* 右下イラスト */
.fv-art-overlay{
    position:absolute;
    inset:0;
    z-index:15;
    display:flex;
    justify-content:flex-end;
    align-items:flex-end;
    pointer-events:none;
}

.fv-art-img{
    width:clamp(420px,47vw,900px);
    height:auto;
    display:block;
}

/* スマートフォン */
@media screen and (max-width: 767px) {
    #mainimg{
        min-height:100svh;
        height:100svh;
    }

    .fv-smart{
        display:block;
    }

    .fv-pc{
        display:none;
    }

    .img_com{
        justify-content:center;
        align-items:flex-start;
        padding: 15vh 24px 0 24px;
        text-align:center;
    }

    .img_com::before{
        left:50%;
        top:34%;
        transform:translate(-50%,-50%);
        width:90vw;
        height:90vw;
        filter:blur(55px);
    }

    .img_com_inner{
        max-width:100%;
    }

    .big_fv_text{
        font-size:2.2rem;
        line-height:1.35;
    }

    .middle_fv_text{
        font-size:1.25rem;
        margin: auto 0;
    }

    .solution-btn{
        min-width:220px;
        height:52px;
        font-size:15px;
        margin-top: 0;
    }

    .fv-art-overlay{
        justify-content:center;
        align-items:flex-end;
    }

    .fv-art-img{
        width:90vw;
        max-width:430px;
    }
}


/* タブレット：縦 */
@media screen and (min-width:768px) and (max-width:1024px) and (orientation:portrait){
    .img_com{
        padding-left:6%;
        padding-right:28%;
    }

    .img_com::before{
        left:-6%;
        top:50%;
        width:72vw;
        height:72vw;
        filter:blur(60px);
    }

    .img_com_inner{
        max-width:460px;
    }

    .big_fv_text{
        font-size:2.8rem;
    }

    .middle_fv_text{
        font-size:1.5rem;
    }

    .solution-btn{
        min-width:240px;
    }

    .fv-art-img{
        width:52vw;
    }
}


/* タブレット：横 */
@media screen and (min-width:768px) and (max-width:1024px) and (orientation:landscape){
    .img_com{
        padding-left:6%;
        padding-right:36%;
    }

    .img_com::before{
        left:-4%;
        top:50%;
        width:62vw;
        height:62vw;
        filter:blur(60px);
    }

    .img_com_inner{
        max-width:500px;
    }

    .big_fv_text{
        font-size:3rem;
    }

    .middle_fv_text{
        font-size:1.5rem;
    }

    .fv-art-img{
        width:46vw;
    }
}

/* メインビジュアルが無い場合の上部padding
-------------------------------------------------------------------------- */
main.main2 > *:first-child {
  padding-top: 50px;
}

@media screen and (max-width: 767px) {
  main.main2 > *:first-child { padding-top: 25px; }
}

/* セクション設定
-------------------------------------------------------------------------- */
.inner {
  margin: 0 auto;
  padding: 8%; 
  position: relative;
  z-index: 10;
}

.inner2 {
  margin: 0 auto;
  padding: 0 8%; 
  position: relative;
  z-index: 10;
}

@media screen and (min-width: 601px) {
  .inner { padding: 4% 10% 6%; }
  .inner2 { padding: 2% 10% 0; }
}

.section_title {
  position: relative;
  text-align: left;
  font-size: 2rem;
  font-weight: 700;
  z-index: 2;
  margin-bottom: 2rem;
  color: #007fd3;
  letter-spacing: 0.15em;
  padding-top: 0;
}

.section_title .sub_title_span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: clamp(3rem, 4.5vw, 4rem); 
  color: rgb(0 141 103 / 20%); 
  -webkit-text-stroke: 0; 
  z-index: -1;
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 1024px) {
  .section_title { font-size: 1.8rem; margin-bottom: 3.5rem; }
  .section_title .sub_title_span { font-size: clamp(2.2rem, 5vw, 3rem); }
}

@media screen and (max-width: 767px) {
  .section_title { font-size: 1.4rem; margin-bottom: 3rem; letter-spacing: 0.1em; }
  .section_title .sub_title_span { font-size: 2rem; }
}

/* セクション背景
------------------------------------------------------------ */
section.bgLB, section.bgWH, section.bgLYbg, section.bgWHbg, section.bgLY, section.bgLBbg {
  position: relative;
}

section.bgWH {
  background-color: #ffffff;
}

section.bgLYbg { 
  background-color: #fff9c6;
  position: relative;
  z-index: 1;
}

.bgLYbg::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/index_about_bg.svg');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  opacity: 0.25;
  z-index: -1;
  pointer-events: none;
}

section.bgLB {
  background-color: #cde8ff;
}

section.bgWHbg { 
  background-color: #ffffff;
  position: relative;
  z-index: 1;
}

.bgWHbg::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/bgWHbg.svg');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  opacity: 0.5;
  z-index: -1;
  pointer-events: none;
}

section.bgLY {
  background-color: #fff9c6;
}

section.bgLBbg {
    width: 100%;
    padding: 60px 0;
    background-image: 
        linear-gradient(to right, 
            #ffffff 0%, 
            #ffffff 35%, 
            rgba(255, 255, 255, 0.85) 50%, 
            rgba(255, 255, 255, 0) 75%
        ),
        url('../images/profile_bg.png');
        
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
}

/* スマートフォン */
@media screen and (max-width: 767px) {
  section.bgLBbg {
    padding: 30px 0;
    background-image: 
      linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.85) 0%, 
        rgba(255, 255, 255, 0.5) 60%, 
        rgba(255, 255, 255, 0.1) 100%
      ),
      url('../images/profile_bg.png');
      
    background-position: center bottom;
    background-size: cover;
  }
}

/* タブレット：縦 */
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  section.bgLBbg {
    padding: 40px 0;
    background-size: cover;
    background-position: right center;
  }
}

/* タブレット：横 */
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  section.bgLBbg {
    padding: 50px 0;
    background-size: cover;
    background-position: right center;
  }
}

/* ページトップボタン
---------------------------------------------------------------------------*/
#page-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  margin: 0;
  padding: 0;
}

#page-top a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(90, 101, 120, 0.08);
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

#page-top a::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #5a6578;
  border-left: 2px solid #5a6578;
  transform: rotate(45deg);
  margin-bottom: 2px;
  margin-top: 6px;
}

#page-top a span {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #5a6578;
}

@media (hover: hover) and (pointer: fine) {
  #page-top a:hover {
    transform: translateY(-4px);
    background-color: #f8fafc;
    box-shadow: 0 8px 24px rgba(90, 101, 120, 0.15);
  }
}

/* スマートフォン */
@media screen and (max-width: 767px) {
  #page-top {
    right: 16px;
    bottom: 16px;
  }
  #page-top a {
    width: 50px;
    height: 50px;
  }
  #page-top a::before {
    margin-top: 4px;
    margin-bottom: 1px;
  }
  #page-top a span {
    font-size: 0.5rem;
  }
}

/* もっと見るボタン
------------------------------------------------------------ */

.more-btn-wrapper {
    display: flex;
    width: 100%;
    margin: 20px 0;
}

.more-btn-left {
    justify-content: flex-start;
}

.more-btn-right {
    justify-content: flex-end;
}

.more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border: 2px solid #c4d3ee;
    border-radius: 999px;
    background: #fff;
    color: #6f8fc6;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: .03em;
    text-decoration: none;
}

.more-btn::after {
    content: "〉";
    font-size: 21px;
    font-weight: bold;
    transition: transform .25s ease;
}

@media (hover: hover) and (pointer: fine) {
    .more-btn:hover::after {
        transform: translateX(4px);
    }
}


/* スマートフォン */
@media screen and (max-width: 767px) {
    .more-btn-left {
        justify-content: flex-end;
    }

    .more-btn {
        font-size: 13px;
        padding: 6px 10px;
        border-width: 1.5px;
        gap: 6px;
    }

    .more-btn::after {
        font-size: 13px;
    }
}

/* タブレット：縦 */
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .more-btn-left {
        justify-content: flex-end;
    }

    .more-btn {
        font-size: 13px;
        padding: 7px 13px;
        gap: 7px;
    }

    .more-btn::after {
        font-size: 13px;
    }
}


/* タブレット：横 */
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .more-btn {
        font-size: 13px;
        padding: 5px 10px;
        gap: 7px;
    }
    .more-btn::after {
        font-size: 13px;
    }
}

/* お問い合わせボタン
------------------------------------------------------------ */
.cv-banner-container {
	width: 100%;
	background-color: #5383c3;
	border-radius: 12px;
	padding: 24px 35px;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
}

.cv-banner-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
}

.cv-banner-text {
	flex-shrink: 0;
}

.cv-banner-text .main-copy {
	color: #ffffff;
	font-size: 1.25rem;
	font-weight: bold;
	line-height: 1.5;
	margin: 0;
}

.cv-banner-buttons {
	display: flex;
	flex-grow: 1;
	max-width: 500px;
}

.cv-btn {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #ffffff;
	border-radius: 50px;
	padding: 16px 30px;
	text-decoration: none;
	transition: transform 0.2s, box-shadow 0.2s;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.cv-btn .cv-icon {
	font-size: 1.8rem;
	color: #2b61ab;
	margin-right: 15px;
	display: flex;
	align-items: center;
}

.cv-btn-txt {
	display: flex;
	flex-direction: column;
	text-align: left;
}
.cv-btn-txt strong {
	color: #2b61ab;
	font-size: 1.25rem;
	font-weight: bold;
	line-height: 1.2;
}
.cv-btn-txt span {
	color: #666666;
	font-size: 0.85rem;
	margin-top: 3px;
}

.cv-banner-illust {
	flex-shrink: 0;
	align-self: flex-end;
	margin-bottom: -28px;
}
.cv-banner-illust img {
	display: block;
	height: 140px;
	width: auto;
}

@media (hover: hover) and (pointer: fine) {
	.cv-btn:hover {
		transform: translateY(-3px);
		box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
		background-color: #f4f8fc;
	}
}


/* タブレット */
@media screen and (max-width: 991px) {
	.cv-banner-container {
		padding: 20px 25px;
	}
	.cv-banner-text .main-copy {
		font-size: 1.1rem;
	}
	.cv-btn {
		padding: 12px 20px;
	}
	.cv-btn-txt strong {
		font-size: 1.1rem;
	}
	.cv-btn .cv-icon {
		font-size: 1.5rem;
	}
}


/* スマートフォン */
@media screen and (max-width: 767px) {
	.cv-banner-flex {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
		gap: 15px;
	}
	.cv-banner-buttons {
		width: 100%;
		max-width: 100%;
	}
	.cv-btn {
		justify-content: center;
		padding: 14px 20px;
	}
	.cv-banner-illust {
		display: none;
	}
}

/* ソリューションバナーコンテナ
------------------------------------------------------------ */
.solution-banner-container {
	width: 100%;
	background: linear-gradient(135deg, #eef7ff 0%, #e3f2fd 100%);
	border-radius: 20px;
	padding: 40px 50px;
	box-sizing: border-box;
	position: relative;
	overflow: hidden; /* コンテナの角丸（20px）に合わせて底面に密着した画像を綺麗にトリミング */
}

.solution-banner-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	z-index: 1;
}

.solution-banner-text {
	max-width: 50%;
	flex-shrink: 0;
	z-index: 2;
}

.solution-banner-text .main-copy {
	font-family: "Zen Old Mincho", serif, sans-serif;
	color: #006cb4;
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.4;
	margin: 0 0 20px 0;
	letter-spacing: 0.05em;
}

.solution-banner-text .sub-copy {
	color: #444444;
	font-size: 1.2rem;
	line-height: 1.7;
	margin: 0 0 30px 0;
	font-weight: 500;
	text-align: left;
}

.solution-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #0077c7;
	color: #ffffff;
	font-size: 0.95rem;
	font-weight: bold;
	padding: 12px 35px;
	border-radius: 50px;
	text-decoration: none;
	box-shadow: 0 4px 10px rgba(0, 119, 199, 0.2);
	transition: all 0.3s ease;
}

.solution-btn .arrow {
	margin-left: 12px;
	font-size: 0.85rem;
	transition: transform 0.3s ease;
}

/* ★PC時：右端および底面にピッタリ密着（余白0）★ */
.solution-banner-illust {
	position: absolute;
	right: 0;
  bottom: -40px;
	width: 50%;
	max-width: 600px;
	pointer-events: none;
	z-index: 1;
	line-height: 0; /* 画像下部の僅かな文字隙間（ベースライン余白）をカット */
}

.solution-banner-illust img {
	width: 100%;
	height: auto;
	display: block; /* img要素特有の底面隙間を排除 */
	vertical-align: bottom; /* 底面に確実に揃える */
}

@media (hover: hover) and (pointer: fine) {
	.solution-btn:hover {
		background-color: #005a96;
		transform: translateY(-2px);
		box-shadow: 0 6px 15px rgba(0, 119, 199, 0.3);
	}
	.solution-btn:hover .arrow {
		transform: translateX(4px);
	}
}

/* タブレット：横 */
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
	.solution-banner-container {
		padding: 35px 40px;
	}
	.solution-banner-text .main-copy {
		font-size: 1.8rem;
	}
	.solution-banner-text .sub-copy {
		font-size: 1rem;
	}
	/* タブレット横でも底面＆右端密着を保持 */
	.solution-banner-illust {
		width: 48%;
		right: 0;
    bottom: -50px;
	}
}

/* タブレット：縦 */
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
	.solution-banner-container {
		padding: 30px;
	}
	.solution-banner-text {
		max-width: 55%;
	}
	.solution-banner-text .main-copy {
		font-size: 1.6rem;
	}
	.solution-banner-text .sub-copy {
		font-size: 0.95rem;
	}
	/* タブレット縦でも底面＆右端密着を保持 */
	.solution-banner-illust {
		width: 45%;
		right: 0;
		bottom: -40px;
	}
}

/* スマートフォン（〜767px） */
@media screen and (max-width: 767px) {
	.solution-banner-container {
		padding: 25px 20px 0 20px; /* 下部パディングを0に */
	}
	.solution-banner-content {
		flex-direction: column;
		align-items: flex-start;
	}
	.solution-banner-text {
		max-width: 100%;
		margin-bottom: 20px;
	}
	.solution-banner-text .main-copy {
		font-size: 1.4rem;
		margin-bottom: 12px;
	}
	.solution-banner-text .sub-copy {
		font-size: 0.88rem;
		margin-bottom: 20px;
	}
	.solution-banner-text .sub-copy br {
		display: none;
	}
	.solution-btn {
		width: 100%;
		box-sizing: border-box;
		padding: 12px 20px;
	}
	/* スマホ時も底面にピッタリ密着 */
	.solution-banner-illust {
		position: relative;
		right: auto;
		bottom: auto;
		width: 100%;
		max-width: 320px;
		margin: 15px auto 0 auto;
	}
}