/* 
共通
*/

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif, "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #424242;
  letter-spacing: 0.04em;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

.sp,
.sp-br {
  display: none;
}

.button {
  display: block;
  width: 100%;
  padding: 20px;
  margin: 0 auto;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  border-radius: 8px;
  cursor: pointer; /*hrefが入らない場合*/
  transition-duration: 0.2s;
}

.button-primary {
  color: #fff;
  background-color: #fa8200;
}

@media (hover: hover) {
  .button-primary:hover {
    background-color: #f47100;
  }
}

.button-secondary {
  color: #fa8200;
  background-color: #fff;
  border: #fa8200 1px solid;
}

@media (hover: hover) {
  .button-secondary:hover {
    background-color: #fff4e0;
  }
}

.note {
  font-size: 14px;
  padding-left: 1em;
  text-indent: -1em;
  letter-spacing: 0.02em;
  margin-top: 4px;
}

.note > li {
  margin-top: 8px;
}

@media only screen and (max-width: 768px) {
  .pc,
  .pc-br {
    display: none;
  }
  .sp,
  .sp-br {
    display: block;
  }
}

/*
フォーム
*/

input,
textarea,
select {
  width: 100%;
  height: 56px;
  padding: 16px;
  margin-top: 2px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid #1c1c1c;
}

input:focus,
textarea:focus,
select:focus {
  outline: solid 2px #ffd300;
}

textarea {
  height: 160px;
}

.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 28px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #1a1a1a;
  border-left: 1px solid #1a1a1a;
  transform: translateY(-50%) rotate(-135deg);
  pointer-events: none;
}

select {
  line-height: 1;
}

/*
ヘッダー
*/

header {
  width: 100%;
  padding: 0 24px;
}

.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.header-logo {
  display: block;
  width: auto;
  height: 32px;
}

@media only screen and (max-width: 1200px) {
  header {
    padding: 0 16px;
  }

  .header-wrap {
    height: 72px;
  }

  .header-logo {
    height: 28px;
  }
}

/*
タイトル
*/

.title-section {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
  padding: 40px;
  background-color: #f5f5f5;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .title-section {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    padding: 24px;
  }
}

/*
ステップバー
 */

.timeline__section {
  padding: 0 24px;
  margin-top: 40px;
}

.timeline__wrap {
  max-width: 200px;
  margin: 0 auto;
}

.timeline__list {
  display: flex;
  justify-content: center;
}

.timeline__list li {
  display: flex;
  flex: 1 1;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  color: #b8b8b8;
  font-size: 14px;
  font-weight: 700;
}

.timeline__list li.prev,
.timeline__list li.current {
  color: #fa8200;
}

.timeline__list li::before {
  content: ""; /*何も入れない*/
  display: inline-block;
  width: 24px; /*画像の幅*/
  height: 24px; /*画像の高さ*/
  background-image: url(../images/timeline.png);
  background-size: contain;
  vertical-align: middle;
}

.timeline__list li.prev::before {
  background-image: url(../images/timeline-prev.png);
}

.timeline__list li.current::before {
  background-image: url(../images/timeline-current.png);
}

.timeline__list li:not(:last-child)::after {
  position: absolute;
  top: 11px;
  left: 50%;
  z-index: -1;
  width: 100%;
  height: 2px;
  background-color: #b8b8b8;
  content: "";
}

.timeline__list li.prev::after {
  background-color: #fa8200;
}

@media only screen and (max-width: 768px) {
  .timeline__section {
    padding: 0 8px;
    margin-top: 32px;
  }
  .timeline__list li {
    font-size: 13px;
    font-weight: 500;
  }
}

/*
コンタクト
*/

.contact__section {
  padding: 40px 24px;
}

.contact__wrap {
  max-width: 544px;
  margin: 0 auto;
  margin-bottom: -32px;
}

.contact__culumn {
  display: flex;
  gap: 16px;
}

.contact__culumn-item {
  width: 100%;
  background-color: #fff6e8;
  padding: 32px;
  margin: 0 auto;
  text-align: center;
  border-radius: 8px;
}
.contact__heading {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 8px;
}
.contact__tel {
  font-size: 46px;
  font-weight: 700;
  color: #fa8200;
  line-height: 1.2;
}

@media (hover: hover) {
  .contact__tel > a:hover {
    color: #f47100;
  }
}

.contact__tel-note {
  font-size: 14px;
  font-weight: 700;
  margin-top: 8px;
  margin-bottom: 12px;
}

@media only screen and (max-width: 768px) {
  .contact__section {
    padding: 40px 16px;
  }
  .contact__culumn {
    display: block;
  }
  .contact__culumn-item {
    padding: 40px 16px;
  }
  .contact__culumn-item:nth-child(2) {
    margin-top: 16px;
  }
  .contact__tel {
    font-size: 40px;
  }
  .contact__tel-note {
    font-size: 14px;
  }
}

/* 
入力画面
*/

.form-section {
  padding: 0 16px;
  margin-top: 40px;
}
.form-wrap {
  max-width: 544px;
  margin: 0 auto;
}

.form-heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 32px;
}

.form-list-item {
  margin-bottom: 24px;
}

.form-list-item > label {
  display: block;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 2px;
}
.form-list-item-helpfeel {
  line-height: 0;
  margin-top: 24px;
}

.label-span {
  font-size: 16px;
  font-weight: 500;
  padding-left: 8px;
  color: #ec0000;
}

.label-span-must {
  color: #ec0000;
}

.button-submit {
  margin-top: 40px;
}

@media only screen and (max-width: 768px) {
  .form-section {
    margin-top: 40px;
  }
  .form-heading {
    font-size: 20px;
    margin-bottom: 24px;
  }
}

/* 
確認画面
*/

.confirm-section {
  padding: 0 16px;
  margin-top: 40px;
}
.confirm-wrap {
  max-width: 544px;
  margin: 0 auto;
}

.confirm-heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 32px;
}

.confirm-list {
  margin-bottom: 40px;
}

.confirm-list-item {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: #d8d8db 1px solid;
}

.confirm-list-item:has(p:empty, a:empty) {
  padding-bottom: 52px;
}

.confirm-list-item > label {
  font-size: 16px;
  font-weight: 500;
  color: #636363;
}

.confirm-list-item > p {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 2px;
  word-wrap: break-word;
}

.confirm__list__item__mail {
  font-size: 24px !important;
}

.form__button--return {
  text-align: center;
  margin-top: 24px;
}

.return__text-link {
  color: #7f7f7f;
  font-weight: 700;
  text-decoration: underline;
}

@media (hover: hover) {
  .return__text-link:hover {
    opacity: 0.8;
  }
}

@media only screen and (max-width: 768px) {
  .confirm-section {
    margin-top: 40px;
  }
  .confirm-heading {
    font-size: 20px;
    margin-bottom: 24px;
  }
}

/* 
完了画面
*/

.thanks-section {
  padding: 0 16px;
  margin-top: 40px;
}

.thanks-wrap {
  max-width: 544px;
  margin: 0 auto;
}

.thanks-heading {
  padding: 40px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: #fa8200;
  background-color: #fff6e8;
  margin-bottom: 24px;
}

.thanks-text > p {
  margin-bottom: 16px;
}

.thanks-text > p > span {
  font-weight: 700;
}

.thanks-contact-heading {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 24px;
  margin-bottom: 16px;
}

.thanks-contact-list {
  padding-top: 24px;
  margin-bottom: 40px;
  border-top: #d8d8db 1px solid;
}

.thanks-contact-list-item {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: #d8d8db 1px solid;
}

.thanks-contact-list-item > label {
  font-size: 16px;
  font-weight: 500;
  color: #636363;
}

.thanks-contact-list-item-text {
  font-size: 20px;
  font-weight: 500;
  margin-top: -4px;
}

.thanks-contact-list-item-note {
  font-size: 14px;
  letter-spacing: 0.02em;
}

.thanks-contact-list-item-note > span {
  font-size: 12.5px;
}

.button-thanks {
  margin-top: 40px;
}

@media only screen and (max-width: 768px) {
  .thanks-section {
    margin-top: 40px;
  }

  .thanks-heading {
    font-size: 18px;
  }

  .thanks-text > p > span {
    font-weight: 500;
  }

  .thanks-contact-heading {
    font-weight: 500;
  }
}

/* 
フッター
*/

.footer__section {
  background-color: #424242;
  padding: 0 16px;
  margin-top: 64px;
}

.footer__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}

.footer__sns {
  display: flex;
  gap: 16px;
}

.footer__sns img {
  display: block;
  width: 24px;
  height: 24px;
  transition: 0.2s;
}

@media (hover: hover) {
  .footer__sns img:hover {
    opacity: 0.8;
  }
}

.footer__sitemap {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer__sitemap__item {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  transition: 0.2s;
}

.footer__sitemap__item__text__link {
  text-decoration: none;
}

@media (hover: hover) {
  .footer__sitemap__item:hover {
    opacity: 0.8;
  }
}

.footer__copyright {
  font-size: 10px;
  color: #fafafa;
}

@media only screen and (max-width: 768px) {
  .footer__wrap {
    display: block;
    padding: 64px 0;
  }

  .footer__sitemap {
    display: block;
    margin-top: 40px;
  }

  .footer__sitemap__item {
    margin-top: 16px;
  }

  .footer__sns {
    gap: 20px;
  }

  .footer__sns img {
    width: 32px;
    height: 32px;
  }

  .footer__copyright {
    margin-top: 40px;
  }
}
