@charset "UTF-8";
main {
  background-color: #fff100;
}

/* ページタイトルバナー */
.page-head {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 126px;
  padding: 20px;
  background-color: #ed6c00;
}
@media screen and (max-width: 1200px) {
  .page-head {
    min-height: 10.5vw;
    padding: 1.67vw;
  }
}
@media screen and (max-width: 768px) {
  .page-head {
    min-height: 0;
    padding: 6vw 5vw;
  }
}
.page-head__title {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 33px;
  line-height: 1.3;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .page-head__title {
    font-size: 2.75vw;
  }
}
@media screen and (max-width: 768px) {
  .page-head__title {
    font-size: 6vw;
  }
}

/* 本文ラッパー */
.about {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 80px;
}
@media screen and (max-width: 1200px) {
  .about {
    padding: 0 1.67vw 6.67vw;
  }
}
@media screen and (max-width: 768px) {
  .about {
    padding: 0 15px 14vw;
  }
}
.about__title {
  max-width: 812px;
  margin: 56px auto 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.43;
  color: #030303;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .about__title {
    margin-top: 4.67vw;
    font-size: 2.33vw;
  }
}
@media screen and (max-width: 768px) {
  .about__title {
    margin-top: 9.1vw;
    font-size: 4.55vw;
    line-height: 1.5;
  }
}
.about__lead {
  max-width: 750px;
  margin: 28px auto 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.5;
  color: #000;
}
@media screen and (max-width: 1200px) {
  .about__lead {
    margin-top: 2.33vw;
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  .about__lead {
    max-width: none;
    width: 88.6%;
    margin-top: 5vw;
    font-size: 3.64vw;
    line-height: 1.56;
  }
}
.about__card {
  width: 100%;
  max-width: 999px;
  margin: 56px auto 0;
  padding: 60px 0 90px;
  background-color: #fff;
}
@media screen and (max-width: 1200px) {
  .about__card {
    margin-top: 4.67vw;
    padding: 5vw 0 7.5vw;
  }
}
@media screen and (max-width: 768px) {
  .about__card {
    margin-top: 8vw;
    padding: 30px 0 44px;
  }
}
.about__card > * {
  width: 750px;
  max-width: 88%;
}
@media screen and (max-width: 1200px) {
  .about__card > * {
    width: 62.5vw;
  }
}
@media screen and (max-width: 768px) {
  .about__card > * {
    width: 88%;
  }
}

/* オレンジ吹き出し見出し */
.about-bubble {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  margin: 0 auto 56px;
  padding: 10px 20px;
  border-radius: 15px;
  background-color: #ed6c00;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.3;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .about-bubble {
    min-height: 8.33vw;
    margin-bottom: 4.67vw;
    padding: 0.83vw 1.67vw;
    border-radius: 1.25vw;
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 768px) {
  .about-bubble {
    min-height: 22.7vw;
    margin-bottom: 10.5vw;
    border-radius: 3.4vw;
    font-size: 5.68vw;
  }
}
.about-bubble::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -15px);
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 42px solid #ed6c00;
}
@media screen and (max-width: 1200px) {
  .about-bubble::after {
    transform: translate(-50%, -1.2vw);
    border-left-width: 2.5vw;
    border-right-width: 2.5vw;
    border-top-width: 3.5vw;
  }
}
@media screen and (max-width: 768px) {
  .about-bubble::after {
    transform: translate(-50%, -2vw);
    border-left-width: 6.8vw;
    border-right-width: 6.8vw;
    border-top-width: 9.5vw;
  }
}

/* 仕様表 */
.about-spec {
  margin: 0 auto;
}
.about-spec__row {
  margin-bottom: 18px;
}
.about-spec__row:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1200px) {
  .about-spec__row {
    margin-bottom: 1.5vw;
  }
}
@media screen and (max-width: 768px) {
  .about-spec__row {
    margin-bottom: 4.5vw;
  }
}
.about-spec__label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 35px;
  padding: 4px 10px;
  background-color: #fdad00;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.25;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .about-spec__label {
    min-height: 2.92vw;
    padding: 0.33vw 0.83vw;
    font-size: 1.67vw;
  }
}
@media screen and (max-width: 768px) {
  .about-spec__label {
    min-height: 7.95vw;
    padding: 0.67vw 1.33vw;
    font-size: 4.55vw;
  }
}
.about-spec__value {
  margin: 8px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  color: #000;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .about-spec__value {
    margin-top: 0.67vw;
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 768px) {
  .about-spec__value {
    margin-top: 2vw;
    font-size: 4.09vw;
  }
}
.about-spec__note {
  display: block;
  margin-top: 4px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 1200px) {
  .about-spec__note {
    margin-top: 0.33vw;
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 768px) {
  .about-spec__note {
    margin-top: 0.67vw;
    font-size: 2.73vw;
  }
}

/* 区切り線（破線） */
.about-sep {
  margin: 56px auto;
  border: none;
  border-top: 4px solid #b5b5b5;
}
@media screen and (max-width: 1200px) {
  .about-sep {
    border-top: 0.33vw solid #b5b5b5;
    margin: 4.67vw auto;
  }
}
@media screen and (max-width: 768px) {
  .about-sep {
    border-top: 1.1vw solid #b5b5b5;
    margin: 18vw auto 4.8vw;
  }
}

/* 注意文 */
.about-note {
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.56;
  color: #000;
}
@media screen and (max-width: 1200px) {
  .about-note {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 768px) {
  .about-note {
    font-size: 3.84vw;
  }
}

/* 特定商取引リンク */
.about-tokusho {
  margin: 1.5em auto 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
}
@media screen and (max-width: 1200px) {
  .about-tokusho {
    font-size: 1.67vw;
  }
}
@media screen and (max-width: 768px) {
  .about-tokusho {
    font-size: 4.8vw;
  }
}
.about-tokusho a {
  color: #0084ff;
  text-decoration: underline;
}

/* 特定商取引法に準ずる表記テーブル */
.tokusho {
  width: 750px;
  margin: 0 auto;
  border-collapse: collapse;
  border: 2px solid #46B2E7;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 1200px) {
  .tokusho {
    width: 62.5vw;
    border-width: 0.17vw;
  }
}
@media screen and (max-width: 768px) {
  .tokusho {
    display: block;
    width: 100%;
    border-width: 0.4vw;
    border-bottom: none;
  }
}
@media screen and (max-width: 768px) {
  .tokusho tbody, .tokusho tr {
    display: block;
    width: 100%;
  }
}
.tokusho__th, .tokusho__td {
  padding: 16px 20px;
  border: 1px solid #46B2E7;
  font-size: 18px;
  line-height: 1.65;
  vertical-align: top;
  text-align: left;
  word-break: break-word;
}
@media screen and (max-width: 1200px) {
  .tokusho__th, .tokusho__td {
    padding: 1.33vw 1.67vw;
    border-width: 0.083vw;
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 768px) {
  .tokusho__th, .tokusho__td {
    display: block;
    width: 100%;
    border: none;
    font-size: 3.84vw;
  }
}
.tokusho__th {
  width: 240px;
  background-color: #6ECDFC;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 1200px) {
  .tokusho__th {
    width: 20vw;
  }
}
@media screen and (max-width: 768px) {
  .tokusho__th {
    width: 100%;
    padding: 2.4vw 3.6vw;
    text-align: center;
  }
}
.tokusho__td {
  background-color: #fff;
  font-weight: 500;
  color: #000;
}
@media screen and (max-width: 768px) {
  .tokusho__td {
    padding: 3.2vw 3.6vw;
    border-bottom: 0.4vw solid #46B2E7;
  }
}

/* 面積リンク */
.about-menseki {
  margin: 1.5em auto 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .about-menseki {
    font-size: 1.67vw;
  }
}
@media screen and (max-width: 768px) {
  .about-menseki {
    font-size: 4.8vw;
  }
}
.about-menseki a {
  color: #0084ff;
  text-decoration: underline;
}

/* 色変更 */
main {
  background-color: #DAF3FF;
}

.page-head {
  background-color: #46B2E7;
}

.about-bubble {
  background-color: #46B2E7;
}
.about-bubble::after {
  border-top-color: #46B2E7;
}

.about-spec__label {
  background-color: #6ECDFC;
}/*# sourceMappingURL=style_about.css.map */