/* ------------------------------
   ベース設定
------------------------------ */
@charset "UTF-8";

/* 全体設定 */
body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #1F2C43ff;
  background-color: #FFFFFF;

}



/* サイト全体の横幅管理 */
/* .site-header {
  position: relative;
  width: 1500px;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  height: 100vh;
} */

/* ------------------------------
   ファーストビュー
------------------------------ */

.slide {
  position: relative;
      max-inline-size: 101%;
}

.header-logo {
  position: absolute;
  top: 0;
  width: 14%;
}

.header-nav {
  position: absolute;
  top: -3%;
  right: 0;
  display: flex;
  justify-content: flex-end;
}


/* ここを追加 */
.header-nav ul {
  display: flex;
  /* 横並びにする */
  list-style: none;
  /* 点を消す */
  margin: 48px;
  padding: 10px;
  font-size:  17px;
}

/* 各リンクの間にスペースを入れる */
.header-nav li {
  margin-left: 70px;
}

/* リンクのデザイン調整 */
.header-nav a {
  text-decoration: none;
  color: #faf7f7;
  font-weight: 600;
}

.header-nav a:hover {
  color: #007bff;
  /* ホバー時に色変更（任意） */
}

.fv-title {
  position: absolute;
    top: 46%;
    left: 11%;
    font-size: 3vw;
  color: #FFFFFF;
  text-align: center;
}


.feather{
  color: #3DD5BF;
}




/* ------------------------------
 news
------------------------------ */
.news {
  display: flex;
  justify-content: space-between; /* 左右に広げる */
  align-items: flex-start;        /* 上揃え */
         
}

/* boxnewsのスタイル */
.boxnews {
 display: flex;
  justify-content: space-between; /* 左右に広げる */
  align-items: flex-start;  

  background-color: #3DD5AD;
  padding: 20px;
  color: #fff;
  flex: 1; /* 横幅を自動調整 */
}

.news2{
   flex: 1; /* 左列 */
  font-size: 18px;
}


.into {
  flex: 2; /* 右列、左より広めにしたい場合 */
}

/* boxmoreのスタイル */
.boxmore {
  display: flex;
  flex-direction: column; /* 中のボタンとボックスを縦並び */
  text-align: center;
width: 21%;
}

/* 横並びのボックス2つ */
.button-boxes {
  display: flex;
  
   /* border: 1px solid rgb(203, 203, 203); */
  width: fit-content;
}


.button-boxes .box:first-child {
  border-left: none;
}

/* MOREボタン */
.more-btn {
  text-decoration: none;
  background-color: #fff;
  color: #3DD5AD;
  padding: 6px 12px;
 
}

/* ------------------------------
2
------------------------------ */
.vijon-content {
  display: flex;
  align-items: center; /* 画像とテキストを縦中央揃え */
  justify-content: space-between;
  gap: 40px; /* 画像とテキストの間隔 */
}

.vijon-text {
  flex: 1; /* テキスト側を広く */
}

.vijon-image {
  flex: 1;
  text-align: right;
}

.vijon-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
      padding: 33px;
}

.puro{
      margin: 7%;
    font-size: 28px;
}
.purop{
          font-weight: 600;
    margin: 7%;
    font-size: 21px;
     }


.button_more {
    display: block;
    margin: 7px 42px 35px;
    padding: 17px 78px;
    background-color: #0077b6;
    color: #fff;
    border: none;
    font-size: 19px;
    cursor: pointer;
    transition: background-color 0.3s;}

.servise {
  display: flex; /* 横並びに */
  align-items: flex-start; /* 上をそろえる */
  gap: 50px; /* 画像とテキストの間隔 */
  margin: 80px auto;
}





.servise {
  display: flex; /* 画像とテキストブロックを横並び */
  align-items: flex-start;
  gap: 50px; /* 間隔調整 */
  margin: 80px auto;
}

.servise img {
  width: 46%; /* 画像の幅 */
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 10px;
}

.servise-text {
      flex: 1;
    display: flex
;
    flex-direction: column;
    justify-content: flex-start;
    margin: 0%;
    padding: 5%;
    font-size: 25px;
}

.servise-text h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.servise-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.servise-text ul li {
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  font-size: 18px;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .servise {
    flex-direction: column;
    text-align: center;
  }

  .servise img {
    width: 100%;
  }

  .servise-text ul li {
    text-align: left;
  }
}




.feature-list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.feature-item {
  display: flex;
  flex-direction: column; /* 画像の下にテキストを配置 */
  align-items: center;    /* 中央揃え */
  text-align: center;
  flex: 1;                /* 均等幅 */
  gap: 10px;
}

.feature-item img {
  width: 80px;
  height: auto;
}

.feature-text dt {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 6px;
}


.feature-text dd {
    margin: 40px;
    line-height: 1.6;
}

/* 📱スマホ対応 */
@media (max-width: 768px) {
  .feature-list {
    flex-direction: column;
    gap: 40px;
  }
}

           .choize{

    text-align: center;
      margin: 3%;}






/* 📱 スマホ対応 */
@media (max-width: 768px) {
  .vijon-content {
    flex-direction: column; /* 縦並びに変更 */
    text-align: center;
  }
}

  .vijon-image {
    text-align: center;
  }


     .fune{
      position: relative;
      width: 54%;
    margin: 5%;
    padding: -1%;
}
     

.work-container {
  display: flex;
  flex-direction: column; /* 縦並び */
  gap: 20px; /* ボックス間の間隔 */
  max-width: 800px;
  margin: 0 auto; /* 中央寄せ */
}
/* WORKSボックス全体 */
.work-container {
  max-width: 600px;        /* ボックス全体の幅 */
  margin: 0 auto;
  display: flex;
  flex-direction: column;  /* 縦並び */
  gap: 15px;               /* ボックス間の間隔 */
}

/* 個別ボックス */
.work_box {
  position: absolute;
  top: 30%;
  background-color: #fff;
  padding: 10px;            /* 内側の余白を小さめに */
  border-radius: 8px;       /* 角丸を少し小さく */
  box-shadow: 0 2px 5px rgba(0,0,0,0.12); /* 影も控えめ */
  transition: transform 0.3s, box-shadow 0.3s;
}

.work_box:hover {
  transform: translateY(-3px); /* ホバーの浮き上がりも控えめ */
  box-shadow: 0 5px 12px rgba(0,0,0,0.2);
}

/* タイトル */
.work_box dt {
  font-size: 1em;           /* 見出しを小さめ */
  font-weight: bold;
  margin-bottom: 6px;
}

/* 説明文 */
.work_box dd {
  font-size: 0.9em;         /* 本文を少し小さく */
  line-height: 1.4;
  margin: 0 0 10px 0;       /* 下の余白 */
}



.button{
    display: block;
    margin: 40px auto 0px;
    padding: 8px 25px;
    background-color: #fff;
    color: #3dd5ad;
    border: none;
    font-size: 21px;
    cursor: pointer;
}






#pickup-list {
  display: flex;           /* 横並びにする */
  justify-content: space-between; /* 画像の間隔を均等に */
  list-style: none;        /* デフォルトのリストマークを消す */
  padding: 0;
  margin: 0;
  gap: 10px;               /* 画像間の間隔 */
}

#pickup-list li {
  flex: 1;                 /* 均等幅 */
}

#pickup-list li img {
  width: 100%;             /* liの幅に合わせて画像を拡大縮小 */
  height: auto;
  display: block;
  border-radius: 8px;      /* 任意で角丸 */
}

/* pickup  */

footer {
  background-color: #f5f5f5;
  padding: 20px;
}

/* saigfo を横並びにして画像左、ナビ右 */
.saigfo {
  display: flex;
  align-items: center;       /* 縦方向中央揃え */
  justify-content: space-between; /* 左右に分ける */
  max-width: 800px;          /* ボックス幅 */
  margin: 0 auto;            /* 中央寄せ */
}

/* ロゴ */
.saigfo img {
  max-width: 150px;
  height: auto;
}

/* フッターナビ右寄せ */
.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;    /* 縦並び */
  align-items: flex-end;     /* 右寄せ */
  gap: 10px;                 /* リンク間隔 */
  padding: 0;
  margin: 0;
}

/* リンク装飾 */
.footer-nav li a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
}

.footer-nav li a:hover {
  color: #0077b6;
}

/* コピーライト中央寄せ */
footer p {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
  color: #555;
}




.pickupcontainer {
  background-color: #53D4AD;
  color: white;
  text-align: center;
}