@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@100;300;400;500;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@keyframes svg_filter {
  0% {
    filter: url(#svg_filter_0);
  }
  25% {
    filter: url(#svg_filter_1);
  }
  50% {
    filter: url(#svg_filter_2);
  }
  75% {
    filter: url(#svg_filter_3);
  }
  100% {
    filter: url(#svg_filter_4);
  }
}
body {
  font-family: "M PLUS 1p", sans-serif;
  background: linear-gradient(0deg, #b6dde7 0%, #e4f4f9 100%);
  position: relative;
  overflow-x: hidden;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.8;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #000a0b;
}

p {
  line-height: 2;
  margin-bottom: 0.6em;
}
p:last-child {
  margin-bottom: 0;
}

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

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

h1 {
  font-size: clamp(28px, 3vw, 34px);
  color: #00afe5;
  letter-spacing: 0.1em;
}

h2 {
  font-size: clamp(22px, 2.5vw, 28px);
  color: #00afe5;
}

h3 {
  font-size: clamp(18px, 1.9vw, 20px);
  color: #00afe5;
}

.cards {
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 700px) {
  .cards {
    grid-template-columns: 1fr;
  }
}
.cards .card {
  background: #feffff;
  border-radius: 14px;
  padding: 15px;
}
.cards .card a {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 100%;
  text-decoration: none;
  color: inherit;
}
.cards .card img.illust {
  display: block;
  max-width: 140px;
  width: 60%;
  height: auto;
  margin: 0 auto 1em;
  aspect-ratio: 1/1;
}
.cards .card .title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 1em;
}
.cards .card .title::before, .cards .card .title::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  animation: svg_filter 0.5s infinite;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.cards .card .title::before {
  background-image: url("../img/page/top/mainvisual/emphasis_1.svg");
}
.cards .card .title::after {
  background-image: url("../img/page/top/mainvisual/emphasis_2.svg");
}
.cards .card a img:not(.illust) {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s;
}
.cards .card h2 {
  color: #00afe5;
  text-align: center;
  margin: 1.2em 1.4em 0.4em;
}
.cards .card h2 .kana {
  display: block;
  font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 500;
  color: #1f3351;
}
.cards .card h2 .kanji {
  display: block;
  margin-top: 0.2em;
}
.cards .card .job {
  font-size: clamp(13px, 1.4vw, 15px);
  color: #1f3351;
  margin: 0 1.4em 1.2em;
  padding: 0;
  line-height: 1.5;
  text-align: center;
}
.cards .card .txt {
  padding: 0 10px 30px;
}
.cards .card .btn {
  margin-top: auto;
  padding: 0.6em 1em;
  color: #ee7118;
  font-weight: 500;
  text-align: center;
  background: rgba(238, 113, 24, 0.1);
  border-radius: 8px;
  position: relative;
  transition: 0.2s;
}
.cards .card .btn::after {
  font-size: 0.7em;
  right: 1em;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f054";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s;
}
.cards .card:hover .btn {
  background: rgba(238, 113, 24, 0.2);
}
.cards .card:hover .btn::after {
  right: 0.8em;
}

.table {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  background: #feffff;
  margin-bottom: 40px;
}
.table table {
  width: 100%;
  border-collapse: collapse;
}
.table table thead {
  background: #ddf8ff;
}
.table table th,
.table table td {
  padding: 0.5em 0.8em;
  text-align: left;
  border: 1px solid #8bb9c7;
  font-weight: 400;
}
.table table th {
  max-width: 30%;
  width: 200px;
  background: #ddf8ff;
}
@media (max-width: 768px) {
  .table table th {
    width: auto;
    max-width: none;
  }
}
.table table td ul {
  margin: 0.3em 0 0;
  padding-left: 1.2em;
}
.table table td ul li {
  list-style: disc;
  margin-bottom: 0.25em;
}
.table table td a {
  color: #ee7118;
  text-decoration: underline;
}
.table table td a:hover {
  opacity: 0.85;
}

.table_2 {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  margin-bottom: 40px;
}
.table_2 table {
  width: 100%;
  border-collapse: collapse;
}
.table_2 table thead {
  background: #ddf8ff;
}
@media (max-width: 800px) {
  .table_2 table tr {
    display: block;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #8bb9c7;
  }
}
.table_2 table tr th,
.table_2 table tr td {
  padding: 0.8em 1em;
  text-align: left;
  border: 1px solid #8bb9c7;
  font-weight: 400;
}
@media (max-width: 800px) {
  .table_2 table tr th,
  .table_2 table tr td {
    display: block;
    border: none;
  }
}
.table_2 table tr th {
  max-width: 30%;
  width: 200px;
  background: #ddf8ff;
}
@media (max-width: 800px) {
  .table_2 table tr th {
    width: auto;
    max-width: none;
  }
}
.table_2 table tr td {
  background: #feffff;
}
.table_2 table tr td ul {
  padding-left: 1.5em;
}
.table_2 table tr td ul li {
  list-style: disc;
  margin-bottom: 0.2em;
}
.table_2 table tr td ul li:last-child {
  margin-bottom: 0;
}
.table_2 table tr td a {
  color: #ee7118;
  text-decoration: underline;
}

@keyframes page_title_fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.page_title {
  padding: 40px 20px 60px;
  text-align: center;
}
.page_title img.icon {
  width: 160px;
  aspect-ratio: 4/3;
  animation: page_title_fadeInUp 0.6s ease-out forwards;
}
.page_title .txt {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: clamp(28px, 3vw, 34px);
  margin-bottom: 20px;
  opacity: 0;
  animation: page_title_fadeInUp 0.5s ease-out 0.3s forwards;
}
.page_title .txt img {
  width: 0.6em;
  animation: svg_filter 0.5s infinite 0.7s;
}
.page_title .introduction {
  animation: page_title_fadeInUp 0.6s ease-out forwards;
}

.breadcrumb {
  padding: 20px clamp(10px, 1.5vw, 30px);
  font-size: clamp(11px, 1.2vw, 13px);
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
}
.breadcrumb ol li {
  display: flex;
  align-items: center;
}
.breadcrumb ol li:not(:last-child)::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f054";
  margin: 0 0.5em;
  color: #666;
}
.breadcrumb ol li a {
  color: #666;
  text-decoration: underline;
}
.breadcrumb ol li a:hover {
  opacity: 0.8;
}
.breadcrumb ol li span {
  color: #1f3351;
}

header.pc {
  padding: 20px 30px 0px;
}
@media (max-width: 850px) {
  header.pc {
    display: none;
  }
}
header.pc .upper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
header.pc .upper .header_links {
  display: flex;
  align-items: center;
  gap: 1em;
}
header.pc .upper .header_links a {
  font-size: clamp(13px, 1.4vw, 15px);
  color: #666;
  text-decoration: underline;
}
header.pc .upper .header_links a:hover {
  opacity: 0.8;
}
header.pc .upper .header_links a.header_instagram {
  text-decoration: none;
  font-size: clamp(18px, 2vw, 22px);
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #feffff;
  width: 1.5em;
  height: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
header.pc .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
header.pc .inner .logo {
  line-height: 0;
}
header.pc .inner .logo img {
  width: 280px;
}
header.pc .inner ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
header.pc .inner ul li:nth-child(1) a {
  animation-delay: 0s;
}
header.pc .inner ul li:nth-child(2) a {
  animation-delay: 0.08s;
}
header.pc .inner ul li:nth-child(3) a {
  animation-delay: 0.16s;
}
header.pc .inner ul li:nth-child(4) a {
  animation-delay: 0.24s;
}
header.pc .inner ul li:nth-child(5) a {
  animation-delay: 0.32s;
}
header.pc .inner ul li:nth-child(6) a {
  animation-delay: 0.4s;
}
header.pc .inner ul li:nth-child(7) a {
  animation-delay: 0.48s;
}
header.pc .inner ul li:nth-child(8) a {
  animation-delay: 0.56s;
}
header.pc .inner ul li:nth-child(9) a {
  animation-delay: 0.64s;
}
header.pc .inner ul li:nth-child(10) a {
  animation-delay: 0.72s;
}
header.pc .inner ul li a {
  width: 130px;
  height: 85px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  background: #feffff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 10, 11, 0.1);
  font-size: clamp(13px, 1.4vw, 15px);
  animation: header_nav_item 0.3s both;
  position: relative;
}
header.pc .inner ul li a:before {
  content: "";
  display: block;
  width: 40px;
  aspect-ratio: 1/1;
  background-image: url("../img/common/header/emphasis.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -12px;
  right: -7px;
  opacity: 0;
  animation: svg_filter 0.5s infinite;
}
header.pc .inner ul li a:hover:before {
  transform: scale(1.1);
  opacity: 1;
}
@keyframes header_nav_item {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}
header.pc .inner ul li a img {
  height: 40px;
  transition: all 0.1s ease;
}
header.pc .inner ul li a:hover img {
  transform: translateY(-10px) scale(1.1);
}

.sp_header {
  width: calc(100% - 10px);
  padding: 5px 20px;
  position: sticky;
  top: 5px;
  left: 0;
  right: 0;
  z-index: 101;
  margin: 0 auto;
  background: #feffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 10, 11, 0.1);
}
@media (min-width: 850px) {
  .sp_header {
    display: none;
  }
}
.sp_header .logo {
  line-height: 0;
}
.sp_header .logo img {
  width: auto;
  height: 20px;
}

.drawer_bg {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(254, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  pointer-events: none;
}
.drawer_bg.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (min-width: 850px) {
  .drawer_bg {
    display: none;
  }
}

.drawer_btn {
  font-size: 40px;
  width: 1em;
  height: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  cursor: pointer;
}
.drawer_btn span,
.drawer_btn span:after,
.drawer_btn span:before {
  content: "";
  display: block;
  width: 0.6em;
  height: 3px;
  border-radius: 10px;
  background: #1f3351;
  position: absolute;
  transition: 0.3s;
}
.drawer_btn span:before {
  bottom: 0.2em;
  transition: 0.3s 0.3s, transform 0.3s;
}
.drawer_btn span:after {
  top: 0.2em;
  transition: 0.3s 0.3s, transform 0.3s;
}
.drawer_btn span.active {
  background: rgba(254, 255, 255, 0);
}
.drawer_btn span.active:before {
  bottom: 0;
  transform: rotate(-45deg);
  transition: 0.3s, transform 0.3s 0.3s;
}
.drawer_btn span.active:after {
  top: 0;
  transform: rotate(45deg);
  transition: 0.3s, transform 0.3s 0.3s;
}

.drawer_content {
  width: 100%;
  padding: 80px 10px 20px;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: -100vh;
  z-index: 100;
  transition: 0.3s;
  right: 0;
  opacity: 0;
}
.drawer_content.active {
  opacity: 1;
  top: 0;
}
.drawer_content ul {
  border-radius: 10px;
  padding: 10px;
  font-size: clamp(13px, 1.4vw, 15px);
}
.drawer_content ul li {
  border-bottom: 1px solid #8bb9c7;
}
.drawer_content ul li a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 1em;
  padding: 0.8em 10px;
  font-weight: 500;
}
.drawer_content ul li a::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f054";
  margin-left: auto;
  font-size: clamp(13px, 1.4vw, 15px);
}
.drawer_content ul li a img {
  aspect-ratio: 1/1;
  height: 40px;
}

main {
  padding: 0 15px clamp(80px, 10vw, 200px);
}
main .about_page {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 10px;
}
main .about_page .about {
  margin-bottom: 80px;
  text-align: center;
}
main .about_page .program {
  margin-bottom: 80px;
}
main .about_page .program .title {
  text-align: center;
  margin-bottom: 20px;
}
main .about_page .program ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 600px) {
  main .about_page .program ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
main .about_page .program ul li {
  display: flex;
  gap: 1.5em;
  align-items: flex-start;
  background: #feffff;
  border-radius: 10px;
  padding: 20px;
}
@media (max-width: 600px) {
  main .about_page .program ul li {
    flex-direction: column;
    align-items: center;
  }
}
main .about_page .program ul li img {
  flex-shrink: 0;
  width: 160px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
main .about_page .program ul li .txt {
  flex: 1;
}
@media (max-width: 600px) {
  main .about_page .program ul li h3 {
    text-align: center;
  }
}
main .about_page .photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
@media (max-width: 600px) {
  main .about_page .photos {
    grid-template-columns: repeat(2, 1fr);
  }
}
main .about_page .photos img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
main .page_day ol.day_flow {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
main .page_day ol.day_flow li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
main .page_day ol.day_flow li .time {
  display: inline-block;
  background: #00afe5;
  color: #feffff;
  padding: 0.4em 0.8em;
  border-radius: 8px;
  font-weight: 500;
  font-size: clamp(13px, 1.4vw, 15px);
  white-space: nowrap;
}
main .page_day ol.day_flow li .content {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: #feffff;
  border-radius: 12px;
  padding: 20px clamp(15px, 2vw, 30px);
}
main .page_day ol.day_flow li .content .txt {
  flex: 1;
}
main .page_day ol.day_flow li .content .txt h3 {
  color: #00afe5;
  margin-bottom: 0.5em;
}
main .page_day ol.day_flow li .content .photo img {
  width: 200px;
  overflow: hidden;
  border-radius: 10px;
}
@media (max-width: 800px) {
  main .page_day ol.day_flow li .content .photo img {
    width: 100%;
  }
}
main .page_company {
  max-width: 1000px;
  margin: 0 auto;
}
main .page_company .map {
  width: 100%;
  position: relative;
  padding-top: 56.25%;
  margin-top: 60px;
}
main .page_company .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
main .page_job {
  max-width: 1000px;
  margin: 0 auto;
}
main .page_recruit {
  max-width: 1000px;
  margin: 0 auto;
}
main .page_recruit .introduction {
  margin-bottom: 40px;
}

.page_top {
  position: relative;
  padding-top: 40px;
}
.page_top .logo {
  width: 100%;
  position: absolute;
  inset: 0;
  top: 60px;
  margin: auto;
}
@media (max-width: 850px) {
  .page_top .logo {
    top: 0;
    position: relative;
    margin-bottom: 40px;
  }
}
.page_top .logo img {
  display: block;
  max-width: 400px;
  width: 70%;
  margin: 0 auto 30px;
}
.page_top .logo h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2em;
  color: #1f3351;
  font-size: clamp(18px, 2.5vw, 28px);
}
.page_top .logo h1::before, .page_top .logo h1::after {
  content: "";
  display: block;
  width: 2em;
  aspect-ratio: 1/1;
  animation: svg_filter 0.5s infinite;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.page_top .logo h1::before {
  background-image: url("../img/page/top/mainvisual/emphasis_1.svg");
}
.page_top .logo h1::after {
  background-image: url("../img/page/top/mainvisual/emphasis_2.svg");
}
.page_top .mainvisual {
  padding: 0 20px 40px;
  position: relative;
}
@media (max-width: 850px) {
  .page_top .mainvisual {
    margin-bottom: 0px;
  }
}
.page_top .mainvisual .photo {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: -2;
  animation: mv_photo 1s 0.3s ease-in-out both;
}
@keyframes mv_photo {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(10px) scale(0.95);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}
.page_top .mainvisual ul {
  width: 100%;
  position: relative;
  bottom: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 850px) {
  .page_top .mainvisual ul {
    display: none;
  }
}
.page_top .mainvisual ul li a {
  width: 130px;
  display: flex;
  place-content: center;
  place-items: center;
  flex-direction: column;
  padding-block: 10px;
  background: #feffff;
  border-radius: 10px;
  font-size: clamp(13px, 1.4vw, 15px);
  gap: 5px;
}
.page_top .mainvisual ul li a img {
  height: 40px;
}
.page_top .about {
  padding: 80px 20px;
  overflow: hidden;
}
.page_top .about .inner {
  position: relative;
  background: #feffff;
  max-width: 800px;
  box-shadow: 0 0 20px rgba(0, 10, 11, 0.1);
  margin: 0 auto;
  border-radius: 30px;
  padding: 60px 40px;
  text-align: center;
}
@media (max-width: 800px) {
  .page_top .about .inner {
    text-align: left;
  }
}
.page_top .about .inner .copy img {
  max-width: 550px;
  margin-bottom: clamp(20px, 3vw, 40px);
}
.page_top .about .inner .copy img.pc {
  display: inline-block;
}
.page_top .about .inner .copy img.sp {
  display: none;
}
@media (max-width: 600px) {
  .page_top .about .inner .copy img.pc {
    display: none;
  }
  .page_top .about .inner .copy img.sp {
    display: inline-block;
    width: 80%;
  }
}
.page_top .about .inner p {
  font-size: clamp(18px, 1.9vw, 20px);
  line-height: 2.4;
  margin-bottom: 1em;
}
@media (max-width: 600px) {
  .page_top .about .inner p br {
    display: none;
  }
}
.page_top .about .inner .photo {
  position: absolute;
  border-radius: 30px;
  box-shadow: 0 0 20px rgba(0, 10, 11, 0.1);
}
@media (max-width: 800px) {
  .page_top .about .inner .photo {
    display: none;
  }
}
.page_top .about .inner .photo_1 {
  width: 200px;
  top: -80px;
  right: -150px;
}
.page_top .about .inner .photo_2 {
  width: 230px;
  top: 150px;
  left: -150px;
}
.page_top .about .inner .photo_3 {
  width: 240px;
  top: 300px;
  right: -210px;
}
.page_top .about .inner .photo_4 {
  width: 220px;
  top: 420px;
  left: -180px;
}
.page_top .recruit {
  margin: clamp(40px, 6vw, 80px) auto 120px;
  padding: 0 20px;
  max-width: 1000px;
}
.page_top .recruit .recruit_heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-weight: 500;
  color: #00afe5;
  margin-bottom: 1.5em;
}
.page_top .recruit .recruit_heading img {
  animation: svg_filter 0.5s infinite;
  width: 0.6em;
}
.page_top .slider {
  width: 100vw;
  overflow: hidden;
  margin-bottom: 180px;
}
.page_top .slider .slider__item {
  padding: 0 10px;
  box-sizing: border-box;
}
.page_top .slider .slider__item img {
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  display: block;
}

@keyframes cloud {
  0%, 100% {
    transform: translateX(30px);
  }
  50% {
    transform: translateX(-30px);
  }
}
@keyframes cloud_right {
  0% {
    transform: translateX(60px) scale(0.9);
    opacity: 0;
  }
  100% {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}
@keyframes cloud_left {
  0% {
    transform: translateX(-60px) scale(0.9);
    opacity: 0;
  }
  100% {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}
.cloud_pc {
  width: 100%;
  height: 30vw;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.6;
}
@media (max-width: 800px) {
  .cloud_pc {
    display: none;
  }
}
.cloud_pc .center .cloud_m {
  width: 14vw;
  top: 7vw;
  left: 50vw;
  animation: cloud_left 1.8s 0.8s both;
}
.cloud_pc .center .cloud_m img {
  animation: cloud 20s both infinite reverse;
}
.cloud_pc .center .cloud_s {
  width: 8vw;
  top: 14vw;
  left: 32vw;
  animation: cloud_right 1.6s 0.6s both;
}
.cloud_pc .center .cloud_s img {
  animation: cloud 30s both infinite;
}
.cloud_pc .right .cloud_l {
  width: 42vw;
  top: -3vw;
  right: -12vw;
  animation: cloud_right 1.6s 0.6s both;
}
.cloud_pc .right .cloud_l img {
  animation: cloud 20s both infinite;
}
.cloud_pc .right .cloud_m {
  width: 17vw;
  top: 15vw;
  right: 17vw;
  animation: cloud_right 1.4s 0.4s both;
}
.cloud_pc .right .cloud_m img {
  animation: cloud 30s both infinite reverse;
}
.cloud_pc .right .cloud_s {
  width: 10vw;
  top: 20vw;
  right: 2vw;
  animation: cloud_right 1.2s 0.2s both;
}
.cloud_pc .right .cloud_s img {
  animation: cloud 50s both infinite;
}
.cloud_pc .left .cloud_l {
  width: 42vw;
  top: 7vw;
  left: -16vw;
  animation: cloud_left 1.7s 0.7s both;
}
.cloud_pc .left .cloud_l img {
  animation: cloud 30s both infinite reverse;
}
.cloud_pc .left .cloud_m {
  width: 16vw;
  top: 3vw;
  left: 18vw;
  animation: cloud_left 1.5s 0.5s both;
}
.cloud_pc .left .cloud_m img {
  animation: cloud 40s both infinite;
}
.cloud_pc .left .cloud_s {
  width: 9vw;
  top: 2vw;
  left: 3vw;
  animation: cloud_left 1.3s 0.3s both;
}
.cloud_pc .left .cloud_s img {
  animation: cloud 50s both infinite reverse;
}
.cloud_pc span {
  position: absolute;
}
.cloud_pc span img {
  display: block;
  width: 100%;
}

.page_staff {
  max-width: 1300px;
  margin: 0 auto;
}
.page_staff .back {
  margin-bottom: 1.5em;
}
.page_staff .back a {
  color: #00afe5;
  text-decoration: underline;
}
.page_staff .cards {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) {
  .page_staff .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
.page_staff .cards .card {
  text-align: center;
  position: relative;
}
.page_staff .cards .card img {
  border-radius: 10px;
  margin-bottom: 20px;
}
.page_staff .cards .card span {
  display: block;
  line-height: 1.2;
}
.page_staff .cards .card span.kana {
  margin-bottom: 0.5em;
}
.page_staff .cards .card span.kanji {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 500;
  color: #00afe5;
  margin-bottom: 1em;
}
.page_staff .cards .card span.job {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  background: #ee7118;
  color: #feffff;
  padding: 0.6em 1em;
  border-radius: 10em;
  position: absolute;
  left: 0;
  right: 0;
  top: -8px;
}
.page_staff .kaigo-staff {
  margin: 40px auto 0;
  max-width: 480px;
  text-align: center;
}
.page_staff .kaigo-staff a {
  display: block;
  background: #feffff;
  border-radius: 12px;
  padding: 20px;
  color: inherit;
  position: relative;
}
.page_staff .kaigo-staff img {
  display: block;
  width: 300px;
  margin: 0 auto 16px;
}
.page_staff .kaigo-staff .text {
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: clamp(13px, 1.4vw, 15px);
}
.page_staff .kaigo-staff .job {
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.2;
  margin: 0 auto;
  background: #ee7118;
  color: #feffff;
  padding: 0.6em 1em;
  border-radius: 10em;
  position: absolute;
  left: 0;
  right: 0;
  top: -8px;
}
.page_staff .kaigo-staff .btn {
  margin-top: auto;
  padding: 0.6em 1em;
  color: #ee7118;
  font-weight: 500;
  text-align: center;
  background: rgba(238, 113, 24, 0.1);
  border-radius: 8px;
  position: relative;
  transition: 0.2s;
}
.page_staff .kaigo-staff .btn::after {
  font-size: 0.7em;
  right: 1em;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f054";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s;
}

.page_staff_profile {
  max-width: 900px;
  margin: 0 auto 80px;
  padding: 0 20px;
}
.page_staff_profile .name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}
.page_staff_profile .name img {
  width: 25px;
  height: auto;
  flex-shrink: 0;
  animation: svg_filter 0.5s infinite;
}
.page_staff_profile .name .txt {
  text-align: center;
}
.page_staff_profile .name .txt span {
  display: block;
  font-weight: 500;
}
.page_staff_profile .name .txt span:last-child {
  font-size: clamp(28px, 3vw, 34px);
  color: #00afe5;
  letter-spacing: 0.1em;
}
.page_staff_profile .photo_2 {
  max-width: 560px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
}
.page_staff_profile .photo_2 img {
  display: block;
}
.page_staff_profile .photo {
  position: relative;
  max-width: 300px;
  margin: 0 auto 2.5em;
}
.page_staff_profile .photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 12px solid #feffff;
}
.page_staff_profile .photo .position {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  color: #feffff;
  background: #ee7118;
  padding: 0.3em 0.8em;
  border-radius: 10em;
  position: absolute;
  bottom: -0.5em;
  left: 50%;
  transform: translateX(-50%);
}
.page_staff_profile .contents {
  background: #feffff;
  padding: 30px 20px;
  border-radius: 12px;
}
.page_staff_profile .contents .message {
  margin-bottom: 20px;
  text-align: center;
}
@media (max-width: 500px) {
  .page_staff_profile .contents .message {
    text-align: left;
  }
  .page_staff_profile .contents .message br {
    display: none;
  }
}
.page_staff_profile .contents .job {
  text-align: center;
  margin-bottom: 20px;
}
.page_staff_profile .contents .job .title {
  font-size: clamp(18px, 1.9vw, 20px);
  font-weight: 500;
  color: #00afe5;
}
.page_staff_profile .contents .skill {
  border: 1px solid #ee7118;
  border-radius: 12px;
  margin-top: 40px;
  padding: 20px 10px;
}
.page_staff_profile .contents .skill .title {
  font-size: clamp(18px, 1.9vw, 20px);
  font-weight: 500;
  color: #ee7118;
  text-align: center;
}
.page_staff_profile .contents .skill .title .icon {
  width: 60px;
  height: auto;
  animation: svg_filter 0.5s infinite;
}
.page_staff_profile .contents .skill .title span {
  display: block;
}
.page_staff_profile .contents .skill ul {
  text-align: center;
}
.page_staff_profile .contents .skill ul li {
  display: inline-block;
  padding: 0.4em;
}

.page_sitemap {
  max-width: 900px;
  margin: 0 auto 80px;
  padding: 0 20px;
}
.page_sitemap .list {
  display: flex;
  gap: 3em;
  align-items: flex-start;
  background: #feffff;
  border-radius: 12px;
  padding: 2em;
  box-shadow: 0 2px 12px rgba(0, 10, 11, 0.06);
  border: 1px solid rgba(0, 175, 229, 0.1);
}
@media (max-width: 700px) {
  .page_sitemap .list {
    flex-direction: column;
  }
}
.page_sitemap .list .left,
.page_sitemap .list .right {
  flex: 1;
  min-width: 0;
}
.page_sitemap .list .root {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1em;
}
.page_sitemap .list .item {
  padding: 0.3em 0;
}
.page_sitemap .list .item > a,
.page_sitemap .list .item .children a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000a0b;
  text-decoration: none;
  transition: color 0.2s;
}
.page_sitemap .list .item > a::after,
.page_sitemap .list .item .children a::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f054";
  margin-left: auto;
}
.page_sitemap .list .item > a:hover,
.page_sitemap .list .item .children a:hover {
  color: #ee7118;
}
.page_sitemap .list .item > a {
  padding: 0.1em 0;
  margin-bottom: 0.3em;
}
.page_sitemap .list .item .children {
  list-style: none;
  padding: 0;
  margin: 0.5em 0 0;
  padding-top: 0.8em;
}
.page_sitemap .list .item .children li {
  margin-bottom: 0.5em;
}
.page_sitemap .list .item .children li:last-child {
  margin-bottom: 0;
}
.page_sitemap .list .item .children a {
  padding: 0.4em 0 0.4em 1.2em;
}

.page_404 {
  max-width: 600px;
  margin: 0 auto 80px;
  padding: 60px 20px;
  text-align: center;
}
.page_404 .message {
  color: #1f3351;
  margin-bottom: 1em;
}
.page_404 .sub {
  color: #1f3351;
  margin-bottom: 2.5em;
}
.page_404 .links {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: center;
}
.page_404 .links a {
  display: inline-block;
  padding: 0.7em 1.8em;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}
.page_404 .links a:hover {
  opacity: 0.9;
}
.page_404 .links .btn_primary {
  background: #ee7118;
  color: #feffff;
}
.page_404 .links .btn_secondary {
  background: rgba(0, 175, 229, 0.1);
  color: #00afe5;
  border: 1px solid rgba(0, 175, 229, 0.3);
}

.page_faq {
  max-width: 900px;
  margin: 0 auto;
}
.page_faq .list .item {
  background: #feffff;
  padding: 20px 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  position: relative;
}
.page_faq .list .item img.icon {
  width: 30px;
  position: absolute;
  top: 20px;
  left: 30px;
  animation: svg_filter 0.5s infinite;
}
@media (max-width: 500px) {
  .page_faq .list .item img.icon {
    top: -10px;
    left: -5px;
    width: 30px;
  }
}
.page_faq .list .item .txt {
  padding-left: 60px;
}
@media (max-width: 500px) {
  .page_faq .list .item .txt {
    padding-left: 10px;
  }
}

.page_price {
  max-width: 1000px;
  margin: 0 auto 80px;
  padding: 0 20px;
}
.page_price h2 {
  margin: 2em 0 1em;
  padding-bottom: 0.5em;
  border-bottom: 2px solid rgba(0, 175, 229, 0.2);
}
.page_price h2:first-child {
  margin-top: 0;
}
.page_price h3 {
  color: #1f3351;
  margin: 1.8em 0 0.6em;
}
.page_price h4 {
  font-weight: 500;
  color: #1f3351;
  margin: 1.2em 0 0.5em;
}
.page_price > p {
  color: #1f3351;
  margin-bottom: 1em;
}
.page_price .note {
  color: #1f3351;
  margin-bottom: 1.2em;
}
.page_price ul.note {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page_price ul.note li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 0.4em;
}
.page_price ul.note li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #00afe5;
}
.page_price p.note {
  padding: 0.8em 1em;
  border-radius: 8px;
  border-left: 4px solid #00afe5;
}

#spotlight {
  background: rgba(254, 255, 255, 0.8);
}
#spotlight .spl-next,
#spotlight .spl-prev {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
#spotlight .spl-next::before,
#spotlight .spl-prev::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: solid 3px #000a0b;
  border-left: solid 3px #000a0b;
  transform: rotate(-45deg);
}
#spotlight .spl-next {
  transform: translateX(0) scaleX(-1);
  right: 10px;
}
#spotlight .spl-prev {
  transform: translateX(0) scaleX(1);
  left: 10px;
}
#spotlight .spl-footer {
  text-align: center;
  background: rgba(254, 255, 255, 0);
}
#spotlight .spl-footer .spl-title {
  font-size: clamp(13px, 1.4vw, 15px);
  color: #000a0b;
}
#spotlight .spl-header {
  background: rgba(254, 255, 255, 0);
  transform: translateY(0px);
}
#spotlight .spl-header .spl-zoom-in,
#spotlight .spl-header .spl-zoom-out,
#spotlight .spl-header .spl-autofit,
#spotlight .spl-header .spl-fullscreen,
#spotlight .spl-header .spl-page {
  display: none;
}
#spotlight .spl-header .spl-close {
  position: relative;
  opacity: 1;
}
#spotlight .spl-header .spl-close::before, #spotlight .spl-header .spl-close::after {
  content: "";
  display: block;
  width: 25px;
  height: 2px;
  background: #000a0b;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
#spotlight .spl-header .spl-close::after {
  transform: rotate(-45deg);
}
#spotlight .spl-track .spl-pane img {
  max-width: 75%;
  max-height: 80%;
  border-radius: 5px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px;
  line-height: 0;
}
@media (max-width: 800px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
.gallery img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.gallery img:hover {
  transform: scale(1.03);
  cursor: pointer;
}

.footer_illust {
  position: relative;
  width: 100%;
  z-index: -1;
}
.footer_illust .left,
.footer_illust .right {
  width: 45%;
  position: absolute;
  bottom: 0;
}
.footer_illust .left img,
.footer_illust .right img {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
}
.footer_illust .left {
  left: 0;
}
.footer_illust.animate .left .ground {
  animation: slideFromBottom 0.5s ease-in-out forwards;
}
.footer_illust.animate .left .tree {
  animation: slideFromBottom 0.8s ease-in-out forwards;
}
.footer_illust.animate .left .mountain {
  animation: slideFromBottom 1.5s ease-in-out forwards;
}
.footer_illust.animate .left .cloud {
  animation: slideFromBottom 2.5s ease-in-out forwards;
}
.footer_illust .right {
  right: 0;
}
.footer_illust.animate .right .ground {
  animation: slideFromBottom 0.5s ease-in-out forwards;
}
.footer_illust.animate .right .tree {
  animation: slideFromBottom 0.8s ease-in-out forwards;
}
.footer_illust.animate .right .mountain {
  animation: slideFromBottom 1.5s ease-in-out forwards;
}
.footer_illust.animate .right .cloud {
  animation: slideFromBottom 2.5s ease-in-out forwards;
}
.footer_illust .ground_foot {
  width: 100%;
  position: absolute;
  bottom: 0;
}
.footer_illust .ground_foot img {
  display: block;
  width: 100%;
  height: auto;
}
@keyframes slideFromBottom {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

footer {
  padding: 20px;
  background: #5faa8a;
}
footer .phone_btn {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
footer .phone_btn a {
  padding: 30px 40px;
  background: #feffff;
  border-radius: 20px;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
footer .phone_btn a img {
  width: 200px;
}
footer .phone_btn a .txt {
  text-align: center;
}
footer .phone_btn a .txt span {
  display: block;
}
footer .phone_btn a .txt span:nth-child(1) {
  font-size: clamp(18px, 1.9vw, 20px);
}
footer .phone_btn a .txt span:nth-child(2) {
  font-size: clamp(32px, 3.6vw, 46px);
  color: #ee7118;
  font-weight: 700;
}
footer .inner {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 800px) {
  footer .inner {
    justify-content: center;
  }
}
footer .inner .recruit_btn a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #feffff;
  border-radius: 20px;
  padding: 10px 20px;
}
footer .inner .recruit_btn a img {
  width: 4em;
}
footer .inner .recruit_btn a span {
  flex: 1;
}
footer .inner .recruit_btn a i {
  display: block;
  width: 0.8em;
  aspect-ratio: 1/1;
  transform: rotate(135deg);
  position: relative;
  margin-left: clamp(10px, 2vw, 30px);
}
footer .inner .recruit_btn a i::before, footer .inner .recruit_btn a i::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #000a0b;
  border-radius: 10em;
  position: absolute;
  top: 0;
  left: 0;
}
footer .inner .recruit_btn a i::before {
  height: 3px;
}
footer .inner .recruit_btn a i::after {
  width: 3px;
}
footer .inner nav {
  color: #feffff;
}
footer .inner nav .company {
  margin-bottom: 10px;
}
footer .inner nav .company span {
  display: block;
}

.copyright {
  font-size: clamp(13px, 1.4vw, 15px);
  color: #feffff;
  text-align: center;
  padding: 2em 0 1em;
  border-top: solid 1px #feffff;
}/*# sourceMappingURL=style.css.map */