/*==================================================
  グローバルな設定
==================================================*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
  
}

body{
  margin: 0;
  font-family: 'heisei-maru-gothic-std', 'fot-tsukubrdgothic-std', 'Noto Sans JP', sans-serif !important;
  background-color: #F9F8F5;
}

a {
  text-decoration: none;
  color: unset;
}

p{
  color: #867153;
  font-size: 1.3rem;  
}

/*==================================================
  ヘッダー（MENU）
==================================================*/
.menu {
  position: fixed;
  top: 0;
  right: 0;
  padding: 1rem;
  z-index: 100;
}
.menu-icon {
  width: 100px;
  height: auto;
  display: block;
  cursor: pointer;
}
.nav-menu.active {
  display: block;
}
.nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu li {
  margin-bottom: 1rem;
}
.nav-menu a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
}
.nav-menu a.cta-btn {
  background-color: #FFC509;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  color: #78654a;
  display: inline-block;
}

/*==================================================
  曲線（CURVES）の設定
==================================================*/
.curve {
  position: absolute;
  width: 100%;
  left: 0;
}

.curve path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw 3s linear forwards;
}

@keyframes draw {
  to { stroke-dashoffset: 0; }
}

.curve-top { top: 0; line-height: 0; }
.curve-bottom { bottom: 0; line-height: 0; }

/*==================================================
  ヒーローセクション（HERO SECTION）
==================================================*/

/* PC向け（デフォルト）: Heroセクション全体のスタイル */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}


/* PC向け: 2カラム用コンテナ */
.hero-flex-container {
  display: flex;
  width: 100%;
  max-width: 1200px;
  align-items: center;
  padding: 2rem 1rem;
}

/* PC向け: テキストコンテンツ（左側） */
.hero_center {
  flex-grow: 2;
  z-index: 1;
  text-align: left;
}

.hero_content {
  margin-left: 4rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

/* PC向け: 画像コンテナ（右側） */
.hero-image {
  flex-grow: 1;
  text-align: right;

  .hero-image{
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
}

.hero-image img {
  width: 100%;
  height: auto;
  max-width: 480px;
  opacity: 0.7;
}

/* PC向け: h1内のレイアウト */
.hero-catch {
  margin: 0;
}

.hero-title-wrapper {
  display: flex;
  align-items: flex-start;
}

.hero-title-wrapper .logo {
  order: 1;
  max-width: 64%;
  height: auto;
  margin: 0 1rem 0 0;
}

.hero-title-wrapper .hero-text {
  order: 2;
  flex-shrink: 1;
  margin: 0;
  margin-top: 7.2rem;
  margin-left: -6rem;
  font-size: 2.2rem;
  line-height: 1.5;
}

/* その他のPC向けスタイル */
.ctn-text-hero {
     color: #78654a;
     font-size: 1.2rem;
     margin:0;
}
.em { color: #4d9d81; }
.em.blue { color: #4FB8CB; }
.hero-logo {  text-align: center; }

/*  === スマホ用（768px以下）=== */
@media screen and (max-width: 768px) {
  .hero {
    align-items: center;
  }
  
  .hero-flex-container {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
   
  }

  .hero_center {
    order: 1;
    padding: 0;
  }

  .hero_content {
    margin: 0 auto;
  }
  
  .hero-image {
    order: 2;
    text-align: center;
  }

  .hero-image img {
    margin-top: 3rem;
  }

   /* スマホ用: h1内のレイアウト（横並びを維持） */
  .hero-catch {
    margin: 0; /* ここにflex-direction: column;を記述しない */   
  }

  .hero-title-wrapper {
    /* ここにflex-direction: column;を記述しない */
    display: flex; /* 横並びを維持 */
    align-items: center;
    
  }

  .hero-title-wrapper .logo {
    order: 1; /* PCと同じ順序を維持 */
    max-width: 170px;
    margin:  0; /* マージンを調整 */
  }

  .hero-title-wrapper .hero-text {
    order: 2; /* PCと同じ順序を維持 */
    flex-shrink: 1;
    padding-left:2.3em;
    margin-top:1.3rem;
    line-height: 1.6cap;
    text-align: left; /* 左寄せを維持 */
    font-size: 1.6rem; /* フォントサイズを調整 */
  }
}
/*==================================================
  Concept Area
==================================================*/


/*==================================================
  共通スタイル
==================================================*/
.section { 
    text-align: center; 
    margin-bottom: 5rem;
    color: #78654a;
}

 .ctn-text,.ctn-text2{
    /* margin-top:5rem; */
    /* margin-right:0.5rem; */
    margin: 10%;
    background-blend-mode: lighten; /* 画像を明るくなじませる */
    border-radius: 6px;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom:1rem;
    padding: 4rem 3rem 1rem 3rem;
    
}
/* ＝＝＝＝　コンテンツ内font　＝＝＝＝＝　 */
.ctn-text p,
.ctn-text2 p{ 
    color: #867153;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 4rem;
    text-align: left; 
}

.ctn-text2{
  text-align: center;
}

p.ctn-text,
p.ctn-text2{
    padding:0;
    margin:0;
    
}

p.ctn-text2 {
    margin-left: 1rem;
    
}

.section-title-wrapper { 
    position: relative; 
    display: flex; 
    align-items: left; 
    padding: 1rem 6rem; 
    margin: 0 0 7rem; 
}

.section-title.en { 
    font-size: clamp(1.3rem, 1.2rem + 1.4222vw, 1.4rem); 
    white-space: nowrap; 
    line-height: 1; 
    /*transform: translate(-1rem, -2.7rem); 
    position: relative; */
    z-index: 1; 
    opacity: 0.4;
    color: #666; 
    align-items: flex-start;
    }

.sp{
    display: none;
 }


.section-title.jp { 
    font-size: clamp(2.2rem, 1.9333rem + 0.9481vw, 3rem);
    font-weight: bold; 
    position: absolute; 
    z-index: 2; 
    align-items:left; 
    line-height: 8rem;
    align-items: flex-start;
}


/*  === スマホ用（768px以下）=== */
@media screen and (max-width: 768px) {

.ctn-text,
.ctn-text2,
.card-another{ 
    margin: 5rem 1.2rem -2rem 1.2rem;
    text-align: center;
}

.ctn-text p,
.ctn-text2 p{ 
    font-size: 1.1rem;
    padding: 0;
    letter-spacing: unset;
    line-height: 2.4rem;
    margin-left: -2rem;
    text-align: left;
}

.card-another p{ 
    font-size: 1.1rem;
    padding: 0;
    letter-spacing: unset;
    line-height: 2.4rem;
    margin-left: -2rem;
    text-align: left;
}

.section-title-wrapper{
    padding: 1rem 1rem; 
    margin: 0 0 1rem; 
}
}

/* ＝＝＝＝　各タイトルカラー 　＝＝＝＝＝　 */
/*　Concept*/
.section.concept .section-title.jp{
    color:#4FB8CB;
}

/*　Project */
.section.project .section-title.jp{
    color: #9AC984 !important;
}

/*　Entry */
.section.entry .section-title.jp{
    color: #ffc509 !important;
}

/*　News */
.section.news .section-title.jp{
    color: #777 !important;
}

.line3 { 
    display: block; 
    margin-left:0.5rem;  
    opacity: 0.9; 
    text-align: center;
    width: 21px;
    content: url(/assets/img/3line.svg);
 }



/* ＝＝＝＝　各 boxshadowkカラー　＝＝＝＝＝　 */
/*　Concept */
.section.concept .ctn-text{
    box-shadow: 12px -3px 13px rgba(65, 175, 194, 0.6);
   /* background-blend-mode: lighten;    画像を明るくなじませる */ 
    background-image: url(/assets/img/concept/concept_farm.svg);
    background-size: 78%;
    background-position: center;
  }


/*　Project */
.section.project .ctn-text{
    background-color:rgba(252, 254, 252, 0.3); /* 薄い白でかぶせる */
    background-blend-mode: lighten; /* 画像を明るくなじませる */
    /*box-shadow:12px -3px 13px rgba(124, 222, 158, 0.7);*/
    box-shadow:12px -3px 13px rgba(128, 165, 141, 0.6);
  }

/*　Entry */
.section.entry .ctn-text{
  /*  background-position: center; */
    background-color:rgba(252, 254, 252, 0.3); /* 薄い白でかぶせる */
    background-blend-mode: lighten; /* 画像を明るくなじませる */
    box-shadow:12px -3px 13px rgba(226, 203, 90, 0.6);
  }


/* ＝＝＝＝　矢印　＝＝＝＝＝　 */
p.arrow { 
    width: 100%; 
    min-width: max-content; 
    display: block; 
    font-size: 3rem; 
    text-align: center; 
    color: #a37d76; 
    margin: 1rem 0; 
}

/* ＝＝＝＝　Another系　＝＝＝＝＝　 */
span.ant1, span.ant2, span.ant3 { 
    font-size: 1.2rem;
    
}

span.ant1 { color: #4FB8CB; }
span.ant2 { color: #9AC984; }
span.ant3 { color: #FFC509; }


span.ant-1, span.ant-2, span.ant-3 { 
    font-size: 1.4rem;
    letter-spacing: -0.2rem;
}

span.ant-1 { color: #4FB8CB; }
span.ant-2 { color: #9AC984; }
span.ant-3 { color: #FFC509; }


.green { color: #9AC984; }
.blue { color: #4FB8CB; }
.yellow { color: #FFC509; }
.pink { color: #fb8498; }
.dgreen { color: #1D645F; }

/*  === スマホ用（798px以下）=== */
@media screen and (max-width: 798px) {
.curve-top { 
    top: 0; 
    line-height: 0; 
    margin-bottom: 0rem;
    margin-top: 0rem;
}
.curve-bottom {
     bottom: 0; 
     line-height: 0;
     margin-top: 0rem;
     margin-bottom: 0rem; 
}
}
/*==================================================
  Project Area
==================================================*/

.section.project .section-title.jp{
     color: #9AC984;
}

/* 　Project リードコンテンツ内font */


.project-card p {
    margin: 1rem;
  }

  .project-graphic {
    max-width: 380px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
  }

.project-card.card-another {
    margin: 0rem -1.4rem;
    padding: 3rem;
}

  /* タブレット・SP用（820px以下） */
  @media screen and (max-width:809px) {
    .project-graphic {

      /* 横幅いっぱいに調整 */
      max-width: 90vw;
      /* 画面幅の90%以内に制限 */
      height: auto;
      margin: 0 auto 1rem;
      display: block;
    }

    .pj-container {
    display: unset;
    justify-items: center;
    justify-content: center;
    align-items: center;
    margin: 3rem 4rem;

  }

  p.pj-text {
    font-size: 1.2rem;
    color: #867153;
}

 img.project-graphic{
     width: 100%; /* 親要素の幅に合わせる */
    height: auto; /* 縦横比を維持する */
    max-width: 100%; /* 実際の画像サイズを超えないようにする */
    max-width: 80%;
  }


  /* メニュー関連のスマホ用 */
  .menu-icon {
    width: 80px;
  }

    /*.project p {
    margin: 0rem;
  }*/
  }

  /* project画像下の３コンテンツ　*/
  /* セクション全体 */
  .highlight-section {
    background-color: #e8fcf5;
    padding: 1%;
  }

  /* 横並び3カラムの調整 */
  .project-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    box-sizing: border-box;
  }

  .project-card {
    background-color: #f9f8f5;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 2rem 0.8rem;
    margin: 1rem;
  }

  /* カードが大きくなりすぎないよう幅を確実に制限 */
  .project-card {
    flex: 1 1 280px;
    max-width: 600ox;
    min-width: 260px;
    box-sizing: border-box;
    border-style: solid;
    border-width: 3px;
    position: relative;
    text-align: left;
  }

  .project-tag {
    position: absolute;
    top: -45px;
    left: -1rem;
    padding-left: 2.5rem;
    font-weight: normal;
    font-size: 1.8rem;
    /* カード背景と一致させてボーダーと重ならないように */
  }

  .project-tag::before {
    content: "";
    width: 32px;
    height: 32px;
    background-color: currentColor;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 80%;
    transform: translateY(-50%);
  }

  div.card-text {
    list-style: none;
    text-align: left;
  }

  .card-text p {
    padding: 1rem;
    letter-spacing: 0.1rem;
    text-align: left;
    text-indent: 0;
    display: flex;
    color: #867153;
  }


  .card-text p::before {
    content: "\f4d8 ";
    text-align: left;
    color: #4d9d81;
    font: var(--fa-font-solid);
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0.1rem;
  }


  .card-blue {
    border: 3px solid #4FB8CB;
    position: relative;
  }

  .card-yellow {
    border: 1px solid #FFC509;
    position: relative;
  }

  .card span {
    font-size: 1.3rem;
    border: 1px Pink;
  }

  .card-text .card-catch {
    font-size: 1.2rem;
    color: #867153;
  }

  h3.card-catch {
    padding: 0 3rem;
    position: relative; /* 子要素（擬似要素）の基準位置にする */
}


h3.card-catch::before {
  content: ''; /* background-imageを使用するのでcontentは空にする */
  display: block; /* 絶対配置のために必要 */
  width: 4rem; /* 画像の幅 */
  height: 4rem; /* 画像の高さ */
  background-image: url('/assets/img/workflow/workflowh3_aft.svg'); /* 前に表示する画像のパス */
  background-size: contain; /* 画像を要素内に収める */
  background-repeat: no-repeat; /* 画像の繰り返しをなくす */
  position: absolute; /* 親要素（h3）を基準に配置 */
  left: -30px; /* 左側にずらす（画像の幅分） */
   /* 垂直方向の中央 */
  top: 25px;
  transform: translateY(-50%); /* 自身の高さの半分だけ上に移動して中央揃え */
}

h3.card-catch::after {
  content: '';
  display: block;
  width: 150px;
  height: 150px;
  background-image: url('/assets/img/workflow/farmit.webp'); /* 後に表示する画像のパス */
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: -4.3rem; /* 右側にずらす */
  transform: translateY(-50%);
}

.project-card p {
    margin: 1rem;
    padding-left: 2rem;
}

  p.project-body {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .project-body span {
    font-weight: bold;
    text-align: center;
    font-size: 1.3rem;
    color: #666;
  }



  /* 各カラー */
  .green {
    color: #9AC984;
  }

  .blue {
    color: #4FB8CB;
  }

  .yellow {
    color: #FFC509;
  }

  .pink {
    color: #fb8498;
  }

  .project-body p {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    line-height: 1.6;
  }


  .step-card {
    border: #9AC984 solid 4px;
    border-radius: 1.2rem;
    margin: 0rem 3rem;
    line-height: 0.4rem;
  }
    

  p.arrow {
    width: 100%;
    min-width: max-content;
    display: block;
    font-size: 2.3rem;
    text-align: center;
    color: #a37d76;
    margin: 0rem 0;
  }
    
    /*  AnotherSTEP box start  */
  .card-another {
    border: 6px solid;
    border-top-color: #FFC509;
    border-right-color: #FFC509;
    border-bottom-color: #9AC984;
    border-left-color: #4FB8CB;
    position: relative;
    margin:0;
    justify-items: center;
  }

  .another span {
    letter-spacing: -0.6rem;
  }

  .green.large {
    font-size: 1.5rem;
  }

  span.ant1,
  span.ant2,
  span.ant3 {
    font-size: 1.5rem;
  }

  span.ant1 {
    color: #4FB8CB;
  }

  span.ant2 {
    color: #9AC984;
  }

  span.ant3 {
    color: #FFC509;
  }

  .pj-container {
    display: flex;
    justify-items: center;
    justify-content: center;
    align-items: center;
    margin: 1rem 4rem 1rem 1rem;
  }

  p.pj-text {
    font-size: 1.2rem;
    color: #867153;
}

  /*  ==========  プレゼン用 CVセクション   ========== */
  section.project-intro-link {
    background-color: #f3fffb;;
    text-align: center;
    padding: 1rem 1.5rem;
  }

  .project-intro-link .container{
    font-size: 1.8rem;
    color: #867153;
    margin-bottom: 1rem;
  }

  .project-intro-link p{
    margin: 3rem;
    line-height: 2.5rem;
    text-align: start;
  }

  .entry-cta-btn {
    border-top: #6cbf84 solid 3px;
    border-bottom: #FFC509 solid 3px;
    display: inline-block;
    margin: 1rem;
    padding: 1rem;
    font-size: 1.3rem;
    position: relative;
    overflow: hidden;
    color: #3E7C66;
}

 .neko-arrow2 {
    width: 8rem;
    margin-bottom: -1.9rem;
    transition: transform 0.3s ease;
    /* ホバー時の秒感 */
  }

  .entry-cta-btn :hover {
    color: #4fb8ca;

    /* ホバー時に画像がはみ出さないように */
  }

  .entry-cta-btn :hover .neko-arrow2 {
    transform: translateX(20px);
    /* マウスホバー時に20px右に移動 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0);
  }

 

/*==================================================
  Entryflow Area
==================================================*/
  .pj-step{
    letter-spacing: 0.01rem;
    padding: 0.2rem;
    font-size: inherit;
    /* margin: -1rem -2rem; */
    color: #867153;
    text-align: center;
  }

  p.step-flow {
    text-align: left;
    line-height: rem;
  }

  .step-flow::before {
    font-family: "Font Awesome 5 Free";
    /*←ココ！！！！！！！*/
    content: "\f46c";
    color: #4FB8CA;
    font-weight: 900;
    padding-right: 0.3em;
  }

  .pj-step_mini{
    margin: 2rem;
    padding: 1rem;
    background-color: rgba(255, 254, 251, 0.129);
    border-radius: 5rem;
    border-color: #6cbf84;
    border-style: outset;
    border-width: 1.px;
    box-shadow: #3a9aaa 0.3;
  }

  .cta_container p,
  .cta_container h3{
    text-align: center;
    ;
  }
  /*  ==========  総合CTAボタンセクション   ========== */
  .cta {
    background-color: #9AC984;
    color: white;
    text-align: center;
    padding: 4rem 1.5rem;
    position: relative;
  }

  .cta h2 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.8;
  }

  .cta-buttons {
    margin-top: 2.5rem;
  }

  .btn-line {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .cta .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.5rem 2.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    background-color: #fff;
    color: #3E7C66;
    border: 4px solid;
    border-top-color: #FFC509;
    border-right-color: #FFC509;
    border-bottom-color: #6cd252;
    border-left-color: #4FB8CB;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 410px;
    min-height: 72px;
    white-space: nowrap;
    text-align: center;
    box-sizing: border-box;
  }

  .cta .btn {
    position: relative;
    padding-right: 7rem;
    /* 猫の分のスペース */
    transition: all 0.3s ease;
    overflow: hidden;
    /* 念のため */
  }

  .cta .btn:hover {
    transform: translateX(6px);
    color: #fb8498;
    border-top-color: #6cd252;
    border-right-color: #FFC509;
    border-bottom-color: #4FB8CB;
    border-left-color: #FFC509;
  }


  .neko-arrow {
    position: absolute;
    right: 1.2rem;
    height: 28px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
  }

  /* PCのみ：ホバー時に表示 */
  .cta .btn:hover .neko-arrow {
    opacity: 1;
    transform: translateX(0);
  }

  /* PreStep CTAボタン */
  .pre_cta {
    background-color: unset;
    text-align: center;
    padding: 4rem 1.5rem;
    position: relative;
  }

  .line-invite-box {
    margin: 4rem;
  }

  .line-invite-box a:hover {
    opacity: 0.7;
  }


  /* スマホ対応 */
  @media screen and (max-width: 560px) {
    .btn-line {
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
    }

    .cta .btn {
      /* PC時より少なく */
      justify-content: center;
      position: relative;
    }

    .neko-arrow {
      opacity: 1;
      transform: none;
      position: static;
      /* position解除で下に回り込まないようにする */
      margin-left: 0.5rem;
      height: 22px;
    }

  img.flowimg {
    width: 90vw !important;
    margin:1rem 0;
    padding:0
}
  }

  @media screen and (max-width: 768px) {
    .cta .btn {
      justify-content: center;
      position: relative;
    }

    .cta .btn .neko-arrow {
      opacity: 1 !important;
      transform: none !important;
      position: absolute;
      right: 1.2rem;
      height: 22px;
      pointer-events: none;
    }

  .pj-container {
    display: unset;
    justify-items: center;
    color: #867153;
    text-align: center;
    
  }

    p.pj-text {
    font-size: 1.2rem;
    color: currentColor;
   
  
  }
}
  /*  ==========  プレゼン用 CTAセクション   ========== */
  .project-intro-link {
    background-color: #FDF7EF;
    text-align: center;
    padding: 4rem 1.5rem;
   
  }

  .project-intro-link h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .survey-box p{
    text-align: center;
  }

  /*   ==========　 Entryボタンエリア   ==========　 */
  .survey-invite2 {
    background-color: #f9ffff;
    padding: 1.5rem;
    text-align: center;
    color: #5B5348;
  }

  .survey-invite2 h2 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    color: #4fb8ca;
  }

  .survey-invite2 p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #5B5348;
    line-height: 1.8;
  }

  .survey-btn2 {
    display: inline-block;
    background-color:#4fb8ca;
    color: #fff;
    font-weight: bold;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .survey-btn2:hover {
    opacity: 0.9;
    transform: translateY(-2px);
  }


.news-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
  }

.news ul { 
  list-style:none; 
 }

  .news-list li {
    list-style:none; 
    margin-bottom: 2rem;
    padding: .5rem 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    border-top: 4px solid #6a696824;
    border-left: 4px solid #FFC509;
    border-bottom: #FFC509;
    border-style: solid;
    border-width: 1px;
    border-left: 4px solid #FFC509;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    font-size: 1rem;
    color: #777;
     -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
  }

  .news-list li a:hover {
    list-style:none; 
    color: #3E7C66;
    border-bottom: #3E7C66 dotted 1px ;
  }

  .news-list li a {
    color: inherit;
    text-decoration: none;
    display: inline-block;
    list-style:none; 
    color: #FFC509;
  }

  /*  ==========  スマホ対応  ========== */
   @media screen and (max-width: 768px) {
  .news-list {
    margin: 4rem 1.2rem;
  }
  .news-list li {
     padding: .8rem .9rem;
   }
}

/*  ==========  FAQ　Area  ========== */
  .faq {
    background-color: #F9F8F5;
    padding: 3rem 1rem;
    text-align: center;
  }

  .faq dl {
    max-width: 750px;
    margin: 0 auto;
    text-align: left;
    padding: 1rem;
  }

  .faq dt {
    font-size: 1.15rem;
    font-weight: 800;
    color: #3E7C66;
    margin: auto;
    margin-top: 1.5rem;
    padding: 1.3rem 0rem;
    text-align: left;
  }

  .faq dt::before {
    content: "Q：";
    font-weight: 800;
    color: #3E7C66;
  }

  .faq dd {
    font-weight: 800;
    margin: 0.5rem 0 1rem;
    line-height: 2rem;
    color: #fb8498;
    background-color: hsl(0, 0%, 100%);
    padding: 2rem;
    border-radius: 10px
  }

  .faq dd::before {
    content: "A：";
    font-weight: 800;
    color: #fb8498;
  }

  /*   ==========　 アンケートボタンエリア   ==========　 */
  .survey-invite {
    background-color: #fff9fb;
    padding: 1.5rem;
    text-align: center;
    color: #5B5348;
  }

  .survey-invite h2 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    color: #fb8498;
  }

  .survey-invite p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #5B5348;
    line-height: 1.8;
  }

  .survey-btn {
    display: inline-block;
    background-color: #fb8498;
    color: #fff;
    font-weight: bold;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .survey-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
  }


   /* Footer */
  .footer {
    background-color: #F9F8F5;
    color: #777;
    padding: 0.5rem;
    text-align: center;
  }

  .footer p {
    background-color: #F9F8F5;
    font-size: 1rem;
    color: #9c9b9bb6;
  }

  body {
    -webkit-text-size-adjust: none;
    /* Safari, Chrome */
    text-size-adjust: none;
    /* Firefox, Edge */
  }

  .pc {
    display: block !important;
  }

  .sp {
    display: none !important;
  }

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

    .sp {
      display: block !important;
    }
  }
  

.image-with-waves {
  position: relative;
  width: 100%;
  height: 300px; /* 親要素の縦幅を300pxに固定 */
  overflow: hidden; /* 波線がはみ出るのを隠す */
  margin-top: -4.7rem;
  opacity: 0.7;
}

.image-with-waves img {
  display: block;
    width: 90%;
    height: 70%;
    position: relative;
    z-index: 1;
    object-fit: cover;
    border-bottom-right-radius: 1rem;
    border-top-right-radius: 2rem;
}


.image-with-waves svg {
  position: absolute;
  width: 100%;
  height: 100px; /* SVGの高さを調整 */
  z-index: 2;
}

.image-with-waves .top-wave {
  top: 0;
  left: 0;
}

.image-with-waves .bottom-wave {
  bottom: 0;
  left: 0;
}

.pj2-img{
    width: 100%;
    justify-items:right;
    text-align: right;
    align-items: flex-end;
    margin: 2rem 0 0 3.8rem;
    overflow: hidden;
    opacity: 0.6;
    border-bottom-left-radius: 1.3rem;
    border-top-left-radius: 0.4rem;
}

img.flowimg {
    width: 90%;
    margin: 3rem;
    justify-items: center;
    align-items: center;
    margin: 0 auto;
}

h3.step {
    color: #4fb8cb;
}

h3.step::before {
    content: "/f302";
    font-family: "Font Awesome 5 Free";
    content: "\f46c";
    color: #4FB8CA;
    font-weight: 900;
    padding-right: 0.3em;
}