:root {
  --text-black: #222;
  --orange01: #ed8633;
  --orange02: #ef7b1e;
  --yellow01: #f0be62;
  --pink01: #ec5d76;
  --red01: #e63151;
  --en: "League Spartan", sans-serif;
  --ja: "Zen Kaku Gothic New", sans-serif;
  --shadow: 0 5px 15px rgba(#dde6ec, 1);
  --shadow-text: 0 3px 6px rba(0, 0, 0, 0.25);
  --grad01: linear-gradient(90deg, #ef7b1e 0%, #f0be62 100%);
}

* {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

body {
  font-family: var(--ja);
  font-size: clamp(14px, 1.1713030747vw, 16px);
  line-height: 1.625;
  font-weight: 500;
  color: var(--text-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

a {
  color: var(--text-black);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  opacity: 1;
}

ul,
li {
  list-style: none;
}

table {
  border-collapse: collapse;
}

table thead th,
table thead td {
  background-color: #f2f2f2;
}

table th,
table td {
  border-collapse: collapse;
}

table th {
  text-align: left;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.is-pc {
  display: block;
}

@media screen and (max-width: 768px) {
  .is-pc {
    display: none;
  }
}
.is-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .is-sp {
    display: block;
  }
}
a[href^=tel] {
  text-decoration: none;
  color: inherit;
}

.en {
  font-family: var(--en);
}

.fade {
  opacity: 0;
  transform: translateY(25px);
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
  width: 89.6%;
}

.bold {
  font-weight: 700;
}

.flex {
  display: flex;
}

.en {
  font-family: var(--en);
}

.header {
  padding: 15px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 66px;
  z-index: 99;
}
@media screen and (max-width: 768px) {
  .header {
    position: fixed;
    padding: 16px;
    top: 0;
    left: 0;
    height: 60px;
  }
}
.header .header-inner {
  align-items: center;
  height: 100%;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .header .header-inner {
    justify-content: space-between;
  }
}
.header h1 {
  width: auto;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  .header h1 {
    width: 180px;
  }
}
.header h1 a {
  display: block;
}
.header h1 a img {
  display: block;
}
.header .header-nav .nav-list {
  gap: 20px;
  align-items: center;
}
.header .header-nav .nav-list li a {
  font-size: 1.5rem;
  font-weight: 500;
}
.header .header-nav .nav-list li a:hover {
  color: var(--orange02);
}
.header .header-nav .nav-list li.contact a {
  background: var(--grad01);
  color: white;
  font-size: 1.4rem;
  padding: 13px 24px;
  display: grid;
  place-content: center;
  border-radius: 60px;
  font-weight: 700;
  overflow: hidden;
  transition: all 0.3s ease;
}
.header .header-nav .nav-list li.contact a:hover {
  background: linear-gradient(90deg, #f0be62 0%, #ef7b1e 100%);
}
@media screen and (max-width: 768px) {
  .header .header-nav {
    display: none;
  }
}
.header .header-link {
  display: block;
  color: white;
  background: var(--pink01);
  padding: 12px 24px;
  box-shadow: 0 4px 0 #d6424b;
  font-size: 1.5rem;
  font-weight: 700;
  transition: all 0.5s ease;
  border-radius: 60px;
  z-index: 999;
}
.header .header-link:hover {
  box-shadow: none;
  transform: translateY(4px);
}
@media screen and (max-width: 768px) {
  .header .header-link {
    font-size: 1.3rem;
    white-space: nowrap;
    padding: 8px 16px;
  }
}

.openbtn {
  height: 40px;
  width: 40px;
  position: relative;
  display: none;
  z-index: 999;
  background-color: white;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .openbtn {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.openbtn span {
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--orange02);
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s ease;
}
.openbtn span:nth-of-type(1) {
  top: calc(50% - 6px);
}
.openbtn span:nth-of-type(2) {
  top: 50%;
}
.openbtn span:nth-of-type(3) {
  top: calc(50% + 6px);
}
.openbtn.active span:nth-of-type(1) {
  transform: translate(-50%, 6px) rotate(-45deg);
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  transform: translate(-50%, -6px) rotate(45deg);
}

#gnav-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  #gnav-sp {
    position: fixed;
    z-index: 100;
    display: block;
    top: 0px;
    right: -120%;
    width: 100%;
    padding: 120px 24px 80px 24px;
    background: white;
    transition: all 0.6s ease;
    box-shadow: 0px 3px 6px rgba(87, 69, 66, 0.3);
  }
  #gnav-sp.panelactive {
    right: 0;
  }
  #gnav-sp #gnav-sp-list {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
  }
  #gnav-sp #gnav-sp-list ul li a {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 24px;
  }
  #gnav-sp #gnav-sp-list ul li.contact a {
    background: var(--grad01);
    padding: 10px;
    color: white;
    display: grid;
    place-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 60px;
    width: 200px;
    height: 48px;
  }
}

.top-bg {
  background: url(../../assets/images/bg-top.png) no-repeat top center/cover;
  width: 100%;
  padding-bottom: 100px;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .top-bg {
    padding-bottom: 56px;
  }
}

.mv {
  height: 100svh;
  padding-top: 66px;
  position: relative;
  background-image: url(../../assets/images/mv-dot-left.svg);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .mv {
    padding-top: 60px;
    background-image: none;
    height: auto;
  }
}
.mv .mv-inner {
  width: 92%;
  max-width: 1326px;
  margin: 0 auto;
  column-gap: 4.5248868778%;
  height: 100%;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .mv .mv-inner {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .mv .text-wrapper {
    margin-top: 24px;
    margin-bottom: 16px;
  }
}
.mv .text-wrapper .mv-message-img {
  display: block;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .mv .text-wrapper .mv-message-img {
    margin-bottom: 16px;
  }
}
.mv .mv-contact-wrapper {
  margin-top: 30px;
  display: flex;
  column-gap: 1em;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .mv .mv-contact-wrapper {
    flex-direction: column;
    margin-top: 8px;
  }
}
.mv .mv-contact-wrapper .smalltext {
  font-size: 1.2rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .mv .mv-contact-wrapper .smalltext {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .mv .mv-contact-wrapper.mv-contact-pc {
    display: none;
  }
}
.mv .mv-contact-wrapper.mv-contact-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .mv .mv-contact-wrapper.mv-contact-sp {
    display: flex;
  }
}
.mv .btn01 {
  background: var(--grad01);
  width: 210px;
  height: 48px;
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
  display: grid;
  place-content: center;
  border-radius: 60px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .mv .btn01 {
    margin-bottom: 16px;
  }
}
.mv .btn01:hover {
  background: linear-gradient(90deg, #f0be62 0%, #ef7b1e 100%);
}

.color-red {
  color: var(--red01);
}

section {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  section {
    padding: 56px 0;
  }
}

hgroup {
  margin-bottom: 42px;
}
@media screen and (max-width: 768px) {
  hgroup {
    margin-bottom: 32px;
  }
}
hgroup h2 {
  font-family: var(--en);
  font-size: clamp(3.8rem, 4.8611111111vw, 7rem);
  line-height: 1.2;
  letter-spacing: 0.03em;
  font-weight: 600;
}
hgroup .sub-ttl {
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  hgroup .sub-ttl {
    font-size: 1.4rem;
  }
}

.about {
  margin: 80px 0 0;
  padding: 0;
  background: url(../../assets/images/about.png) no-repeat center right/contain;
}
@media screen and (max-width: 768px) {
  .about {
    margin: 56px 0 0;
    background: none;
  }
}
.about .inner.flex {
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .about .inner.flex {
    flex-direction: column;
  }
}
.about .text-wrapper {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .about .text-wrapper {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 768px) {
  .about .img-wrapper {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}

.features {
  background: var(--orange02);
  border-radius: 80px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  .features {
    border-radius: 30px;
    padding-bottom: 120px;
  }
}
.features::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: calc(100% + 60px);
  background: url(../../assets/images/features-bg.png);
  background-repeat: no-repeat;
  background-size: 100% calc(100% + 60px);
  background-position: center center;
}
@media screen and (max-width: 768px) {
  .features::before {
    content: none;
  }
}
.features .hgroup-wrapper {
  width: 100%;
}
.features .hgroup-wrapper span {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .features .hgroup-wrapper span {
    display: none;
  }
}
.features .half-wrapper {
  width: 50%;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .features .half-wrapper {
    width: 100%;
    justify-content: center;
  }
}
.features hgroup {
  color: white;
  width: fit-content;
}
.features hgroup .sub-ttl {
  text-align: center;
}
.features::after {
  content: "";
  position: absolute;
  width: 391px;
  height: 300px;
  bottom: 0;
  left: 0;
  background: url(../../assets/images/features-granma.png) no-repeat bottom left/contain;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .features::after {
    height: 140px;
  }
}
@media screen and (max-width: 768px) {
  .features .feature-list {
    flex-wrap: wrap;
    row-gap: 16px;
    justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  .features .feature-list .item {
    width: 47%;
  }
}
.features .feature-list .item:nth-child(odd) {
  margin-top: -60px;
}
@media screen and (max-width: 768px) {
  .features .feature-list .item:nth-child(odd) {
    margin-top: 0;
  }
}
.features .feature-list .item:nth-child(even) {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .features .feature-list .item:nth-child(even) {
    margin-top: 0;
  }
}

.cando {
  position: relative;
}
.cando::after {
  content: "";
  width: 89.6%;
  max-width: 1000px;
  margin: 0 auto;
  height: 350px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  position: absolute;
  background: url(../../assets/images/nurse02.png) no-repeat bottom right/contain;
}
@media screen and (max-width: 768px) {
  .cando::after {
    bottom: auto;
    top: 24px;
    height: 140px;
  }
}
.cando .inner {
  column-gap: 40px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .cando .inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.cando .can-list .item {
  display: flex;
  align-items: center;
  font-size: clamp(16px, 1.6666666667vw, 24px);
  font-weight: 700;
}
.cando .can-list .item:not(:last-child) {
  margin-bottom: 20px;
}
.cando .can-list .item::before {
  content: "";
  width: 60px;
  height: 60px;
  margin-right: 1em;
}
.cando .can-list .item:nth-child(1)::before {
  background: url(../../assets/images/icon01.svg) no-repeat center/contain;
}
.cando .can-list .item:nth-child(2)::before {
  background: url(../../assets/images/icon02.svg) no-repeat center/contain;
}
.cando .can-list .item:nth-child(3)::before {
  background: url(../../assets/images/icon03.svg) no-repeat center/contain;
}
.cando .can-list .item:nth-child(4)::before {
  background: url(../../assets/images/icon04.svg) no-repeat center/contain;
}
.cando .can-list .item:nth-child(5)::before {
  background: url(../../assets/images/icon05.svg) no-repeat center/contain;
}

.flow {
  background: var(--pink01);
  border-radius: 80px;
}
@media screen and (max-width: 768px) {
  .flow {
    border-radius: 30px;
  }
}
.flow hgroup {
  color: white;
}
@media screen and (max-width: 768px) {
  .flow hgroup {
    text-align: center;
  }
}
.flow .flow-list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .flow .flow-list {
    flex-direction: column;
    row-gap: 24px;
    text-align: center;
  }
}
.flow .flow-list .item .img-wrapper {
  position: relative;
}
.flow .flow-list .item .img-wrapper::after {
  content: "";
  width: 20%;
  height: 4px;
  top: 50%;
  transform: translateY(-50%);
  left: 100%;
  position: absolute;
  background: #f3afbb;
}
@media screen and (max-width: 768px) {
  .flow .flow-list .item .img-wrapper::after {
    content: none;
  }
}
.flow .flow-list .item .text {
  text-align: center;
  color: white;
  font-size: clamp(1.4rem, 1.25vw, 1.8rem);
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .flow .flow-list .item .text {
    font-size: 1.6rem;
    margin-top: 8px;
  }
}
.flow .flow-list .item:last-child .img-wrapper::after {
  content: none;
}

.merit {
  padding: 0;
  margin: 100px 0;
}
@media screen and (max-width: 768px) {
  .merit {
    margin: 56px 0;
  }
}
.merit .inner {
  max-width: 100%;
  width: 100%;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .merit .inner {
    flex-direction: column;
    width: 89.6%;
  }
}
.merit .left {
  width: 49%;
}
@media screen and (max-width: 768px) {
  .merit .left {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 24px;
  }
}
.merit .right {
  width: 49%;
  background-image: url(../images/merit-right-images.svg);
  background-size: contain;
  background-position: top right;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .merit .right {
    width: 100%;
    background-size: 40% auto;
  }
}
.merit .merit-list .item {
  display: flex;
  align-items: center;
  font-size: clamp(16px, 1.6666666667vw, 24px);
  font-weight: 700;
}
.merit .merit-list .item:not(:last-child) {
  margin-bottom: 20px;
}
.merit .merit-list .item::before {
  content: "";
  width: 21px;
  height: 14px;
  background: url(../../assets/images/icon-check.svg) no-repeat center/contain;
  margin-right: 0.5em;
  flex-shrink: 0;
}

.faq {
  padding-bottom: 0;
  background-color: var(--yellow01);
  border-radius: 80px;
}
@media screen and (max-width: 768px) {
  .faq {
    border-radius: 30px;
  }
}
.faq .inner {
  justify-content: space-between;
  background: url(../../assets/images/nurse.png) no-repeat bottom/contain;
  background-size: auto 367px;
  background-position: bottom left;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .faq .inner {
    flex-direction: column;
    padding-bottom: 150px;
    background-size: auto 140px;
  }
}
.faq hgroup {
  color: white;
}
@media screen and (max-width: 768px) {
  .faq hgroup {
    text-align: center;
  }
}
.faq .right {
  width: 70%;
}
@media screen and (max-width: 768px) {
  .faq .right {
    width: 100%;
  }
}
.faq .right dl {
  border-radius: 15px;
  background-color: white;
}
.faq .right dl:not(:last-child) {
  margin-bottom: 20px;
}
.faq .right dl dt {
  padding: 16px 24px;
  font-weight: 700;
  font-size: 1.8rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .faq .right dl dt {
    font-size: 1.6rem;
    padding: 8px 16px;
  }
}
.faq .right dl dt::before {
  content: "Q";
  font-family: var(--en);
  font-size: 3rem;
  font-weight: 600;
  margin-right: 0.3em;
  color: var(--orange02);
}
.faq .right dl dt::after {
  content: "";
  width: calc(100% - 30px);
  height: 1px;
  background: var(--yellow01);
  position: absolute;
  bottom: 0;
  left: 15px;
}
.faq .right dl dd {
  padding: 16px 24px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .faq .right dl dd {
    padding: 8px 16px;
  }
}
.faq .right dl dd::before {
  content: "A";
  font-family: var(--en);
  font-size: 3rem;
  color: #e2cca5;
  margin-right: 0.3em;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .office-compliance .flex-wrapper {
    flex-direction: column;
  }
}
.office-compliance .flex-wrapper:nth-child(1) {
  padding-bottom: 20px;
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 50px;
}
.office-compliance .flex-wrapper .contents {
  flex: 1;
}
.office-compliance .flex-wrapper hgroup {
  width: 31.3%;
}
@media screen and (max-width: 768px) {
  .office-compliance .flex-wrapper hgroup {
    width: 100%;
    text-align: center;
  }
}
.office-compliance .flex-wrapper hgroup h3 {
  font-size: clamp(35px, 3.4722222222vw, 50px);
  font-weight: 600;
  font-family: var(--en);
  line-height: 1.2;
  white-space: nowrap;
}
.office-compliance .flex-wrapper dl {
  margin-bottom: 30px;
}
.office-compliance .flex-wrapper dl dt {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.5;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .office-compliance .flex-wrapper dl dt {
    font-size: 1.7rem;
    line-height: 1.4;
    margin-bottom: 16px;
  }
}
.office-compliance .flex-wrapper dl dt::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 50px;
  flex-shrink: 0;
  background: var(--yellow01);
  margin-right: 0.8em;
}
@media screen and (max-width: 768px) {
  .office-compliance .flex-wrapper dl dt::before {
    width: 3px;
  }
}
.office-compliance .flex-wrapper dl dd .img-wrapper {
  margin-top: 30px;
  position: relative;
}
.office-compliance .flex-wrapper dl dd .img-wrapper .btn01 {
  position: absolute;
  bottom: 20px;
  right: 20px;
  height: 45px;
  width: 210px;
  display: grid;
  place-content: center;
  color: white;
  background: var(--grad01);
  border-radius: 40px;
  transition: all 0.3s ease;
}
.office-compliance .flex-wrapper dl dd .img-wrapper .btn01:hover {
  background: linear-gradient(90deg, #f0be62 0%, #ef7b1e 100%);
}
.office-compliance .access-text {
  font-weight: 700;
  margin: -10px 0 18px;
}
.office-compliance .office-map {
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 8px;
}
.office-compliance .office-map iframe {
  display: block;
  width: 100%;
  height: 450px;
}
@media screen and (max-width: 768px) {
  .office-compliance .office-map iframe {
    height: 260px;
  }
}
.office-compliance .office-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .office-compliance .office-info {
    grid-template-columns: 1fr;
  }
}
.office-compliance .flex-wrapper .office-info dl {
  margin-bottom: 0;
  padding: 18px;
  background: #fdfaf5;
  border-radius: 8px;
}
.office-compliance .flex-wrapper .office-info dl dt {
  font-size: 1.6rem;
  line-height: 1.4;
  margin-bottom: 10px;
}
.office-compliance .flex-wrapper .office-info dl dt::before {
  height: 26px;
}
.office-compliance .flex-wrapper .office-info dl dd {
  font-weight: 400;
}

section.contact {
  background: var(--orange01);
  color: white;
}
section.contact hgroup {
  margin: 0 auto 42px;
  text-align: center;
}
section.contact .contact-list {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  section.contact .contact-list {
    flex-direction: column;
    width: 70%;
    margin: 0 auto 24px;
  }
}
section.contact .contact-list .item {
  padding: 18px;
  flex: 1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  section.contact .contact-list .item {
    padding: 24px 0;
  }
}
section.contact .contact-list .item:not(:nth-child(1)) {
  border-left: 1px solid white;
}
@media screen and (max-width: 768px) {
  section.contact .contact-list .item:not(:nth-child(1)) {
    border-left: none;
    border-top: 1px solid white;
  }
}
section.contact .contact-list .item img {
  width: auto;
  height: 56px;
  object-fit: contain;
  display: block;
  margin: 0 auto 16px;
}
@media screen and (max-width: 768px) {
  section.contact .contact-list .item img {
    height: 48px;
  }
}
section.contact .contact-list .item .text1 {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  section.contact .contact-list .item .text1 {
    font-size: 1.6rem;
  }
}
section.contact .contact-list .item .tel-num {
  font-size: 3.2rem;
  font-weight: 700;
  font-family: var(--en);
}
@media screen and (max-width: 768px) {
  section.contact .contact-list .item .tel-num {
    font-size: 2.2rem;
  }
}
section.contact .contact-list .item .small {
  font-size: 1.4rem;
}
section.contact .contact-list .item .btn02 {
  font-size: 1.8rem;
  color: white;
  font-weight: 700;
  border: 1px solid white;
  max-width: 240px;
  width: 100%;
  display: grid;
  place-content: center;
  margin: 0 auto;
  height: 52px;
  border-radius: 40px;
  transition: all 0.3s ease;
}
section.contact .contact-list .item .btn02:hover {
  background: white;
  color: var(--orange02);
}
section.contact .sec-bottom-text {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  section.contact .sec-bottom-text {
    font-size: 1.8rem;
  }
}

.recruit hgroup {
  text-align: center;
}
.recruit h3 {
  font-size: clamp(25px, 3.4722222222vw, 50px);
  font-weight: 600;
  font-family: var(--en);
  line-height: 1.3;
}
.recruit dl {
  border: 1px solid #d9d9d9;
}
.recruit dl > div {
  display: flex;
}
@media screen and (max-width: 768px) {
  .recruit dl > div {
    flex-direction: column;
  }
}
.recruit dl > div:not(:last-child) {
  border-bottom: 1px solid #d9d9d9;
}
.recruit dl > div dt {
  padding: 20px 15px;
  width: 20%;
  background: #fdfaf5;
  border-right: 1px solid #d9d9d9;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 768px) {
  .recruit dl > div dt {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #d9d9d9;
  }
}
.recruit dl > div dd {
  width: 80%;
  padding: 20px 15px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 768px) {
  .recruit dl > div dd {
    width: 100%;
  }
}

.footer {
  height: 100px;
  background: #333;
  padding: 20px 0;
  color: white;
  text-align: center;
}
.footer img {
  margin-bottom: 10px;
}
.footer small {
  font-size: 1.4rem;
  text-align: center;
  display: block;
}
