@charset "utf-8";



/* font ******************************************************************************************************************************** */
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 100;
  src: url("../_fonts/NotoSansJP-Thin.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 300;
  src: url("../_fonts/NotoSansJP-Light.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../_fonts/NotoSansJP-Regular.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  src: url("../_fonts/NotoSansJP-Medium.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("../_fonts/NotoSansJP-Bold.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 900;
  src: url("../_fonts/NotoSansJP-Black.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 100 900;
  src: url("../_fonts/Oswald-VariableFont_wght.woff2") format("woff2");
  font-display: swap;
}



/* common ******************************************************************************************************************************** */
:root {
  --colorText: #0d0d0d;
  --colorBlue1: #1e4196;
  --colorBlue2: #00a0e6;
  --colorBlue3: #82c3f0;
  --grdBlue: linear-gradient(90deg,var(--colorBlue1),var(--colorBlue2) 80%,var(--colorBlue3));
  --colorViolet1: #0f055a;
  --colorViolet1p10: #e7e6ee;
  --colorViolet2: #193782;
  --colorViolet3: #0082c8;
  --grdViolet: linear-gradient(90deg,var(--colorViolet1),var(--colorViolet2) 60%,var(--colorViolet3));
  --colorYellow: #f5f500;
  --colorRed: #f00;
  --colorOver: #f0f0f0;
}
*,::before,::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 10px;
  scroll-behavior: smooth;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6em;
  line-height: 1;
  text-align: justify;
}
.Oswald {
  font-family: "Oswald", sans-serif;
}
img {
  max-width: 100%;
  vertical-align: bottom;
}
a {
  color: inherit;
  font: inherit;
  text-decoration: none;
}
.sp {
  display: none;
}
@media (max-width: 1400px) {
  html {
    font-size: calc(10vw / 14);
  }
}
@media (min-width: 481px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
@media (max-width: 480px) {
  html {
    font-size: calc(10vw / 4.8);
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  br.sp {
    display: inline;
  }
}



/* header ******************************************************************************************************************************** */
header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 9999;
}
header>div {
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: .125em;
  max-width: 1400px;
  margin: 0 auto;
}
header .logo {
  font-size: 1em;
  width: 17.5%;
  margin: 0 auto;
}
header .logo a {
  transition: .5s;
}
header .logo a:hover {
  opacity: .6;
}
#Nav,#Nav+label {
  display: none;
}
header nav {
  margin-right: 0;
}
header nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5em;
}
header nav ul li a {
  font-weight: 700;
  transition: .5s;
}
header nav ul li a:hover {
  opacity: .6;
}
header nav ul li.tel a {
  color: var(--colorViolet1);
  font-family: "Oswald", sans-serif;
  font-size: 1.875em;
  display: flex;
  align-items: center;
  gap: .25em;
}
header nav ul li.tel a::before {
  content: '';
  display: block;
  background: url(../_img/tel.svg) no-repeat center/contain;
  height: 1em;
  aspect-ratio: 1/1;
}
header nav ul li.contact a {
  background: var(--colorYellow);
  color: var(--colorViolet1);
  display: block;
  padding: 2em 3em;
  position: relative;
  transition: .5s;
}
header nav ul li.contact a:hover {
  background: var(--colorOver);
  opacity: 1;
}
@media (max-width: 480px) {
  header>div {
    justify-content: space-between;
    align-items: center;
    padding: 3% 4.125%;
  }
  header .logo {
    width: 35%;
    margin: 0;
    position: relative;
    z-index: 9999;
  }
  #Nav+label {
    width: 2em;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 9999;
  }
  #Nav+label span,
  #Nav+label::before,
  #Nav+label::after {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--colorText);
    transition: .5s;
  }
  #Nav+label::before,
  #Nav+label::after {
    content: '';
    position: absolute;
  }
  #Nav+label::before {
    top: 0;
  }
  #Nav+label::after {
    bottom: 0;
  }
  #Nav:checked+label span {
    background: transparent;
  }
  #Nav:checked+label::before {
    top: calc(50% - 1px);
    rotate: 45deg;
  }
  #Nav:checked+label::after {
    bottom: calc(50% - 1px);
    rotate: -45deg;
  }
  header nav {
    background: #fff;
    width: 100%;
    padding-top: 25%;
    position: fixed;
    inset: 0 -100% 0 auto;
    z-index: 9998;
    transition: .5s;
  }
  #Nav:checked~nav {
    inset: 0 0 0 auto;
  }
  header nav ul {
    flex-flow: column;
    gap: 2.5em;
  }
  header nav ul li.tel {
    margin-top: 1.5em;
  }
  header nav ul li.contact {
    width: 50%;
  }
  header nav ul li.contact a {
    padding: 1.25em 0 1.5em;
    text-align: center;
    border-radius: 9999px;
  }
}



/* main ******************************************************************************************************************************** */
.pages main::before {
  content: '';
  display: block;
  width: 100%;
  aspect-ratio: 35/8;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.about main::before {
  background-image: url(../_img/img_about.webp);
}
.info main::before {
  background-image: url(../_img/img_info.webp);
}
.recruit main::before {
  background-image: url(../_img/img_recruit.webp);
}
.contact main::before {
  background-image: url(../_img/img_contact.webp);
}
main .pageTitle {
  padding: 5% 0;
}
main .pageTitle>hgroup {
  width: calc(500% / 7);
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 2em;
}
main .pageTitle h1 {
  font-size: 1.25em;
  letter-spacing: .2em;
}
main .pageTitle p {
  order: -1;
  font-family: "Oswald", sans-serif;
  font-size: 8em;
  font-weight: 100;
  color: var(--colorViolet1);
  position: relative;
}
main .pageTitle p::after {
  content: '';
  display: block;
  background: url(../_img/skewline_v.svg) no-repeat center/contain;
  width: .625em;
  aspect-ratio: 66/25;
  /* margin-top: .125em; */
  position: absolute;
  top: .125em;
  left: calc(100% + .125em);
}
main>section,
main>.sec {
  padding: 5% 0;
}
main>section>div,
main>.sec>div {
  width: calc(500% / 7);
  max-width: 1000px;
  margin: 0 auto;
}
main>section.grd,
main>.sec.grd {
  background: var(--grdViolet);
  color: #fff;
}
main>section.gr,
main>.sec.gr {
  background: var(--colorOver);
}
main .secTitle {
  display: flex;
  flex-flow: column;
  gap: .75em;
  margin-bottom: 4em;
}
main .secTitle h2 {
  font-size: 1em;
  letter-spacing: .2em;
}
main .secTitle p {
  order: -1;
  font-family: "Oswald", sans-serif;
  font-size: 2.5em;
  font-weight: 500;
}
@media (max-width: 480px) {
  main>section,
  main>.sec {
    padding: 10% calc(100% / 24);
  }
  main>section>div,
  main>.sec>div {
    width: 100%;
  }
  main .pageTitle {
    padding: 10% calc(100% / 24);
    align-items: flex-start;
    gap: 1em;
    flex-flow: column;
  }
  main .pageTitle>hgroup {
    width: 100%;
    align-items: flex-start;
    gap: 1em;
    flex-flow: column;
  }
  main .pageTitle p {
    font-size: 3.875em;
  }
  main .secTitle {
    margin-bottom: 3em;
  }
  main .secTitle p {
    font-size: 1.5625em;
  }
}



/* .fv ******************************************************************************************************************************** */
.fv {
  position: relative;
}
.fv hgroup {
  color: #fff;
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 1.5em;
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  z-index: 1;
  animation: fvH 24s infinite;
}
@keyframes fvH {
  0%,22%,67%,100% {
    opacity: 1;
  }
  34%,56% {
    opacity: 0;
  }
}
.fv hgroup h2 {
  font-family: "Oswald", sans-serif;
  font-size: 4.375em;
  letter-spacing: .05em;
  opacity: .85;
}
.fv hgroup p {
  color: var(--colorViolet1);
  font-size: 1.5em;
  font-weight: 700;
  text-shadow: 0 0 .25em #fff, 0 0 .25em #fff, 0 0 .25em #fff, 0 0 .25em #fff, 0 0 .25em #fff, 0 0 .25em #fff, 0 0 .25em #fff, 0 0 .25em #fff, 0 0 .25em #fff, 0 0 .25em #fff, 0 0 .25em #fff, 0 0 .25em #fff;
  letter-spacing: .125em;
}
.slick-dotted.slick-slider {
  margin-bottom: 0;
}
.slick-dots {
  bottom: 2em;
}
.slick-dots li {
  width: 2.5em;
  height: auto;
  aspect-ratio: 5/1;
  margin: 0 .375em;
  pointer-events: none;
  cursor: default;
}
.slick-dots li button {
  font-size: inherit;
  width: 100%;
  height: 100%;
  padding: 0;
}
.slick-dots li button:before {
  font-size: inherit;
  width: 2.5em;
  height: auto;
  aspect-ratio: 5/1;
  content: '';
  opacity: .8;
  background: #fff;
}
.slick-dots li.slick-active button:before {
  background: var(--colorBlue2);
}
.zoomup {
  animation: zoomUp 11s linear infinite both;
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
.zoomout {
  animation: zoomOut 11s linear infinite both;
}
@keyframes zoomOut {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
@media (max-width: 480px) {
  .fv hgroup {
    font-size: .525em;
    white-space: nowrap;
  }
  .fv .slide img {
    width: 100%;
    aspect-ratio: 48/25;
    object-fit: cover;
  }
}



/* footer ******************************************************************************************************************************** */
footer {
}
footer a {
  transition: .5s;
}
footer a:hover {
  opacity: .6;
}
footer>div {
  padding: 3% 0;
  display: flex;
  justify-content: space-between;
  max-width: 1050px;
  margin: 0 auto;
}
footer>div div {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
footer>div div:nth-of-type(1) {
  gap: 1em;
}
footer>div div:nth-of-type(1) h2 {
  font-size: 1em;
  width: 14.5em;
}
footer>div div:nth-of-type(1) ul {
  list-style: none;
  font-size: .75em;
  display: flex;
  flex-flow: column;
  gap: .75em;
}
footer>div div:nth-of-type(2) {
  align-items: flex-end;
}
footer>div div:nth-of-type(2) nav ul {
  list-style: none;
  display: flex;
  gap: 2em;
  font-size: .875em;
  letter-spacing: .125em;
}
footer>div div:nth-of-type(2) small {
  font-size: 1rem;
}
@media (max-width: 480px) {
  footer>div {
    padding: 6% 4.125%;
    flex-flow: column;
    gap: 1.5em;
  }
  footer>div div:nth-of-type(1) {
    gap: .75em;
  }
  footer>div div:nth-of-type(1) ul {
    gap: .5em;
  }
  footer>div div:nth-of-type(2) nav {
    display: none;
  }
  footer>div div:nth-of-type(2) {
    align-items: flex-start;
  }
}



/* .front ******************************************************************************************************************************** */
.front main>section h2 {
  font-family: "Oswald", sans-serif;
  font-size: 5.625em;
  display: flex;
  align-items: flex-start;
  gap: .1875em;
  margin: 0 0 .5em 0;
}
.front main>section h2::after {
  content: '';
  display: block;
  background: url(../_img/skewline_w.svg) no-repeat center/contain;
  width: .625em;
  aspect-ratio: 66/25;
  margin-top: .125em;
}
.front main>section:nth-of-type(even) h2 {
  color: var(--colorViolet1);
}
.front main>section:nth-of-type(even) h2::after {
  background-image: url(../_img/skewline_v.svg);
}
.front main>section>div>div {
  display: flex;
  flex-flow: row-reverse;
  justify-content: space-between;
  position: relative;
}
.front main>section:nth-of-type(even)>div>div {
  flex-flow: row;
}
.front main>section>div>div>div {
  width: 44.8%;
}
.front main>section>div>div>div h3 {
  font-size: 2em;
  letter-spacing: .2em;
  font-weight: 700;
}
.front main>section>div>div>div p {
  line-height: 2;
  letter-spacing: .15em;
  margin-top: 2em;
}
.front main>section>div>div>figure {
  width: 49%;
  position: relative;
}
.front main>section>div>div>figure.scrIn::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0 calc(100% + 2000% / 49) 0 calc(-2000% / 49);
  background: var(--colorBlue2);
}
.front main>section>div>div>figure.scrIn.pageIn::after {
  animation: figAnm1 1.5s both;
}
@keyframes figAnm1 {
  50% {
    inset: 0 0 0 calc(-2000% / 49);
  }
  100% {
    inset: 0 0 0 100%;
  }
}
.front main>section:nth-of-type(even)>div>div>figure.scrIn::after {
  inset: 0 100% 0 0;
}
.front main>section:nth-of-type(even)>div>div>figure.scrIn.pageIn::after {
  animation: figAnm2 1.5s both;
}
@keyframes figAnm2 {
  50% {
    inset: 0 calc(-2000% / 49) 0 0;
  }
  100% {
    inset: 0 calc(-2000% / 49) 0 calc(100% + 2000% / 49);
  }
}
.front main>section>div>div>figure.scrIn img {
  opacity: 0;
  transition: 0s .75s;
}
.front main>section>div>div>figure.scrIn.pageIn img {
  opacity: 1;
}
.front main>section>div>div>a {
  font-family: "Oswald", sans-serif;
  letter-spacing: .1875em;
  position: absolute;
  inset: auto 0 0 auto;
  display: flex;
  align-items: center;
  gap: 1em;
}
.front main>section>div>div>a::after {
  content: '';
  display: block;
  background: url(../_img/arrow.svg) no-repeat center/contain;
  width: 3em;
  aspect-ratio: 1/1;
  transition: .5s;
}
.front main>section>div>div>a:hover::after {
  scale: 1.15;
}
.front main>section:nth-of-type(even)>div>div>a {
  color: var(--colorViolet1);
  inset: auto auto 0 2.5%;
}
@media (max-width: 480px) {
  .front main>section h2 {
    font-size: 3.75em;
    margin: 0 0 .5em 0;
  }
  .front main>section>div>div,
  .front main>section:nth-of-type(even)>div>div {
    flex-flow: column;
    gap: 3em;
  }
  .front main>section>div>div>div {
    width: 90%;
    margin-left: 0;
  }
  .front main>section>div>div>div h3 {
    font-size: 1.25em;
  }
  .front main>section>div>div>div p {
    font-size: .875em;
    letter-spacing: .08em;
  }
  .front main>section>div>div>figure {
    width: 88.75%;
  }
  .front main>section:nth-of-type(even)>div>div>figure {
    align-self: flex-end;
  }
  .front main>section>div>div>a {
    position: static;
    justify-content: center;
  }
}



/* .about ******************************************************************************************************************************** */
.message {
  padding: 0 0 5%;
}
.message>div {
  display: flex;
  justify-content: space-between;
  width: calc(500% / 7);
  max-width: 1000px;
  margin: 0 auto;
}
.message .secTitle {
  width: 25%;
  margin-top: .5em;
  margin-bottom: 0;
}
.message .secTitle p {
  font-size: 3.75em;
}
.message>div>p {
  width: 70%;
  font-size: 1.125em;
  line-height: 2.5;
  letter-spacing: .22em;
}
.about main .sec>div {
  display: flex;
  justify-content: space-between;
}
.about main .sec .profile {
  width: 50%;
}
.about main .sec .access {
  width: 42%;
}
.about main .sec .profile table {
  width: 100%;
  border-collapse: collapse;
  line-height: 1.75;
  margin-top: -1.875em;
}
.about main .sec .profile table tr:not(:first-child) {
  border-top: 1px solid #fff;
}
.about main .sec .profile table th {
  width: 15%;
  text-align-last: justify;
  padding: 1.5em 0;
  font-weight: 400;
  vertical-align: top;
}
.about main .sec .profile table td {
  width: 85%;
  padding: 1.5em 0 1.5em 1.25em;
}
.about main .sec .profile table td dl {
  display: flex;
  flex-flow: wrap;
}
.about main .sec .profile table td dl dt {
  width: 30%;
  display: flex;
}
.about main .sec .profile table td dl dt span {
  flex-grow: 1;
  text-align-last: justify;
}
.about main .sec .profile table td dl dt::before {
  content: '〈';
}
.about main .sec .profile table td dl dt::after {
  content: '〉';
}
.about main .sec .profile table td dl dd {
  width: 70%;
}
.about main .sec .access iframe {
  width: 100%;
  aspect-ratio: 10/9;
}
@media (max-width: 480px) {
  .message {
    padding: 0 calc(100% / 24) 10%;
  }
  .message>div {
    width: 100%;
    flex-flow: column;
    gap: 1em;
  }
  .message .secTitle {
    width: 100%;
    margin-top: 0;
  }
  .message .secTitle p {
    font-size: 2.5em;
  }
  .message>div>p {
    width: 100%;
    font-size: .875em;
    line-height: 2;
    letter-spacing: .05em;
  }
  .about main .sec>div {
    flex-flow: column;
    gap: 3em;
  }
  .about main .sec .profile,
  .about main .sec .access {
    width: 100%;
  }
  .about main .sec .profile table {
    font-size: .875em;
  }
  .about main .sec .profile table th {
    width: 20%;
    padding: 2em 0;
  }
  .about main .sec .profile table td {
    width: 80%;
    padding: 2em 0 2em 2em;
  }
  .about main .sec .profile table td dl {
    flex-flow: column;
    align-items: flex-start;
  }
  .about main .sec .profile table td dl dt {
    width: auto;
  }
  .about main .sec .profile table td dl dt:nth-of-type(1) {
    width: 5em;
  }
  .about main .sec .profile table td dl dd {
    width: 100%;
  }
}



/* .info ******************************************************************************************************************************** */
.management hgroup:not(.secTitle) {
  display: flex;
  align-items: baseline;
  font-size: 1.125em;
  font-weight: 500;
  letter-spacing: .08em;
}
.management>div>h3 {
  font-size: 1.125em;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: .08em;
}
.management>div>h3 small {
  font-size: 1em;
}
.management>div>h3 small::before {
  content: '※';
}
.management ul {
  list-style: none;
  counter-reset: managementNum 0;
}
.management ul li {
  padding: 2.5em 0 2.25em;
  letter-spacing: .08em;
  counter-increment: managementNum 1;
}
.management ul li:not(:first-child) {
  border-top: 1px solid #fff;
}
.management ul li:last-child {
  padding-bottom: 0;
}
.management ul li dl dt {
  font-size: 1.375em;
  font-weight: 700;
  margin-bottom: .625em;
}
.management ul li dl dt::before {
  content: counter(managementNum) '. ';
}
.management ul li dl dd {
  line-height: 2;
  display: inline;
}
.management ul li dl div dd:not(:nth-of-type(1),.none) {
  margin-left: 1em;
}
.management ul li dl div dd::before {
  content: '●';
}
.management ul li dl div dd.none::before {
  content: '';
}
.safety>div>div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.5em;
}
.safety>div>div .secTitle {
  margin-bottom: 0;
  width: 30%;
}
.safety>div>div>p {
  width: 65%;
  line-height: 2;
  letter-spacing: .15em;
}
.safety ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 5.5%;
}
.safety ul li {
  width: 25%;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.safety ul li::before,
.safety ul li::after {
  content: '';
  display: block;
  position: absolute;
  border-radius: 50%;
}
.safety ul li::before {
  inset: 0 0 0 0;
  z-index: -2;
  background: var(--grdViolet);
  box-shadow: .75em .75em .75em #251e1c28;
}
.safety ul li::after {
  inset: .6875em;
  z-index: -1;
  background: #fff;
  box-shadow: .75em .75em .75em #251e1c28 inset;
}
.safety ul li:nth-child(1) img {
  width: 62.5%;
}
.safety ul li:nth-child(2) img {
  width: 72.5%;
}
.safety ul li:nth-child(3) img {
  width: 72.5%;
}
@media (max-width: 480px) {
  .management hgroup:not(.secTitle) {
    flex-flow: column;
    font-size: .875em;
    letter-spacing: .05em;
    gap: .75em;
  }
  .management ul li {
    letter-spacing: .05em;
  }
  .management ul li dl dt {
    font-size: 1em;
    line-height: 1.5625;
  }
  .management ul li dl dd {
    font-size: .875em;
    line-height: 1.75;
  }
  .safety>div>div {
    flex-flow: column;
    gap: 2.5em;
  }
  .safety>div>div .secTitle {
    width: 100%;
  }
  .safety>div>div>p {
    width: 100%;
    font-size: .875em;
    line-height: 1.75;
    letter-spacing: .05em;
  }
  .safety ul {
    flex-flow: column;
    align-items: center;
    gap: 1.625em;
  }
  .safety ul li {
    width: 58%;
  }
}



/* .recruit ******************************************************************************************************************************** */
.recruit main .sec.grd {
  padding-bottom: 0;
}
.recruit main .pageTitle {
  padding: 0 0 7.5%;
}
.recruit main .pageTitle>hgroup {
  width: auto;
}
.recruit main .pageTitle p {
  font-weight: 700;
  color: #fff;
}
.recruit main .pageTitle p::after {
  background-image: url(../_img/skewline_w.svg);
}
.recruit .sec section {
  display: flex;
  justify-content: space-between;
}
.recruit .sec section div,
.recruit .sec section img {
  width: 47.75%;
}
.recruit .sec section div>p {
  font-size: 1.125em;
  line-height: 2.5;
  letter-spacing: .22em;
}
.seniors ul li {
  display: flex;
  flex-flow: row-reverse;
  justify-content: space-between;
  align-items: flex-start;
  padding: 5% 7.5%;
  background: #fff;
  box-shadow: .5em .5em .5em #251e1c28;
  margin-bottom: 3em;
}
.seniors ul li div {
  width: 71.5%;
}
.seniors ul li div h3 {
  font-size: 1.25em;
  letter-spacing: .1em;
  margin-bottom: 1em;
}
.seniors ul li div p {
  line-height: 2;
  letter-spacing: .15em;
}
.seniors ul li img {
  background: var(--colorViolet1p10);
  border-radius: 50%;
  width: 23.5%;
}
.recBtn {
  list-style: none;
  background: url(../_img/recruit_bg.webp) no-repeat center/cover;
  padding: 4em 0;
  display: flex;
  justify-content: center;
}
.recBtn li {
  border-radius: 9999px;
  overflow: hidden;
  box-shadow: .3125em .3125em .3125em #251e1c64;
}
.recBtn li a {
  display: block;
  font-size: 1.375em;
  letter-spacing: .15em;
  background: var(--colorYellow);
  padding: 1.5em 3em 1.75em;
  transition: .5s;
}
.recBtn li a:hover {
  background: #fff;
}
@media (max-width: 480px) {
  .recruit main .pageTitle {
    padding: 0 0 15%;
  }
  .recruit .sec section {
    flex-flow: column;
    align-items: center;
    gap: 3em;
  }
  .recruit .sec section div {
    width: 100%;
  }
  .recruit main .sec .secTitle {
    margin-bottom: 2em;
  }
  .recruit .sec section div>p {
    font-size: .875em;
    line-height: 2;
    letter-spacing: .075em;
  }
  .recruit .sec section img {
    width: 75%;
  }
  .seniors ul li {
    flex-flow: column-reverse;
    align-items: center;
    padding: 10% 11.25%;
    gap: 2em;
  }
  .seniors ul li div {
    width: 100%;
  }
  .seniors ul li div h3 {
    font-size: 1.125em;
    text-align: center;
  }
  .seniors ul li img {
    width: 40%;
  }
  .recBtn li a {
    font-size: .875em;
  }
}



/* .contact ******************************************************************************************************************************** */
.contact main>.sec.grd {
  padding: 7% 0;
}
.contact .formWrap {
  width: 78.5%;
  max-width: 1099px;
  margin: 0 auto;
  background: #fff;
  border-radius: 1em;
  color: var(--colorText);
  padding: 3.375em;
}
.contact .formWrap>ul {
  list-style: none;
  display: flex;
  line-height: 1.25;
  letter-spacing: .15em;
}
.contact .formWrap>ul li:nth-child(1) {
  width: 20%;
}
.contact.confirm .formWrap>ul {
  margin-bottom: 3em;
}
.contact.confirm .formWrap>ul li:nth-child(1) {
  width: 100%;
}
.contact .formWrap>ul li a,
.contact .formWrap>ul li span {
  color: var(--colorRed);
}
.contact .formWrap>dl {
  letter-spacing: .15em;
  display: flex;
  margin: 3em 0;
}
.contact .formWrap>dl dt {
  width: 20%;
}
.contact .formWrap>dl dt span::after,
.contact .formWrap th:has(+* [required]) label::after {
  content: '*';
  color: var(--colorRed);
}
.contact .formWrap>dl dd {
  margin-right: 2em;
}
.contact .formWrap>dl dd input {
  margin-right: .5em;
}
.contact .formWrap>table {
  width: 100%;
  letter-spacing: .15em;
  border-collapse: collapse;
}
.contact .formWrap>table tr {
  border-top: 1px solid var(--colorText);
}
.contact .formWrap>table tr th,
.contact .formWrap>table tr td {
  padding: 2em 0;
}
.contact .formWrap>table tr th {
  font-weight: 400;
  width: 20%;
}
.contact .formWrap>table tr th:has(+td textarea) {
  vertical-align: top;
  padding-top: 3em;
}
.contact .formWrap>table tr th small {
  display: block;
  font-size: .875em;
  line-height: 1.0625;
  letter-spacing: .02em;
  text-indent: -1.02em;
  margin: .25em 0 0 1.02em;
}
.contact .formWrap>table tr th small::before {
  content: '※';
}
.contact .formWrap>table tr td {
  width: 80%;
}
.contact .formWrap>table tr td input,
.contact .formWrap>table tr td textarea {
  width: 100%;
  font: inherit;
  letter-spacing: inherit;
  border: 1px solid var(--colorText);
  border-radius: .3125em;
  padding: .625em;
}
.contact .formWrap>table tr td textarea {
  resize: vertical;
  height: 20em;
}
.contact .formWrap>table tr td p {
  color: var(--colorRed);
  margin-top: .375em;
}
.contact .formWrap>section {
  margin-top: 5%;
}
.contact .formWrap>section h2 {
  font-size: 1.25em;
  letter-spacing: .2em;
  color: var(--colorRed);
}
.contact .formWrap>section h3 {
  font-size: 1em;
  margin: 2em auto 1em;
}
.contact .formWrap>section p {
  line-height: 1.375;
}
.contact .formWrap>section ul {
  line-height: 1.375;
}
.contact .formWrap>section ul:nth-of-type(1) {
  margin-left: 1.25em;
}
.contact .formWrap>section ul:nth-of-type(2) {
  list-style: none;
}
.contact .formWrap>div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.75em;
  margin-top: 5%;
}
.contact .formWrap>div input {
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background: none;
  width: 26.5%;
  color: var(--colorViolet1);
  font-weight: 700;
  letter-spacing: .15em;
  padding: 1em 0;
  border-radius: 9999px;
  cursor: pointer;
  transition: .5s;
}
.contact .formWrap>div input[type="button"] {
  border: 1px solid var(--colorViolet1);
}
.contact .formWrap>div input[type="submit"] {
  background: var(--colorYellow);
}
.contact .formWrap>div input[type="submit"][disabled] {
  opacity: .25;
}
.contact .formWrap>div input:hover {
  border-color: transparent;
  background: var(--colorOver);
}
.contact .formWrap>h2 {
  font-size: 2em;
  letter-spacing: .2em;
  margin-bottom: 1em;
}
.contact .formWrap>p {
  line-height: 1.25;
  letter-spacing: .15em;
}
@media (max-width: 480px) {
  .contact main>.sec.grd {
    padding: 10% calc(100% / 24);
  }
  .contact .formWrap {
    width: 100%;
    padding: 5% 5% 10%;
  }
  .contact .formWrap>ul {
    line-height: 1.5;
    font-size: .875em;
    flex-flow: column;
    align-items: center;
    gap: 1em;
  }
  .contact .formWrap>ul li:nth-child(1) {
    width: auto;
  }
  .contact .formWrap>ul li:nth-child(2) {
    letter-spacing: .1em;
    text-align: center;
  }
  .contact .formWrap>dl {
    font-size: .875em;
    margin: 2em 0 1em;
  }
  .contact .formWrap>dl dt {
    width: auto;
    margin-right: 4em;
  }
  .contact .formWrap>table,
  .contact .formWrap>table>*,
  .contact .formWrap>table tr,
  .contact .formWrap>table tr th,
  .contact .formWrap>table tr td {
    display: block;
    width: 100%;
  }
  .contact .formWrap>table {
    border-top: 1px solid var(--colorText);
  }
  .contact .formWrap>table tr {
    border-top: none;
  }
  .contact .formWrap>table tr th,
  .contact .formWrap>table tr th:has(+td textarea) {
    padding: 2em 0 .75em;
    font-size: .875em;
  }
  .contact .formWrap>table tr th small {
    display: inline;
    font-size: .9375em;
  }
  .contact .formWrap>table tr td {
    padding: 0;
  }
  .contact .formWrap>section {
    margin-top: 15%;
  }
  .contact .formWrap>div {
    gap: 1em;
    margin-top: 10%;
    flex-flow: column-reverse;
    align-items: center;
  }
  .contact .formWrap>div input {
    width: 67.35%;
  }
  .contact.thanks .formWrap {
    padding: 10% 5%;
    text-align: center;
  }
  .contact .formWrap>h2 {
    font-size: 1em;
    margin-bottom: 1.5em;
  }
  .contact .formWrap>p {
    font-size: .875em;
    line-height: 1.5;
    letter-spacing: .1em;
  }
}