@charset "utf-8";
/* CSS Document */
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
body {
  margin: 0;
  /*    display:flex;
    justify-content: center;*/
  font-size: 1rem;
  line-height: 1.5;
  font-family: hiragino-kaku-gothic-pron, sans-serif,'Noto Sans JP', Meiryo;
  background-color: #fff;
  color: rgb(40,40,40);
  font-weight: 500;
}
a,a:visited {
  text-decoration: none;  color: #282828;
}
a:hover,a:active{
      color: #3b82f6;
    
}

.header-menu-item > a, .header-menu-item > a:visited {
  color: #282828;
}
.header-menu-item > a:hover, .header-menu-item > a:active {
  color: #3b82f6;
}
div {
  /*border:1px solid red;*/
}

/* 202608-new */
/* 強み */
#strong-point{padding-top:50px;}

/*----------------------------------------------------------- */
/* キービジュアル    */
/*----------------------------------------------------------- */
.kv-copy-area {
    padding: 1rem;
    display: flex;
    justify-content: center;
}

.kv-card {
    padding: 64px 50px 64px 3rem;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0px 18px 40px -12px rgba(0, 0, 0, 0.08), 0px 6px 16px -6px rgba(0, 0, 0, 0.04);
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 800px; /* 適度な幅に制限 */
}

/* ラベルタグ */
.kv-label {
    color: #fff;
    background: #2563EB;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    align-self: flex-start; /* コンテンツに合わせて縮む */
}

/* タイトル系 */
.kv-sub-title {
    color: #2563EB;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.7;
}

.kv-main-title {
    color: #111827;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.3;
}


/*----------------------------------------------------------- */
/* 問い合わせ    */
/*----------------------------------------------------------- */
/* 親コンテナの調整 */
#request .ai-faq-container {
    max-width: 600px;
    color: #374151;
    line-height: 1.8;
}

/* Q&Aの各グループ */
#request .faq-item {
    margin-bottom: 18px;
    margin-left: 1rem;
    padding-left: 0.5rem;
    border-left: 4px solid #2563EB; /* 左側の強調線 */
}

/* 質問部分（Q） */
#request .faq-question {
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 4px;
    font-size: 16px;
}

/* 回答部分（A） */
#request .faq-answer {
    font-size: 14px;
    color: #475569;
}

/* 最後の一言メッセージ */
#request .faq-footer {
    margin: 32px 32px 10px 32px;
    padding: 20px;
    background-color: #fff;
    border-radius: 12px;
    font-size: 14px;
    text-align: center;
    border: 1px #CBD5E1 solid;
}
/*----------------------------------------------------------- */
/* ページトップボタン */
/*----------------------------------------------------------- */
.btn-wrapper {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-start; /* 通常時：左寄せ */
}

.to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #2563EB;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
    opacity: 0;           /* 最初は非表示 */
    visibility: hidden;   /* 隠す */
    transform: translateY(20px);
}

/* スクロール時に表示させるためのクラス */
.to-top-btn.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ホバー時の動き */
.to-top-btn:hover {
    background-color: #1d4ed8;
    transform: translateY(-5px);
}

/* ボタン内の上向き矢印 */
.to-top-btn::after {
    content: "";
    width: 10px;
    height: 10px;
    border-top: 2px solid white;
    border-left: 2px solid white;
    transform: rotate(45deg);
    margin-top: 5px; /* 矢印の位置調整 */
}

/* */


/*----------------------------------------------------------- */
/* KVボタン */
/*----------------------------------------------------------- */
/* ボタンの共通設定 */
.btn {
    padding: 20px 32px;
    border-radius: 999px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 17px;    
    font-weight: 700;
    flex-wrap: wrap;    
}

/* --- Primary (青背景) --- */
.btn-primary,.btn-primary:visited,.btn-primary:active {
    background: #2563EB;
    color: white; /* 固定 */
    box-shadow: 0px 10px 24px -8px rgba(37, 99, 235, 0.25);
}
.btn-primary:hover {
    background: #1d4ed8;
    color: white; /* ホバー時も白を維持 */
    transform: translateY(-2px);
}

/* --- Secondary (白背景) --- */
.btn-secondary,.btn-secondary:visited,.btn-secondary:active {
    background: white;
    color: #2563EB;
    outline: 2px #2563EB solid;
    outline-offset: -2px;
    box-shadow: 0px 8px 18px -8px rgba(0, 0, 0, 0.07);
}
.btn-secondary:hover {
    background: #f0f7ff;
    transform: translateY(-2px);
}
/* アイコンの枠：見切れないように少し余裕を持たせる */
.arrow-box {
    width: 24px; /* 20pxから24pxに広げました */
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;    
}

/* 矢印本体 */
.arrow-icon {
    position: relative;
    width: 14px;
    height: 2px;
    background-color: currentColor;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* 矢印の先の部分 */
.arrow-icon::after {
    content: "";
    position: absolute;
    right: -1px; /* 微調整 */
    top: -3px;
    width: 6px;
    height: 6px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
}

/* ホバー時の動き */
.btn:hover .arrow-icon {
    transform: translateX(4px); /* 6pxだと見切れるので4pxに調整 */
    opacity: 0.8;
}
/*----------------------------------------------------------- */
/*機能 */
/*----------------------------------------------------------- */
/* コンテナ全般 */
#function{
    background-color: #F0F7FF;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top:50px;

}

.function-list-container {
    width: 100%;
    max-width: 1100px;
    display: inline-flex;
    flex-direction: column;
    gap: 32px;
}

/* メイン機能カードグリッド */
.function-grid {
    align-self: flex-start;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* 個別機能カード */
.function-card {
    width: 300px;    
    padding: 16px;
    background: white;
    box-shadow: 0px 8px 20px -8px rgba(37, 99, 235, 0.08);
    border-radius: 16px;
    outline: 1px #E3EDF5 solid;
    outline-offset: -1px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.function-title {
    color: #2563EB;
    font-size: 1rem;;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.function-text {
    color: #282828;
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    
}

.function-icon-box img{width:2rem;}

/* その他機能セクション */
.other-function-box {
    /* 1. 幅を制限する */
    width: 100%;             /* 親の幅を上限にする */
    max-width: 990px;        /* 332px * 3 = 996px */
    
    /* 2. Flexコンテナ内の伸縮をオフにする */
    flex: 0 1 auto;          /* 伸びない(0)、縮む(1)、自動幅(auto) */
    
    /* 3. 中央寄せ */
    margin-left: auto;
    margin-right: auto;
    
    /* その他装飾 */
    padding: 20px;
    background: #FAFCFF;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    
    border:1px solid #fff;
}

.other-function-tag {
    padding: 8px 16px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    color: #2563EB;
    font-size: 0.8rem;
    font-weight: 700;
}



/*----------------------------------------------------------- */
/* こまりごと */
/*----------------------------------------------------------- */
/* セクション全体 */
.difficult-point-section {
    align-self: stretch;   
    padding: 48px 40px;
    position: relative;
    background: linear-gradient(178deg, #C5E8FF, transparent);
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

/* タイトルエリア */
.point-header {
    align-self: stretch;
    padding: 36px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.point-title {
    width: 100%;
    height: 45px;
    position: relative;
}

.point-title-text {    
    text-align: center;
    color: #1E3A8A;
    font-size: 2.2rem;    
    font-weight: 900;
    line-height: 1.5;
    word-wrap: break-word;
}

/* カード一覧ラッパー */
.point-card-container {
     max-width: 1100px;
    padding-bottom: 20px;
    display: inline-flex;
    justify-content:center;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
}

/* カード共通スタイル */
.point-card {
    width: 300px;    
    position: relative; /* 必須：擬似要素の基準 */
    background: white;
    box-shadow: 0px 4px 16px rgba(15, 23, 42, 0.04);
    border-radius: 16px;
    outline: 1px #E2E8F0 solid;
    outline-offset: -1px;
    display: inline-flex;
    flex-direction: column;
    margin-bottom: 20px; /* しっぽの分だけ下部に余白を確保 */
}

/* 吹き出しの「しっぽ」部分 */
.point-card::after {
    content: "";
    position: absolute;
    bottom: -10px;        /* カードの下端に配置 */
    left: 50%;            /* 横中央 */
    margin-left: -10px;   /* 三角形の幅の半分だけ左にずらす */
    border-width: 10px 10px 0 10px;
    border-style: solid;
    border-color: #E2E8F0 transparent transparent transparent; /* 枠線と同じ色 */
}

/* 吹き出しの「中身」を白くして塗りつぶす */
.point-card::before {
    content: "";
    position: absolute;
    bottom: -9px;         /* 枠線分だけ上に浮かせる */
    left: 50%;
    margin-left: -10px;
    border-width: 10px 10px 0 10px;
    border-style: solid;
    border-color: white transparent transparent transparent; /* カード背景色と同じ色 */
    z-index: 1;           /* カードの重なり順より上 */
}

.card-body {
    align-self: stretch;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-heading {
    color: #1F3B8A;
    font-size: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 28px;
}

.card-text {
    color: #475569;
    font-size: 0.8rem;
    line-height: 1.5;
}

/*----------------------------------------------------------- */
/* できること */
/*----------------------------------------------------------- */
/* 親コンテナ */
.feature-container {
    width: 100%;
    max-width: 1100px;
    min-width: 290px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.feature-grid {
    align-self: stretch;
    display: inline-flex;
    justify-content: center;
    align-items: stretch; /* 高さ揃え */
    gap: 16px;
    flex-wrap: wrap;
}

/* カード共通スタイル */
.feature-card {
    /*flex: 1 1 0;*/
    min-width: 290px;
    max-width:435px;
    padding: 16px;
    position: relative;
    background: linear-gradient(135deg, #EFF6FF 0%, #F8FBFF 100%);
    box-shadow: 0px 8px 20px -10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border-radius: 16px;
    outline: 1px #E4ECF5 solid;
    outline-offset: -1px;
    display: inline-flex;
    flex-direction: column;
    gap: 12px;
}

.feature-number {
    color: #2563EB;
    font-size: 1.8rem;    
    font-weight: 700;
    line-height: 1.5;
}

.feature-title {
    
    color: #0F172A;
    font-size: 1.5rem;    
    font-weight: 700;
    line-height: 1.3;
}

.feature-desc {
    color: #374151;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}

/* カード上部のアクセントライン */
.accent-line {
    width: 100%;
    height: 4px;
    left: 0px;
    top: 0px;
    position: absolute;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

/* 個別のアクセント色設定 */
.line-01 { background: linear-gradient(90deg, #2663EB 0%, #5C8CFA 100%); }
.line-02 { background: linear-gradient(90deg, #5C8CFA 0%, #73ADFF 100%); }
.line-03 { background: linear-gradient(90deg, #2663EB 0%, #387AF2 100%); }
.line-04 { background: linear-gradient(90deg, #387AF2 0%, #73ADFF 100%); }

/* 202608-new */



        .grad-anime {
    background: linear-gradient(311deg, #f3f5ff, #eff2ff, #c5e8ff);
    background-size: 200% 200%;
    animation: GradientBackground 10s ease infinite;
        }

        @keyframes GradientBackground {
          0% {
            background-position: 0% 50%;
          }

          50% {
            background-position: 100% 50%;
          }

          100% {
            background-position: 0% 50%;
          }
        }
      


.strong-point-felx-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  width: 80%;
  max-width: 1100px;
  min-width: 290px;
}
.ItemStrongPoint {
  align-self: stretch;
  padding-left: 4px;
  padding-right: 4px;
  padding-top: 10px;
  padding-bottom: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: inline-flex;
}
.ItemStrongPoint .Icon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 100px;
  overflow: hidden;
  border: 2px #e4ecf5 solid;
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: flex;
}
/* Common */
h3.jirei {
  /*color: white;
        text-shadow: 0px 1px 2px #494959;*/
}
H3 {
  width: 80%;
  text-align: center;
  color: #1E3A8A;
  font-size: 36px;
  font-weight: 900;
  line-height: 45px;
  word-wrap: break-word;
    /*text-shadow: 0px 1px 2px #b1b1b1fa;;*/
}
.DesktopHeaderFrm {
  align-self: stretch;
  height: 50px;
  padding: 15px;
  background: white;
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: inline-flex;
}
.HeaderCatDocument {
  padding-left: 13px;
  padding-right: 13px;
  padding-top: 7px;
  padding-bottom: 7px;
  background: #2563EB;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
  border-radius: 33px;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  gap: 5px;
  display: flex;
  transition: background-color 1s;
}
.HeaderCatDocument:hover, .HeaderCatDocument:active, .HeaderCtaPrice:hover, HeaderCtaPrice:active {
  background-color: #3B82F6;
}
.HeaderCtaPrice {
  padding-left: 13px;
  padding-right: 13px;
  padding-top: 7px;
  padding-bottom: 7px;
  background: #2563EB;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
  border-radius: 33px;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  gap: 5px;
  display: flex;
  transition: background-color 1s;
}
.header-menu-item {
  text-align: center;
  color: #525252;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  word-wrap: break-word;
}

.KvFrm {
  align-self: stretch;    
  /*background-image: url();
  background-size: cover;*/
  background-position: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 17px;
  display: flex;
}
.kv-copy-area {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 17px;
  display: flex;
}

h2{
    font-size: 1.5rem; font-weight: 600; line-height: 28px; margin:0;
}

h1{
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;   
    margin:0;
}

.CtaBlockDocument, .CtaBlockPrice {
  width: 310px;
  padding-top: 31px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 2px;
  display: inline-flex;
  height: 150px;
}
.CatMicroMessage {
  width: 300px;
  padding: 15px;
  border-radius: 150px;
  overflow: hidden;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  display: flex;
  max-height: 50px;
}
.CatMicroMessage .cta-balloon {
  padding: 15px;
  background: white;
  box-shadow: 0px 0px 4px rgba(0.96, 4.97, 9.56, 0.25);
  border-radius: 150px;
  overflow: hidden;
  border: 1px white solid;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}
.CatMicroMessage .cta-balloon .cta-balloon-copy {
  align-self: stretch;
  text-align: center;
  color: #1D4ED8;
  font-size: 13px;
  font-weight: 700;
  line-height: 16px;
  word-wrap: break-word;
    height: 32px;
    
}
.CtaButton {
  position: relative;
  z-index: 1;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  background: #3B82F6;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 50px;
  border: 2px white solid;
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: inline-flex;
  transition: background-color 0.5s;
    margin-top:-16px;
}
.CtaButton:hover {
  background: #fff;
  border: 4px #3B82F6 solid;
  box-shadow: 0px 4px 4px rgba(255, 255, 255, 0.25);
}
.CtaButton:hover > .CtaText {
  color: #3B82F6;
  font-weight: 800;
}
.CtaButton:hover .ArrowForward path {
  fill: #3B82F6;
}
.CtaButton .CtaText {
  width: 222px;
  text-align: center;
  color: white;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  word-wrap: break-word;
}
.CtaButton .ArrowForward {
  width: 25px;
  height: 25px;
  position: relative;
}
.CtaButton .ArrowForward .BoundingBox {
  width: 25px;
  height: 25px;
  left: 0px;
  top: 0px;
  position: absolute;
}
.CtaButton .ArrowForward .ArrowForwardIos {
  left: 7.04px;
  top: 2.60px;
  position: absolute;
}


.StrongPoint {
    width: 400px;
    font-size: 1.3rem;
    line-height: 1rem;
}


.Cta-wrap {
  align-self: stretch;
  padding-top: 62px;
  padding-bottom: 19px;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  display: inline-flex;
  flex-wrap: wrap;
}
.ItemFunction {
  width: 150px;
  padding-left: 9px;
  padding-right: 9px;
  padding-top: 10px;
  padding-bottom: 10px;
  background: #F3F4F6;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.14);
  border-radius: 10px;
  overflow: hidden;
  border: 0.50px #E5E7EB solid;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  display: inline-flex;
}
.mobile-hedaer, .menu-lists {
  display: none;
}
.logoCaption {
  width: 121px;
  height: 30px;
  color: #3f3f3f;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  word-wrap: break-word;
}

.SectionNocolor {
  align-self: stretch;
  padding: 50px 30px 100px 30px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  display: flex;
}
.SectionColored {
  align-self: stretch;
  padding: 50px 30px;
  background: #c5e8ff;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  display: flex;
}
.cta-section {
  /*background-image: url(./img/cta-background.jpg);
  background-size: cover;
  background-position-y: top;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;*/
    background: #C5E8FF;
}
.SectionJirei {
  align-self: stretch;
  padding: 50px 30px;
  /*background: #60A5FA;*/
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  display: flex
}
.MidashiRightBlue {
  align-self: stretch;
  text-align: center;
  color: #2563EB;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 3rem;
  word-wrap: break-word;
}
.header-wrapper-all {
  background-color: #fff;
  width: 100%;
  height: 80px;
  position: fixed;
  z-index: 9999;
  box-shadow: #7ea2c121 0px 3px 12px 0px;
}
.header-wrapper {
  position: fixed;
  width: 100%;
  max-width: 1440px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  display: grid;
}
.main {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  display: inline-flex;
  width: 100%;
}
.DivFormArea {
  max-width: 1100px;
  width: 100%;
  /*padding-top: 37px;*/
  padding-bottom: 15px;
  padding-left: 21px;
  padding-right: 21px;
  justify-content: space-between;
  align-items: flex-start;
  display: inline-flex;
  flex-wrap: wrap;
    gap:15px;
}
.doc-sample-image {
  padding-left: 70px;
  padding-right: 70px;
  padding-top: 26px;
  padding-bottom: 26px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: flex;
    flex-direction: column;
}
.DocumentIntroduction {
  width: 50%;
  min-width: 300px;
  flex: 1 1 0;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;

  display: inline-flex;
  background: #e7f6ff;
}
.document-sample-caption {
  width: 100%;    
    min-width: 290px;
  padding-top: 27px;
  border-radius: 10px;
  overflow: hidden;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: flex;
}
.form-area {
  width: 100%;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: inline-flex;
  margin: 15px auto;
}
 form{ padding-top:15px;}

.main .WrapWidth100 #request .DivFormArea .DivForm {
  width: 50%;
  min-width: 300px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: flex;
    background-color:#fff;
    box-shadow:0px 0px 2px 4px #f2f2f2;
    min-height: 700px;
    border-radius: 15px;
}
.SectionForm {
  align-self: stretch;
  padding: 50px 30px;
  background-color: unset;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  display: flex;
  margin-top: 50px;
}
.cta-section .CtaCmp.Cta-wrap {
  padding-top: 0px;
}
.cta-section .CtaCmp.Cta-wrap .CtaBlockDocument, .cta-section .CtaCmp.Cta-wrap .CatMicroMessage {}
.kvFelxWrap {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  align-items: flex-start;
  max-width: 1600px;
  width: 100%;
  justify-content: space-between;

    background-image:url('../img/chattakumi-kv-202609.jpg');
    background-size: cover;
    margin-top:80px;
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio:16/9;
}

#example .JireiItem {
    align-self: center;
    padding: 30px 0px;
    background: #F9FAFB;
    border-radius: 10px;
    overflow: hidden;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    display: flex;
    width: 60%;
    max-width: 600px;
    min-width: 290px;
}

.MainCopy1 h2 {
    color: #fff;
    letter-spacing: 120%;
    font-size: 2.2rem;
    line-height: 120%;
    font-weight: 600;
    text-shadow: 0px 0px 5px #000;
}
.kv-copy-area {
    padding-top: 6.9rem;
    padding-left: 1rem;
}
.MainCopy2 h1 {
    line-height: 180%;
}

.main-copy-h1-small {
    padding: 0px 6px;
    font-size: 2.7rem;
    background-color: #fff;
    color: #343645;
}
.main-copy-h1-large {
    padding: 0 6px;
    background-color: #fff;
    color: #343645;
    font-size: 3.2rem;
}

 #usecase {
   margin: 2rem 0;
   width: 100%;
   max-width: 1100px;
   padding-left: 10px;
   padding-right: 10px;
   padding-top: 25px;
   padding-bottom: 25px;
   overflow: hidden;
   border-radius: 50px;
   /*outline: 5px #0DA0DB solid;
   outline-offset: -5px;*/
   flex-direction: column;
   justify-content: flex-start;
   align-items: flex-start;
   gap: 14px;
   display: flex
 }
 .usecase-wrap {
   align-self: stretch;
   overflow: hidden;
   justify-content: center;
   align-items: flex-start;
   gap: 10px;
   display: flex;
   flex-wrap: wrap;
   align-content: flex-start;
 }
 .usecase-item {
   width: 100%;
   height: 400px;
   max-width: 320px;
   min-width: 280px;
   min-height: 400px;
   padding: 10px;
   background: white;
   box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.14);
   overflow: hidden;
   border-radius: 11px;
   flex-direction: column;
   justify-content: flex-start;
   align-items: flex-start;
   display: flex
 }
 .usecase-title {
   min-height: 67px;
   overflow: hidden;
   justify-content: center;
   align-items: center;
   gap: 10px;
   display: flex;
   align-self: stretch;
   color: #0DA0DB;
   font-size: 18px;
   font-weight: 700;
   word-wrap: break-word;
 }
 .usecase-detail {
   align-self: stretch;
   padding-left: 10px;
   padding-right: 10px;
   overflow: hidden;
   flex-direction: column;
   justify-content: flex-start;
   align-items: center;
   gap: 10px;
   display: flex
 }

/* ---------------------------------------- */
@media screen and (max-width: 1200px) {
   /*.kvFelxWrap {width: 90%;} */
    
}
@media screen and (max-width: 1058px) {
  .HeaderCatDocument, .HeaderCtaPrice {
    display: none;
  }
  .kvFelxWrap {
    /*justify-content: center;*/
      background-position: center;
  }
}

@media (max-width: 895px) {
    .kv-card {
        padding: 40px 30px;
        border-radius: 30px;
    }
    .kv-main-title { font-size: 2.2rem; }
    .kv-sub-title { font-size: 1.4rem; }
    
     .btn-wrapper {
        justify-content: center; /* 895px以下：中央寄せ */
    }
}


@media screen and (max-width: 800px) {
  .logoCaption {
    display: none;
  }
    
#example .JireiItem {
    width: 100%;
    min-width: 290px;
}   
    
    
}
@media screen and (max-width : 700px) {
  .KvFrm {
    /*padding-top: 100px;*/
  }
    .kvFelxWrap{margin-top:65px;
    
    background-image:url('../img/chattakumi-kv-202609-v.jpg');
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat;
    aspect-ratio:5/8;    
    }
     
  .header-wrapper {
    display: flex;
    width: 100%;
  }
  .mobile-hedaer {
    width: 100%;
  }
  .mobile-hedaer, .menu-lists {
    display: flex;
  }
  .DesktopHeaderFrm {
    display: none;
  }
  .mobile-HeaderCopy {
    font-size: 12px;
    flex: auto;
    text-align: left;
    height: 17px;
    color: #3f3f3f;
    font-weight: 400;
    word-wrap: break-word;
  }
  .MainCopy2 {
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
    text-shadow: 3px 4px 4px rgba(255, 255, 255, 1.00);
  }
  .kv-copy-area .kv-Point {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    word-wrap: break-word;
    text-shadow: 3px 4px 4px rgba(255, 255, 255, 1.00);
  }
  .MobileMenu.close .bar-top {
    transform: translate(-50%, 8px) rotate(45deg);
    transition: transform .3s;
  }
  .MobileMenu.close .bar-middle {
    opacity: 0;
    transition: opacity .3s;
  }
  .MobileMenu.close .bar-bottom {
    transform: translate(-50%, -8px) rotate(-45deg);
    transition: transform .3s;
  }
  .MobileMenu {
    /*width: 100%;*/
    display: block;
    width: 39px;
    height: 39px;
    position: absolute;
    right: 0;
    z-index: 999; /*追記：いつも一番上*/
    flex: 1;
  }
  .menu-lists {
    display: none;
    background-color: #3B82F6;
    width: 100%;
    /*height: 100vh;*/
    position: fixed;
    top: 50px;
    left: 0;
    text-align: left;
    color: #fff;
    font-size: 1.2rem;
    line-height: 2rem;
    z-index: 9999; /*追記：いつも一番上*/
  }
  ul {
    padding: 0;
    margin: 0;
    display: block;
    list-style-type: disc;
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0px;
    unicode-bidi: isolate;
  }
  .menu-lists ul {
    width: 100%;
  }
  .menu-lists li {
    list-style-type: none;
    border-bottom: 1px solid #fff;
    padding: 1.2rem 2rem;
  }
  a {
    text-decoration: none;
  }
  .menu-lists a, .menu-lists a:visited {
    color: #fff;
  }
  .menu-lists a:hover, .menu-lists a:active {}
  .bar {
    width: 25px;
    height: 4px;
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #3B82F6;
  }
  .bar-top {
    top: 10px;
  }
  .bar-middle {
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .bar-bottom {
    bottom: 10px;
  }
  .ItemFunction {
    width: 122px;
    min-width: 122px;
  }
  H3 {
    font-size: 24px;
    font-weight: 900;
    line-height: 32px;
      margin:1rem;
  }
  .StrongPoint {
    width: 230px;
    font-size: 16px;
  }
  .SectionColored {
    padding: 50px 30px;
  }
  .SectionNocolor {
    padding: 50px 30px;
  }
  .MidashiRightBlue {
    font-weight: 700;
    line-height: 28px;
  }
  .header-wrapper {
    width: 100%;
    height: 50px;
  }
  .mobileHeaderFrm {
    width: 100%;
    height: 45px;
    padding: 10px;
    background: white;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    display: inline-flex;
  }
  .header-wrapper-all {
    height: 50px;
  }
  #function {
    padding-left: 10px;
    padding-right: 10px;
  }
}


@media screen and (max-width : 520px) {
/*    padding-top: 4rem;
    padding-left: 0.5rem;*/

    #page-index .main .WrapWidth100 .kvFelxWrap .kv-copy-area {
    padding-top: 4rem;
    padding-left: 0.5rem;
    }
    
    .MainCopy1 h2{font-size:1.6rem;}
    
#page-index .main .WrapWidth100 .kvFelxWrap .kv-copy-area .MainCopy2 h1 {
    line-height: 105%;
}
    
    .main-copy-h1-small{font-size:1.8rem;}
    .main-copy-h1-large{font-size:2rem;}
    
}

/* 500px未満：スマホ向けにさらに調整 */
@media (max-width: 500px) {
    .kv-card {
        padding: 30px 20px;
        border-radius: 20px;
    }
    .kv-main-title { font-size: 1.8rem; }
    .kv-sub-title { font-size: 1.2rem; }
    .kv-label { font-size: 0.8rem; }
}

/* 375px未満：極小画面向け */
@media (max-width: 375px) {
    .kv-main-title { font-size: 1.5rem; }
    .kv-sub-title { font-size: 1.1rem; }
    .btn {
        padding: 15px 20px; /* ボタンも少し縮める */
        font-size: 0.9rem;
    }
}


@media screen and (max-width : 320px) {
  .SectionNocolor, .SectionColored, .SectionForm {
    padding-left: 5px;
    padding-right: 5px;
  }
  H3 {
    width: 100%;
  }
  .DivFormArea {
    width: 300px;
    min-width: 300px;
    display: flex;
    justify-content: center;
  }
  .doc-sample-image {
    width: 300px;
    min-width: 300px;
    padding: 0;
  }
  .DocumentIntroduction {
    width: 300px;
    min-width: 300px;
    padding: 0;
    margin: 0;
  }
  .document-sample-caption {
    width: 300px;
    min-width: 300px;
    background-color: unset;
  }
  .form-area {
    width: 300px;
    min-width: 300px;
  }
    

    
    
  .main .WrapWidth100 #request .DivFormArea .DivForm {
    width: 300px;
    min-width: 300px;
  }
  .ItemFunction {
    width: 115px;
    min-width: 115px;
  }
    
#usecase {
   
   border-radius: 5px;
   
 }    
}
/* ---------------------------------------- */

