@keyframes airplain {
  0% {
    translate: 100vw 0;
  }
  100% {
    translate: -100vw 0;
  }
}
@keyframes waving {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1920px 0;
  }
}
@keyframes submitting {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
#archive h2 .inner .img {
  background-image: url(../img/news-headline.png);
}
#archive #top .inner ul li {
  border-bottom: 1px solid rgba(97, 97, 97, 0.3019607843);
  padding-top: 28px;
}
#archive #top .inner ul li a {
  display: flex;
  flex-direction: column;
}
#archive #top .inner ul li a .text {
  padding: 12px;
}
#archive #top .inner ul li a .text h3 {
  text-align: left;
  font-size: 20px;
  margin-bottom: 0;
  line-height: 2em;
  margin-bottom: 0.5em;
}
#archive #top .inner ul li a .text p {
  text-align: left;
  max-width: none;
}
#archive #top .inner ul li a .text .continuation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
#archive #top .inner ul li a .text .continuation .arrow {
  background: #616161;
  position: relative;
}
#archive #top .inner ul li a .text .continuation .arrow:after {
  background: #616161;
}
#archive #top .inner ul li a:hover .news--img .bg {
  scale: 1.1;
}
#archive #top .inner .pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
#archive #top .inner .pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 44px;
  box-sizing: content-box;
  border: 1px solid #434343;
  border-radius: 8px;
  font-weight: bold;
  color: #434343;
}
#archive #top .inner .pagination .page-numbers.current {
  color: #fff;
  background: #69B2EB;
  border-color: #69B2EB;
}
#archive #top .inner .pagination .page-numbers .arrow {
  background: #434343;
  font-size: 20px;
}
#archive #top .inner .pagination .page-numbers .arrow::after {
  background: #434343;
}
@media screen and (min-width: 720px) {
  #archive #top .inner ul li {
    padding: 28px 0;
  }
  #archive #top .inner ul li a {
    flex-direction: row;
    gap: 20px;
    height: 100%;
    position: relative;
  }
  #archive #top .inner ul li a .news--img {
    width: 350px;
  }
  #archive #top .inner ul li a .text {
    width: calc(100% - 350px - 20px);
  }
  #archive #top .inner ul li a .continuation {
    margin-top: auto;
    position: absolute;
    right: 0;
    bottom: 0;
  }
}

@keyframes airplain {
  0% {
    translate: 100vw 0;
  }
  100% {
    translate: -100vw 0;
  }
}
@keyframes waving {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1920px 0;
  }
}
@keyframes submitting {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
#front-page #keyvisual {
  width: 100%;
  height: 100dvh;
  position: relative;
  overflow: hidden;
}
#front-page #keyvisual .loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  gap: 10px;
  background: #E7F7FA;
  z-index: 10;
}
#front-page #keyvisual .loading.hidden {
  display: none;
}
#front-page #keyvisual .loading span {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  animation: loading linear infinite;
  animation-duration: 1.2s;
  transform: scale(0);
  background: #69B2EB;
}
#front-page #keyvisual .loading span:nth-child(2) {
  animation-delay: 0.2s;
}
#front-page #keyvisual .loading span:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes loading {
  0% {
    transform: scale(0);
  }
  50% {
    transform: none;
  }
  100% {
    transform: scale(0.5);
  }
}
#front-page #keyvisual .inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#front-page #keyvisual .inner .img {
  width: 100%;
  height: 220px;
  min-height: calc(100dvh - 560px);
  border-radius: 36px;
  position: relative;
  overflow: hidden;
  transition: scale 1s, opacity 1s;
  scale: 1;
}
#front-page #keyvisual .inner .img.hidden {
  scale: 0.8;
  opacity: 0;
}
#front-page #keyvisual .inner .img .img-bg {
  width: 100%;
  height: 100%;
  transition: opacity 0.5s;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
}
#front-page #keyvisual .inner .img .img-bg:nth-child(3) {
  background-position: right bottom 10%;
}
#front-page #keyvisual .inner .text .catchcopy {
  color: #4797D6;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 0.5em;
}
#front-page #keyvisual .inner .text .catchcopy span {
  transition: opacity 0.3s;
  opacity: 1;
}
#front-page #keyvisual .inner .text .catchcopy span.hidden {
  opacity: 0;
}
#front-page #keyvisual .inner .text p:not(.catchcopy) {
  font-size: 15px;
  line-height: 2em;
  margin-bottom: 1em;
  transition: opacity 1s;
  opacity: 1;
}
#front-page #keyvisual .inner .text p:not(.catchcopy).hidden {
  opacity: 0;
}
#front-page #keyvisual .inner .text .button {
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  z-index: 2;
}
#front-page #keyvisual .imgs {
  position: absolute;
  width: 100vw;
  height: 100%;
  bottom: 60px;
  left: 0;
}
#front-page #keyvisual .imgs img {
  width: 100%;
  height: 100%;
}
#front-page #keyvisual .imgs .airplain {
  position: absolute;
  height: 36px;
  right: 0;
  top: max(240px, 100dvh - 540px);
  width: 100vw;
  animation: airplain 20s 6s linear infinite;
  translate: -100vw 0;
  display: flex;
  align-items: center;
  gap: 20px;
}
#front-page #keyvisual .imgs .airplain img {
  height: 100%;
  width: auto;
}
#front-page #keyvisual .imgs .airplain::after {
  content: "";
  display: inline-block;
  height: 4px;
  border-radius: 2px 0 0 2px;
  width: 80%;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
}
#front-page #keyvisual .imgs .cloud {
  bottom: 10px;
  right: 0;
  height: 48dvh;
  aspect-ratio: 1923/611;
  position: absolute;
  z-index: -1;
}
#front-page #keyvisual .imgs .cityscape {
  width: 100%;
}
#front-page #keyvisual .imgs .cityscape .right {
  position: absolute;
  bottom: 0;
  right: -1vw;
  height: 28dvh;
  aspect-ratio: 480/419;
}
#front-page #keyvisual .imgs .cityscape .left {
  position: absolute;
  bottom: 0;
  height: 16dvh;
  aspect-ratio: 1331/260;
  left: -24vw;
}
#front-page #keyvisual .imgs .walk {
  position: absolute;
  bottom: 16px;
  height: 90px;
  translate: 100% 0;
  right: 0;
  aspect-ratio: 2/3;
  text-align: center;
}
#front-page #keyvisual .imgs .walk .person {
  height: 100%;
  width: auto;
  margin: 0 auto;
}
#front-page #keyvisual .imgs .walk .person img {
  height: 100%;
  width: auto;
}
#front-page #keyvisual .imgs .walk .hidden {
  display: none;
}
@media screen and (min-width: 720px) {
  #front-page #keyvisual {
    height: calc(100dvh - 96px);
  }
  #front-page #keyvisual .inner .text .button {
    top: max(100dvh - 540px, 240px);
    translate: none;
    right: 20px;
    left: auto;
  }
  #front-page #keyvisual .imgs {
    bottom: 0;
  }
  #front-page #keyvisual .imgs .airplain {
    top: max(180px, 100dvh - 600px);
  }
  #front-page #keyvisual .imgs .cloud {
    height: auto;
    width: 100vw;
  }
  #front-page #keyvisual .imgs .cityscape .left {
    width: 68vw;
    height: auto;
    left: -10px;
    right: auto;
  }
  #front-page #keyvisual .imgs .cityscape .right {
    width: 26vw;
    height: auto;
  }
  #front-page #keyvisual .imgs .walk {
    height: 120px;
  }
}
@media screen and (min-width: 960px) {
  #front-page #keyvisual .imgs {
    bottom: 0;
  }
  #front-page #keyvisual .imgs .airplain {
    height: 60px;
    top: 0;
  }
  #front-page #keyvisual .inner {
    flex-direction: row;
    margin-top: 80px;
    gap: 64px;
    align-items: center;
  }
  #front-page #keyvisual .inner .img {
    width: 55%;
    height: 400px;
  }
  #front-page #keyvisual .inner .text .button {
    position: relative;
    top: 0;
    left: 0;
    translate: 0;
  }
}
#front-page #news {
  padding-top: 48px;
}
#front-page #news .inner h2 .underline span {
  width: 76%;
  background: #fff;
}
#front-page #news .inner .swiper {
  overflow-y: visible;
  margin-bottom: 32px;
}
#front-page #news .inner .swiper .swiper-wrapper .swiper-slide {
  height: auto;
}
#front-page #news .inner .swiper .swiper-wrapper .swiper-slide a {
  padding: 28px 20px;
  background: #fff;
  display: block;
  border-radius: 20px;
  height: 100%;
  transition: translate 0.3s;
}
#front-page #news .inner .swiper .swiper-wrapper .swiper-slide a time {
  line-height: 2em;
  font-size: 14px;
}
#front-page #news .inner .swiper .swiper-wrapper .swiper-slide a h3 {
  font-size: 18px;
  text-align: left;
  margin-bottom: 0.8em;
}
#front-page #news .inner .swiper .swiper-wrapper .swiper-slide a:hover {
  translate: 0 -16px;
}
#front-page #news .inner .swiper .swiper-footer {
  display: flex;
  justify-content: center;
  gap: 32px;
  align-items: center;
  margin-top: 16px;
}
#front-page #news .inner .swiper .swiper-footer .swiper-prev,
#front-page #news .inner .swiper .swiper-footer .swiper-next {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid #434343;
  cursor: pointer;
}
#front-page #news .inner .swiper .swiper-footer .swiper-prev .arrow,
#front-page #news .inner .swiper .swiper-footer .swiper-next .arrow {
  background: #434343;
  font-size: 20px;
}
#front-page #news .inner .swiper .swiper-footer .swiper-prev .arrow::after,
#front-page #news .inner .swiper .swiper-footer .swiper-next .arrow::after {
  background: #434343;
}
#front-page #news .inner .swiper .swiper-footer .swiper-pagination {
  width: -moz-fit-content;
  width: fit-content;
  height: 44px;
  display: flex;
  position: relative;
  bottom: 0;
  align-items: center;
}
#front-page #news .inner .swiper .swiper-footer .swiper-pagination span {
  border: 1px solid #616161;
  background: transparent;
  width: 10px;
  height: 10px;
  opacity: 1;
}
#front-page #news .inner .swiper .swiper-footer .swiper-pagination .swiper-pagination-bullet-active {
  background: #616161;
}
@media screen and (min-width: 720px) {
  #front-page #news {
    padding-top: 96px;
  }
  #front-page #news .inner .swiper .swiper-wrapper .swiper-slide a time {
    line-height: 3em;
  }
  #front-page #news .inner .swiper .swiper-footer {
    display: none;
  }
}
#front-page #welfares {
  background: #fff;
}
#front-page #welfares h2 {
  background: url(../img/welfare-cloud.png), #E7F7FA;
  background-size: cover;
  width: 100vw;
  translate: -20px 0;
  aspect-ratio: 1920/382;
  padding-top: 48px;
  background-position: center;
}
#front-page #welfares h2 .underline span {
  background: #B4DEFF;
  width: 82%;
}
#front-page #welfares .inner .welfare {
  display: flex;
  flex-direction: column;
  background: #E7F7FA;
  border-radius: 20px;
  border: 1px solid #434343;
  padding: 64px 0 0;
  height: 360px;
  justify-content: space-between;
  margin-bottom: 36px;
}
#front-page #welfares .inner .welfare .text h3 {
  line-height: 1.6em;
  word-break: keep-all;
}
#front-page #welfares .inner .welfare .img {
  width: 100%;
  height: 116px;
  max-width: 300px;
  margin: 0 auto;
  background-size: contain;
  background-position: center bottom -1px;
  background-repeat: no-repeat;
}
#front-page #welfares .inner .welfare:nth-child(1) .img {
  background-image: url(../img/welfare01.png);
  max-height: 210px;
}
#front-page #welfares .inner .welfare:nth-child(2) .img {
  background-image: url(../img/welfare02.png);
  max-height: 160px;
}
#front-page #welfares .inner .welfare:nth-child(3) .img {
  background-image: url(../img/welfare03.png);
  max-height: 160px;
}
#front-page #welfares .inner .welfare:nth-child(4) .img {
  background-image: url(../img/welfare04.png);
  max-height: 210px;
}
@media screen and (min-width: 720px) {
  #front-page #welfares .inner .welfare {
    height: 380px;
  }
  #front-page #welfares .inner .welfare .img {
    position: relative;
    max-width: none;
  }
}
@media screen and (min-width: 960px) {
  #front-page #welfares h2 {
    padding-top: 96px;
  }
  #front-page #welfares .inner .welfare {
    flex-direction: row;
    height: 280px;
    padding: 20px;
    border-radius: 32px;
    align-items: center;
    margin-bottom: 64px;
    justify-content: space-between;
  }
  #front-page #welfares .inner .welfare .text {
    width: 55%;
  }
  #front-page #welfares .inner .welfare .img {
    width: 45%;
    height: 100%;
    margin-top: auto;
    translate: 0 20px;
  }
  #front-page #welfares .inner .welfare:nth-child(2n) {
    flex-direction: row-reverse;
  }
}

@keyframes airplain {
  0% {
    translate: 100vw 0;
  }
  100% {
    translate: -100vw 0;
  }
}
@keyframes waving {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1920px 0;
  }
}
@keyframes submitting {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
#not-found h2 .inner .img {
  background-image: url(../img/contact-headline.png);
}
#not-found #top .inner p {
  word-break: keep-all;
  margin-bottom: 40px;
}

@keyframes airplain {
  0% {
    translate: 100vw 0;
  }
  100% {
    translate: -100vw 0;
  }
}
@keyframes waving {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1920px 0;
  }
}
@keyframes submitting {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
#page-about > section {
  background: #fff;
}
#page-about h2 .inner .img {
  background-image: url(../img/about-headline.png);
}
#page-about #top .inner p {
  word-break: keep-all;
  text-align: center;
  font-weight: 500;
  font-size: 20px;
  line-height: 2em;
}
#page-about #top .inner p span {
  display: inline-block;
  background: linear-gradient(to bottom, transparent 70%, #FFFEB4 70%);
}
#page-about #overview .inner h3 {
  color: #69B2EB;
}
#page-about #overview .inner h3::before, #page-about #overview .inner h3::after {
  background: #69B2EB;
}
#page-about #overview .inner .items {
  border-top: 1px solid #434343;
  border-bottom: 0.5px solid #434343;
  font-size: 15px;
}
#page-about #overview .inner .items .item {
  border-bottom: 0.5px solid #434343;
  padding: 20px;
}
#page-about #overview .inner .items .item h4 {
  margin-bottom: 0.5em;
}
#page-about #overview .inner .items .item .text {
  padding-left: 1em;
}
#page-about #overview .inner .items .item .text h5 {
  margin-bottom: 0;
  font-weight: normal;
}
#page-about #overview .inner .items .item .text ul {
  border-bottom: 0.5px solid #434343;
  padding-left: 0.5em;
  padding-bottom: 20px;
  margin: 0;
}
#page-about #overview .inner .items .item .text ul li {
  word-break: keep-all;
}
#page-about #overview .inner .items .item .text ul li::before {
  content: "-";
  margin-right: 4px;
}
#page-about #overview .inner .items .item .text dl dd {
  padding-left: 1em;
}
@media screen and (min-width: 720px) {
  #page-about #overview .inner .items {
    font-size: 16px;
  }
  #page-about #overview .inner .items .item {
    display: flex;
  }
  #page-about #overview .inner .items .item h4 {
    width: 28%;
  }
  #page-about #overview .inner .items .item .text {
    width: 72%;
  }
}

@keyframes airplain {
  0% {
    translate: 100vw 0;
  }
  100% {
    translate: -100vw 0;
  }
}
@keyframes waving {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1920px 0;
  }
}
@keyframes submitting {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
#page-contact h2 .inner .img {
  background-image: url(../img/contact-headline.png);
}
#page-contact #top,
#page-contact #form {
  background: #fff;
}
#page-contact #top .inner,
#page-contact #form .inner {
  max-width: 900px;
}
#page-contact #top h3 {
  color: #69B2EB;
}
#page-contact #top h3::before, #page-contact #top h3::after {
  background: #69B2EB;
}
#page-contact #top .inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
#page-contact #top .inner .number {
  height: 150px;
  display: flex;
  border-radius: 12px;
  border: 1px solid rgba(97, 97, 97, 0.3019607843);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
#page-contact #top .inner .number h4 {
  font-weight: normal;
  font-size: 16px;
  text-align: center;
  line-height: 1.5em;
}
#page-contact #top .inner .number a {
  font-size: 24px;
  font-weight: bold;
}
@media screen and (min-width: 720px) {
  #page-contact #top .inner {
    flex-direction: row;
    gap: 60px;
  }
  #page-contact #top .inner .number {
    width: calc((100% - 60px) / 2);
  }
}
#page-contact #form .mandatory {
  color: #FF3C00;
}
#page-contact #form .inner h3 {
  color: #E29460;
}
#page-contact #form .inner h3::before, #page-contact #form .inner h3::after {
  background: #E29460;
}
#page-contact #form .inner > p {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 60px;
  text-align: left;
}
#page-contact #form .inner form .mask {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(231, 247, 250, 0.7);
  transition: opacity 5s;
  opacity: 1;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 100;
}
#page-contact #form .inner form .mask p {
  display: flex;
  gap: 24px;
  line-height: 2em;
}
#page-contact #form .inner form .mask p span {
  display: block;
  width: 16px;
  height: 16px;
  background-color: #4797D6;
  border-radius: 50%;
  transform: scale(0);
  animation: submitting 1.2s ease-in-out infinite;
}
#page-contact #form .inner form .mask p span:nth-child(2) {
  animation-delay: 0.4s;
}
#page-contact #form .inner form .mask p span:nth-child(3) {
  animation-delay: 0.8s;
}
#page-contact #form .inner form.submitting .mask {
  display: flex;
}
#page-contact #form .inner form > dl > div {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
#page-contact #form .inner form > dl > div > dd input, #page-contact #form .inner form > dl > div > dd textarea {
  width: 100%;
  border: 1px solid #434343;
  border-radius: 6px;
  padding: 8px;
  line-height: 1.5em;
}
#page-contact #form .inner form > dl > div > dd textarea {
  resize: none;
}
#page-contact #form .inner form > dl .privacy dd > p {
  line-height: 2em;
}
#page-contact #form .inner form > dl .privacy dd input {
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
}
#page-contact #form .inner form > dl .privacy dd .privacy-wrapper {
  width: 100%;
  height: 200px;
  position: relative;
  overflow-y: scroll;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #434343;
  margin-bottom: 16px;
}
#page-contact #form .inner form > dl .privacy dd .privacy-wrapper .policy {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 16px;
  font-size: 14px;
  font-weight: normal;
}
#page-contact #form .inner form > dl .privacy dd .privacy-wrapper .policy h5 {
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  margin: 0 0 1em;
}
#page-contact #form .inner form > dl .privacy dd .privacy-wrapper .policy dl dt {
  font-size: 15px;
  font-weight: 500;
}
#page-contact #form .inner form .button {
  margin-top: 48px;
  position: relative;
  height: 46px;
  border-radius: 23px;
}
#page-contact #form .inner form .button .wpcf7-spinner {
  display: none;
}
#page-contact #form .inner form .button input {
  position: absolute;
  width: 100%;
  height: 100%;
  color: #000;
  background: none;
  border: none;
  top: 0;
  left: 0;
  color: inherit;
  font-size: inherit;
  border-radius: 20px;
  opacity: 0;
  cursor: pointer;
}
@media screen and (min-width: 720px) {
  #page-contact #form .inner form > dl {
    align-items: center;
  }
  #page-contact #form .inner form > dl > div {
    flex-direction: row;
  }
  #page-contact #form .inner form > dl > div > dt {
    width: 25%;
  }
  #page-contact #form .inner form > dl > div > dd {
    width: 75%;
  }
}

@keyframes airplain {
  0% {
    translate: 100vw 0;
  }
  100% {
    translate: -100vw 0;
  }
}
@keyframes waving {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1920px 0;
  }
}
@keyframes submitting {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
#page-privacy h2 .inner .img {
  background-image: url(../img/contact-headline.png);
}
#page-privacy #top .inner p {
  max-width: none;
  text-align: left;
  margin-bottom: 1em;
}
#page-privacy #top .inner dl dt {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 0.5em;
}
#page-privacy #top .inner dl dd {
  margin-bottom: 2em;
}

@keyframes airplain {
  0% {
    translate: 100vw 0;
  }
  100% {
    translate: -100vw 0;
  }
}
@keyframes waving {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1920px 0;
  }
}
@keyframes submitting {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
#page-recruit h2 .inner .img {
  background-image: url(../img/recruit-headline.png);
}
#page-recruit #top {
  background: #fff;
  padding-inline: 20px;
  padding-bottom: 48px;
}
#page-recruit #top .inner img {
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 24px;
  width: 100%;
}
#page-recruit #top .inner .text {
  width: 100%;
}
#page-recruit #top .inner .text .catchcopy {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 24px;
}
#page-recruit #top .inner .text p {
  max-width: none;
}
@media screen and (min-width: 720px) {
  #page-recruit #top .inner {
    display: flex;
    gap: 5%;
    align-items: center;
  }
  #page-recruit #top .inner img {
    width: 45%;
    margin-bottom: 0;
  }
  #page-recruit #top .inner .text {
    width: 50%;
  }
  #page-recruit #top .inner .text .catchcopy {
    font-size: 24px;
  }
}
#page-recruit #jobs {
  background: #fff;
  padding-top: 0;
}
#page-recruit #jobs .inner .job {
  position: relative;
  padding-top: 20px;
  padding-bottom: 48px;
}
#page-recruit #jobs .inner .job .content .title {
  margin-bottom: 28px;
}
#page-recruit #jobs .inner .job .content .title h3 {
  font-size: 18px;
  border-bottom: 1px solid rgba(97, 97, 97, 0.4);
  text-align: left;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
#page-recruit #jobs .inner .job .content .title span {
  width: 4.5em;
  display: inline-block;
  text-align: center;
  border-radius: 0.5em;
  line-height: 2em;
  font-size: 14px;
  font-weight: bold;
  background: #69B2EB;
  color: #fff;
  margin-right: 0.5em;
}
#page-recruit #jobs .inner .job .content .title span.part {
  background: #58CC60;
}
#page-recruit #jobs .inner .job .content dl dt {
  font-size: 18px;
  font-weight: bold;
}
#page-recruit #jobs .inner .job .content dl dd p {
  margin-bottom: 32px;
}
#page-recruit #jobs .inner .job .contact > p {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: left;
}
#page-recruit #jobs .inner .job .contact .square {
  border: 1px solid #69B2EB;
  padding-block: 40px;
}
#page-recruit #jobs .inner .job .contact .square .left {
  text-align: center;
}
#page-recruit #jobs .inner .job .contact .square .left a {
  font-size: 24px;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  font-weight: bold;
  margin-inline: auto;
}
#page-recruit #jobs .inner .job .contact .square .left span {
  display: inline-block;
}
#page-recruit #jobs .inner .job .contact .square .border {
  width: 128px;
  height: 1px;
  background: #69B2EB;
  margin-block: 24px;
  margin-inline: auto;
}
#page-recruit #jobs .inner .job .contact .square .right .button {
  width: 224px;
}
#page-recruit #jobs .inner .job .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  display: none;
  width: 100%;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 48px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 80px, white 80px);
}
#page-recruit #jobs .inner .job .overlay .button {
  cursor: pointer;
  background: #fff;
  color: #434343;
  font-weight: bold;
}
#page-recruit #jobs .inner .job .overlay .button .circle {
  width: 28px;
  height: 28px;
  background: #F5821F;
  border-radius: 50%;
  position: relative;
}
#page-recruit #jobs .inner .job .overlay .button .circle::before, #page-recruit #jobs .inner .job .overlay .button .circle::after {
  top: 50%;
  left: 50%;
  translate: -50%;
  position: absolute;
  display: block;
  content: "";
  width: 18px;
  height: 2px;
  background: #fff;
}
#page-recruit #jobs .inner .job .overlay .button .circle::after {
  rotate: 90deg;
}
#page-recruit #jobs .inner .job.hidden {
  max-height: 360px;
  overflow: hidden;
}
#page-recruit #jobs .inner .job.hidden .overlay {
  display: block;
}
@media screen and (min-width: 720px) {
  #page-recruit #jobs .inner {
    border-top: 1px solid rgba(97, 97, 97, 0.4);
  }
  #page-recruit #jobs .inner .job {
    border-bottom: 1px solid rgba(97, 97, 97, 0.4);
  }
  #page-recruit #jobs .inner .job .content {
    display: flex;
  }
  #page-recruit #jobs .inner .job .content .title {
    width: 380px;
  }
  #page-recruit #jobs .inner .job .content .title h3 {
    border-bottom: none;
  }
  #page-recruit #jobs .inner .job .content dl {
    width: calc(100% - 380px);
  }
  #page-recruit #jobs .inner .job .contact .square {
    max-width: 880px;
    margin-inline: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #page-recruit #jobs .inner .job .contact .square .right, #page-recruit #jobs .inner .job .contact .square .left {
    width: 50%;
    max-width: 360px;
  }
  #page-recruit #jobs .inner .job .contact .square .border {
    margin-block: 0;
    width: 1px;
    height: 56px;
    margin-inline: 0;
  }
  #page-recruit #jobs .inner .job .contact .square .right .button {
    width: 264px;
  }
}

@keyframes airplain {
  0% {
    translate: 100vw 0;
  }
  100% {
    translate: -100vw 0;
  }
}
@keyframes waving {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1920px 0;
  }
}
@keyframes submitting {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
#page-thanks h2 .inner .img {
  background-image: url(../img/contact-headline.png);
}
#page-thanks #top .inner p {
  word-break: keep-all;
  margin-bottom: 40px;
}

@keyframes airplain {
  0% {
    translate: 100vw 0;
  }
  100% {
    translate: -100vw 0;
  }
}
@keyframes waving {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1920px 0;
  }
}
@keyframes submitting {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
#page-welfare01 h2 .inner .img {
  background-image: url(../img/welfare01-headline.png);
}
#page-welfare01 br.sp {
  display: block;
}
@media screen and (min-width: 960px) {
  #page-welfare01 br.sp {
    display: none;
  }
}

@keyframes airplain {
  0% {
    translate: 100vw 0;
  }
  100% {
    translate: -100vw 0;
  }
}
@keyframes waving {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1920px 0;
  }
}
@keyframes submitting {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
#page-welfare02 h2 .inner .img {
  background-image: url(../img/welfare02-headline.png);
}
#page-welfare02 #feature .inner {
  max-width: 900px;
}
#page-welfare02 #feature .inner ul li:nth-child(1) .img {
  background-image: url("../img/welfare02-feature01.png");
}
#page-welfare02 #feature .inner ul li:nth-child(2) .img {
  background-image: url("../img/welfare02-feature02.png");
}
#page-welfare02 #feature .inner ul li:nth-child(3) .img {
  background-image: url("../img/welfare02-feature03.png");
}
#page-welfare02 #feature .inner ul li:nth-child(4) .img {
  background-image: url("../img/welfare02-feature04.png");
}
#page-welfare02 #feature .inner ul li:nth-child(5) .img {
  background-image: url("../img/welfare02-feature05.png");
}
#page-welfare02 #feature .inner ul li:nth-child(6) .img {
  background-image: url("../img/welfare02-feature06.png");
}
#page-welfare02 #service .inner {
  max-width: 900px;
}
#page-welfare02 #service .inner .content {
  gap: 16px;
  display: flex;
  flex-direction: column;
  margin-bottom: 36px;
}
#page-welfare02 #service .inner .content img {
  width: 100%;
}
#page-welfare02 #service .inner .content .text h4 {
  font-weight: bold;
  font-size: 18px;
}
@media screen and (min-width: 720px) {
  #page-welfare02 #service .inner .content {
    flex-direction: row;
  }
  #page-welfare02 #service .inner .content img {
    width: 320px;
  }
  #page-welfare02 #service .inner .content .text {
    width: calc(100% - 320px);
    padding: 24px;
  }
}
@media screen and (min-width: 960px) {
  #page-welfare02 #facility .inner dl div dt {
    width: 148px;
  }
  #page-welfare02 #facility .inner dl div dd {
    width: calc(100% - 148px);
  }
}

@keyframes airplain {
  0% {
    translate: 100vw 0;
  }
  100% {
    translate: -100vw 0;
  }
}
@keyframes waving {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1920px 0;
  }
}
@keyframes submitting {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
#page-welfare03 h2 .inner .img {
  background-image: url(../img/welfare03-headline.png);
}
@media screen and (min-width: 960px) {
  #page-welfare03 #facility .inner dl div dt {
    width: 148px;
  }
  #page-welfare03 #facility .inner dl div dd {
    width: calc(100% - 148px);
  }
}

@keyframes airplain {
  0% {
    translate: 100vw 0;
  }
  100% {
    translate: -100vw 0;
  }
}
@keyframes waving {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1920px 0;
  }
}
@keyframes submitting {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
#page-welfare04 h2 .inner br.sp {
  display: block;
}
@media screen and (min-width: 720px) {
  #page-welfare04 h2 .inner br.sp {
    display: none;
  }
}
#page-welfare04 h2 .inner .img {
  background-image: url(../img/welfare04-headline.png);
}
#page-welfare04 #top .inner p {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 36px;
}
#page-welfare04 #top .inner ul {
  border-top: 1px solid rgba(97, 97, 97, 0.3019607843);
  width: 288px;
  font-size: 18px;
  font-weight: bold;
  margin: 0 auto 36px;
}
#page-welfare04 #top .inner ul li {
  border-bottom: 1px solid rgba(97, 97, 97, 0.3019607843);
  display: flex;
  align-items: center;
  gap: 8px;
  height: 64px;
}
#page-welfare04 #top .inner ul li span {
  display: inline-block;
  margin-left: auto;
}
#page-welfare04 #top .inner ul li::before {
  width: 24px;
  height: 24px;
  content: "";
  border: 1px solid #434343;
  border-radius: 4px;
}
#page-welfare04 #top .inner p:last-child {
  max-width: -moz-fit-content;
  max-width: fit-content;
  display: block;
  margin: 0 auto;
  text-align: left;
}

@keyframes airplain {
  0% {
    translate: 100vw 0;
  }
  100% {
    translate: -100vw 0;
  }
}
@keyframes waving {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1920px 0;
  }
}
@keyframes submitting {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
#single h2 .inner .img {
  background-image: url(../img/news-headline.png);
}
#single #top .inner {
  max-width: 880px;
}
#single #top .inner article h3 {
  text-align: left;
}
#single #top .inner article img {
  margin: 0 auto;
}
#single #top .inner article .news--tags {
  border-top: 1px solid rgba(97, 97, 97, 0.3019607843);
  padding: 1em 0 2em;
}
#single #top .inner article p {
  line-height: 2em;
  max-width: none;
  text-align: left;
}
#single #top .inner .button {
  margin-top: 60px;
}

@keyframes airplain {
  0% {
    translate: 100vw 0;
  }
  100% {
    translate: -100vw 0;
  }
}
@keyframes waving {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1920px 0;
  }
}
@keyframes submitting {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
main .above-footer {
  position: relative;
  background: #B4DEFF;
}
main .above-footer .above-wave {
  position: absolute;
  width: 100vw;
  height: 119.5px;
  translate: 0 calc(-100% + 1px);
}
main .above-footer .above-wave::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 89.5px;
  background-image: url(../img/above-front.svg);
  bottom: 0;
  left: 0;
  z-index: -1;
  background-size: cover;
  animation: waving 30s linear infinite;
}
main .above-footer .above-wave::after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 119.5px;
  background-image: url(../img/above-back.svg);
  bottom: 0;
  left: 0;
  z-index: -1;
  background-size: cover;
  animation: waving 20s linear infinite;
}
@media screen and (min-width: 960px) {
  main .above-footer .above-wave {
    height: 239px;
  }
  main .above-footer .above-wave::before {
    height: 179px;
  }
  main .above-footer .above-wave::after {
    height: 239px;
  }
}
main .above-footer #access {
  padding-top: 48px;
}
main .above-footer #access .inner iframe {
  width: 100%;
  height: 360px;
  border-radius: 32px;
}
@media screen and (min-width: 720px) {
  main .above-footer #access {
    padding-top: 96px;
  }
}
main .above-footer #contact, main .above-footer #recruit {
  padding: 48px 20px;
}
main .above-footer #contact .inner, main .above-footer #recruit .inner {
  display: flex;
  flex-direction: column;
  border-radius: 32px;
  align-items: center;
  text-align: center;
  padding: 36px;
}
main .above-footer #contact .inner .left, main .above-footer #contact .inner .right, main .above-footer #recruit .inner .left, main .above-footer #recruit .inner .right {
  padding: 24px 0;
}
main .above-footer #contact .inner .right, main .above-footer #recruit .inner .right {
  border-top: 1px solid;
}
main .above-footer #contact .inner .right .tel a, main .above-footer #recruit .inner .right .tel a {
  font-size: 36px;
  font-weight: bold;
}
main .above-footer #contact .inner .right .tel span, main .above-footer #recruit .inner .right .tel span {
  font-size: 16px;
  display: block;
  margin-bottom: 24px;
}
main .above-footer #contact .inner .right .button, main .above-footer #recruit .inner .right .button {
  width: 240px;
}
@media screen and (min-width: 720px) {
  main .above-footer #contact .inner, main .above-footer #recruit .inner {
    flex-direction: row;
    padding: 96px 0;
  }
  main .above-footer #contact .inner .left, main .above-footer #contact .inner .right, main .above-footer #recruit .inner .left, main .above-footer #recruit .inner .right {
    width: 50%;
    padding: 16px;
  }
  main .above-footer #contact .inner .left h3, main .above-footer #recruit .inner .left h3 {
    font-size: 32px;
  }
  main .above-footer #contact .inner .right, main .above-footer #recruit .inner .right {
    border-left: 1px solid;
    border-top: none;
  }
  main .above-footer #contact .inner .right .button, main .above-footer #recruit .inner .right .button {
    width: 264px;
  }
}
main .above-footer #recruit {
  color: #434343;
}
main .above-footer #recruit .inner {
  background: #E7F7FA;
  padding-block: 28px;
}
main .above-footer #recruit .inner .right {
  border-color: #434343;
}
main .above-footer #recruit .inner .right h3 {
  margin-bottom: 16px;
}
main .above-footer #recruit .inner .right p {
  margin-bottom: 24px;
}
main .above-footer #recruit .inner .left img {
  max-width: 464px;
  width: 100%;
  margin-inline: auto;
}
main .above-footer #contact .inner {
  color: #fff;
  background: #69B2EB;
}
main .above-footer #contact .inner .right {
  border-color: #fff;
}

footer {
  overflow: hidden;
  position: relative;
}
footer::before {
  display: block;
  content: "";
  width: 100vw;
  background: #B4DEFF;
  translate: -20px 0;
  background-image: url(../img/footer-wave.svg);
  background-size: cover;
  height: 82.5px;
  animation: waving 20s linear infinite;
}
footer small {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
}
footer .inner {
  padding-bottom: 160px;
  display: flex;
  flex-direction: column;
  padding-top: 40px;
}
footer .inner .company .logo {
  margin-bottom: 16px;
  display: inline-block;
}
footer .inner .company address {
  font-style: normal;
}
footer .inner nav {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
footer .inner nav h4 {
  color: #69B2EB;
}
footer .inner nav ul {
  padding-right: 4px;
}
footer .inner nav ul li:not(:last-child) {
  margin-bottom: 0.5em;
}
footer .inner nav ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
}
footer .inner nav ul li a .arrow {
  font-size: 16px;
  background: #434343;
}
footer .inner nav ul li a .arrow::after {
  background: #434343;
}
footer .imgs img {
  height: 100%;
}
footer .imgs .cloud {
  position: absolute;
  height: 300px;
  right: -60px;
  bottom: 0;
  width: auto;
}
footer .imgs .left {
  height: 120px;
  position: absolute;
  bottom: 10px;
  left: 0;
}
footer .imgs .left .pc {
  display: none;
}
footer .imgs .left .sp {
  display: block;
}
footer .imgs .person {
  height: 60px;
  position: absolute;
  bottom: 18px;
  right: 42vw;
}
footer .imgs .right {
  height: 80px;
  position: absolute;
  bottom: 10px;
  right: 0;
}
@media screen and (min-width: 960px) {
  footer::before {
    height: 165px;
  }
  footer .inner {
    padding-bottom: 200px;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  footer .inner .company .logo {
    margin-bottom: 24px;
  }
  footer .inner nav {
    display: flex;
    flex-direction: row;
    gap: 144px;
    margin-bottom: 0;
  }
  footer .imgs {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100vw;
  }
  footer .imgs .cloud {
    display: none;
  }
  footer .imgs .left {
    height: 180px;
    left: 20px;
  }
  footer .imgs .left .sp {
    display: none;
  }
  footer .imgs .left .pc {
    display: block;
  }
  footer .imgs .person {
    height: 120px;
    right: 34vw;
  }
  footer .imgs .right {
    height: 160px;
    right: 20px;
  }
}

@keyframes airplain {
  0% {
    translate: 100vw 0;
  }
  100% {
    translate: -100vw 0;
  }
}
@keyframes waving {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1920px 0;
  }
}
@keyframes submitting {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 52px;
  z-index: 100;
  background: rgba(231, 247, 250, 0.8);
}
header .inner {
  display: flex;
  position: relative;
}
header .inner h1 {
  position: absolute;
  left: 0;
  top: 14px;
  z-index: 100;
}
header .inner .nav-outer {
  position: fixed;
  top: -100dvh;
  width: 100vw;
  height: 100dvh;
  left: 0;
  z-index: 90;
  transition: top 0.6s;
  background: #E7F7FA;
}
header .inner .nav-outer .cloud {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45%;
  height: auto;
  z-index: -1;
}
header .inner .nav-outer .cloud img {
  width: 100%;
}
header .inner .nav-outer .airplain {
  position: absolute;
  right: 48px;
  rotate: 150deg;
  display: flex;
  align-items: center;
  bottom: 25dvh;
  z-index: -1;
}
header .inner .nav-outer .airplain img {
  width: 48px;
}
header .inner .nav-outer .airplain .contrail {
  display: block;
  width: 60vw;
  height: 4px;
  border-radius: 2px;
  background: #fff;
}
header .inner .nav-outer nav {
  width: -moz-fit-content;
  width: fit-content;
  margin: 100px auto 0;
}
header .inner .nav-outer nav > ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
header .inner .nav-outer nav > ul li a {
  border-bottom-width: 4px;
  border-bottom-style: solid;
  border-color: rgba(105, 178, 235, 0);
}
header .inner .nav-outer nav > ul li a:hover {
  border-color: #69b2eb;
}
header .inner .nav-outer nav > ul .welfares > a {
  display: inline-block;
}
header .inner .nav-outer nav > ul .welfares ul {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
header .inner .nav-outer nav > ul .welfares ul li a::before {
  content: "-";
  display: inline-block;
}
header .inner .hamburger {
  width: 32px;
  height: 20px;
  right: 0;
  top: 16px;
  display: flex;
  justify-content: space-between;
  position: absolute;
  flex-direction: column;
  cursor: pointer;
  z-index: 100;
}
header .inner .hamburger span {
  display: block;
  background: #434343;
  width: 100%;
  height: 1px;
  transition: all 0.3s;
}
header.is-open .inner .hamburger span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
header.is-open .inner .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  opacity: 0;
}
header.is-open .inner .hamburger span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}
header.is-open .inner .nav-outer {
  top: 0;
}
@media screen and (min-width: 960px) {
  header {
    height: 96px;
  }
  header .inner {
    height: 100%;
  }
  header .inner h1 {
    top: 28px;
  }
  header .inner .nav-outer {
    position: relative;
    top: auto;
    margin-left: auto;
    background: none;
    width: auto;
    height: auto;
  }
  header .inner .nav-outer .cloud {
    display: none;
  }
  header .inner .nav-outer .airplain {
    display: none;
  }
  header .inner .nav-outer .airplain .contrail {
    display: block;
    width: 70vw;
    height: 4px;
    border-radius: 2px;
    background: #fff;
  }
  header .inner .nav-outer nav {
    margin: 36px 0 0;
  }
  header .inner .nav-outer nav > ul {
    flex-direction: row;
    gap: 40px;
  }
  header .inner .nav-outer nav > ul .welfares {
    cursor: pointer;
  }
  header .inner .nav-outer nav > ul .welfares ul {
    opacity: 0;
    transition: opacity 0.3s;
    position: absolute;
    display: none;
    background: #B4DEFF;
  }
  header .inner .nav-outer nav > ul .welfares:hover::after {
    translate: 0;
  }
  header .inner .nav-outer nav > ul .welfares:hover ul {
    display: flex;
  }
  header .inner .nav-outer nav > ul .welfares::after {
    content: "";
    display: inline-block;
    width: 0.7em;
    height: 0.7em;
    border-right: 1px solid #434343;
    border-bottom: 1px solid #434343;
    rotate: 45deg;
    translate: 0 -4px;
    transition: translate 0.3s;
    margin-left: 2px;
  }
  header .inner .hamburger {
    display: none;
  }
}

@keyframes airplain {
  0% {
    translate: 100vw 0;
  }
  100% {
    translate: -100vw 0;
  }
}
@keyframes waving {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1920px 0;
  }
}
@keyframes submitting {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
.lower-page > h2 {
  position: relative;
  margin-bottom: 0;
  height: clamp(240px, 24vw, 320px);
  -moz-text-align-last: left;
       text-align-last: left;
  padding: 0 20px;
  line-height: 1.5em;
  align-items: start;
  padding-top: 24px;
}
.lower-page > h2 .inner .img {
  height: 96px;
  position: absolute;
  left: 0;
  bottom: 18px;
  width: calc(100% - 40px);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
  height: clamp(96px, 15vw, 260px);
}
.lower-page > section {
  padding: 64px 20px;
}
.lower-page > section:last-of-type .inner {
  margin-bottom: 60px;
}
.lower-page .lower-page--h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4em;
  color: #4797D6;
}
.lower-page .lower-page--h3::before, .lower-page .lower-page--h3::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  border-radius: 0.5em;
  background: #4797D6;
}
.lower-page #top {
  background: #fff;
}
.lower-page #top .inner .lower-page--h3 {
  color: #E29460;
}
.lower-page #top .inner .lower-page--h3::before, .lower-page #top .inner .lower-page--h3::after {
  background: #E29460;
}
.lower-page #top .inner p {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}
@media screen and (min-width: 960px) {
  .lower-page > h2 {
    display: flex;
    align-items: end;
    padding-bottom: 60px;
  }
  .lower-page > #top:not(:last-of-type) {
    padding: 120px 0;
  }
  .lower-page > section:last-of-type .inner {
    margin-bottom: 120px;
  }
}

@keyframes airplain {
  0% {
    translate: 100vw 0;
  }
  100% {
    translate: -100vw 0;
  }
}
@keyframes waving {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1920px 0;
  }
}
@keyframes submitting {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
.news--tag {
  display: inline-block;
  padding: 8px;
  font-size: 12px;
  color: #fff;
  border-radius: 12px;
  line-height: 1em;
  background: #69B2EB;
}
.news--tags {
  display: flex;
  gap: 12px;
}
.news--title {
  font-size: 20px;
  color: #434343;
}
.news--title::before, .news--title::after {
  display: none;
}
.news--img {
  aspect-ratio: 7/5;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #616161;
}
.news--img .bg {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: scale 0.3s;
}

@keyframes airplain {
  0% {
    translate: 100vw 0;
  }
  100% {
    translate: -100vw 0;
  }
}
@keyframes waving {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1920px 0;
  }
}
@keyframes submitting {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
body {
  background: #E7F7FA;
  position: relative;
  font-family: "Zen Kaku Gothic New";
  color: #434343;
}
body main {
  padding-top: 60px;
}
@media screen and (min-width: 720px) {
  body main {
    padding-top: 96px;
  }
}
body.overflow {
  overflow: hidden;
}

header,
section,
footer {
  padding: 0 20px;
}

main > section:nth-last-child(2) {
  padding-bottom: 119.5px;
}
@media screen and (min-width: 960px) {
  main > section:nth-last-child(2) {
    padding-bottom: 239px;
  }
}

ul {
  list-style: none;
  padding-left: 0;
}

a {
  text-decoration: none;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.ground {
  position: absolute;
  width: 100vw;
  height: 20px;
  background: #EFDDB2;
  border: 1px solid #616161;
  bottom: 0;
  left: 0;
}

h2 {
  text-align: center;
  margin-bottom: 0.5em;
  font-size: clamp(24px, 3.6vw, 36px);
}
h2 .underline {
  width: 220px;
  height: 40px;
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
}
h2 .underline img {
  height: 100%;
  transition: translate 2s;
}
h2 .underline span {
  display: block;
  width: 84%;
  height: 4px;
  border-radius: 2px;
  background: #81a4bf;
  transition: width 2s;
}
h2 .underline.hidden img {
  translate: 180px 0;
}
h2 .underline.hidden span {
  width: 0 !important;
}
@media screen and (min-width: 720px) {
  h2 {
    margin-bottom: 1.2em;
  }
  h2 .underline {
    width: 400px;
    height: 64px;
  }
  h2 .underline.hidden img {
    translate: 360px 0;
  }
}

h3 {
  font-size: 24px;
  margin-bottom: 2em;
  text-align: center;
}
@media screen and (min-width: 720px) {
  h3 {
    font-size: 28px;
  }
}

.button {
  width: 200px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #F5821F;
  color: #fff;
  border: 1px solid #434343;
  border-radius: 20px;
  font-size: 14px;
  gap: 12px;
  margin: 0 auto;
}
@media screen and (min-width: 720px) {
  .button {
    width: 240px;
    height: 48px;
    border-radius: 24px;
    font-size: 16px;
  }
}

.arrow {
  display: block;
  width: 1em;
  height: 1px;
  background: #fff;
  border-radius: 0.5px;
  translate: 0 4px;
  transition: translate 0.3s;
  font-size: 24px;
}
.arrow:after {
  display: block;
  content: "";
  width: 0.5em;
  height: 1px;
  background: #fff;
  border-radius: 0.5px;
  translate: 0.5em -0.125em;
  rotate: 30deg;
}
.arrow.reverse::after {
  translate: 0 -0.125em;
  rotate: -30deg;
}

a:hover .arrow {
  translate: 4px 4px;
}
a:hover .arrow.reverse {
  translate: -4px 4px;
}

.logo img {
  width: 152px;
}
@media screen and (min-width: 960px) {
  .logo img {
    width: 200px;
  }
}

@keyframes airplain {
  0% {
    translate: 100vw 0;
  }
  100% {
    translate: -100vw 0;
  }
}
@keyframes waving {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1920px 0;
  }
}
@keyframes submitting {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
.lower-page #flow {
  background: #B4DEFF;
}
.lower-page #flow .inner dl > div {
  background: #fff;
  border-radius: 28px;
  padding: 40px 20px;
  position: relative;
}
.lower-page #flow .inner dl > div:not(:last-child) {
  margin-bottom: 20px;
}
.lower-page #flow .inner dl > div:not(:last-child)::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  border-width: 20px 24px 20px 24px;
  border-style: solid;
  border-color: #69B2EB transparent transparent transparent;
  bottom: -40px;
  left: 50%;
  translate: -50% 0;
}
.lower-page #flow .inner dl > div dt {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.lower-page #flow .inner dl > div dt .number {
  width: 160px;
  text-align: center;
}
.lower-page #flow .inner dl > div dt .number span {
  display: block;
}
.lower-page #flow .inner dl > div dt .number span:last-child {
  font-size: 28px;
  font-weight: bold;
  line-height: 1em;
}
.lower-page #flow .inner dl > div dt .border {
  display: block;
  width: 1px;
  height: 36px;
  background: #434343;
}
.lower-page #flow .inner dl > div dt h4 {
  width: 160px;
  text-align: center;
  margin-bottom: 0;
  font-size: 24px;
}
@media screen and (min-width: 720px) {
  .lower-page #flow .inner dl > div {
    display: flex;
    padding: 24px 24px 24px 0;
    align-items: center;
  }
  .lower-page #flow .inner dl > div:not(:last-child)::after {
    translate: 0;
    left: 76px;
  }
  .lower-page #flow .inner dl > div dt {
    margin-bottom: 0;
  }
  .lower-page #flow .inner dl > div dt .number {
    width: 200px;
  }
  .lower-page #flow .inner dl > div dt .border {
    height: 88px;
  }
  .lower-page #flow .inner dl > div dt h4 {
    width: 200px;
  }
  .lower-page #flow .inner dl > div dd {
    width: calc(100% - 400px);
  }
}
.lower-page #service ul,
.lower-page #feature ul {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: left;
}
.lower-page #service ul li,
.lower-page #feature ul li {
  width: calc((100% - 40px) / 2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.lower-page #service ul li .img,
.lower-page #feature ul li .img {
  height: clamp(96px, 32vw, 184px);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
}
.lower-page #service ul li h4,
.lower-page #feature ul li h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  line-height: 1.5em;
  height: 4em;
  font-size: 16px;
  word-break: keep-all;
  text-align: center;
}
.lower-page #service ul li:nth-child(1) .img,
.lower-page #feature ul li:nth-child(1) .img {
  background-image: url("../img/welfare01-service01.png");
}
.lower-page #service ul li:nth-child(2) .img,
.lower-page #feature ul li:nth-child(2) .img {
  background-image: url("../img/welfare01-service02.png");
}
.lower-page #service ul li:nth-child(3) .img,
.lower-page #feature ul li:nth-child(3) .img {
  background-image: url("../img/welfare01-service03.png");
}
.lower-page #service ul li:nth-child(4) .img,
.lower-page #feature ul li:nth-child(4) .img {
  background-image: url("../img/welfare01-service04.png");
}
.lower-page #service ul li:nth-child(5) .img,
.lower-page #feature ul li:nth-child(5) .img {
  background-image: url("../img/welfare01-service05.png");
}
.lower-page #service ul li:nth-child(6) .img,
.lower-page #feature ul li:nth-child(6) .img {
  background-image: url("../img/welfare01-service06.png");
}
.lower-page #service ul li:nth-child(7) .img,
.lower-page #feature ul li:nth-child(7) .img {
  background-image: url("../img/welfare01-service07.png");
}
@media screen and (min-width: 720px) {
  .lower-page #service ul,
  .lower-page #feature ul {
    justify-content: center;
  }
  .lower-page #service ul li,
  .lower-page #feature ul li {
    width: calc((100% - 80px) / 3);
    max-width: 240px;
  }
  .lower-page #service ul li h4,
  .lower-page #feature ul li h4 {
    font-size: 18px;
  }
}
.lower-page #facility {
  background: #fff;
}
.lower-page #facility h3 {
  color: #E29460;
}
.lower-page #facility h3::before, .lower-page #facility h3::after {
  background: #E29460;
}
.lower-page #facility .inner .facility {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  margin-bottom: 40px;
}
.lower-page #facility .inner .facility .text h5 {
  margin-bottom: 0.5em;
  margin-top: 0;
}
.lower-page #facility .inner .facility .text p {
  padding-left: 1em;
  margin-bottom: 0.5em;
  word-break: keep-all;
  white-space: nowrap;
}
.lower-page #facility .inner .facility .text dl {
  padding-left: 1em;
}
.lower-page #facility .inner .facility .text dl div {
  display: flex;
  margin-bottom: 0.25em;
}
.lower-page #facility .inner .facility .text dl div dt {
  width: 128px;
}
.lower-page #facility .inner .facility .text dl div dd {
  width: calc(100% - 128px);
  padding-left: 1em;
  word-break: keep-all;
}
.lower-page #facility .inner .facility:nth-child(1) .text .tags span {
  background: #69B2EB;
}
.lower-page #facility .inner .facility:nth-child(1) .text h5 {
  color: #69B2EB;
}
.lower-page #facility .inner .facility:nth-child(2) .text .tags span {
  background: #F88EBD;
}
.lower-page #facility .inner .facility:nth-child(2) .text h5 {
  color: #F88EBD;
}
.lower-page #facility .inner .facility:nth-child(3) .text .tags span {
  background: #58CC60;
}
.lower-page #facility .inner .facility:nth-child(3) .text h5 {
  color: #58CC60;
}
.lower-page #facility .inner .facility:nth-child(4) .text .tags span {
  background: #f5a063;
}
.lower-page #facility .inner .facility:nth-child(4) .text h5 {
  color: #f5a063;
}
.lower-page #facility .inner .facility:nth-child(5) .text .tags span {
  background: #e85557;
}
.lower-page #facility .inner .facility:nth-child(5) .text h5 {
  color: #e85557;
}
.lower-page #facility .inner .facility .imgs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  width: 100%;
}
.lower-page #facility .inner .facility .imgs img {
  height: -moz-fit-content;
  height: fit-content;
}
.lower-page #facility .inner .facility .imgs :nth-child(1) {
  width: 100%;
  aspect-ratio: 540/320;
}
.lower-page #facility .inner .facility .imgs :nth-child(2),
.lower-page #facility .inner .facility .imgs :nth-child(3) {
  width: calc(50% - 3px);
  aspect-ratio: 265/187;
}
.lower-page #facility .inner .facility .text {
  width: 100%;
}
.lower-page #facility .inner .facility .text h4 {
  font-size: 20px;
  margin-bottom: 0.5em;
  line-height: 2em;
}
.lower-page #facility .inner .facility .text .tags {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.lower-page #facility .inner .facility .text .tags span {
  display: block;
  padding: 8px;
  font-size: 12px;
  color: #fff;
  border-radius: 12px;
  line-height: 1em;
}
@media screen and (min-width: 720px) {
  .lower-page #facility .inner .facility {
    flex-direction: row;
    gap: 40px;
  }
  .lower-page #facility .inner .facility:nth-child(2n) {
    flex-direction: row-reverse;
  }
  .lower-page #facility .inner .facility .imgs {
    width: calc(52% - 40px);
    max-width: 540px;
  }
  .lower-page #facility .inner .facility .text {
    width: 48%;
  }
}
@media screen and (min-width: 960px) {
  .lower-page #facility .inner .facility {
    width: 100%;
    margin-bottom: 80px;
  }
  .lower-page #facility .inner .facility .imgs {
    width: calc(100% - 424px - 40px);
  }
  .lower-page #facility .inner .facility .text {
    width: 424px;
  }
  .lower-page #facility .inner .facility .text .tags {
    margin-bottom: 48px;
  }
}/*# sourceMappingURL=styles.css.map */