@charset "utf-8";

* {
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans JP', "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  background-color: #ede3da;
}
label, input, textarea, select, button {
  cursor: pointer;
}

.borderbox {
  height: 100px;
  background-color: #ede3da; 
  border-top: solid 1px #5b5b5b;
  border-bottom: solid 1px #5b5b5b;
  margin-bottom: 20px;
  text-align: center;
}
.borderbox img {
  height: 100px;
}
/* ================================ */

/* レスポンシブ対応のスタイル */
@media screen and (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }

  .featuretop img {
    width: 100%;
    height: auto;
  }

  .featuresecond-box {
    padding: 20px;
  }

  .section-1 {
    flex-direction: column;
  }

  .settion-left,
  .section-right {
    width: 100%;
  }

  .settion-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .col-img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .col-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
  }

  table {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .featuretop img {
    width: 50%;
  }
  .section-title {
    font-size: 20px;
  }

  .sub-title {
    font-size: 18px;
  }

  .featuresecond-box p,
  .section-right p {
    font-size: 14px;
    line-height: 1.6;
  }

  .settion-left {
    gap: 20px;
  }

  .col-img {
    max-width: 400px;
  }

  table {
    font-size: 13px;
  }

  .table-1,
  .table-2,
  .table-3 {
    padding: 8px;
  }
}

@media screen and (max-width: 480px) {
  .featuretop img {
    width: 45%;
  }
  .container {
    padding: 0 10px;
  }

  .featuresecond-box {
    padding: 15px;
  }

  .section-title {
    font-size: 18px;
  }

  .sub-title {
    font-size: 16px;
  }

  .featuresecond-box p,
  .section-right p {
    font-size: 13px;
  }

  .settion-left {
    gap: 15px;
  }

  .col-img {
    max-width: 300px;
  }

  table {
    font-size: 12px;
  }

  .table-1,
  .table-2,
  .table-3 {
    padding: 5px;
  }
} 
