*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  line-height: 1.6;
  height: 100%;
}
@media screen and (min-width: 1441px) {
  html {
    font-size: 62.5%;
  }
}
@media screen and (max-width: 1440px) {
  html {
    font-size: 0.6944444444vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 1.3333333333vw;
  }
}

body {
  color: #000;
  background-color: #fff;
  font-size: 1.6rem;
  font-family: "Noto Serif JP", Georgia, "Times New Roman", Times, serif;
  font-weight: 600;
  width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
}
@media screen and (max-width: 750px) {
  body {
    width: 100%;
  }
}

h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

img,
picture,
video,
object {
  max-width: 100%;
  width: 100%;
  height: auto;
  border: none;
  display: block;
}

a {
  color: #a71f37;
  transition: opacity 0.3s;
  text-decoration: underline;
}
a:hover img {
  opacity: 0.8;
  transition: opacity 0.3s;
}

@keyframes shine {
  0% {
    transform: scale(0) rotate(25deg);
    opacity: 0;
  }
  50% {
    transform: scale(1) rotate(25deg);
    opacity: 1;
  }
  100% {
    transform: scale(50) rotate(25deg);
    opacity: 0;
  }
}
/* header */
header {
  padding: 2rem 0;
}
header .header-logo {
  margin: 0 auto;
  width: 35rem;
}
@media (min-width: 768px) {
  header {
    padding: 1.5rem 0;
  }
  header .header-logo {
    margin: 0;
    width: 17.5rem;
  }
}

/* components */
.inner {
  padding: 0 3rem;
  max-width: 75rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .inner {
    max-width: 144rem;
  }
}

.section {
  padding: 5rem 0 9rem;
  position: relative;
}
.section-title {
  margin-bottom: 5rem;
}
.section-title h2 {
  font-size: 5rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}
.section-title h2 .large {
  font-size: 6.4rem;
}
.section-title h2 .num {
  font-size: 6rem;
  font-weight: 800;
}

.cta-inner {
  margin: 0 auto;
  padding: 3rem;
}
.cta-button {
  background: linear-gradient(0deg, rgb(179, 115, 20) 20%, rgb(255, 164, 28) 100%);
  border-radius: 1rem;
  filter: drop-shadow(0 1rem 0 rgb(229, 148, 25));
}
.cta-button a {
  display: block;
  color: #fff;
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.2;
  padding-bottom: 2rem;
  text-align: center;
  text-decoration: none;
  filter: drop-shadow(0 0.3rem 0 rgba(0, 0, 0, 0.5));
}
.cta-button a .small {
  font-size: 3.4rem;
}
.cta-button a .num {
  font-size: 4.4rem;
}
@media (min-width: 768px) {
  .cta-inner {
    max-width: 75rem;
    padding: 3rem 0;
  }
  .cta-button a {
    font-size: 4.5rem;
    line-height: 1.1;
    padding-bottom: 1.5rem;
  }
  .cta-button a .small {
    font-size: 2.7rem;
  }
  .cta-button a .num {
    font-size: 3.5rem;
  }
}

.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(100%);
  transition: transform 0.5s;
  z-index: 10;
}
.fixed-cta.is-fixed {
  transform: translateY(0);
}
@media (min-width: 768px) {
  .fixed-cta .cta-inner {
    padding: 1.5rem 0 2rem;
  }
}

.marker {
  background: linear-gradient(transparent 70%, rgb(255, 255, 0) 70%);
}

.sp {
  display: block !important;
}

.pc {
  display: none !important;
}

@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
  .pc {
    display: block !important;
  }
}
/* contents */
.fv {
  padding-bottom: 3rem;
}
.fv-main {
  background: url("../../assets/img/fv_bg.webp") no-repeat center/cover;
  height: 67rem;
}
.fv-main h1 {
  font-size: 4.6rem;
  font-weight: 600;
  line-height: 6.6rem;
  padding-top: 3rem;
}
.fv-main h1 .small {
  font-size: 3.8rem;
}
.fv-main h1 .name {
  display: inline-block;
  color: #fff;
  background-color: #a71f37;
  font-size: 6.2rem;
  margin-top: 1rem;
  padding: 0 1rem 1rem;
  position: relative;
  overflow: hidden;
}
.fv-main h1 .name::before {
  content: "";
  position: absolute;
  top: -10rem;
  left: -10rem;
  width: 5rem;
  height: 5rem;
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgb(255, 255, 255) 100%, rgba(255, 255, 255, 0) 0%);
  animation: shine 3s ease infinite;
}
.fv-sub {
  color: #fff;
  background: radial-gradient(circle at top, rgb(167, 31, 55) 0%, rgb(80, 2, 16) 100%);
  padding: 2rem 0;
}
.fv-sub-authority {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6.5rem;
  padding: 1rem 0;
}
.fv-sub-authority li {
  text-align: center;
  font-weight: 700;
  position: relative;
}
.fv-sub-authority li::before {
  content: "";
  position: absolute;
  background: url(../../assets/img/fv_authority_bg_l.webp) no-repeat center/contain;
  top: 50%;
  left: -3.6rem;
  transform: translateY(-50%);
  width: 4.6rem;
  height: 12rem;
}
.fv-sub-authority li::after {
  content: "";
  position: absolute;
  background: url(../../assets/img/fv_authority_bg_r.webp) no-repeat center/contain;
  top: 50%;
  right: -3.6rem;
  transform: translateY(-50%);
  width: 4.6rem;
  height: 12rem;
}
.fv-sub-authority dl {
  line-height: 1;
  background: linear-gradient(135deg, #c39b62 0%, #cca13e 19%, #fffdca 34%, #e5bf5e 51%, #fffdca 67%, #cca13e 85%, #9a6f1b 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  /*text-fill-color: transparent;*/
  filter: drop-shadow(0 0.3rem 0 rgb(40, 28, 0));
}
.fv-sub-authority dl dt {
  font-size: 2.6rem;
}
.fv-sub-authority dl dt .small {
  font-size: 1.8rem;
}
.fv-sub-authority dl dd {
  font-size: 3rem;
  margin-top: 0.5rem;
}
.fv-sub-authority dl dd .large {
  font-size: 4.6rem;
}
.fv-sub-authority dl dd .small {
  font-size: 2.4rem;
}
.fv-sub-description {
  color: #fff;
  text-align: center;
  font-size: 2.8rem;
  line-height: 1.5;
}
.fv-company {
  overflow: hidden;
  margin-top: 3rem;
}
.fv-company .swiper-wrapper {
  transition-timing-function: linear;
}
.fv-company .swiper-slide img {
  margin: 0 auto;
}
.fv .cta-inner {
  padding: 1.5rem 3rem;
}
@media (min-width: 768px) {
  .fv-main {
    background: url("../../assets/img/fv_bg_pc.webp") no-repeat center bottom/contain;
    height: 33.3333333333vw;
  }
  .fv-company {
    margin-top: 0;
  }
  .fv-company .swiper-slide img {
    width: 30rem;
  }
  .fv .cta-inner {
    padding: 3rem 0;
  }
}

.strength-visual {
  padding-bottom: 2rem;
}
.strength-subtitle {
  font-size: 3.2rem;
  font-weight: 400;
  text-align: center;
  position: relative;
}
.strength-subtitle::before {
  position: absolute;
  content: "";
  left: 50%;
  top: calc(50% - 0.1rem);
  transform: translateX(-50%);
  width: 50%;
  height: 0.2rem;
  background-color: #000;
}
.strength-subtitle .line {
  position: relative;
  padding: 0 0.5em;
  background-color: #fff;
}
.strength-content h3 {
  font-size: 3.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  border-left: 1.5rem solid #a71f37;
}
.strength-content p {
  font-size: 3rem;
}
.strength-table table {
  font-size: 3.2rem;
  width: 137.8rem;
}
.strength-table table thead th {
  border-bottom: 1px solid #b3b3b3;
  font-size: 3rem;
  line-height: 1.2;
  padding: 1.5rem 0;
  text-align: center;
}
.strength-table table thead th.strength-table-antelope img {
  margin: 0 auto;
  width: 32rem;
}
.strength-table table tbody {
  line-height: 1.4;
}
.strength-table table tbody th {
  border-bottom: 1px solid #b3b3b3;
  border-left: 0.8rem solid #585858;
  font-size: 3.2rem;
  padding: 1.5rem;
  text-align: left;
  width: 25%;
}
.strength-table table tbody td {
  border-bottom: 1px solid #b3b3b3;
  border-left: 1px solid #b3b3b3;
  font-size: 2.8rem;
  padding: 3rem 1.5rem;
  text-align: justify;
  vertical-align: top;
  width: 25%;
}
.strength-table table tbody td:nth-child(2) {
  background-color: #ffeef1;
}
.strength-table table tbody td:last-child {
  border-right: 1px solid #b3b3b3;
}
.strength-table table tbody td .sign {
  color: #a71f37;
  display: block;
  font-size: 10rem;
  line-height: 1;
  text-align: center;
  margin-bottom: 2rem;
}
.strength .scroll-hint-text {
  font-family: sans-serif;
}
@media (min-width: 768px) {
  .strength-visual {
    margin: 0 auto;
    padding-bottom: 4rem;
    width: 75rem;
  }
  .strength-subtitle {
    font-size: 2.6rem;
  }
  .strength-subtitle::before {
    width: 25%;
  }
  .strength-content h3 {
    font-size: 3rem;
    padding-left: 2.3rem;
    border-left: 0.8rem solid #a71f37;
  }
  .strength-content p {
    font-size: 2.4rem;
  }
  .strength-table {
    font-size: 2rem;
  }
  .strength-table table {
    width: 100%;
  }
  .strength-table table thead th {
    font-size: 2.4rem;
  }
  .strength-table table thead th.strength-table-antelope img {
    width: 24rem;
  }
  .strength-table table tbody th {
    border-left: 0.8rem solid #585858;
    font-size: 2rem;
    padding: 1.5rem;
  }
  .strength-table table tbody td {
    border-left: 1px solid #b3b3b3;
    font-size: 2rem;
    padding: 3rem 1.5rem;
  }
  .strength-table table tbody td .sign {
    font-size: 8rem;
  }
}
@media (min-width: 1440px) {
  .strength {
    margin: 0 auto;
    max-width: 140rem;
  }
}

.reason {
  color: #fff;
  background-color: #a71f37;
  margin: 16rem 0 6rem;
  padding-top: 11rem;
}
.reason::before {
  position: absolute;
  content: "";
  top: -8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.2rem;
  height: 16rem;
  background-color: #000;
}
.reason::after {
  position: absolute;
  content: "";
  top: 5rem;
  left: calc(50% - 0.8rem);
  transform: translateX(-50%) rotate(-30deg);
  width: 0.2rem;
  height: 3rem;
  background-color: #000;
}
.reason .section-title {
  margin-bottom: 9rem;
}
.reason-point {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
.reason-point-box > dl {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  line-height: 0.9;
  margin-bottom: 3rem;
}
.reason-point-box > dl > dt {
  color: #a71f37;
  background-color: #fff;
  font-size: 2.4rem;
  padding: 1rem;
  text-align: center;
  width: 9.3rem;
}
.reason-point-box > dl > dt .num {
  font-size: 8rem;
  font-weight: 800;
}
.reason-point-box > dl > dd {
  font-size: 4.2rem;
  font-weight: 500;
  line-height: 1.2;
}
.reason-point-text {
  background-color: #fff;
  color: #000;
  font-size: 3rem;
  padding: 5rem 4rem;
  text-align: justify;
}
@media (min-width: 768px) {
  .reason-point {
    flex-direction: row;
    align-items: stretch;
    gap: 2rem;
  }
  .reason-point-box {
    background-color: #fff;
    flex: 1;
  }
  .reason-point-box > dl {
    background-color: #a71f37;
    gap: 1rem;
    margin-bottom: 0;
    padding-bottom: 2rem;
  }
  .reason-point-box > dl > dt {
    font-size: 2.4rem;
    line-height: 0.9;
    padding: 1rem;
    width: 8rem;
  }
  .reason-point-box > dl > dt .num {
    font-size: 6rem;
  }
  .reason-point-box > dl > dd {
    font-size: 3rem;
  }
  .reason-point-text {
    background-color: transparent;
    font-size: 2.4rem;
    padding: 3rem 2rem;
  }
}

.specialist {
  background: url("../../assets/img/specialist_bg.webp") no-repeat center 7.2rem/cover;
  margin-top: 10rem;
  padding-bottom: 3rem;
}
.specialist .section-title .large {
  color: #a71f37;
}
.specialist-member {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.specialist-box {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 1.2rem;
  box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.15);
}
.specialist-box-border {
  border: 1px solid #a71f37;
  padding: 3rem;
  height: 100%;
}
.specialist-profile {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}
.specialist-profile img {
  width: 15.9rem;
}
.specialist-profile dl {
  width: calc(100% - 15.9rem - 2rem);
}
.specialist-profile dl dt {
  font-size: 4.4rem;
  margin-bottom: 1.1rem;
}
.specialist-profile dl dd {
  font-size: 2.4rem;
}
.specialist-description {
  font-size: 3rem;
  text-align: justify;
  margin-bottom: 5rem;
}
.specialist-genre {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 2.8rem;
}
.specialist-genre dt {
  display: inline-block;
  color: #fff;
  background-color: #a71f37;
  margin-bottom: 2.8rem;
  padding: 0.5rem 1rem;
}
.specialist-genre dd ul {
  line-height: 1.4;
}
.specialist-genre dd ul li {
  display: inline-block;
  position: relative;
}
.specialist-genre dd ul li:not(:last-child) {
  margin-right: 1.5rem;
}
.specialist-genre dd ul li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.4em;
  transform: translateY(-50%) rotate(15deg);
  width: 1px;
  height: 1em;
  background-color: #000;
}
@media (min-width: 768px) {
  .specialist {
    background: url("../../assets/img/specialist_bg_pc.webp") no-repeat center top/cover;
  }
  .specialist-member {
    flex-direction: unset;
    flex-wrap: wrap;
    gap: 3rem;
  }
  .specialist-box {
    width: calc((100% - 3rem) / 2);
  }
  .specialist-profile {
    margin-bottom: 2rem;
  }
  .specialist-profile dl dt {
    font-size: 3rem;
    margin-bottom: 1.1rem;
  }
  .specialist-profile dl dd {
    font-size: 1.8rem;
  }
  .specialist-description {
    font-size: 2.4rem;
    margin-bottom: 5rem;
  }
  .specialist-genre {
    font-size: 2.4rem;
  }
  .specialist-genre dt {
    margin-bottom: 1.4rem;
    padding: 0.2rem 0.8rem;
  }
}
.flow {
  border-top: 0.5rem solid #a71f37;
  background: url("../../assets/img/flow_bg.webp") no-repeat center top/contain;
  margin-top: 3rem;
  padding: 6rem 0 10rem;
}
.flow .section-title h2 {
  color: #a71f37;
  margin-bottom: 4rem;
}
.flow .section-title p {
  font-size: 3.4rem;
}
.flow-box {
  background-color: #fff;
  border: 0.4rem solid #a71f37;
  box-shadow: 0.8rem 1rem 0 rgba(0, 0, 0, 0.2);
  padding: 4rem 3rem;
  position: relative;
}
.flow-box:not(:last-child) {
  margin-bottom: 13rem;
}
.flow-box:not(:last-child)::after {
  position: absolute;
  content: "";
  bottom: -9rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3.8rem 4.1rem 0 4.1rem;
  border-color: #a71f37 transparent transparent transparent;
}
.flow-box-ttl {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 2.4rem;
}
.flow-box-ttl dt {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #a71f37;
  font-size: 5.4rem;
  line-height: 1;
  margin-right: 2rem;
  padding: 1rem;
  text-align: center;
  width: 7.2rem;
  height: 7.2rem;
  position: relative;
}
.flow-box-ttl dt::after {
  position: absolute;
  content: "";
  border: 1px solid #a71f37;
  bottom: -0.7rem;
  right: -0.7rem;
  width: 7.2rem;
  height: 7.2rem;
}
.flow-box-ttl dd {
  color: #a71f37;
  font-size: 4rem;
  padding-top: 0.8rem;
  line-height: 1.4;
  width: calc(100% - 7.2rem - 2rem);
}
.flow-box-txt {
  font-size: 3.2rem;
  line-height: 1.4;
  text-align: justify;
}
.flow-box-txt + .flow-box-txt {
  margin-top: 2rem;
}
.flow-box-notice {
  font-size: 2rem;
  line-height: 1.4;
  text-align: justify;
}
.flow-box .cta {
  margin: 3rem 0 4rem;
}
@media (min-width: 768px) {
  .flow {
    background: url("../../assets/img/flow_bg_pc.webp") no-repeat center top;
  }
  .flow .section-title {
    margin: 0 auto 5rem;
    max-width: 100rem;
  }
  .flow .section-title p {
    text-align: center;
  }
  .flow-content {
    margin: 0 auto;
    max-width: 75rem;
  }
  .flow-box {
    box-shadow: 0.4rem 0.5rem 0 rgba(0, 0, 0, 0.2);
  }
  .flow-box:not(:last-child) {
    margin-bottom: 8rem;
  }
  .flow-box:not(:last-child)::after {
    bottom: -6.5rem;
  }
  .flow-box-ttl {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 2.4rem;
  }
  .flow-box-ttl dt {
    font-size: 4.8rem;
    width: 6.6rem;
    height: 6.6rem;
  }
  .flow-box-ttl dt::after {
    bottom: -0.6rem;
    right: -0.6rem;
    width: 6.6rem;
    height: 6.6rem;
  }
  .flow-box-ttl dd {
    font-size: 3.2rem;
    padding-top: 1.2rem;
    width: calc(100% - 6.6rem - 2rem);
  }
  .flow-box-txt {
    font-size: 2.8rem;
  }
  .flow-box-notice {
    font-size: 1.6rem;
  }
  .flow-box .cta {
    margin: 2rem 0 3rem;
  }
}

.review {
  background: linear-gradient(135deg, rgb(167, 31, 55) 0%, rgb(80, 2, 16) 100%);
  padding-top: 6.5rem;
}
.review .section-title h2 {
  color: #fff;
}
.review-content {
  padding: 0 3rem 12rem;
  overflow: hidden;
}
.review-slider {
  position: relative;
}
.review-slider-box {
  background-color: #fff;
  padding-bottom: 5rem;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.2);
  height: auto;
}
.review-slider-ttl {
  border-left: 0.6rem solid #a71f37;
  margin: 0 0 3rem 3rem;
  padding: 3rem 3rem 0 2.4rem;
}
.review-slider-ttl h3 {
  font-size: 3.6rem;
  line-height: 1.4;
  margin-bottom: 2rem;
}
.review-slider-ttl p {
  font-size: 2.8rem;
  text-align: right;
}
.review-slider-txt {
  padding: 0 6rem;
  text-align: justify;
}
.review-slider-txt p {
  font-size: 3.2rem;
}
.review-slider-txt p:not(:last-child) {
  margin-bottom: 1em;
}
.review-slider .swiper-pagination {
  bottom: -6rem;
}
.review-slider .swiper-pagination-bullet {
  background-color: transparent;
  border: 1px solid #fff;
  width: 1.6rem;
  height: 1.6rem;
  opacity: 1;
}
.review-slider .swiper-pagination-bullet-active {
  background-color: #fff;
}
.review-slider .swiper-button-prev {
  background-color: #a71f37;
  border: 1px solid #fff;
  left: -3rem;
  width: 6.4rem;
  height: 6.4rem;
}
.review-slider .swiper-button-prev::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.8rem 2rem 1.8rem 0;
  border-color: transparent #fff transparent transparent;
}
.review-slider .swiper-button-prev svg {
  display: none;
}
.review-slider .swiper-button-next {
  background-color: #a71f37;
  border: 1px solid #fff;
  right: -3rem;
  width: 6.4rem;
  height: 6.4rem;
}
.review-slider .swiper-button-next::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.8rem 0 1.8rem 2rem;
  border-color: transparent transparent transparent #fff;
}
.review-slider .swiper-button-next svg {
  display: none;
}
@media (min-width: 768px) {
  .review-content {
    margin: 0 auto;
    max-width: 106rem;
    overflow: hidden;
  }
  .review-slider .swiper-pagination-bullet {
    margin: 0 1rem !important;
  }
}

.faq-item {
  background-color: #fff;
  border: 1px solid #999;
  border-top: 1rem solid #a71f37;
}
.faq-item:not(:last-child) {
  margin-bottom: 3rem;
}
.faq-item dt {
  font-size: 3.4rem;
  line-height: 1.4;
  padding: 3rem 7rem 3rem 10rem;
  cursor: pointer;
  position: relative;
}
.faq-item dt::before {
  color: #a71f37;
  position: absolute;
  content: "Q";
  top: calc(50% - 1rem);
  left: 2.5rem;
  transform: translateY(-50%);
  font-size: 6rem;
}
.faq-item dt i {
  display: block;
  position: absolute;
  top: 50%;
  right: 2.5rem;
  transform: translateY(-50%);
  transition: rotate 0.3s;
}
.faq-item dt i::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 1.2rem;
  transform: translateY(-50%) rotate(45deg);
  width: 1.8rem;
  height: 1px;
  background-color: #999;
}
.faq-item dt i::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(-45deg);
  width: 1.8rem;
  height: 1px;
  background-color: #999;
}
.faq-item dd {
  display: none;
  border-top: 1px dashed #999;
  font-size: 3.2rem;
  margin: 0 3rem;
  padding: 2.6rem 0 5rem 7rem;
  position: relative;
}
.faq-item dd::before {
  color: #a71f37;
  position: absolute;
  content: "A";
  top: 0;
  left: 0;
  font-size: 6rem;
}
.faq-item dd p:not(:last-child) {
  margin-bottom: 1em;
}
.faq-item.is-open dt i::before {
  transform: translateY(-50%) rotate(-45deg);
}
.faq-item.is-open dt i::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-item.is-open dd {
  display: block;
}
@media (min-width: 768px) {
  .faq-content {
    margin: 0 auto;
    max-width: 100rem;
  }
  .faq-item dt {
    font-size: 2.8rem;
    padding: 2.5rem 6rem 2.5rem 8rem;
  }
  .faq-item dt::before {
    left: 2.5rem;
    font-size: 5rem;
  }
  .faq-item dd {
    font-size: 2.4rem;
    margin: 0 2.5rem;
    padding: 2rem 0 5rem 5.5rem;
    position: relative;
  }
  .faq-item dd::before {
    font-size: 5rem;
  }
  .faq-item dd p:not(:last-child) {
    margin-bottom: 1em;
  }
}

.form {
  background-color: #a71f37;
  padding: 6.5rem 0 5.5rem;
}
.form .section-title {
  color: #fff;
  margin-bottom: 0.6rem;
}
.form .section-title h2 {
  margin-bottom: 5rem;
}
.form .section-title .form-notes {
  font-size: 2.4rem;
  font-weight: 400;
  text-align: left;
}
.form-content {
  background-color: #fff;
  border-radius: 1rem;
  padding: 5rem 3rem;
}
.form-item:not(:last-child) {
  border-bottom: 1px dashed #ccc;
  margin-bottom: 3.2rem;
  padding-bottom: 4rem;
}
.form-item dt {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  padding-left: 3.6rem;
  position: relative;
}
.form-item dt::before {
  position: absolute;
  content: "";
  top: 1.2rem;
  left: 0;
  width: 2.8rem;
  height: 2.8rem;
  background-color: #a71f37;
}
.form-item dd {
  font-size: 2.8rem;
}
.form-item input, .form-item select, .form-item textarea {
  border: 1px solid #ccc;
  border-radius: 0;
  font-family: "Noto Serif JP", serif;
  padding: 1.5rem;
  box-sizing: border-box;
  width: 100%;
}
.form-item input:focus, .form-item select:focus, .form-item textarea:focus {
  border-color: #a71f37;
  border-radius: 0;
  outline: none;
}
.form-item input[type=checkbox] {
  margin: 0;
  margin-right: 1rem;
  vertical-align: -0.4rem;
  width: 3rem;
  height: 3rem;
}
.form-item input[type=number]::-webkit-inner-spin-button,
.form-item input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.form-item .required-mark {
  color: #a71f37;
  margin-left: 0.5rem;
}
.form-item-sector {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.form-item-sector:not(:last-child) {
  margin-bottom: 2rem;
}
.form-item-sector p {
  width: 20%;
}
.form-item-sector select {
  width: 80%;
}
.form-item-name {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.form-item-birth {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.form-item-privacy {
  background-color: #e5e5e5;
  margin-bottom: 2rem;
  padding: 3rem;
  box-sizing: border-box;
  height: 35rem;
  overflow-y: scroll;
}
.form-item-privacy p {
  font-size: 2.8rem;
}
.form-item-privacy p:not(:last-child) {
  margin-bottom: 1.6em;
}
.form-item-agree {
  text-align: center;
}
.form-item-agree input {
  width: auto;
}
.form-button {
  color: #fff;
  display: block;
  background-color: #ffa41c;
  font-size: 3.2rem;
  font-weight: 500;
  margin: 0 auto;
  padding: 1rem;
  text-align: center;
  text-decoration: none;
  width: 32rem;
}
@media (min-width: 768px) {
  .form .section-title {
    margin: 0 auto;
    max-width: 100rem;
  }
  .form-content {
    margin: 0 auto;
    max-width: 100rem;
  }
  .form-item:not(:last-child) {
    margin-bottom: 1.6rem;
    padding-bottom: 2.4rem;
  }
  .form-item dt {
    font-size: 2.2rem;
    padding-left: 2.6rem;
  }
  .form-item dt::before {
    top: 1rem;
    width: 1.8rem;
    height: 1.8rem;
  }
  .form-item dd {
    font-size: 2rem;
  }
  .form-item input, .form-item select, .form-item textarea {
    padding: 1rem;
  }
  .form-item input[type=checkbox] {
    margin: 0;
    margin-right: 0.8rem;
    vertical-align: -0.5rem;
    width: 2.8rem;
    height: 2.8rem;
  }
  .form-item .required-mark {
    margin-left: 0.4rem;
  }
  .form-item-sector:not(:last-child) {
    margin-bottom: 1rem;
  }
  .form-item-sector p {
    width: 15%;
  }
  .form-item-sector select {
    width: 85%;
  }
  .form-item-privacy {
    padding: 2rem;
  }
  .form-item-privacy p {
    font-size: 1.8rem;
  }
  .form-item-privacy p:not(:last-child) {
    margin-bottom: 1.4em;
  }
  .form-item-agree {
    text-align: center;
  }
  .form-item-agree input {
    width: auto;
  }
}

/* footer */
footer {
  padding: 4rem 0;
}
footer .copy {
  font-size: 2.4rem;
  font-weight: 300;
  text-align: center;
}
@media (min-width: 768px) {
  footer {
    padding: 3rem 0;
  }
  footer .copy {
    font-size: 1.4rem;
  }
}