@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--color-text-default, #44423C);
}

h2 {
  font-family: "Noto Sans JP";
  font-size: var(--text-size-h2, 40px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--text-lh-h2, 1.15);
  letter-spacing: var(--text-letter-spacing-h2, 4px);
}
@media (max-width: 768px) {
  h2 {
    font-size: var(--text-size-h2, 24px);
    line-height: var(--text-lh-h2, 1.5);
    letter-spacing: var(--text-letter-spacing-h2, 2.4px);
  }
}

h3 {
  font-family: "Noto Sans JP";
  font-size: var(--text-size-h3, 30px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--text-lh-h3, 1.15); /* 115% */
  letter-spacing: var(--text-letter-spacing-h3, 2.4px);
}
@media (max-width: 768px) {
  h3 {
    font-size: var(--text-size-h3, 20px);
    letter-spacing: var(--text-letter-spacing-h3, 2px);
  }
}

h4 {
  font-family: "Noto Sans JP";
  font-size: var(--text-size-h4, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--text-lh-h4, 1.5);
  letter-spacing: var(--text-letter-spacing-h4, 2.4px);
}
@media (max-width: 768px) {
  h4 {
    font-size: var(--text-size-h4, 16px);
    letter-spacing: var(--text-letter-spacing-h4, 2px);
  }
}

p {
  font-family: "Noto Sans JP";
  font-size: var(--text-size-default, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: var(--text-lh-default, 2);
  letter-spacing: var(--text-letter-spacing-default, 1.6px);
}
@media (max-width: 768px) {
  p {
    font-size: var(--text-size-default, 14px);
  }
}
p.bold {
  font-weight: 700;
}

a {
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.container {
  width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .container {
    width: 100%;
    padding: 0 16px;
  }
}

section {
  padding: 100px 0;
}
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
}
section .sec-ttl {
  color: var(--color-text-default, #44423C);
  text-align: center;
  margin-bottom: 40px;
}
section .txt {
  color: var(--color-text-default, #44423C);
  margin-bottom: 20px;
}
section .txt span.bold {
  font-weight: 700;
}
section .txt:last-child {
  margin-bottom: 0;
}
section.main-visual {
  padding: 0;
}

body.index #main-visual {
  position: relative;
  display: block;
}
body.index #main-visual .btn-green {
  position: absolute;
  right: 8%;
  bottom: 30px;
  transition: ease all 0.3s;
}
body.index #main-visual .btn-green:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  body.index #main-visual .btn-green {
    width: 340px;
    right: unset;
    left: 50%;
    transform: translateX(-50%);
  }
}
body.index #section-01 .mv-txt-area {
  padding: 0 250px;
}
@media (max-width: 768px) {
  body.index #section-01 .mv-txt-area {
    padding: 0;
  }
}
body.index #section-02 {
  background: var(--background-color-subtle, #F6F3F1);
}
body.index #section-02 .sec02-list .sec02-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  body.index #section-02 .sec02-list .sec02-item {
    flex-direction: column;
    gap: 30px;
  }
}
body.index #section-02 .sec02-list .sec02-item .fig {
  width: 460px;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 768px) {
  body.index #section-02 .sec02-list .sec02-item .fig {
    width: 100%;
  }
}
body.index #section-02 .sec02-list .sec02-item .main {
  width: 500px;
}
@media (max-width: 768px) {
  body.index #section-02 .sec02-list .sec02-item .main {
    width: 100%;
  }
}
body.index #section-02 .sec02-list .sec02-item .main h3 {
  margin-bottom: 30px;
}
body.index #section-02 .sec02-list .sec02-item .main p {
  margin-bottom: 20px;
}
body.index #section-02 .sec02-list .sec02-item .main p:last-child {
  margin-bottom: 0;
}
body.index #section-02 .sec02-list .sec02-item:nth-child(even) {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  body.index #section-02 .sec02-list .sec02-item:nth-child(even) {
    flex-direction: column;
  }
}
body.index #section-02 .sec02-tail {
  color: var(--color-text-default, #44423C);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--text-size-h3, 30px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: var(--text-letter-spacing-h3, 2.4px);
}
@media (max-width: 768px) {
  body.index #section-02 .sec02-tail {
    text-align: left;
    font-size: var(--text-size-h3, 20px);
    line-height: var(--text-lh-h3, 1.15);
    letter-spacing: var(--text-letter-spacing-h3, 2px);
  }
}
body.index #section-02 .sec02-tail span {
  font-size: 40px;
}
@media (max-width: 768px) {
  body.index #section-02 .sec02-tail span {
    font-size: var(--text-size-h3, 20px);
  }
}
body.index #section-03 .profile-box {
  display: flex;
  align-items: center;
  gap: 44px;
  padding: 50px;
  border-radius: var(--corner-radius-md, 10px);
  border: var(--border-size-normal, 1px) solid var(--border-color-default, #DDD);
  background: var(--background-color-subtler, #FFF);
}
@media (max-width: 768px) {
  body.index #section-03 .profile-box {
    padding: 30px 24px;
  }
}
body.index #section-03 .profile-box .fig {
  width: 269px;
}
@media (max-width: 768px) {
  body.index #section-03 .profile-box .fig {
    width: 100%;
  }
}
body.index #section-03 .profile-box .main {
  width: calc(100% - 313px);
}
body.index #section-03 .profile-box .main .profile-ttl {
  margin-bottom: 40px;
  color: var(--color-text-default, #44423C);
}
body.index #section-03 .profile-box .main .profile-ttl span {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
}
@media (max-width: 768px) {
  body.index #section-03 .profile-box .main .profile-ttl span {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  body.index #section-03 .profile-box .main {
    width: 100%;
  }
}
@media (max-width: 768px) {
  body.index #section-03 .profile-box {
    flex-direction: column;
  }
}
body.index #section-04 {
  background: var(--background-color-subtle, #F6F3F1);
}
body.index #section-04 .container {
  padding: 0 125px;
}
@media (max-width: 768px) {
  body.index #section-04 .container {
    padding: 0 16px;
  }
}
body.index #section-04 .sec04-lead {
  margin-bottom: 32px;
}
body.index #section-04 .sec04-head {
  margin-bottom: 24px;
  padding: 16px 32px;
  border-radius: var(--corner-radius-md, 10px);
  background: var(--background-color-subtler, #FFF);
}
@media (max-width: 768px) {
  body.index #section-04 .sec04-head {
    padding: 16px;
  }
}
body.index #section-04 .sec04-head .sec04-head-ttl {
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  body.index #section-04 .sec04-head .sec04-head-ttl {
    font-size: var(--text-size-default, 14px);
    letter-spacing: var(--text-letter-spacing-default, 1.4px);
  }
}
body.index #section-04 .sec04-head .sec-head-list .sec-head-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  body.index #section-04 .sec04-head .sec-head-list .sec-head-item {
    gap: 36px;
  }
}
body.index #section-04 .sec04-head .sec-head-list .sec-head-item .fig {
  width: 80px;
}
body.index #section-04 .sec04-head .sec-head-list .sec-head-item .fig .fig-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}
body.index #section-04 .sec04-head .sec-head-list .sec-head-item .main {
  width: calc(100% - 120px);
}
body.index #section-04 .sec04-head .sec-head-list .sec-head-item:last-child {
  margin-bottom: 0;
}
body.index #section-04 .sec04-list .sec04-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  padding-top: 15px;
  gap: 40px;
}
@media (max-width: 768px) {
  body.index #section-04 .sec04-list .sec04-item {
    gap: 30px;
  }
}
body.index #section-04 .sec04-list .sec04-item .fig {
  width: 80px;
}
body.index #section-04 .sec04-list .sec04-item .fig .fig-wrapper {
  margin-bottom: 10px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}
body.index #section-04 .sec04-list .sec04-item .fig .fig-name {
  color: var(--color-text-default, #44423C);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.4px;
}
body.index #section-04 .sec04-list .sec04-item .main {
  position: relative;
  width: calc(100% - 120px);
  padding: 9px 18px;
  border-radius: var(--corner-radius-md, 10px);
  border: var(--border-size-bold, 3px) solid var(--color-text-subtle, #555);
  background: var(--background-color-subtler, #FFF);
}
body.index #section-04 .sec04-list .sec04-item .main p {
  font-size: var(--text-size-default, 16px);
  line-height: var(--text-lh-default, 2);
  letter-spacing: var(--text-letter-spacing-default, 1.6px);
}
body.index #section-04 .sec04-list .sec04-item .main::before {
  content: "";
  position: absolute;
  left: -29px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-right: 29px solid var(--color-text-subtle, #555);
}
body.index #section-04 .sec04-list .sec04-item .main::after {
  content: "";
  position: absolute;
  left: -22px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-right: 23px solid var(--background-color-subtler, #FFF);
  z-index: 1;
}
body.index #section-04 .sec04-list .sec04-item:nth-child(even) {
  flex-direction: row-reverse;
}
body.index #section-04 .sec04-list .sec04-item:nth-child(even) .main::before {
  left: unset;
  right: -29px;
  transform: translateY(-50%) rotate(180deg);
}
body.index #section-04 .sec04-list .sec04-item:nth-child(even) .main::after {
  left: unset;
  right: -22px;
  transform: translateY(-50%) rotate(180deg);
}
body.index #section-05 .sec05-lead {
  margin-bottom: 40px;
  padding: 0 125px;
}
@media (max-width: 768px) {
  body.index #section-05 .sec05-lead {
    padding: 0;
  }
}
body.index #section-05 .sec05-list .sec05-item {
  display: flex;
  gap: 40px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  body.index #section-05 .sec05-list .sec05-item {
    margin-bottom: 40px;
  }
}
body.index #section-05 .sec05-list .sec05-item .fig {
  width: 460px;
  border-radius: var(--corner-radius-md, 10px);
  overflow: hidden;
}
@media (max-width: 768px) {
  body.index #section-05 .sec05-list .sec05-item .fig {
    width: 100%;
  }
}
body.index #section-05 .sec05-list .sec05-item .main {
  width: 500px;
}
body.index #section-05 .sec05-list .sec05-item .main .label {
  margin-bottom: 15px;
  color: var(--color-text-default, #44423C);
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.15; /* 115% */
  letter-spacing: 1.8px;
}
@media (max-width: 768px) {
  body.index #section-05 .sec05-list .sec05-item .main .label {
    font-size: var(--text-size-h4, 16px);
    line-height: var(--text-lh-h4, 1.5);
    letter-spacing: var(--text-letter-spacing-h4, 2px);
  }
}
body.index #section-05 .sec05-list .sec05-item .main .ttl {
  margin-bottom: 30px;
  line-height: 1.33;
}
body.index #section-05 .sec05-list .sec05-item .main .txt {
  line-height: 2;
}
body.index #section-05 .sec05-list .sec05-item .main .txt span {
  display: block;
  font-weight: 700;
}
@media (max-width: 768px) {
  body.index #section-05 .sec05-list .sec05-item .main {
    width: 100%;
  }
}
@media (max-width: 768px) {
  body.index #section-05 .sec05-list .sec05-item {
    flex-direction: column;
  }
}
body.index #section-05 .sec05-tail .ttl {
  margin-bottom: 40px;
  text-align: center;
  font-size: 30px;
  line-height: 1.33;
}
@media (max-width: 768px) {
  body.index #section-05 .sec05-tail .ttl {
    text-align: left;
    font-size: var(--text-size-h3, 20px);
    line-height: var(--text-lh-h3, 1.15);
    letter-spacing: var(--text-letter-spacing-h3, 2px);
  }
}
body.index #section-05 .sec05-tail .txt {
  padding: 0 250px;
}
@media (max-width: 768px) {
  body.index #section-05 .sec05-tail .txt {
    padding: 0;
  }
}
body.index #section-05 .sec05-tail .txt span {
  font-weight: 700;
}
body.index #section-06 {
  background: var(--background-color-subtle, #F6F3F1);
}
body.index #section-06 .container {
  padding: 0 125px;
}
@media (max-width: 768px) {
  body.index #section-06 .container {
    padding: 0 16px;
  }
}
body.index #section-06 .melit-box .melit-box-head {
  padding: 20px;
  border-radius: var(--corner-radius-md, 10px) var(--corner-radius-md, 10px) var(--corner-radius-none, 0) var(--corner-radius-none, 0);
  background: var(--background-color-primary, #DC8331);
}
body.index #section-06 .melit-box .melit-box-head h3 {
  text-align: center;
  color: #ffffff;
}
body.index #section-06 .melit-box .melit-box-body {
  padding: 30px;
  border-radius: var(--corner-radius-none, 0) var(--corner-radius-none, 0) var(--corner-radius-md, 10px) var(--corner-radius-md, 10px);
  border-right: var(--border-size-normal, 1px) solid var(--border-color-default, #DDD);
  border-bottom: var(--border-size-normal, 1px) solid var(--border-color-default, #DDD);
  border-left: var(--border-size-normal, 1px) solid var(--border-color-default, #DDD);
  background: var(--background-color-subtler, #FFF);
}
body.index #section-06 .melit-box .melit-box-body ol {
  list-style: none;
  counter-reset: num;
}
body.index #section-06 .melit-box .melit-box-body ol li {
  counter-increment: num;
  position: relative;
  margin-left: 30px;
  color: var(--color-text-default, #44423C);
  font-family: "Noto Sans JP";
  font-size: var(--text-size-h4, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--text-lh-h4, 1.5);
  letter-spacing: var(--text-letter-spacing-h4, 2.4px);
}
@media (max-width: 768px) {
  body.index #section-06 .melit-box .melit-box-body ol li {
    font-size: var(--text-size-h4, 16px);
    letter-spacing: var(--text-letter-spacing-h4, 2px);
  }
}
body.index #section-06 .melit-box .melit-box-body ol li::before {
  /* 半角数字を全角に変換 */
  content: counter(num, decimal); /* 1, 2, 3,... */
  font-family: "Noto Sans JP", sans-serif;
  position: absolute;
  left: -30px;
  /* 半角→全角に置換 */
  content: counter(num, decimal) ".";
}
body.index #section-06 .melit-box .melit-box-body ol .txt {
  margin-top: 4px;
  margin-bottom: 45px;
}
body.index #section-06 .melit-box .melit-box-body ol .txt span {
  font-weight: 700;
}
body.index #section-06 .melit-box .melit-box-body ol .txt:last-child {
  margin-bottom: 0;
}
body.index #section-07 .flow-list {
  padding: 0 100px;
}
@media (max-width: 768px) {
  body.index #section-07 .flow-list {
    padding: 0;
  }
}
body.index #section-07 .flow-list .flow-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 35px;
  padding: 45px 0;
}
@media (max-width: 768px) {
  body.index #section-07 .flow-list .flow-item {
    flex-direction: column;
    padding: 30px 0;
    gap: 30px;
  }
}
body.index #section-07 .flow-list .flow-item .fig {
  width: 280px;
}
@media (max-width: 768px) {
  body.index #section-07 .flow-list .flow-item .fig {
    width: 100%;
  }
}
body.index #section-07 .flow-list .flow-item .fig .fig-wrapper {
  width: 280px;
  height: 280px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
}
body.index #section-07 .flow-list .flow-item .main {
  width: calc(100% - 320px);
}
@media (max-width: 768px) {
  body.index #section-07 .flow-list .flow-item .main {
    width: 100%;
  }
}
body.index #section-07 .flow-list .flow-item .main h3 {
  margin-bottom: 40px;
}
body.index #section-07 .flow-list .flow-item .main p {
  line-height: 2;
}
body.index #section-07 .flow-list .flow-item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -35px;
  transform: translateX(-50%);
  width: 100%;
  height: 35px;
  background: url(../img/flow-arrow.svg) no-repeat;
  background-position: center;
  background-size: contain;
}
body.index #section-07 .flow-list .flow-item:last-child {
  margin-bottom: 0;
}
body.index #section-07 .flow-list .flow-item:last-child::after {
  content: none;
}
body.index #section-08 {
  background: var(--background-color-subtle, #F6F3F1);
}
body.index #section-08 .price-wrapper {
  padding: 0 125px;
}
@media (max-width: 768px) {
  body.index #section-08 .price-wrapper {
    padding: 0;
  }
}
body.index #section-08 .price-wrapper .price-box {
  padding: 32px 40px;
  border-radius: var(--corner-radius-md, 10px);
  border: 1px solid var(--border-color-default, #DDD);
  background: var(--background-color-subtler, #FFF);
}
body.index #section-08 .price-wrapper .price-box h4 {
  margin-bottom: 12px;
  text-align: center;
}
@media (max-width: 768px) {
  body.index #section-08 .price-wrapper .price-box h4 {
    font-size: var(--text-size-h4, 24px);
  }
}
body.index #section-08 .price-wrapper .price-box h3 {
  margin-bottom: 24px;
  text-align: center;
}
@media (max-width: 768px) {
  body.index #section-08 .price-wrapper .price-box h3 {
    font-size: var(--text-size-h4, 16px);
    letter-spacing: var(--text-letter-spacing-h4, 2px);
  }
}
@media (max-width: 768px) {
  body.index #section-08 .price-wrapper .price-box h3 .label {
    display: block;
    margin-bottom: 32px;
  }
}
body.index #section-08 .price-wrapper .price-box h3 .price {
  font-size: 44px;
}
body.index #section-08 .price-wrapper .price-box h3 .tax {
  font-size: 22px;
}
@media (max-width: 768px) {
  body.index #section-08 .price-wrapper .price-box h3 .tax {
    font-size: 20px;
  }
}
body.index #section-08 .price-wrapper .price-box .txt {
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.72;
}
body.index #section-08 .price-wrapper .price-box .txt.tail {
  margin-bottom: 0;
  color: var(--color-text-subtler, #999);
}
body.index #section-08 .price-wrapper .price-box ul {
  margin-bottom: 4px;
  padding: 0 0 0 24px;
}
body.index #section-08 .price-wrapper .price-box ul li {
  position: relative;
  margin-bottom: 4px;
  line-height: 2;
  font-family: "Noto Sans JP";
  font-size: var(--text-size-default, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: var(--text-lh-default, 2);
  letter-spacing: var(--text-letter-spacing-default, 1.6px);
}
@media (max-width: 768px) {
  body.index #section-08 .price-wrapper .price-box ul li {
    font-size: var(--text-size-default, 14px);
  }
}
body.index #section-08 .price-wrapper .price-box ul li.bold {
  font-weight: 700;
}
body.index #section-09 .guide-list .guide-item {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  body.index #section-09 .guide-list .guide-item {
    margin-bottom: 24px;
  }
}
body.index #section-09 .guide-list .guide-item .ttl {
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 768px) {
  body.index #section-09 .guide-list .guide-item .ttl {
    margin-bottom: 24px;
  }
}
body.index #section-09 .guide-list .guide-item .wrapper {
  padding: 0 250px;
}
@media (max-width: 768px) {
  body.index #section-09 .guide-list .guide-item .wrapper {
    padding: 0;
  }
}
body.index #section-09 .guide-list .guide-item .txt {
  margin-bottom: 20px;
  line-height: 2;
}
body.index #section-09 .guide-list .guide-item .txt span {
  display: block;
  font-weight: 700;
}
body.index #section-09 .guide-list .guide-item .txt:last-child {
  margin-bottom: 0;
}
body.index #section-09 .guide-list .guide-item ol {
  list-style: none;
  counter-reset: num;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  body.index #section-09 .guide-list .guide-item ol {
    margin-bottom: 20px;
  }
}
body.index #section-09 .guide-list .guide-item ol li {
  counter-increment: num;
  position: relative;
  margin-left: 20px;
  color: var(--color-text-default, #44423C);
  /* text/default/1-bold */
  font-family: "Noto Sans JP";
  font-size: var(--text-size-default, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--text-lh-default, 32px); /* 200% */
  letter-spacing: var(--text-letter-spacing-default, 1.6px);
}
@media (max-width: 768px) {
  body.index #section-09 .guide-list .guide-item ol li {
    font-size: var(--text-size-default, 14px);
    letter-spacing: var(--text-letter-spacing-default, 1.4px);
  }
}
body.index #section-09 .guide-list .guide-item ol li::before {
  content: counter(num, decimal);
  content: counter(num, decimal) ".";
  font-family: "Noto Sans JP", sans-serif;
  position: absolute;
  left: -20px;
}
body.index #section-09 .guide-list .guide-item:last-child {
  margin-bottom: 0;
}
body.index #section-11 {
  background: var(--background-color-subtle, #F6F3F1);
}
@media (max-width: 768px) {
  body.index #section-11 .sec-ttl {
    font-size: var(--text-size-h2, 40px);
    line-height: var(--text-lh-h2, 1.15);
    letter-spacing: var(--text-letter-spacing-h2, 4px);
  }
}
body.index #section-11 .head {
  margin-bottom: 0px;
  padding-top: 20px;
  text-align: center;
  line-height: 2;
}
@media (max-width: 768px) {
  body.index #section-11 .head {
    padding-top: 0;
    font-size: 16px;
  }
}
body.index #section-11 form {
  margin-bottom: 60px;
}
body.index #section-11 form .form-group-wrapper {
  padding: 60px 0;
}
@media (max-width: 768px) {
  body.index #section-11 form .form-group-wrapper {
    padding: 40px 0;
  }
}
body.index #section-11 form .form-group-wrapper .form-group {
  display: flex;
  gap: 1px;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 768px) {
  body.index #section-11 form .form-group-wrapper .form-group {
    flex-direction: column;
  }
}
body.index #section-11 form .form-group-wrapper .form-group .form-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 360px;
  color: var(--color-text-inverse, #FFF);
  border-radius: var(--corner-radius-md, 10px) var(--corner-radius-none, 0) var(--corner-radius-none, 0) var(--corner-radius-md, 10px);
  background: #38C5C8;
  font-family: "Noto Sans JP";
  font-size: var(--text-size-default, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: var(--text-lh-default, 2);
  letter-spacing: var(--text-letter-spacing-default, 1.6px);
}
@media (max-width: 768px) {
  body.index #section-11 form .form-group-wrapper .form-group .form-label {
    font-size: var(--text-size-default, 14px);
  }
}
body.index #section-11 form .form-group-wrapper .form-group .form-label.bold {
  font-weight: 700;
}
@media (max-width: 768px) {
  body.index #section-11 form .form-group-wrapper .form-group .form-label {
    width: 100%;
    height: 52px;
    border-radius: var(--corner-radius-md, 10px) var(--corner-radius-md, 10px) var(--corner-radius-none, 0) var(--corner-radius-none, 0);
  }
}
body.index #section-11 form .form-group-wrapper .form-group .form-label::after {
  margin-left: 4px;
  padding: 4px 6px;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 12px; /* 100% */
  letter-spacing: 1.2px;
  border-radius: 3px;
}
body.index #section-11 form .form-group-wrapper .form-group .form-label.required::after {
  content: "必須";
  color: var(--color-text-inverse, #FFF);
  background: var(--background-color-secondary, #FFA500);
}
body.index #section-11 form .form-group-wrapper .form-group .form-label.optional::after {
  content: "任意";
  color: var(--color-text-secondary, #FFA500);
  background: var(--background-color-subtlebtn, #EEE);
}
body.index #section-11 form .form-group-wrapper .form-group .form-input {
  width: 639px;
  padding: 14px 30px;
  border-radius: var(--corner-radius-none, 0) var(--corner-radius-md, 10px) var(--corner-radius-md, 10px) var(--corner-radius-none, 0);
  border: 1px solid var(--border-color-default, #DDD);
  background: var(--background-color-subtler, #FFF);
}
@media (max-width: 768px) {
  body.index #section-11 form .form-group-wrapper .form-group .form-input {
    width: 100%;
    border-radius: var(--corner-radius-none, 0) var(--corner-radius-none, 0) var(--corner-radius-md, 10px) var(--corner-radius-md, 10px);
  }
}
body.index #section-11 form .form-group-wrapper .form-group .form-input.radio-group {
  padding-top: 30px;
  padding-bottom: 30px;
}
body.index #section-11 form .form-group-wrapper .form-group .form-input.radio-group .radio-item {
  display: flex;
  align-items: center;
}
body.index #section-11 form .form-group-wrapper .form-group .form-input.radio-group .radio-item input[type=radio] {
  position: absolute;
  opacity: 0;
}
body.index #section-11 form .form-group-wrapper .form-group .form-input.radio-group .radio-item input[type=radio] + label {
  position: relative;
  display: inline-block;
  padding-left: 26px;
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 1.6px;
  cursor: pointer;
}
body.index #section-11 form .form-group-wrapper .form-group .form-input.radio-group .radio-item input[type=radio] + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  border: 1px solid #A0AAA5;
}
body.index #section-11 form .form-group-wrapper .form-group .form-input.radio-group .radio-item input[type=radio]:checked + label::before {
  box-shadow: inset 0 0 0 4px #FFF;
  background-color: #A0AAA5;
}
body.index #section-11 form .form-group-wrapper .form-group .form-input input[type=text], body.index #section-11 form .form-group-wrapper .form-group .form-input input[type=email], body.index #section-11 form .form-group-wrapper .form-group .form-input input[type=tel] {
  width: 100%;
  border: none;
  outline: none;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 2; /* 200% */
  letter-spacing: 1.6px;
}
body.index #section-11 form .form-group-wrapper .form-group .form-input input[type=text]::-moz-placeholder, body.index #section-11 form .form-group-wrapper .form-group .form-input input[type=email]::-moz-placeholder, body.index #section-11 form .form-group-wrapper .form-group .form-input input[type=tel]::-moz-placeholder {
  color: var(--text-color-placaholder, #DDD);
}
body.index #section-11 form .form-group-wrapper .form-group .form-input input[type=text]::placeholder, body.index #section-11 form .form-group-wrapper .form-group .form-input input[type=email]::placeholder, body.index #section-11 form .form-group-wrapper .form-group .form-input input[type=tel]::placeholder {
  color: var(--text-color-placaholder, #DDD);
}
body.index #section-11 form .form-group-wrapper .form-group .form-input textarea {
  width: 100%;
  height: 160px;
  resize: none;
  border: none;
  outline: none;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px; /* 200% */
  letter-spacing: 1.6px;
}
body.index #section-11 form .form-group-wrapper .form-group .form-input textarea::-moz-placeholder {
  color: var(--text-color-placaholder, #DDD);
}
body.index #section-11 form .form-group-wrapper .form-group .form-input textarea::placeholder {
  color: var(--text-color-placaholder, #DDD);
}
body.index #section-11 form .submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 455px;
  height: 80px;
  margin: 0 auto;
  border: none;
  outline: none;
  border-radius: 10px;
  background: var(--background-color-primary, #DC8331);
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
  transition: ease all 0.3s;
  cursor: pointer;
}
body.index #section-11 form .submit-btn:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  body.index #section-11 form .submit-btn {
    width: 100%;
  }
}
body.index #section-11 form .submit-btn span {
  display: inline-block;
}
body.index #section-11 form .submit-btn span.text {
  margin-left: 8px;
  color: var(--text-color-primary, #FFF);
  /* text/btn/primary */
  font-family: "Noto Sans JP";
  font-size: var(--text-size-btn-primary, 26px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--text-size-btn-primary, 26px); /* 100% */
  letter-spacing: var(--text-letter-spacing-btn-primary, 2.6px);
}
body.index #section-11 .copyright {
  color: var(--color-text-default, #444);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 2; /* 200% */
  letter-spacing: 1.6px;
}
body.thanks #section-thanks .container {
  padding: 0 125px;
}
@media (max-width: 768px) {
  body.thanks #section-thanks .container {
    padding: 0 32px;
  }
}
body.thanks #section-thanks .txt {
  margin-bottom: 40px;
}
body.thanks #section-thanks a {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  padding: 24px 24px;
  justify-content: center;
  align-items: center;
  border-radius: var(--corner-radius-md, 10px);
  border: var(--border-size-bold, 3px) solid var(--background-color-primary, #DC8331);
  background: #FFF;
  transition: ease all 0.3s;
}
body.thanks #section-thanks a span {
  display: inline-block;
  color: var(--background-color-primary, #DC8331);
  /* text/btn/primary */
  font-family: "Noto Sans JP";
  font-size: var(--text-size-btn-primary, 26px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--text-size-btn-primary, 26px); /* 100% */
  letter-spacing: var(--text-letter-spacing-btn-primary, 2.6px);
}
body.thanks #section-thanks a:hover {
  opacity: 0.7;
}

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

.sp {
  display: none;
}
@media (max-width: 768px) {
  .sp {
    display: block;
  }
}