@charset "UTF-8";

html {
  font-size: 16px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #6c5d47;
  font-weight: 400;
  line-height: 1.5;
}

.p_font {
  font-family: "Poiret One", sans-serif;
}

/* コンテンツ幅 */

main {
  margin-top: 130px;
}

.inner {
  max-width: 1080px;
  width: calc(100% - 40px);
  margin: 0 auto;
}

/* sectionの余白 */

section {
  padding: 120px 0 100px;
}

/* タイトルパーツ */

.section_title_en {
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.05rem;
  color: #beb09c;
  text-align: center;
  position: relative;
  -webkit-text-stroke: 1px #beb09c;
}

.section_title_en::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: -20px;
  left: 50%;
  width: 16px;
  height: 10px;
  transform: translate(-50%, 0);
  background-image: url(../../images/roof01_icon.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.section_title_ja {
  font-size: 36px;
  margin-top: 10px;
  font-weight: bold;
  text-align: center;
}

/* btn */

.btn {
  display: block;
  font-weight: bold;
  color: #fff;
  padding: 8px 0 9px;
  width: 200px;
  margin: 50px auto 0;
  background-color: #ff9a01;
  border-radius: 10px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  text-align: center;
  transition: all 0.3s ease;
}

@media screen and (min-width: 768px) {
  .btn:hover {
    background-color: #ff7b01;
  }

  .pc_only {
    display: block;
  }

  /* スマホのみ表示 */
  .sp_only {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  /* コンテンツ幅 */
  main {
    margin-top: 66px;
  }

  /* sectionの余白 */

  section {
    padding: 80px 0 60px;
  }

  /* タイトルパーツ */

  .section_title_en {
    font-size: 14px;
    -webkit-text-stroke: 0.5px #beb09c;
  }

  .section_title_ja {
    font-size: 26px;
    width: 100vw;
    margin: 5px calc(50% - 50vw) 0;
  }

  /* btn */

  .btn {
    padding: 9px 0 8px;
    margin: 30px auto 0;
  }

  .pc_only {
    display: none;
  }

  .sp_only {
    display: block;
  }
}
