/* 
共通
*/

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.7;
  color: #333333;
  letter-spacing: 0.02em;
}

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

.sp,
.sp__br {
  display: none;
}

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

/* ボタン */

.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;
  }
}

.text-link {
  color: #fa8200;
  text-decoration: underline;
}

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

/* 注釈 */

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

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

/*
フォーム
*/

input:not([type="radio"]),
textarea,
select {
  width: 100%;
  height: 56px;
  padding: 16px 12px;
  line-height: 1;
  border-radius: 8px;
  border: 1px solid #1c1c1c;
}

input:not([type="radio"]):focus,
textarea:focus,
select:focus {
  outline: solid 2px #0017c1;
}

.input-label {
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  margin-top: 24px;
}
@media only screen and (max-width: 768px) {
  .input-label {
    margin-top: 16px;
  }
}

/*
ヘッダー
*/

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

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

.header__logo {
  display: block;
  width: auto;
  height: 36px;
}

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

  .header__wrap {
    height: 72px;
  }

  .header__logo {
    height: 24px;
  }
}

/*
タイトル
*/

.title {
  padding: 40px;
  background-color: #f8f8f8;
  text-align: center;
}

.title__heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
}

.title__caption {
  font-size: 24px;
  font-weight: 700;
}

@media only screen and (max-width: 768px) {
  .title {
    padding: 24px;
  }

  .title__heading {
    font-size: 24px;
    line-height: 1.4;
  }

  .title__caption {
    font-size: 18px;
  }
}

/*
ステップバー
 */

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

.timeline__wrap {
  max-width: 544px;
  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 {
    padding: 0 8px;
    margin-top: 32px;
  }
  .timeline__list li {
    font-size: 13px;
    font-weight: 500;
  }
}

/* 
入力画面
*/

.form {
  padding: 0 24px;
  margin-top: 40px;
}
.form__wrap {
  max-width: 544px;
  margin: 0 auto;
}

.form__heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin: 42px 0 24px;
}

.form__note {
  margin-bottom: 32px;
}

iframe {
  padding: 0 24px;
}

@media only screen and (max-width: 768px) {
  .form {
    padding: 0 16px;
    margin-top: 24px;
  }

  .form__heading {
    font-size: 21px;
    margin: 24px 0 16px;
  }

  .form__note {
    margin-bottom: 32px;
  }

  iframe {
    padding: 0 16px;
  }
}

/* 
完了画面
*/

.thanks {
  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.75;
  text-align: center;
  color: #fa8200;
  background-color: #fff6e8;
  max-width: 736px;
  margin: 0 auto 32px;
}

.thanks__text {
  margin-top: 16px;
}

@media only screen and (max-width: 768px) {
  .thanks {
    margin-top: 24px;
  }
  .thanks__heading {
    font-size: 18px;
    line-height: 1.6;
    padding: 16px 24px;
    margin: 0 auto 24px;
  }
}

/*
コンタクト
*/

.contact {
  background-color: #f8f8f8;
  padding: 40px 24px;
  margin-top: 80px;
}

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

.contact__culumn__item {
  width: 100%;
  background-color: #fff;
  padding: 40px;
  margin: 0 auto;
  text-align: center;
  border-radius: 8px;
}
.contact__heading {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}
.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;
}

.contact__button {
  max-width: 356px;
  margin-top: 8px;
  margin-bottom: 8px;
  line-height: 1.2;
}
.contact__button > span {
  font-size: 14px;
}

@media only screen and (max-width: 768px) {
  .contact {
    padding: 40px 16px;
    margin-top: 40px;
  }
  .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;
  }
  .contact__button {
    max-width: inherit;
  }
}

/* 
フッター
*/

.footer {
  background-color: #424242;
  padding: 0 16px;
}

.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;
  }
}
