/*　home 共通
------------------------------------------------------------------------------------------------*/

.fv {
  height: 100vh;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  padding-top: 0rem;
  color: #fff;
  text-align: left;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.fv::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 24, 44, 0.42) 0%, rgba(8, 24, 44, 0.18) 42%, rgba(4, 12, 24, 0.34) 100%);
  z-index: -1;
}

.fv-slides {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.fv-slide {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.4s ease;
  will-change: opacity, transform;
  z-index: 0;
}

.fv-slide-1 {
  background-image: url(../images/home/fv-bg.jpg);
}

.fv-slide-2 {
  background-image: url(../images/home/fv-bg_2.jpg);
}

.fv-slide-3 {
  background-image: url(../images/home/fv-bg_3.jpg);
}

.fv-slide.is-current,
.fv-slide.is-entering {
  opacity: 1;
  animation: fvActiveZoom 6.6s linear forwards;
}

.fv-slide.is-current {
  z-index: 1;
}

.fv-slide.is-entering {
  z-index: 2;
}

@keyframes fvActiveZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

.fv .content {
  width: auto;
  max-width: none;
  padding: 0;
  position: absolute;
  left: 5.6rem;
  bottom: 8rem;
  z-index: 1;
}

.fv-copy {
  opacity: 0;
  transition: opacity 1s ease;
}

.fv-copy.load {
  opacity: 1;
}

.fv h1 {
  max-width: 66rem;
  font-size: 5.6rem;
  line-height: 1.35;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.fv .h1-btm {
  max-width: 66rem;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.95;
  margin-top: 2.4rem;
}

.fv img.logo {
  width: 25.5rem;
  margin: 7rem auto 0;
}

.fv .scroll {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 0.9;
  font-weight: 600;
  writing-mode: vertical-rl;
  padding-bottom: 14.5rem;
  position: absolute;
  right: 4rem;
  bottom: 8rem;
  z-index: 1;
}

.fv .scroll::before,
.fv .scroll::after {
  content: "";
  display: block;
  width: 1px;
  background: #fff;
  position: absolute;
  left: 50%;
  margin-left: -0.5px;
}

.fv .scroll::before {
  opacity: 0.4;
  height: 12.5rem;
  bottom: 0;
}

.fv .scroll::after {
  animation: scroll 3s infinite;
}

@keyframes scroll {
  from {
    height: 5rem;
    bottom: 7.5rem;
    opacity: 0;
  }

  20% {
    height: 5rem;
  }

  30% {
    opacity: 1;
  }

  to {
    height: 0;
    bottom: 0;
  }
}


.home-about {
  padding: 10rem 0 10rem;
}

.home-about .content {
  max-width: 118rem;
}

.home-about-main {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 10rem;
}

.home-about-copy {
  max-width: 86rem;
  flex: 1 1 auto;
}

.home-about-image {
  width: 40rem;
  /* flex: 0 0 32rem; */
  object-fit: cover;
}

.home-about .ttl-1 {
  margin-bottom: 6.4rem;
}

.home-about-lead {
  font-size: 3.6rem;
  line-height: 1.35;
  font-weight: 600;
  margin-bottom: 2.8rem;
}

.home-about .btn-wrap {
  display: flex;
  gap: 5rem;
  margin-top: 3rem;
}

.about .about-overview {
  padding: 8rem 0 10rem;
}

.about .about-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6rem;
}

.about .about-copy {
  flex: 1 1 auto;
}

.about .about-image {
  width: 36rem;
  flex: 0 0 32rem;
}

.about .about-overview .ttl-1:not(.home-about-lead) {
  margin-bottom: 2rem;
}

.home-business {
  padding: 10rem 0 10rem;
}

.home-business .business-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);
}

.home-business .business-lead {
  margin: 0 0 4rem;
}

.home-business .business-grid>* {
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.home-business .business-grid-card {
  min-height: 28rem;
  padding: 3.2rem 3rem 3.6rem;
  background: #F8F8F8;
}

.home-business .business-grid-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 2rem;
}

.home-business .business-grid-en {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.home-business .business-grid-card h3 {
  font-size: 2.4rem;
  line-height: 1.45;
  margin-bottom: 1.6rem;
}

.line-arrow-link {
  display: inline-flex;
  align-items: center;
  width: 24rem;
  min-height: 5.6rem;
  padding: 0 5.6rem 0 2rem;
  border: 1px solid var(--color-border);
  position: relative;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  transition: color 0.3s, border-color 0.3s;
  z-index: 0;
}

.line-arrow-link::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #171717;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transform: translateX(-100%);
  transition: transform 0.3s;
}

.line-arrow-link::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-top: 1.5px solid #171717;
  border-right: 1.5px solid #171717;
  position: absolute;
  top: 50%;
  right: 2.2rem;
  transform: translateY(-50%) rotate(45deg);
  transition: border-color 0.3s;
}

.line-arrow-link:hover {
  opacity: 1;
  color: #fff;
}

.line-arrow-link:hover::after {
  transform: translateX(0);
}

.line-arrow-link:hover::before {
  border-color: #fff;
}

.line-arrow-link-left {
  padding: 0 6rem 0 8rem;
}

.line-arrow-link-left::before {
  left: 2.2rem;
  right: auto;
  transform: translateY(-50%) rotate(-135deg);
}

.home-business .business-grid-card p {
  font-size: 1.5rem;
  line-height: 1.9;
}

.home-business .business-grid-link {
  flex-shrink: 0;
  display: flex;
}

.home-business .business-grid-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  margin-top: 4rem;
}

.home-business .business-grid-note {
  font-size: 1.6rem;
  line-height: 1.9;
}

.home-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.home-banner .sp {
  display: none;
}

.home-news {
  padding: 10rem 0 10rem;
}

.home-news .ttl-1 {
  margin-bottom: 0;
}

.home-news-main {
  display: grid;
  grid-template-columns: 40rem 1fr;
  align-items: start;
}

.home-news-side {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.home-news-head {
  margin-bottom: 3rem;
}

.home-news-link {
  justify-content: flex-start;
  margin-top: auto;
}

.home-news-list {
  list-style: none;
  margin: 0;
  margin-right: 4rem;
  padding: 0;
  border-top: 1px solid #d9d9d9;
}

.home-news-list li {
  border-bottom: 1px solid #d9d9d9;
}

.home-news-list li a {
  display: grid;
  grid-template-columns: 14rem 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2.4rem 0;
}

.news-date {
  display: block;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  line-height: 1;
}


/*　business 共通
------------------------------------------------------------------------------------------------*/

.business .business-services {
  margin: 0 auto 8rem;
}

.business .sec-intro {
  padding: 8rem 0 8rem;
}

.business .sec-intro p {
  font-size: 1.8rem;
  line-height: 2;
}

.business .sec-intro p + p {
  margin-top: 2.4rem;
}

.business .business-services ul li {
  display: grid;
  grid-template-columns: 40rem 1fr;
  align-items: stretch;
  min-height: 42rem;
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.business .business-services ul li+li {
  margin-top: -1px;
}

.business .business-services ul li img.img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business .business-services ul li .txt {
  width: 100%;
  padding: 4.8rem 5rem;
}

.business .business-en {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1.2rem;
  line-height:1;
}

.business .business-services ul li .txt h3 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.business .business-services ul li .txt p {
  font-size: 1.7rem;
  line-height: 1.95;
}

.business .business-services ul li .txt p + p {
  margin-top: 2rem;
}

.business .sec-approach {
  padding: 2rem 0 10rem;
}

.business .sec-approach .ttl-1 {
  margin-bottom: 4rem;
}

.business .sec-approach p {
  font-size: 1.8rem;
  line-height: 2;
}

.business .sec-approach p + p {
  margin-top: 2.4rem;
}




/*　company 共通
------------------------------------------------------------------------------------------------*/

.company .company-profile {
  padding: 4rem 0 8rem;
}

.company .company-profile .content {
  max-width: 88rem;
}

.company .company-map-wrap {
  margin-top: 6rem;
}

.company .company-map {
  display: block;
  width: 100%;
  height: 42rem;
  border: 0;
  filter: grayscale(1);
}


form {
  display: block;
  max-width: 108rem;
  margin: 4rem auto 0;
  padding: 4rem;
  background: #F4F4F4;
}

form dl dt.required::after {
  content: "*";
  color: #C5302C;
  margin-left: 0.5em;
}

form dl dt {
  color: #171717;
  font-weight: 500;
  margin-bottom: 0.4em;
}

form dl dd {
  margin-bottom: 2.8rem;
}

form input[type="text"],
form input[type="email"],
form textarea {
  display: block;
  width: 100%;
  padding: 0.8em 0.8em;
  font-size: 1.6rem;
  border: 1px solid var(--color-border);
}

form textarea {
  height: 28rem;
  resize: none;
}

form select {
  display: block;
  width: 100%;
  padding: 0.8em 3em 0.8em 1em;
  font-size: 1.6rem;
  border: 0;
  background: #fff url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2010%206%22%3E%3Cpath%20d%3D%22M1%201l4%204%204-4%22%20fill%3D%22none%22%20stroke%3D%22%23001624%22%20stroke-width%3D%221%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E') no-repeat right 1.2rem center;
  background-size: 1.2rem auto;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.select-wrap.birth-select {
  display: flex;
  gap: 1rem;
}

.select-wrap.birth-select select {
  flex: 1;
}

form input[type="submit"] {
  display: block;
  width: 100%;
  line-height: 6rem;
  color: #fff;
  background: #171717;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='16' viewBox='0 0 10 16'%3E%3Cpath d='M1 1l7 7-7 7' fill='none' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2.4rem center;
  background-size: 1rem auto;
  border: 0;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin: 0 auto;
  transition: opacity 0.3s;
}

form input[type="submit"]:hover {
  opacity: 0.6;
}


.checkbox {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.checkbox label {
  position: relative;
}

.checkbox input[type=checkbox] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}

.checkbox input[type=checkbox]+span {
  display: inline-block;
  padding-left: calc(1.6rem + 0.8em);
  line-height: 2rem;
  cursor: pointer;
  position: relative;
}

.checkbox input[type=checkbox]+span::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1.6rem;
  height: 1.6rem;
  box-sizing: border-box;
  border: 1px solid #171717;
  background: #fff;
}

.checkbox input[type=checkbox]:checked+span::before {
  background: #171717;
}

.checkbox input[type=checkbox]:checked+span::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -0.7rem;
  left: 0.52rem;
  width: 0.4rem;
  height: 0.9rem;
  transform: rotate(43deg);
  border-bottom: 0.2rem solid #fff;
  border-right: 0.2rem solid #fff;
}





/*　contact 共通
------------------------------------------------------------------------------------------------*/

.contact .contact-form-section {
  padding: 4rem 0 10rem;
}

.contact .contact-form-section big {
  display: block;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 5rem;
}

.contact .contact-form-section .box {
  display: grid;
  grid-template-columns: 60rem 1fr;
  border: 2px solid #171717;
  padding: 2rem 0;
  margin-bottom: 10rem;
}

.contact .contact-form-section .box>* {
  padding: 3rem 6rem;
}

.contact .contact-form-section .box>*+* {
  border-left: 1px solid #171717;
}

.contact .contact-form-section .box .tel {
  font-weight: 500;
}

.contact .contact-form-section .box .tel a {
  font-size: 4rem;
  line-height: 1.3;
}

.privacy-policy .privacy-policy-section {
  padding: 4rem 0 8rem;
}

.privacy-policy .privacy-policy-copy {
  max-width: 68rem;
  margin: 0 auto;
}




/*　スマホ
------------------------------------------------------------------------------------------------*/
@media (max-width: 768px) {
  form {
    padding: 3rem 1.6rem 6rem;
    margin: 1rem auto 0;
  }

  form dl dd {
    margin-bottom: 2rem;
  }


  /*　home SP
------------------------------------------------------------------------------------------------*/

  .fv {
    height: 72vh;

    min-height: 48rem;
    justify-content: center;
    align-items: center;
  }

  .fv-slide {
    background-position: 58% center;
    will-change: opacity;
  }

  .fv-slide-1 {
    background-image: url(../images/home/fv-bg_sp.jpg);
  }

  .fv-slide-2 {
    background-image: url(../images/home/fv-bg_2_sp.jpg);
  }

  .fv-slide-3 {
    background-image: url(../images/home/fv-bg_3_sp.jpg);
  }

  .fv-slide.is-current,
  .fv-slide.is-entering {
    animation: none;
    transform: none;
  }

  .fv h1 {
    font-size: 2.6rem;
  }

  .fv .h1-btm {
    font-size: 1.5rem;
    margin-top: 1em;
  }

  .fv img.logo {
    width: 17rem;
    margin: 5rem 0 0;
  }

  .fv .scroll {
    display: inline-block;
    padding-bottom: 9rem;
  }

  .fv .scroll::before {
    height: 7rem;
  }

  @keyframes scroll {
    from {
      height: 3rem;
      bottom: 4rem;
      opacity: 0;
    }

    20% {
      height: 3rem;
    }

    30% {
      opacity: 1;
    }

    to {
      height: 0;
      bottom: 0;
    }
  }


  .home-about {
    min-height: unset;
    padding: 5rem 0;
  }

  .home-about::before {
    display: none;
  }

  .home-about .content {
    padding-left: 2.2rem;
    padding-bottom: 0rem;
  }

  .home-about-main {
    display: block;
  }

  .home-about-copy {
    max-width: none;
  }

  .home-about-image {
    width: 100%;
    margin-top: 4rem;
  }

  .home-about .ttl-1-en,
  .home-about .ttl-1 {
    padding-left: 0rem;
  }

  .home-about .ttl-1 {
    margin-bottom: 4rem;
    font-size: 1.6rem;
  }

  .home-about-lead {
    font-size: 2.2rem;
    margin-bottom: 2.4rem;
  }

  .home-about .btn-wrap {
    gap: 3rem;
  }

  .about .about-overview {
    padding: 3rem 0 6rem;
  }

  .about .about-overview .content {
    padding-left: 2.2rem;
  }

  .about .about-main {
    display: block;
  }

  .about .about-image {
    width: 100%;
    margin-top: 3rem;
  }

  .home-business {
    padding: 6rem 0;
  }

  .home-business .business-grid {
    grid-template-columns: 1fr;
  }

  .home-business .business-lead {
    margin-bottom: 2.8rem;
  }

  .home-business .business-grid-card {
    min-height: auto;
    padding: 2.4rem 2rem 2rem;
  }

  .home-business .business-grid-image {
    margin-bottom: 1.6rem;
  }

  .home-business .business-grid-card h3 {
    font-size: 2rem;
    margin-bottom: 1.4rem;
    line-height: 1.4rem;
  }

  .home-business .business-grid-card p {
    font-size: inherit;
    line-height: inherit;
  }

  .home-business .business-grid-footer {
    display: block;
    margin-top: 2.4rem;
  }

  .home-business .business-grid-note {
    font-size: 1.5rem;
    line-height: 1.9;
    margin-bottom: 2.4rem;
  }

  .home-business .business-grid-link {
    margin: 0 0 0 auto;
  }

  .line-arrow-link {
    width: 100%;
    min-height: 5.6rem;
    padding: 0 6rem 0 2rem;
    font-size: 1.5rem;
  }

  .line-arrow-link::before {
    width: 1rem;
    height: 1rem;
    right: 2.8rem;
  }

  .home-news {
    padding: 6rem 0 6rem;
  }

  .home-banner img {
    min-height: 20rem;
    object-fit: cover;
  }

  .home-banner .pc {
    display: none !important;
  }

  .home-banner .sp {
    display: block !important;
  }

  .home-news-main {
    display: flex;
    flex-direction: column;
  }

  .home-news-side {
    display: contents;
  }

  .home-news-head {
    order: 1;
    width: 100%;
    margin-bottom: 2.8rem;
  }

  .home-news-list {
    order: 2;
    width: 100%;
    margin-right: 0;
  }

  .home-news-link {
    order: 3;
    margin-top: 2.4rem;
  }

  .home-news-list li a {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 2rem 0;
  }

  /*　business SP
------------------------------------------------------------------------------------------------*/

  .business .business-services ul li {
    display: block;
    min-height: unset;
  }

  .business .sec-intro {
    padding: 3rem 0 2rem;
  }

  .business .sec-intro p {
    font-size: 1.5rem;
    line-height: 1.9;
  }

  .business .sec-intro p + p {
    margin-top: 1.8rem;
  }

  .business .business-services ul li+li {
    margin-top: -1px;
  }

  .business .business-services ul li img.img {
    width: 100%;
    height: 24rem;
    object-fit: cover;
    position: unset;
    margin: 0;
  }

  .business .business-services ul li .txt {
    width: 100%;
    padding: 2.4rem 2rem 2.8rem;
  }

  .business .business-en {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .business .business-services ul li .txt h3 {
    font-size: 2rem;
    margin-bottom: 0.5em;
  }

  .business .business-services ul li .txt p {
    font-size: 1.5rem;
    line-height: 1.9;
  }

  .business .business-services ul li .txt p + p {
    margin-top: 1.4rem;
  }

  .business .sec-approach {
    padding: 2rem 0 6rem;
  }

  .business .sec-approach .ttl-1 {
    margin-bottom: 2rem;
  }

  .business .sec-approach p {
    font-size: 1.5rem;
    line-height: 1.9;
  }

  .business .sec-approach p + p {
    margin-top: 1.8rem;
  }




  /*　company SP
------------------------------------------------------------------------------------------------*/

  .company .company-profile {
    padding: 4rem 0 4rem;
  }

  .company .company-map-wrap {
    margin-top: 4rem;
  }

  .company .company-map {
    height: 27rem;
  }


  form {
    padding: 4rem 2rem 6rem;
  }

  form dl dd {
    margin-bottom: 3rem;
  }

  form input[type="submit"] {
    width: 100%;
    font-size: 1.6rem;
  }




  /*　contact SP
------------------------------------------------------------------------------------------------*/

  .contact .contact-form-section {
    padding: 0;
  }

  .contact .contact-form-section big {
    font-size: 1.5rem;
    margin-bottom: 4rem;
  }

  .contact .contact-form-section .box {
    grid-template-columns: 1fr;
    padding: 0 3rem;
    margin-bottom: 6rem;
  }

  .contact .contact-form-section .box>* {
    padding: 2rem 0;
  }

  .contact .contact-form-section .box>*+* {
    border-left: none;
    border-top: 1px solid #171717;
  }

  .contact .contact-form-section .box .tel {
    text-align: center;
  }

  .contact .contact-form-section .box .tel a {
    font-size: 3.6rem;
  }

  .privacy-policy .privacy-policy-section {
    padding: 0 0 4rem;
  }

  .privacy-policy .privacy-policy-copy {
    max-width: none;
  }




}

/*　スマホここまで */


/*　activities 共通
------------------------------------------------------------------------------------------------*/

.news-archive {
  margin-top: 3rem;
  padding: 1rem 0 10rem;
}

.news-archive-list {
  list-style: none;
  max-width: 92rem;
  margin: 0 auto;
  padding: 0;
  border-top: 1px solid #d9d9d9;
}

.news-archive-list li {
  border-bottom: 1px solid #d9d9d9;
}

.news-archive-list li a {
  display: grid;
  grid-template-columns: 14rem 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2.4rem 0;
}

.news-archive-list .txt {
  display: block;
  font-size: 1.6rem;
  line-height: 1.8;
}

.news #wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.news main,
.news-detail-page main {
  flex: 1;
}

.news-detail-page #wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.news-detail {
  padding: 6rem 0 10rem;
}

.news-detail .content {
  max-width: 92rem;
}

.news-back {
  margin-top: 5rem;
}

.news-detail time {
  display: block;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  margin-bottom: 1.2rem;
  line-height:1;
}

.news-detail h2 {
  font-size: 2.8rem;
  line-height: 1.35;
  margin-bottom: 4rem;
}

.news-detail p + p {
  margin-top: 2.4rem;
}

@media (max-width: 768px) {
  .news-archive {
    margin-top: 2rem;
    padding: 1rem 0 6rem;
  }

  .news-archive-list li a {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    padding: 2rem 0;
  }

  .news-archive-list .txt {
    font-size: inherit;
    line-height: inherit;
  }

  .news-date {
    font-size: 1.4rem;
  }

  .news-detail {
    padding: 1rem 0 6rem;
  }

  .news-back {
    margin-top: 4rem;
    padding: 0 2rem 0 13rem;
  }

  .news-detail h2 {
    font-size: 2.2rem;
    margin-bottom: 2.8rem;
  }

}


form dd .radio-wrap {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

form dd label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  background: #fff;
  padding: 1rem 2rem;
  border: 1px solid transparent;
  transition: border-color 0.3s;
}

form dd label:has(input[type="radio"]:checked) {
  border-color: #171717;
}

form dd input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 2rem;
  height: 2rem;
  border: 2px solid #171717;
  border-radius: 50%;
  margin-right: 1rem;
  position: relative;
  cursor: pointer;
}

form dd input[type="radio"]:checked::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background: #171717;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
  .fv .content {
    width: 100%;
    max-width: none;
    padding: 0 2.2rem;
    position: static;
    margin-top: 3.8rem;
  }

  .fv h1 {
    max-width: none;
    font-size: 3rem;
    line-height: 1.5;
  }

  .fv .h1-btm {
    max-width: none;
    font-size: 1.5rem;
    line-height: 1.8;
    margin-top: 1.8rem;
  }

  .fv .scroll {
    right: 2rem;
    bottom: 2rem;
  }

  form dd .radio-wrap {
    flex-direction: column;
    gap: 1.5rem;
  }
}
