/* 
共通
*/
html {
  cursor: auto;
}

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;
  color: #333;
  text-align: center;
  overflow-y: scroll; /* モーダル時にもスクロールバー表示 */
}

.text-link {
  color: #fa8200;
  text-decoration: none;
  border-bottom: 1px solid #fa8200;
  padding-bottom: 0.5px;
}

.text-link:hover {
  opacity: 0.8;
}

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

.sp {
  display: none;
}

.pc-br {
  display: block;
}

.sp-br {
  display: none;
}

.btn {
  display: block;
  width: 100%;
  padding: 20px 20px;
  margin: 0 auto;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  background: #fa8200;
  border-radius: 45px;
  transition-duration: 0.2s;
  cursor: pointer; /*hrefが入らない場合*/
}

.btn:hover {
  opacity: 0.8;
}

.cvr-btn {
  max-width: 400px;
  margin: 50px auto 0px;
  border: none;
  color: #fff;
  position: relative;
  cursor: pointer;
  font-size: 20px;
  line-height: 26px;
  border-radius: 50px;
  background-color: #fa8200;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 768px) {
  .cvr-btn {
    max-width: inherit;
    margin: 30px auto 0px;
    font-size: 18px;
  }
}

h3 {
  font-size: 32px;
  font-weight: bold;
  margin: 0;
  line-height: 1;
}

.note {
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
  margin: 10px 0 20px;
}

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

  .sp {
    display: block;
  }

  .pc-br {
    display: none;
  }

  .sp-br {
    display: block;
  }
}

/*
ヘッダー
*/

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 15px;
}

h1 img {
  display: block;
}

.nav-btn {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  min-width: 120px;
}

@media only screen and (max-width: 1024px) {
  h1 {
    margin: 16px 0;
  }
  h1 a > img {
    width: 70%;
  }
}

/*
メイン
*/

/* タイトル */

.title {
  width: 100%;
  background-color: #f7f7f7;
  padding: 40px 15px;
  font-size: 28px;
}

@media only screen and (max-width: 768px) {
  .title {
    padding: 20px 15px;
    font-size: 18px;
  }
}

/*
メイン
*/

.main {
  margin: 40px 15px 0;
}

.main-wrap {
  max-width: 800px;
  background-color: #fff9f2;
  margin: 0 auto;
  padding: 60px;
}

.main-heading {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.8;
  color: #fa8200;
  margin: 0;
}
.main-text {
  font-size: 18px;
  line-height: 2;
  text-align: left;
  margin-top: 30px;
}

.main-note {
  font-size: 14px;
  line-height: 2;
  text-align: left;
}

@media only screen and (max-width: 768px) {
  .main {
    margin: 15px 15px 0;
  }

  .main-wrap {
    margin-bottom: 30px;
    padding: 30px 30px;
  }

  .main-heading {
    font-size: 18px;
    line-height: 1.8;
    text-align: left;
  }
  .main-text {
    font-size: 16px;
    text-align: left;
    margin-top: 20px;
    margin-bottom: 0;
  }
}

/*
フッター
*/

footer {
  background-color: #fa8200;
  margin-top: 130px;
  padding: 0 15px;
  padding-top: 50px;
}

.form-ttl {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  margin: 0;
  margin-bottom: 30px;
}

.form-column {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}

.form-btn {
  width: 100%;
  padding: 30px;
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  background-color: #f57600;
  border-radius: 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.form-mail::before {
  content: ""; /*何も入れない*/
  display: inline-block;
  width: 25px; /*画像の幅*/
  height: 25px; /*画像の高さ*/
  background-image: url(../images/footer-form01.png);
  background-size: contain;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 2px;
}

.form-tel::before {
  content: ""; /*何も入れない*/
  display: inline-block;
  width: 30px; /*画像の幅*/
  height: 30px; /*画像の高さ*/
  background-image: url(../images/footer-form02.png);
  background-size: contain;
  vertical-align: middle;
  margin-right: 2px;
  margin-bottom: 4px;
}

.form-cap {
  font-size: 18px;
  margin: 0;
  line-height: 1.2;
}

.form-tel {
  font-size: 48px;
  margin: 0;
  line-height: 1.2;
}

.form-tel img {
  margin-right: 5px;
}

.form-note {
  font-size: 14px;
  margin: 0;
}

/*
SNS
*/

.sns {
  margin: 0 auto;
  margin-top: 30px;
}

.sns > p {
  color: #fff;
  margin: 0;
}

.sns > ul {
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  margin-top: 5px;
}

.sns > ul > li {
  list-style: none;
}

.sns-btn {
  padding: 0;
  margin-top: 2px;
}

.sns-btn > img {
  width: 45px;
  margin: 0 2px;
}

/*
サイトマップ
*/

.sitemap {
  max-width: 1080px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  margin-top: 15px;
  border-top: #fca84d solid 1px;
}

.sitemap nav > ul {
  display: flex;
  gap: 25px;
  padding: 5px 0;
}

.sitemap nav > ul li a {
  font-size: 13px;
  text-decoration: none;
  color: #fff;
  transition-duration: 0.2s;
}

.sitemap nav > ul li a:hover {
  text-decoration: underline;
  text-underline-offset: 0.5em;
}

.copyright {
  font-size: 10px;
  color: #fff;
}

@media only screen and (max-width: 1024px) {
  footer {
    margin-top: 80px;
    padding: 15px;
    padding-top: 30px;
  }

  .form-ttl {
    margin-bottom: 20px;
  }

  .form-column {
    display: block;
  }

  .form-btn {
    padding: 20px;
    font-size: 22px;
    margin-top: 15px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  }

  .form-mail::before {
    width: 20px; /*画像の幅*/
    height: 20px; /*画像の高さ*/
    background-image: url(../images/footer-form01.png);
    margin-right: 8px;
    margin-bottom: 1px;
  }

  .form-tel::before {
    width: 20px; /*画像の幅*/
    height: 20px; /*画像の高さ*/
    margin-right: 2px;
    margin-bottom: 4px;
  }

  .form-cap {
    font-size: 15px;
  }

  .form-tel {
    font-size: 34px;
  }

  .form-note {
    font-size: 12px;
  }

  /* サイトマップ */

  .sitemap {
    display: block;
    text-align: left;
    margin-top: 15px;
  }

  .sitemap nav > ul {
    display: block;
    margin-top: 20px;
  }

  .sitemap nav > ul li {
    display: inline;
    line-height: 2.3;
    white-space: nowrap;
  }

  .sitemap nav > ul li a {
    font-size: 13px;
    margin-right: 20px;
  }

  .copyright {
    margin: 0;
  }
}
