@charset "utf-8";



.header-logo {
  display: flex;
  align-items: center; /* 縦位置を中央揃え */
  text-decoration: none; /* リンク下線を消す */
  gap: 10px; /* 画像と文字の余白 */
}


.header-logo p {
  margin: 0;
  font-size: 28px; /* ロゴとして見やすい大きさ */
  font-weight: 700;
  color: #333;
  letter-spacing: 2px; /* 少し広げてロゴ感を演出 */
  font-family: "Montserrat", "Helvetica Neue", sans-serif; /* かっこいいフォント */
}


:root {
  --container-width: 1150px;
  --text-xl: 34px;
  --text-lg: 25px;
  --text-sm: 18px;
  --text-color: #545F65;
  --primary-color: #2696F0;
  --section-padding: 80px 15px;
  --shadow-solid: 0px 2px 4px rgb(174 174 174 / 20%);
  --shadow-hover: 0px 4px 12px 4px rgb(174 174 174 / 30%);
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text-color);
}

/*　ヘッダー　*/

.header {
  width: 100%;
  background-color: #fff;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

.header__inner img {
  width: 130px;
  height: auto;
}

.header__list {
  display: flex;
  gap: 18px;
  padding-left: 0;
  list-style-type: none;
}

.header__list a {
  color: var(--text-color);
  text-decoration: none;
}

/* ヒーロー */

.hero {
  background: url(./images/back.jpg);
  background-position: center;
  background-size: cover;
}

.hero__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: auto;
  padding: 60px 20px;
  max-width: var(--container-width);
}

.hero__title {
  color: rgb(66, 66, 66);
  font-size: var(--text-xl);
  line-height: 1.7;
}

.hero__description {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.hero__column {
  flex: 1;
}

.hero__image {
  width: 100%;
  height: auto;
}

/* ボタン */

.btn {
  padding: 14px 40px;
  display: inline-block;
  color: #FFF;
  text-decoration: none;
  background-color: var(--primary-color);
  border-radius: 40px;
  font-size: 18px;
  transition: .3s;
  font-weight: 700;
  box-shadow: var(--shadow-solid);
}

.btn:hover {
  box-shadow: var(--shadow-hover);
}

/* アピールセクション */

.appeal-section {
  background-color: #F0F4F6;
  padding: var(--section-padding);
}

.appeal-section__inner {
  max-width: var(--container-width);
  margin: 0 auto;
}

.appeal-section__title {
  text-align: center;
  font-size: var(--text-lg);
  margin-top: 5px;
  margin-bottom: 30px;
  line-height: 1.3;
}

.appeal-section__title--small {
  font-size: var(--text-sm);

}

.appeal-section__title--middle {
  display: block;
  font-size: var(--text-lg);
}

.appeal-secion__columns {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.appeal-section__column {
  background-color: #fff;
  padding: 20px 30px;
  border-radius: 24px;
  box-shadow: var(--shadow-solid);
}

.appeal-section__text {
  display: block;
  text-align: center;
  font-weight: normal;
  color: var(--text-color);
}

.appeal-section__text span {
  display: block;
  font-size: var(--text-sm);
  font-weight: bold;
  line-height: 1.7;
}

.appeal-section__icon {
  display: block;
  margin: 30px auto;
  width: 64px;
  height: 64px;
}

.appeal-section__detail {
  text-align: center;
  line-height: 1.7;
}

/* 強みのセクション */

.strength-section {
  padding: var(--section-padding);
}

.strength-section__inner {
  max-width: var(--container-width);
  margin: auto;
}

.strength-section__icon {
  display: block;
  margin: 0;
  width: 42px;
  height: 42px;
}

.strength-section__columns {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 40px;
  align-items: center;
}

.strength-section__leading {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 700;
}

.strength-section__title {
  font-size: var(--text-lg);
  line-height: 1.3;
}

.strength-section__list {
  color: var(--text-color);
  padding-left: 20px;
  line-height: 2;
}

.strength-section__list li:marker {
  color: rgb(144, 202, 249);
}

.strength-section__image {
  width: 100%;
  height: auto;
}

.strength-section__btn-area {
  text-align: center;
}

/* ビジュアル採点のセクション */

.visual-section {
  background-color: #F0F4F6;
  padding: var(--section-padding);
}

.visual-section__inner {
  max-width: var(--container-width);
  margin: 0 auto;
}

.visual-section__icon {
  display: block;
  margin: 0 auto;
  width: 64px;
  height: 64px;
}

.visual-section__title {
  font-size: var(--text-lg);
  text-align: center;
  margin-bottom: 20px;
}

.visual-section__leading {
  color: var(--text-color);
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.7;
}

.visual-section__image {
  display: block;
  width: 100%;
  max-width: 800px;
  margin: 20px auto;
  height: auto;
}

/* フッター*/

.footer {
  padding: 10px 0 0 0;
}

.footer__list {
  list-style-type: none;
  font-size: 14px;
  padding: 12px 0;
  text-align: center;
}

.footer__list li {
  display: inline-block;
}

.footer__list a {
  color: var(--text-color);
  text-decoration: none;
  display: inline-block;
  margin: 8px 10px;
}

.footer__copyright {
  text-align: center;
  color: var(--text-color);
  font-size: 14px;
  margin: 0;
  padding: 15px 0;
  border-top: 1px solid #dcdcdc;
}

@media screen and (max-width: 767px) {
  :root {
    --text-xl: 28px;
    --text-lg: 24px;
    --text-sm: 14px;
    --section-padding: 40px 15px;
  }

  .header__list {
    display: none;
  }

  .header__inner {
    justify-content: center;
  }

  .hero__inner {
    flex-direction: column;
    gap: 0;
    align-items: start;
  }

  .hero__column:last-child {
    order: 1;
  }

  .hero__column:first-child {
    order: 2;
  }

  .appeal-secion__columns {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .strength-section__columns {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .strength-section__column:first-child {
    order: 1;
  }

  .strength-section__column:last-child {
    order: 0;
  }
}

/*追加*/

.hero {
  position: relative;
  background: url(./images/back.jpg);
  background-position: center;
  background-size: cover;
  overflow: hidden;
}


.hero__image,.strength-section__image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}



