@charset "UTF-8";
body {
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 18px;
}

.wrapper {
  width: 100%;
  max-width: 375px;
  margin: 0 auto;
  overflow-x: hidden;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  background: #2d4d62;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 9px 15px;
}

.header__logo p {
  font-size: 20px;
  color: #fff;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
}

.footer {
  background: #2d4d62;
}

.footer__inner {
  padding-top: 25px;
  padding-left: 38px;
  color: #FFFFFF;
}

.footer__company {
  font-size: 16px;
}

.footer__tel {
  font-size: 16px;
}

.footer__list {
  font-size: 13px;
  margin-top: 12px;
}
.footer__list li + li {
  padding-top: 5px;
}

.footer__copyright {
  font-size: 12px;
  text-align: center;
  margin-top: 25px;
  color: #FFFFFF;
}

.breadcrumb {
  font-size: 14px;
  padding: 8px 8px;
  background: #f9f9f9;
}
.breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumb li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #666;
}
.breadcrumb li:not(:last-child)::after {
  content: ">";
  margin: 0 8px;
  color: #aaa;
}
.breadcrumb li a {
  text-decoration: none;
  color: #2D4D62;
}
.breadcrumb li a:hover {
  text-decoration: underline;
}

.privacy-policy {
  font-family: "Noto Sans JP";
}

.privacy-policy__inner {
  padding-left: 18px;
  padding-right: 17px;
  padding-top: 40px;
  padding-bottom: 60px;
}

.privacy-policy__title {
  font-size: 22px;
  font-weight: 600;
  color: #2d4d62;
  margin-bottom: 40px;
}

.privacy-policy__contents {
  color: #182a35;
}

.privacy-policy__content {
  margin-top: 30px;
}

.privacy-policy__subtitle {
  font-size: 15px;
  font-weight: 900;
}
.privacy-policy__subtitle::after {
  content: "";
  display: block;
  width: 100%; /* 線の長さ */
  height: 2px; /* 線の太さ */
  background-color: #dedcdc;
  margin-top: 17px; /* 文字との間隔 */
}

.privacy-policy__text {
  font-size: 15px;
  font-weight: 400;
  padding-top: 8px;
}

.privacy-policy__lists {
  padding-top: 8px;
  font-size: 15px;
  font-weight: 400;
  counter-reset: privacy-item;
  list-style: none;
  padding-left: 22px; /* 本文が番号に被らないよう余白を確保 */
}
.privacy-policy__lists li {
  counter-increment: privacy-item;
  margin-bottom: 0.5em;
  position: relative;
}
.privacy-policy__lists li::before {
  content: counter(privacy-item) ".";
  position: absolute;
  left: -21px; /* 左端に番号 */
  width: 2em; /* 番号用の幅 */
  text-align: left; /* 番号を右寄せ */
}

.company {
  font-family: "Noto Sans JP";
}

.company__inner {
  padding-top: 40px;
  padding-left: 21px;
  padding-right: 21px;
}

.company__title {
  color: #2d4d62;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 50px;
}

.company__contents {
  padding-bottom: 80px;
}

.company__content {
  font-size: 15px;
}

.company__table {
  width: 100%;
  border-top: 2px solid #dedcdc;
}

.company__table-th {
  text-align: left;
  width: 30%;
  padding: 1.25rem 0;
  vertical-align: top;
  border-bottom: 2px solid #dedcdc;
  font-weight: 800;
}

.company__table-td {
  text-align: left;
  width: 70%;
  padding: 1.25rem 0;
  vertical-align: top;
  border-bottom: 2px solid #dedcdc;
}

.company__table-td--short {
  font-size: 13px;
}

.contact {
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 40px;
  max-width: 600px;
  margin: 0 auto;
}

.contact__title {
  position: relative;
  width: 100%;
}

.contact__title-main {
  color: #dfeefd;
  font-size: 70px;
  font-family: "Noto Sans JP";
  font-weight: 700;
  text-align: center;
}

.contact__title-sub {
  position: absolute;
  top: 20px;
  left: 25px;
  text-align: center;
  color: #2d4d62;
  font-size: 28px;
  line-height: 125%; /* 35px */
}

.contact__top-text {
  text-align: left;
  font-size: 13px;
  color: #2d4d62;
  padding-top: 60px;
  margin-bottom: 55px;
  line-height: 20px; /* 142.857% */
  padding-left: 5px;
}

.contact__list {
  padding-bottom: 10px;
}

.contact__form .form__group {
  margin-bottom: 30px;
  padding-left: 7px;
  padding-right: 7px;
}
.contact__form .form__group label {
  display: block;
  font-weight: bold;
  margin-bottom: 4px;
  color: #182a35;
  font-size: 16px;
}
.contact__form .form__group input,
.contact__form .form__group textarea {
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  border: 2px solid #a09f9f;
  background: #FFFFFF;
  font-size: 14px;
}
.contact__form .required label::before {
  content: "必須";
  display: inline-block;
  background: #ffa726;
  color: white;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 3px;
  margin-right: 15px;
}
.contact__form .optional label::before {
  content: "任意";
  display: inline-block;
  background: #ccc;
  color: white;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 3px;
  margin-right: 15px;
}

.submit-btn {
  display: block;
  background: #feaf25;
  color: #182A35;
  font-size: 16px;
  font-weight: bold;
  padding: 12px;
  border: none;
  border-radius: 6px;
  width: 80%;
  cursor: pointer;
  -webkit-box-shadow: 0 4px 0 0 #d07a2f;
          box-shadow: 0 4px 0 0 #d07a2f;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  margin-left: 30px;
  margin-bottom: 55px;
}
.submit-btn:hover {
  background: #ff9800;
}