@charset "UTF-8";

/* CSS Document */
body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

html {
  font-size: 16px;
}

body {
  color: #333333;
  background-color: #fff;
  /* RGB */
  font-family: "Noto Sans JP", "Noto Serif JP", "游ゴシック体", YuGothic,
    "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 2.4rem;
  letter-spacing: 0.2rem;
  text-align: center;
  margin: 0;
  padding-top: 80px;
}

@media (max-width: 1200px) {
  body {
    padding-top: 60px;
  }
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

.br_sp {
  display: none;
}

.br_tab {
  display: none;
}

@media (max-width: 1200px) {
  .br_tab {
    display: block;
  }
}

@media (max-width: 896px) {
  .br_tab {
    display: none;
  }

  .br_sp {
    display: block;
  }
}

/* header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #f84c04;
  z-index: 999;
}

/* header_最大幅・高さ */
.header_wrapper {
  max-width: 1②00px;
  margin: 0 auto;
  padding: 10px 0;
}

/* header_h1_並び */
.h1_top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

/* header_h1_ロゴ */
.h1_top img {
  width: 61px;
}

/* header_h1_テキスト */
.h1_top p {
  font-size: 2em;
  color: #fff;
  text-align: center;
}

@media (max-width: 1200px) {
  /* header */
  .header {
    height: auto;
  }

  /* header_最大幅・高さ */
  .header_wrapper {
    width: 92%;
  }

  /* header_h1_ロゴ */
  .h1_top img {
    width: 56px;
  }

  /* header_h1_テキスト */
  .h1_top p {
    font-size: 1.2em;
    line-height: 1.2em;
  }
}

/* main */
.main {
  overflow: hidden;
}

/* top_今すぐWeb診断を申し込む_デザイン */
.button a {
  position: relative;
  display: flex;
  justify-content: center;
  overflow: hidden;
  align-items: center;
  margin: 0 auto;
  width: 420px;
  height: 64px;
  text-decoration: none;
  background: linear-gradient(to right, #f99c02, #f84803);
  border-radius: 100px;
  border: solid 1px #fff;
  color: #fff;
  font-size: 1.625em;
  letter-spacing: 0.01em;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.2s ease;
}

/* 下層_お問い合わせボタン_矢印 */
.lower_btn a::before {
  content: "";
  position: absolute;
  background-image: url(../image/btn_icon.png);
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
}

/* 全体_お問い合わせボタン_ホバー時シャドウ */
.button a:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.section_lower {
  padding-top: 60px;
}

.lower_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.title_top {
  font-size: clamp(1rem, 2.142vw, 1.6rem);
  line-height: 1.4em;
  text-align: center;
}

.title_bottom {
  font-size: clamp(2.4rem, 3.5vw, 3rem);
  line-height: 1.2em;
  font-weight: 700;
  color: #f84c04;
  text-align: center;
}



@media (max-width: 680px) {
  /* top_お問い合わせボタン_デザイン */
  .button a {
    width: 100%;
    height: 60px;
    font-size: 1.4em;
  }
}

/* footer */
.footer {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #fff;
  color: #363636;
}

.footer_wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer h1 {
  width: 378px;
}

.footer h1 img {
  width: 100%;
}

.footer_list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
}

.footer_list_item:first-child {
  display: flex;
  align-items: center;
}

.footer_list_item:first-child::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 18px;
  background-color: #363636;
  margin-left: 20px;
}

.footer_list_item a {
  text-decoration: none;
  color: #363636;
  transition: color 0.2s;
}

.footer_list_item a:hover {
  color: #f95303;
}

.footer_copyright {
  font-size: 0.75em;
  letter-spacing: 0.08em;
  font-weight: 500;
  text-align: center;
}

@media (max-width: 960px) {
  .footer_wrapper {
    width: 92%;
    padding: 40px 0 10px;
    gap: 20px;
  }

  .footer h1 {
    width: 280px;
  }

  .footer_list {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .footer_list_item:first-child::after {
    content: none;
  }
}
