@media (min-width: 1025px){
  div.top-content{
    width:100%;
    height:auto;
}

div.content{
  height: 80vh;            /* ← これが無いのが原因 */
  width:100%;
height:auto;
float:left;
margin-top:30px;
}
/* ===============================
   Hero Video Overlay
================================ */

.hero-video__overlay {
  width:100%;
  inset: 0;
  z-index: 10;
  position: absolute;   /* ← これだけで重なる */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height:80vh;
  padding:0 8%;
  color: #fff;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0)
  );
}

/* タイトル */
.hero-video__overlay h1 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0px;
  letter-spacing: 0.02em;
}

.hero-video__overlay h1 span {
  color: #38bdf8; /* 水色アクセント */
}

/* サブコピー */
.hero-video__overlay p {
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.7;
  max-width: 350px;
  color: #e5e7eb;
}

/* CTAボタン */
.hero-video__cta {
  align-self: flex-end; /* ← 追加 */
  display: inline-block;
  padding: 16px 36px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(90deg, #38bdf8, #22c55e);
  border-radius: 9999px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-video__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
}

.hero {
  width:100%;
  position: relative;
  height: 80vh;
  overflow: hidden;

}

.hero-video {
  position: absolute;
  inset: 0;
  width: 80%;
  height: auto;
  padding-top:20px;
  display:block;
  margin:0 auto;
  object-fit: cover;
  z-index: 0;
}

h2.w100{
  width:100%;
  height:auto;
  text-align:center;
  line-height:2.3em;
}

.title18{
    width:100%;
white-space: nowrap;     /* 折り返し禁止 */
    font-size: clamp(24px, 7vw, 36px); /* 自動で最大化 */
    line-height: 1.8;          /* 行間いっぱい */
    letter-spacing: -0.02em; /* 文字を詰めて18文字対応 */
    font-weight:bold;
    text-align: center;
    color: black;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center; /* cardを中央へ */
    gap: 8px;
  }

  .card {
    display: flex;
    flex-direction: column; /* 縦並び */
    align-items: center;    /* 中央寄せ */
    text-align: center;
    gap: 8px;
    padding: 40px;
    box-sizing: border-box;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  }

  .card-icon {
    font-size: 36px;
    margin: 0;
  }

  .card h3 {
    font-size: 17px;
    margin: 4px 0;
  }

  .card p {
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
  }



/*機能一覧*/
.feature-grid {
  width: 100%;
  display: grid;
  padding:10px;
  box-sizing:border-box;
  gap: 20px;
  background: none;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  justify-items: center;
  box-sizing:border-box;
}

.box {
  background: #fff;
  border-radius: 16px;
  padding: 10px 10px;
  text-align: center;

  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: transform .3s ease, box-shadow .3s ease;
}

.box i {
  font-size: 32px;
  color: #38bdf8;
  margin-bottom: 12px;
}

.box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}





/* ホバー */
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}

.feature-card:hover i {
  color: #22c55e;
}

/* ===== フェードイン演出 ===== */
.fade-in {
  opacity: 1;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   Fade In Animation (SP向け)
================================ */

.fade-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-item.is-visible {
  opacity: 0.5;
  transform: translateY(0);
}

/*下誘導*/
.scroll-indicator {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.scroll-arrow {
  font-size: 32px;
  color: #9ca3af; /* 薄めグレー */
  display: inline-block;

  /* 横を少し広げる */
  transform: scaleX(1.5);

  /* アニメーション */
  animation: arrow-move 1.6s ease-in-out infinite;
}

.arrow_content{
  width:100%;
  height:auto;
  box-sizing:border-box;
  display:flex;
  justify-content: center;
}
.scroll-arrow{
  width: 230px;
  text-align:center;
  font-size:48pt;
}
.box{
  width:100%;
  height:auto;
  box-sizing:border-box;
}
.text_c{
    width:100%;
    font-size: clamp(20px, 5vw, 30px); /* 自動で最大化 */
    line-height: 1;          /* 行間いっぱい */
    letter-spacing: -0.02em; /* 文字を詰めて18文字対応 */
    font-weight:bold;
    text-align: center;
    color: black;
}


/* フォーム */

section.bottom{
  position: relative;
  clear: both;
}

.form_content{
  width:100%;
  height:auto;
  margin-top:30px;
  padding:10px 40px;
  box-sizing: border-box;
  display: flex;

}

div.flex-1{
  width:50%;
  height:auto;
  padding:10px;
  background: none;
  box-sizing: border-box;
  float: left;
  background: white;
}

.fancy-form {
  width:90%;
  height:auto;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.form-group {
  margin-bottom: 20px;
}

.fancy-form input,
.fancy-form select,
.fancy-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.fancy-form button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(90deg,#3498db,#2ecc71);
  color: #fff;
  border-radius: 8px;
  font-size: 18px;
}


.logo_size{
  width: 180px;
  height:auto;
   position: absolute;
  left: 40px;
  top: 200px;
}



}
@media (min-width: 769px) and (max-width: 1024px) {
div.top-content{
    width:100%;
    height:auto;
    border-top:red;
}

div.content{
  height: 80vh;            /* ← これが無いのが原因 */
  width:100%;
height:auto;
float:left;
margin-top:30px;
}
/* ===============================
   Hero Video Overlay
================================ */

.hero-video__overlay {
  width:100%;
  inset: 0;
  z-index: 10;
  position: absolute;   /* ← これだけで重なる */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height:80vh;
  padding:0 8%;
  color: #fff;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0)
  );
}

/* タイトル */
.hero-video__overlay h1 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0px;
  letter-spacing: 0.02em;
}

.hero-video__overlay h1 span {
  color: #38bdf8; /* 水色アクセント */
}

/* サブコピー */
.hero-video__overlay p {
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.7;
  max-width: 350px;
  color: #e5e7eb;
}

/* CTAボタン */
.hero-video__cta {
  align-self: flex-end; /* ← 追加 */
  display: inline-block;
  padding: 16px 36px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(90deg, #38bdf8, #22c55e);
  border-radius: 9999px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-video__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
}

.hero {
  width:100%;
  position: relative;
  height: 80vh;
  overflow: hidden;

}

.hero-video {
  position: absolute;
  inset: 0;
  width: 80%;
  height: auto;
  padding-top:20px;
  display:block;
  margin:0 auto;
  object-fit: cover;
  z-index: 0;
}

h2.w100{
  width:100%;
  height:auto;
  text-align:center;
  line-height:2.3em;
}

.title18{
    width:100%;
white-space: nowrap;     /* 折り返し禁止 */
    font-size: clamp(24px, 7vw, 36px); /* 自動で最大化 */
    line-height: 1.8;          /* 行間いっぱい */
    letter-spacing: -0.02em; /* 文字を詰めて18文字対応 */
    font-weight:bold;
    text-align: center;
    color: green;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center; /* cardを中央へ */
    gap: 8px;
  }

  .card {
    display: flex;
    flex-direction: column; /* 縦並び */
    align-items: center;    /* 中央寄せ */
    text-align: center;
    gap: 8px;
    padding: 40px;
    box-sizing: border-box;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  }

  .card-icon {
    font-size: 36px;
    margin: 0;
  }

  .card h3 {
    font-size: 17px;
    margin: 4px 0;
  }

  .card p {
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
  }



/*機能一覧*/
.feature-grid {
  width: 100%;
  display: grid;
  padding:10px;
  box-sizing:border-box;
  gap: 20px;
  background: none;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  justify-items: center;
  box-sizing:border-box;
}

.box {
  background: #fff;
  border-radius: 16px;
  padding: 10px 10px;
  text-align: center;

  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: transform .3s ease, box-shadow .3s ease;
}

.box i {
  font-size: 32px;
  color: #38bdf8;
  margin-bottom: 12px;
}

.box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}





/* ホバー */
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}

.feature-card:hover i {
  color: #22c55e;
}

/* ===== フェードイン演出 ===== */
.fade-in {
  opacity: 1;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   Fade In Animation (SP向け)
================================ */

.fade-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-item.is-visible {
  opacity: 0.5;
  transform: translateY(0);
}

/*下誘導*/
.scroll-indicator {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.scroll-arrow {
  font-size: 32px;
  color: #9ca3af; /* 薄めグレー */
  display: inline-block;

  /* 横を少し広げる */
  transform: scaleX(1.5);

  /* アニメーション */
  animation: arrow-move 1.6s ease-in-out infinite;
}

.arrow_content{
  width:100%;
  height:auto;
  box-sizing:border-box;
  display:flex;
  justify-content: center;
}
.scroll-arrow{
  width: 230px;
  text-align:center;
  font-size:48pt;
}
.box{
  width:100%;
  height:auto;
  box-sizing:border-box;
}
.text_c{
    width:100%;
    font-size: clamp(20px, 5vw, 30px); /* 自動で最大化 */
    line-height: 1;          /* 行間いっぱい */
    letter-spacing: -0.02em; /* 文字を詰めて18文字対応 */
    font-weight:bold;
    text-align: center;
    color: black;
}

/* フォーム */

.form_content{
  width:100%;
  height:auto;
  margin-top:30px;
  padding:10px 40px;
  box-sizing: border-box;
}

div.flex-1{
  width:100%;
  height:auto;
  padding:10px;
  background: none;
  box-sizing: border-box;
}

.fancy-form {
  width:100%;
  height:auto;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.form-group {
  margin-bottom: 20px;
}

.fancy-form input,
.fancy-form select,
.fancy-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.fancy-form button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(90deg,#3498db,#2ecc71);
  color: #fff;
  border-radius: 8px;
  font-size: 18px;
}


.logo_size{
  width: 180px;
  height:auto;
  display:block;
  margin:0 auto;
}



}


@keyframes arrow-move {
  0% {
    transform: translateY(0) scaleX(1.5);
    opacity: 0.4;
  }
  50% {
    transform: translateY(12px) scaleX(1.5);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scaleX(1.5);
    opacity: 0.4;
  }
}


/* ===============================
タブレット対応
================================ */
@media (min-width: 580px) and (max-width: 768px) {

div.top-content{
    width:100%;
    height:auto;
}

div.content{
  height: 80vh;            /* ← これが無いのが原因 */
  width:100%;
height:auto;
float:left;
margin-top:30px;
}
/* ===============================
   Hero Video Overlay
================================ */

.hero-video__overlay {
  width:100%;
  inset: 0;
  z-index: 10;
  position: absolute;   /* ← これだけで重なる */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height:80vh;
  padding:0 8%;
  color: #fff;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0)
  );
}

/* タイトル */
.hero-video__overlay h1 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0px;
  letter-spacing: 0.02em;
}

.hero-video__overlay h1 span {
  color: #38bdf8; /* 水色アクセント */
}

/* サブコピー */
.hero-video__overlay p {
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.7;
  max-width: 350px;
  color: #e5e7eb;
}

/* CTAボタン */
.hero-video__cta {
  align-self: flex-end; /* ← 追加 */
  display: inline-block;
  padding: 16px 36px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(90deg, #38bdf8, #22c55e);
  border-radius: 9999px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-video__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
}

.hero {
  width:100%;
  position: relative;
  height: 80vh;
  overflow: hidden;

}

.hero-video {
  position: absolute;
  inset: 0;
  width: 80%;
  height: auto;
  padding-top:20px;
  display:block;
  margin:0 auto;
  object-fit: cover;
  z-index: 0;
}

h2.w100{
  width:100%;
  height:auto;
  text-align:center;
  line-height:2.3em;
}

.title18{
    width:100%;
    white-space: nowrap;     /* 折り返し禁止 */
    font-size: clamp(24px, 7vw, 36px); /* 自動で最大化 */
    line-height: 1.8;          /* 行間いっぱい */
    letter-spacing: -0.02em; /* 文字を詰めて18文字対応 */
    font-weight:bold;
    text-align: center;
    color: black;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center; /* cardを中央へ */
    gap: 8px;
  }

  .card {
    display: flex;
    flex-direction: column; /* 縦並び */
    align-items: center;    /* 中央寄せ */
    text-align: center;
    gap: 8px;
    padding: 40px;
    box-sizing: border-box;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  }

  .card-icon {
    font-size: 36px;
    margin: 0;
  }

  .card h3 {
    font-size: 17px;
    margin: 4px 0;
  }

  .card p {
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
  }



/*機能一覧*/
.feature-grid {
  width: 100%;
  display: grid;
  padding:10px;
  box-sizing:border-box;
  gap: 20px;
  background: none;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  justify-items: center;
  box-sizing:border-box;
}

.box {
  background: #fff;
  border-radius: 16px;
  padding: 10px 10px;
  text-align: center;

  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: transform .3s ease, box-shadow .3s ease;
}

.box i {
  font-size: 32px;
  color: #38bdf8;
  margin-bottom: 12px;
}

.box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}





/* ホバー */
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}

.feature-card:hover i {
  color: #22c55e;
}




/* ===== フェードイン演出 ===== */
.fade-in {
  opacity: 1;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   Fade In Animation (SP向け)
================================ */

.fade-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-item.is-visible {
  opacity: 0.5;
  transform: translateY(0);
}

/*下誘導*/
.scroll-indicator {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.scroll-arrow {
  font-size: 32px;
  color: #9ca3af; /* 薄めグレー */
  display: inline-block;

  /* 横を少し広げる */
  transform: scaleX(1.5);

  /* アニメーション */
  animation: arrow-move 1.6s ease-in-out infinite;
}

.arrow_content{
  width:100%;
  height:auto;
  box-sizing:border-box;
  display:flex;
  justify-content: center;
}
.scroll-arrow{
  width: 230px;
  text-align:center;
  font-size:48pt;
}
.box{
  width:100%;
  height:auto;
  box-sizing:border-box;
}
.text_c{
    width:100%;
    font-size: clamp(20px, 5vw, 30px); /* 自動で最大化 */
    line-height: 1;          /* 行間いっぱい */
    letter-spacing: -0.02em; /* 文字を詰めて18文字対応 */
    font-weight:bold;
    text-align: center;
    color: black;
}

/* フォーム */

.form_content{
  width:100%;
  height:auto;
  margin-top:30px;
  padding:10px 40px;
  box-sizing: border-box;
}

div.flex-1{
  width:100%;
  height:auto;
  padding:10px;
  background: none;
  box-sizing: border-box;
}

.fancy-form {
  width:100%;
  height:auto;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.form-group {
  margin-bottom: 20px;
}

.fancy-form input,
.fancy-form select,
.fancy-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.fancy-form button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(90deg,#3498db,#2ecc71);
  color: #fff;
  border-radius: 8px;
  font-size: 18px;
}


.logo_size{
  width: 160px;
  height:auto;
  display:block;
  margin:0 auto;
}


}




/* ===============================
   SP対応
================================ */

@media (max-width: 579px) {

div.top-content{
    width:100%;
    height:auto;

}

div.content{
  height: 80vh;            /* ← これが無いのが原因 */
  width:100%;
height:auto;
float:left;
margin-top:30px;
}

.hero-video__overlay {
  width:100%;
  inset: 0;
  z-index: 10;
  position: absolute;   /* ← これだけで重なる */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height:80vh;
  padding:0 8%;
  color: #fff;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0)
  );
}
.hero {
  width:100%;
  position: relative;
  height: 70vh;
  overflow: hidden;

}

/* タイトル */
.hero-video__overlay h1 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0px;
  letter-spacing: 0.02em;
}

.hero-video__overlay h1 span {
  color: #38bdf8; /* 水色アクセント */
}


  .hero-video__overlay p {
    max-width: none;
  }

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  z-index: 0;
}


/* CTAボタン */
.hero-video__cta {
  display: inline-block;
  padding: 16px 36px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(90deg, #38bdf8, #22c55e);
  border-radius: 9999px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
  align-self: center;   /* ← SPでは中央 */
    margin-top: 30px;     /* 少し余白（お好み） */
}

.hero-video__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
}

/*タイトル*/
.title18{
    width:100%;
white-space: nowrap;     /* 折り返し禁止 */
    font-size: clamp(24px, 7vw, 36px); /* 自動で最大化 */
    line-height: 1.8;          /* 行間いっぱい */
    letter-spacing: -0.02em; /* 文字を詰めて18文字対応 */
    font-weight:bold;
    text-align: center;
    color: black;
}

/*訴求ポイント*/
h2.w100{
  width:100%;
  height:auto;
  text-align:center;
  line-height:1.3em;
}

.grid {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center; /* cardを中央へ */
    gap:24px;
  }

  .card {
    width: 90%;
    display: flex;
    flex-direction: column; /* 縦並び */
    align-items: center;    /* 中央寄せ */
    text-align: center;
    gap: 12px;
    padding: 20px;
    box-sizing: border-box;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  }

  .card-icon {
    font-size: 36px;
    margin: 0;
  }

  .card h3 {
    font-size: 17px;
    margin: 4px 0;
  }

  .card p {
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
  }


/*下誘導*/
.scroll-indicator {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.scroll-arrow {
  font-size: 32px;
  color: #9ca3af; /* 薄めグレー */
  display: inline-block;

  /* 横を少し広げる */
  transform: scaleX(1.5);

  /* アニメーション */
  animation: arrow-move 1.6s ease-in-out infinite;
}

.arrow_content{
  width:100%;
  height:auto;
  box-sizing:border-box;
  display:flex;
  justify-content: center;
}
.scroll-arrow{
  width: 230px;
  text-align:center;
  font-size:48pt;
}
/*機能一覧*/
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 10px;
    box-sizing: border-box;
  }

.box {
  background: #fff;
  border-radius: 16px;
  padding: 10px 5px;
  text-align: center;

  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: transform .3s ease, box-shadow .3s ease;
}

.box i {
  font-size: 32px;
  color: #38bdf8;
  margin-bottom: 12px;
}

.box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* フォーム */
.form_content{
  width:100%;
  height:auto;
  margin-top:30px;
  padding:10px 40px;
  box-sizing: border-box;
}


div.flex-1{
  width:100%;
  height:auto;
  padding:10px;
  background: none;
  box-sizing: border-box;
}


.fancy-form {
    width:100%;
  background: #fff;
  padding: 40px;
  
  border-radius: 16px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.form-group {
  margin-bottom: 20px;
}

.fancy-form input,
.fancy-form select,
.fancy-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.fancy-form button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(90deg,#3498db,#2ecc71);
  color: #fff;
  border-radius: 8px;
  font-size: 18px;
}
.logo_size{
  width: 160px;
  height:auto;
  display:block;
  margin:0 auto;
}

}

