@charset "UTF-8";

/* CSS Document */
body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
}

html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  scroll-behavior: smooth;
}

body {
  color: #182e59;
  background-color: #fff;
  /* RGB */
  font-family: "Noto Sans JP", "Noto Serif JP", "游ゴシック体", YuGothic,
    "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  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;
}

/* header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #182e59;
  z-index: 999;
}

/* header_最大幅・高さ */
.header_wrapper {
  max-width: 1100px;
  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;
}

@media (max-width: 1100px) {
  /* header */
  .header {
    height: 60px;
  }

  /* header_最大幅・高さ */
  .header_wrapper {
    width: 92%;
  }

  /* header_h1_ロゴ */
  .h1_top img {
    width: 40px;
  }

  /* header_h1_テキスト */
  .h1_top p {
    font-size: 1.375em;
  }
}

@media (max-width: 960px) {
  /* header */
  .header {
    height: auto;
  }

  /* header_h1_ロゴ */
  .h1_top img {
    width: 56px;
  }
}

/* main */
.main {
  overflow: hidden;
}

/* PCのみ行替え */
.br_pc {
  display: block;
}

@media (max-width: 1200px) {
  /* SP行替え無し */
  .br_pc {
    display: none;
  }
}

/* PC行替え無し */
.br_tablet {
  display: none;
}

@media (max-width: 1200px) {
  /* タブレット・SPのみ行替え */
  .br_pc {
    display: none;
  }
}

/* PC行替え無し */
.br_sp {
  display: none;
}

@media (max-width: 960px) {
  /* SPのみ行替え */
  .br_sp {
    display: block;
  }
}

/* PCのみ表示 */
.pc_only {
  display: block;
}

@media (max-width: 960px) {
  .pc_only {
    display: none;
  }
}

/* SPのみ表示 */
.sp_only {
  display: none;
}

@media (max-width: 960px) {
  .sp_only {
    display: block;
  }
}

/* top_お問い合わせボタン_デザイン */
.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 {
  justify-content: flex-start;
  width: 520px;
  height: 100px;
  border-radius: 32px;
  font-size: 1.5em;
  padding: 14px 24px 14px 38px;
  line-height: 1.3em;
  position: relative;
}

/* 下層_お問い合わせボタン_矢印 */
.lower_btn a::before {
  content: "";
  position: absolute;
  background-image: url(../image/btn_icon.png);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  width: 26px;
  height: 26px;
  right: 16px;
  z-index: 2;
}

/* 全体_お問い合わせボタン_ホバー時シャドウ */
.button a:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

@media (max-width: 1200px) {
  /* top_問い合わせボタン_下余白 */
  .top_btn {
    margin-bottom: 10px;
  }
}
@media (max-width: 960px) {
  /* 下層_お問い合わせボタン_デザイン */
  .lower_btn a {
    width: 90%;
    font-size: 1.4em;
    padding: 0 88px;
  }
}

@media (max-width: 680px) {
  /* top_お問い合わせボタン_デザイン */
  .button a {
    width: 310px;
    height: 60px;
    font-size: 1.4em;
  }

  /* 下層_お問い合わせボタン_デザイン */
  .lower_btn a {
    width: 90%;
    height: 100px;
    font-size: 1.3em;
    padding: 0 50px 0 20px;
  }
}

/* results・faq_セクションタイトル */
.section_title {
  margin-bottom: 110px;
}

/* results・faq_セクションタイトル_上の文字 */
.section_title_top {
  font-size: 1.437em;
  font-weight: 700;
  margin-bottom: 28px;
}

/* results・faq_セクションタイトル_下の文字 */
.section_title_bottom {
  display: inline;
  font-size: 2.812em;
  font-weight: 700;
  position: relative;
}

/* results・faq_セクションタイトル_下の文字 span */
.section_title_bottom span {
  font-size: 0.822em;
}

/* results・faq_セクションタイトル_文字下の線 */
.section_title_bottom::after {
  content: "";
  position: absolute;
  width: 180px;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: solid 2px #182e59;
}

@media (max-width: 960px) {
  /* results・faq_セクションタイトル */
  .section_title {
    margin-bottom: 80px;
  }

  /* results・faq_セクションタイトル_上の文字 */
  .section_title_top {
    font-size: 1em;
    margin-bottom: 16px;
  }

  /* results・faq_セクションタイトル_下の文字 */
  .section_title_bottom {
    font-size: 2em;
    line-height: 1.2em;
  }

  /* results・faq_セクションタイトル_文字下の線 */
  .section_title_bottom::after {
    width: 140px;
    bottom: -24px;
  }
}

.section_lower {
  width: 100%;
  height: 100%;
  background-image: url(../image/top_bg.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 60px 0 90px;
  text-align: center;
}

/* タイトル */
.lower_title {
  margin-bottom: 0;
  color: #182e59;
}

@media (max-width: 1200px) {
  .section_lower {
    padding: 60px 0;
  }
}

/* footer */
.footer {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #fff;
  color: #363636;
}

.footer_wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 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: #f7b301;
}

.footer_copyright {
  font-size: 0.75em;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-bottom: 10px;
  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: 16px;
  }

  .footer_list_item:first-child::after {
    content: none;
  }
}
