@charset "UTF-8";
/*!
Theme Name: ウチシルベ株式会社
Theme URI: https://www.example.com/
Description: ウチシルベ株式会社のオリジナルテーマです。
Author: FLAG Inc.
Author URI: https://www.flaginc.net/
Version: 1.0
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
header {
  position: fixed;
  width: 100%;
  height: 70px;
  background-color: white;
  top: 0;
  left: 0;
  z-index: 1000;
}
@media screen and (max-width: 480px) {
  header {
    height: 60px;
  }
}
header .nav {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1025px) {
  header .nav {
    text-align: center;
    display: none;
    width: 100%;
    height: 100vh;
    background-color: #008CD6;
  }
}
header .nav .gnav-navi {
  display: flex;
  align-items: center;
  text-align: center;
  height: 100%;
}
@media screen and (max-width: 1025px) {
  header .nav .gnav-navi {
    height: fit-content;
    display: grid;
    gap: 30px;
    padding: 40px;
  }
}
header .nav .gnav-navi li {
  display: inline-block;
  color: #000;
  margin-right: 40px;
}
@media screen and (max-width: 1025px) {
  header .nav .gnav-navi li {
    color: white;
    display: inline;
    margin-right: 0;
  }
}
header .nav .gnav-navi li:last-of-type {
  margin-right: 0;
}
header .nav .gnav-navi li a {
  display: block;
  text-decoration: none;
}
header .nav .gnav-navi li a.disabled {
  pointer-events: none;
  color: #707070;
}
header .nav .gnav-navi li span {
  display: block;
}
header .nav .gnav-navi li .ja {
  font-size: 0.9375em;
  letter-spacing: 0.045em;
}
@media screen and (min-width: 1025px) and (max-width: 1065px) {
  header .nav .gnav-navi li .ja {
    font-size: 0.875em;
  }
}
header .nav .gnav-navi li .en {
  font-size: 0.625em;
  letter-spacing: 0.03em;
  margin-top: 8px;
}
header .nav-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 11px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1025px) {
  header .nav-wrap {
    padding: 5px 25px;
  }
}
header .nav-wrap .logo {
  display: flex;
  align-items: baseline;
}
@media screen and (max-width: 1025px) {
  header .nav-wrap .logo {
    display: block;
  }
}
header .nav-wrap .logo img {
  max-width: 165px;
  width: 100%;
}
@media screen and (max-width: 480px) {
  header .nav-wrap .logo img {
    width: 130px;
  }
}
header .nav-wrap .logo .en {
  font-size: 0.875em;
  letter-spacing: 0.12em;
  margin-left: 10px;
}
@media screen and (max-width: 1025px) {
  header .nav-wrap .logo .en {
    font-size: 0.635em;
    margin-left: unset;
  }
}
header .humburger {
  display: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: none;
}
@media screen and (max-width: 1025px) {
  header .humburger {
    display: block;
    position: absolute;
    right: 25px;
    top: 50%;
    width: 40px;
    height: 40px;
    z-index: 1000;
    transform: translateY(-50%);
    background-color: #008CD6;
    border-radius: 50%;
    padding: 13.5px 10.5px;
    outline: none;
  }
}
header .humburger .humburger-lines {
  position: relative;
  display: block;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  background: transparent;
}
header .humburger .humburger-lines:before, header .humburger .humburger-lines:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
header .humburger .humburger-lines:before {
  bottom: 4px;
}
header .humburger .humburger-lines:after {
  top: 3px;
  width: 60%;
}
header.is-open .nav {
  display: block;
  position: absolute;
  top: 70px;
  left: 0;
}
@media screen and (max-width: 480px) {
  header.is-open .nav {
    top: 60px;
  }
}
header.is-open .humburger-lines {
  background-color: unset;
}
header.is-open .humburger-lines:before {
  transform: rotate(45deg); /* 上の線を右上に回転 */
  top: 50%; /* 中央に位置調整 */
}
header.is-open .humburger-lines:after {
  width: 100%;
  transform: rotate(-45deg); /* 下の線を右下に回転 */
  top: 0;
  bottom: 50%; /* 中央に位置調整 */
}

#footer {
  border-top: 5px solid #008CD6;
  background-color: white;
  padding: 50px 7.5% 0;
}
#footer .footer-inner {
  max-width: 980px;
  width: 100%;
  margin: auto;
}
#footer .footer-inner .footer-wrap {
  display: flex;
  align-items: center;
  gap: 60px;
  justify-content: space-between;
}
@media screen and (max-width: 600px) {
  #footer .footer-inner .footer-wrap {
    align-items: flex-start;
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 480px) {
  #footer .footer-inner .footer-wrap {
    gap: 40px;
  }
}
#footer .footer-inner .text-wrap {
  max-width: 210px;
  width: 100%;
}
@media screen and (max-width: 480px) {
  #footer .footer-inner .text-wrap {
    max-width: unset;
    margin-bottom: 0;
  }
}
#footer .footer-inner .text-wrap .logo {
  width: 162px;
  margin-bottom: 20px;
}
#footer .footer-inner .text-wrap p span {
  display: block;
}
#footer .inner ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media screen and (min-width: 835px) and (max-width: 925px) {
  #footer .inner ul {
    gap: 40px 25px;
  }
}
@media screen and (max-width: 835px) {
  #footer .inner ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 60px;
  }
}
#footer .inner ul .disabled {
  pointer-events: none;
  color: #707070;
}
#footer .inner ul .text-wrap {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}
#footer .inner ul .text-wrap .ja {
  font-size: 0.875em;
}
@media screen and (min-width: 835px) and (max-width: 925px) {
  #footer .inner ul .text-wrap .ja {
    font-size: 13px;
  }
}
#footer .inner ul .text-wrap .en {
  font-size: 0.75em;
  color: #555;
  letter-spacing: 0.04em;
  margin-top: 8px;
}
#footer .copyright {
  text-align: center;
  padding: 50px 0 10px;
}
@media screen and (max-width: 480px) {
  #footer .copyright {
    padding-top: 30px;
  }
}

#hero {
  width: 100%;
  height: calc(100svh - 70px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 70px;
  position: relative;
}
@media screen and (min-width: 600px) and (max-width: 835px) {
  #hero {
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 480px) {
  #hero {
    height: calc(100svh - 60px);
    margin-top: 60px;
  }
}
#hero.show-imgs .hero-img .img {
  display: block;
}
#hero .hero-img {
  position: relative;
}
@media screen and (max-width: 835px) {
  #hero .hero-img {
    height: calc(68svh - 60px);
  }
}
@media screen and (max-width: 480px) {
  #hero .hero-img {
    height: calc(70svh - 60px);
  }
}
#hero .hero-img .img {
  display: none;
  width: 100%;
  height: calc(100svh - 60px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  animation: slideAnime 8s infinite; /* 1サイクル15秒を無限ループ */
}
@media screen and (max-width: 835px) {
  #hero .hero-img .img {
    height: calc(68svh - 60px);
  }
}
@media screen and (max-width: 480px) {
  #hero .hero-img .img {
    height: calc(70svh - 60px);
  }
}
#hero .hero-img .img.img-01 {
  animation-delay: 0s;
}
@media screen and (max-width: 1025px) {
  #hero .hero-img .img.img-01 {
    background-position: 75% 0;
  }
}
@media screen and (max-width: 835px) {
  #hero .hero-img .img.img-01 {
    background-position: 100% 0;
  }
}
@media screen and (max-width: 480px) {
  #hero .hero-img .img.img-01 {
    background-position: 97% 0;
  }
}
#hero .hero-img .img.img-02 {
  animation-delay: 4s;
  opacity: 0;
}
@media screen and (max-width: 835px) {
  #hero .hero-img .img.img-02 {
    background-position: 85% 0;
  }
}
@media screen and (max-width: 480px) {
  #hero .hero-img .img.img-02 {
    background-position: 83% 0;
  }
}
@keyframes slideAnime {
  75%, 100% {
    opacity: 0;
  } /* 非表示のタイミング */
  25%, 50% {
    opacity: 1;
  } /* 表示されるタイミング */
}
#hero .hero-copy {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  opacity: 0;
  text-shadow: 0 0 20px rgb(255, 255, 255), 0 0 30px rgb(255, 255, 255);
}
@media screen and (max-width: 835px) {
  #hero .hero-copy {
    position: relative;
    width: max-content;
    left: unset;
    top: unset;
    bottom: unset;
    transform: unset;
    margin: 70px auto 0;
  }
}
@media screen and (max-width: 600px) {
  #hero .hero-copy {
    margin-top: 50px;
  }
}
@media screen and (max-width: 480px) {
  #hero .hero-copy {
    width: 85%;
    margin: 30px auto;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#hero .hero-copy.fade-in {
  animation: fadeIn 1.5s ease-out forwards;
  animation-delay: 0.5s;
}
#hero h1 {
  font-size: 33px;
  font-weight: 500;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 835px) {
  #hero h1 {
    font-size: 40.5px;
  }
}
@media screen and (max-width: 600px) {
  #hero h1 {
    display: none;
  }
}
#hero h1 span {
  display: block;
}
#hero h1 span:first-of-type {
  margin-left: -16px;
}
#hero .sp-copy {
  display: none;
}
@media screen and (max-width: 600px) {
  #hero .sp-copy {
    display: block;
    font-size: 28px;
  }
  #hero .sp-copy span {
    display: block;
    line-height: 1.42;
    margin-left: -14px;
  }
}
@media screen and (max-width: 375px) {
  #hero .sp-copy {
    font-size: 26px;
  }
}
@media screen and (max-width: 345px) {
  #hero .sp-copy {
    font-size: 24px;
  }
}
#hero .en {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 15px;
}
@media screen and (max-width: 835px) {
  #hero .en {
    font-size: 17.5px;
  }
}
@media screen and (max-width: 600px) {
  #hero .en {
    font-size: 10.5px;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 375px) {
  #hero .en {
    font-size: 9.8px;
  }
}
@media screen and (max-width: 345px) {
  #hero .en {
    font-size: 9px;
  }
}
#hero .en span {
  display: block;
}
#hero .small {
  font-size: 18px;
  letter-spacing: 0.12em;
  margin-top: 15px;
}
@media screen and (max-width: 835px) {
  #hero .small {
    font-size: 22px;
  }
}
@media screen and (max-width: 600px) {
  #hero .small {
    font-size: 13px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 375px) {
  #hero .small {
    font-size: 12px;
  }
}
@media screen and (max-width: 345px) {
  #hero .small {
    font-size: 11.5px;
  }
}
#hero h1,
#hero .small,
#hero .en {
  color: #012857;
}

#policy {
  padding: 185px 7.5%;
  position: relative;
}
@media screen and (max-width: 835px) {
  #policy {
    padding: 120px 7.5% 100px;
  }
}
@media screen and (max-width: 480px) {
  #policy {
    padding: 130px 7.5% 80px;
  }
}
#policy .policy-inner {
  max-width: 887px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 80px;
  align-items: center;
  margin: auto;
}
@media screen and (max-width: 835px) {
  #policy .policy-inner {
    gap: 40px;
  }
}
@media screen and (max-width: 600px) {
  #policy .policy-inner {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  #policy .policy-inner {
    width: 100%;
  }
}
#policy .policy-inner .circle-wrap {
  max-width: 302px;
  width: 100%;
  height: 195px;
  position: relative;
  flex-shrink: 0;
}
@media screen and (min-width: 600px) and (max-width: 835px) {
  #policy .policy-inner .circle-wrap {
    max-width: 225px;
  }
}
@media screen and (max-width: 600px) {
  #policy .policy-inner .circle-wrap {
    margin: auto;
  }
}
@media screen and (max-width: 480px) {
  #policy .policy-inner .circle-wrap {
    height: 120px;
    margin: 0 auto 50px;
  }
}
#policy .policy-inner .circle-wrap .circle_1 {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  left: -10px;
  bottom: -30px;
}
@media screen and (min-width: 600px) and (max-width: 835px) {
  #policy .policy-inner .circle-wrap .circle_1 {
    width: 70px;
    height: 70px;
    left: 0%;
    bottom: 2%;
  }
}
@media screen and (max-width: 480px) {
  #policy .policy-inner .circle-wrap .circle_1 {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    left: 10%;
    bottom: -10%;
  }
}
#policy .policy-inner .circle-wrap .circle_2 {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  top: -30px;
  left: 60px;
}
@media screen and (min-width: 600px) and (max-width: 835px) {
  #policy .policy-inner .circle-wrap .circle_2 {
    width: 95px;
    height: 95px;
    top: -8%;
    left: 20%;
  }
}
@media screen and (max-width: 480px) {
  #policy .policy-inner .circle-wrap .circle_2 {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    top: -45%;
    left: 30%;
  }
}
#policy .policy-inner .circle-wrap .circle_3 {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  left: 154px;
  bottom: -35px;
}
@media screen and (min-width: 600px) and (max-width: 835px) {
  #policy .policy-inner .circle-wrap .circle_3 {
    width: 110px;
    height: 110px;
    left: 51%;
    bottom: -3%;
  }
}
@media screen and (max-width: 480px) {
  #policy .policy-inner .circle-wrap .circle_3 {
    width: 105px;
    height: 105px;
    border-radius: 50%;
    left: 55%;
    bottom: -20%;
  }
}
#policy .policy-inner .circle-wrap .circle_1,
#policy .policy-inner .circle-wrap .circle_2,
#policy .policy-inner .circle-wrap .circle_3 {
  display: block;
  background-color: #03AFDE;
  animation: fuwafuwa 2s infinite;
  position: absolute;
}
@keyframes fuwafuwa {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-25px);
  }
  100% {
    transform: translateY(0px);
  }
}
#policy .policy-inner .text-wrap {
  max-width: 428px;
  width: 90%;
  align-content: center;
}
@media screen and (max-width: 600px) {
  #policy .policy-inner .text-wrap {
    max-width: 600px;
    width: 100%;
    margin: 80px auto 0;
  }
}
@media screen and (max-width: 480px) {
  #policy .policy-inner .text-wrap {
    margin-top: 40px;
  }
}
#policy .policy-inner .text-wrap h2 span,
#policy .policy-inner .text-wrap p span {
  display: block;
}
#policy .policy-inner .text-wrap h2 {
  font-size: 1.56em;
  font-weight: bold;
  line-height: 1.7;
  text-align: left;
  margin-bottom: 30px;
}
@media screen and (max-width: 835px) {
  #policy .policy-inner .text-wrap h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 480px) {
  #policy .policy-inner .text-wrap h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
#policy .policy-inner .text-wrap h2 span {
  margin: -0.07em 0;
}
#policy .policy-inner .text-wrap p {
  font-size: 1em;
  line-height: 2.1875;
}
@media screen and (max-width: 835px) {
  #policy .policy-inner .text-wrap p {
    font-size: 15px;
    line-height: 2;
  }
}
#policy .policy-inner .text-wrap p span {
  margin: -0.4em 0;
}
@media screen and (max-width: 835px) {
  #policy .policy-inner .text-wrap p span {
    display: inline;
  }
}

#about {
  padding: 100px 7.5%;
  position: relative;
  overflow: hidden;
  /* 背景動画 */
}
@media screen and (max-width: 835px) {
  #about {
    padding: 80px 7.5%;
  }
}
@media screen and (max-width: 480px) {
  #about {
    padding: 50px 7.5%;
  }
}
#about .video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
#about .video-wrap video,
#about .video-wrap .fallback-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#about .video-wrap .fallback-image {
  display: none;
  object-position: 85% 0;
}
#about .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 1;
}
@media screen and (max-width: 480px) {
  #about .overlay {
    background-color: rgba(0, 0, 0, 0.2);
  }
}
#about .inner {
  max-width: 980px;
  width: 100%;
  margin: auto;
  position: relative;
  z-index: 2;
}
#about .about-wrap {
  max-width: 400px;
  position: relative;
}
@media screen and (max-width: 835px) {
  #about .about-wrap {
    max-width: 350px;
  }
}
@media screen and (max-width: 600px) {
  #about .about-wrap {
    max-width: unset;
  }
}
#about .about-wrap h2,
#about .about-wrap p {
  color: white;
}
#about .about-wrap .text-wrap {
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}
#about .about-wrap .text-wrap span {
  display: block;
}
@media screen and (max-width: 835px) {
  #about .about-wrap .text-wrap span {
    display: inline;
  }
}

#business,
#recruite,
#service,
#promise,
#strength {
  padding: 0 7.5%;
  margin: 100px auto;
}
@media screen and (max-width: 835px) {
  #business,
  #recruite,
  #service,
  #promise,
  #strength {
    padding: 0 7.5%;
    margin: 80px auto;
  }
}
@media screen and (max-width: 600px) {
  #business,
  #recruite,
  #service,
  #promise,
  #strength {
    padding: 0px 30px;
  }
}
#business .inner,
#recruite .inner,
#service .inner,
#promise .inner,
#strength .inner {
  max-width: 980px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  margin: auto;
}
@media screen and (max-width: 600px) {
  #business .inner,
  #recruite .inner,
  #service .inner,
  #promise .inner,
  #strength .inner {
    display: block;
  }
}
#business .inner .bg-img,
#recruite .inner .bg-img,
#service .inner .bg-img,
#promise .inner .bg-img,
#strength .inner .bg-img {
  max-width: 450px;
  width: 100%;
  height: auto;
  aspect-ratio: 45/34;
  border-radius: 40px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 600px) {
  #business .inner .bg-img,
  #recruite .inner .bg-img,
  #service .inner .bg-img,
  #promise .inner .bg-img,
  #strength .inner .bg-img {
    max-width: unset;
    aspect-ratio: 5/3;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  #business .inner .bg-img,
  #recruite .inner .bg-img,
  #service .inner .bg-img,
  #promise .inner .bg-img,
  #strength .inner .bg-img {
    border-radius: 20px;
  }
}
#business .inner .item-wrap,
#recruite .inner .item-wrap,
#service .inner .item-wrap,
#promise .inner .item-wrap,
#strength .inner .item-wrap {
  max-width: 400px;
  width: 100%;
  align-content: center;
}
@media screen and (max-width: 900px) {
  #business .inner .item-wrap,
  #recruite .inner .item-wrap,
  #service .inner .item-wrap,
  #promise .inner .item-wrap,
  #strength .inner .item-wrap {
    max-width: unset;
  }
}
@media screen and (max-width: 835px) {
  #business .inner .item-wrap #title-wrap,
  #recruite .inner .item-wrap #title-wrap,
  #service .inner .item-wrap #title-wrap,
  #promise .inner .item-wrap #title-wrap,
  #strength .inner .item-wrap #title-wrap {
    margin-bottom: 20px;
  }
  #business .inner .item-wrap #title-wrap .en,
  #recruite .inner .item-wrap #title-wrap .en,
  #service .inner .item-wrap #title-wrap .en,
  #promise .inner .item-wrap #title-wrap .en,
  #strength .inner .item-wrap #title-wrap .en {
    font-size: 28px;
    padding-bottom: 8px;
  }
  #business .inner .item-wrap #title-wrap .en::before,
  #recruite .inner .item-wrap #title-wrap .en::before,
  #service .inner .item-wrap #title-wrap .en::before,
  #promise .inner .item-wrap #title-wrap .en::before,
  #strength .inner .item-wrap #title-wrap .en::before {
    height: 20px;
    margin-right: 8px;
  }
  #business .inner .item-wrap #title-wrap p,
  #recruite .inner .item-wrap #title-wrap p,
  #service .inner .item-wrap #title-wrap p,
  #promise .inner .item-wrap #title-wrap p,
  #strength .inner .item-wrap #title-wrap p {
    margin-left: 13px;
  }
}
#business .inner .item-wrap h4,
#recruite .inner .item-wrap h4,
#service .inner .item-wrap h4,
#promise .inner .item-wrap h4,
#strength .inner .item-wrap h4 {
  font-size: 1.25em;
  font-weight: bold;
  margin-bottom: 15px;
}

@media screen and (max-width: 600px) {
  #business,
  #recruite {
    width: 85%;
    padding: unset;
    margin: 80px auto;
  }
}

@media screen and (max-width: 480px) {
  #business {
    margin: 50px auto;
  }
}

#recruite {
  padding-top: 20px;
  margin: 0 auto 100px;
}
@media screen and (max-width: 600px) {
  #recruite {
    padding-top: 0px;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 480px) {
  #recruite {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 600px) {
  #recruite .inner {
    display: flex;
    flex-direction: column-reverse;
    justify-content: unset;
    gap: 0;
  }
}
@media screen and (max-width: 835px) {
  #recruite .inner .bg-img {
    background-position: 100% 0;
  }
}

#service,
#promise,
#strength {
  padding: 0;
  margin: 0;
}
#service .inner,
#promise .inner,
#strength .inner {
  gap: 30px;
}
@media screen and (max-width: 835px) {
  #service .inner,
  #promise .inner,
  #strength .inner {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 600px) {
  #service .inner,
  #promise .inner,
  #strength .inner {
    gap: 20px;
  }
}
#service .inner .bg-img,
#promise .inner .bg-img,
#strength .inner .bg-img {
  max-width: 436px;
  width: 100%;
  height: auto;
  aspect-ratio: 44/32;
  object-fit: cover;
  object-position: center;
  border-radius: 22px;
}
@media screen and (max-width: 835px) {
  #service .inner .bg-img,
  #promise .inner .bg-img,
  #strength .inner .bg-img {
    max-width: 500px;
    aspect-ratio: 5/3;
    margin: auto;
  }
}
#service .inner .item-wrap,
#promise .inner .item-wrap,
#strength .inner .item-wrap {
  max-width: 444px;
}
@media screen and (max-width: 835px) {
  #service .inner .item-wrap,
  #promise .inner .item-wrap,
  #strength .inner .item-wrap {
    max-width: 500px;
    margin: auto;
  }
}
#service .inner .item-wrap h4,
#promise .inner .item-wrap h4,
#strength .inner .item-wrap h4 {
  font-size: 1.5625em;
  letter-spacing: 0.04em;
  line-height: 1.25;
}
@media screen and (max-width: 600px) {
  #service .inner .item-wrap h4,
  #promise .inner .item-wrap h4,
  #strength .inner .item-wrap h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
#service .inner .item-wrap p,
#promise .inner .item-wrap p,
#strength .inner .item-wrap p {
  font-size: 0.875em;
}
#service .inner .item-wrap p span,
#promise .inner .item-wrap p span,
#strength .inner .item-wrap p span {
  display: block;
}
@media screen and (max-width: 835px) {
  #service .inner .item-wrap p span,
  #promise .inner .item-wrap p span,
  #strength .inner .item-wrap p span {
    display: inline;
  }
}

#service {
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 835px) {
  #service .inner .bg-img {
    background-position: top;
  }
}
#service .inner .item-wrap h4 {
  font-size: 1.25em;
  line-height: 1.5;
}
@media screen and (max-width: 480px) {
  #service .inner .item-wrap h4 {
    font-size: 16px;
  }
}
#service .inner .item-wrap h4 span {
  display: block;
}
@media screen and (max-width: 900px) {
  #service .inner .item-wrap h4 span {
    display: inline;
  }
}

@media screen and (max-width: 835px) {
  #promise .inner .bg-img {
    background-position: top;
  }
}

#strength {
  margin-top: 70px;
}
@media screen and (max-width: 480px) {
  #strength {
    margin-top: 50px;
  }
}
#strength:first-of-type {
  margin-top: 0;
}
#strength:nth-of-type(even) .inner {
  flex-direction: row-reverse;
}
@media screen and (max-width: 835px) {
  #strength:nth-of-type(even) .inner {
    flex-direction: column;
  }
}
#strength .item-wrap h4 {
  color: #008CD6;
}
#strength .item-wrap .color-b {
  color: black;
}

#news {
  width: 100%;
  background-color: #E8F2F5;
  padding: 100px 7.5%;
}
@media screen and (max-width: 835px) {
  #news {
    padding: 50px 7.5%;
  }
}
#news .inner {
  max-width: 980px;
  width: 100%;
  margin: auto;
}
#news .slider-inner {
  margin: auto;
}
#news .slider-inner .slick-list {
  overflow: unset;
}
@media screen and (max-width: 835px) {
  #news .slider-inner .slick-list {
    overflow: hidden;
  }
}
@media screen and (max-width: 600px) {
  #news .slider-inner .slick-list {
    max-width: 400px;
    margin: auto;
  }
}
#news .slider-inner .slick-list .slick-track {
  display: flex;
}
#news .slider-inner .slick-slide {
  max-width: 290px;
  width: 90%;
  margin-right: 27.5px;
  margin-left: 27.5px;
}
@media screen and (max-width: 900px) {
  #news .slider-inner .slick-slide {
    margin-right: 10px;
    margin-left: 10px;
  }
}
@media screen and (max-width: 835px) {
  #news .slider-inner .slick-slide {
    max-width: unset;
  }
}
@media screen and (max-width: 600px) {
  #news .slider-inner .slick-slide {
    margin: 0;
  }
}
#news .slider-inner .slick-slide:first-of-type {
  margin-left: 0;
}
#news .slider-inner .slick-slide:last-of-type {
  margin-right: 0;
}
@media screen and (max-width: 835px) {
  #news .slider-inner .news-content {
    max-width: 400px;
    width: 100%;
    margin: auto;
  }
}
@media screen and (max-width: 480px) {
  #news .slider-inner .news-content {
    max-width: unset;
  }
}
#news .slider-inner .news-content img {
  width: 100%;
  height: auto;
  aspect-ratio: 290/216;
  object-fit: cover;
  object-position: center;
  margin-bottom: 10px;
}
#news .slider-inner .news-content img.no-image {
  object-fit: contain;
  background-color: white;
  border: 1px solid #E3E3E3;
  padding: 0 60px;
}
#news .slider-inner .news-content .news-postdate {
  font-size: 0.8125em;
  margin-bottom: 5px;
}
#news .slider-inner .news-content .news-title {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* ブラウザがサポートしていない場合のフェールセーフ */
  min-height: 50px;
  font-weight: bold;
  margin-bottom: -0.4625em;
}
#news .slider-inner .slick-dots {
  display: none;
  width: fit-content;
  position: relative;
  bottom: 0;
  margin: 40px auto 0;
}
@media screen and (max-width: 835px) {
  #news .slider-inner .slick-dots {
    width: fit-content;
    display: flex;
    gap: 15px;
    margin: 30px auto 0;
  }
}
#news .slider-inner .slick-dots li {
  width: 15px;
  height: 15px;
  margin: 0 25px 0 0;
  position: relative;
}
#news .slider-inner .slick-dots li:last-of-type {
  margin-right: 0;
}
@media screen and (max-width: 835px) {
  #news .slider-inner .slick-dots li {
    margin: 0;
  }
}
#news .slider-inner .slick-dots button::before {
  width: 10px;
  height: 10px;
  aspect-ratio: 1/1;
  background-color: #03AFDE;
  border-radius: 7px;
  font-size: 0;
  line-height: unset;
  top: 5px;
  left: 5px;
}
#news .no-news {
  text-align: center;
}
@media screen and (max-width: 835px) {
  #news .no-news {
    text-align: left;
  }
}
#news .button-wrap {
  text-align: end;
}

.page-news .news-inner {
  margin-bottom: 100px;
}
@media screen and (max-width: 480px) {
  .page-news .news-inner {
    margin-bottom: 50px;
  }
}
.page-news .news-wrap {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media screen and (max-width: 835px) {
  .page-news .news-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
}
@media screen and (max-width: 480px) {
  .page-news .news-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
.page-news .news-wrap.no-news-wrap {
  display: inline;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .page-news .news-wrap.no-news-wrap {
    text-align: left;
  }
}
.page-news .news-wrap .news-content {
  max-width: 290px;
}
@media screen and (max-width: 835px) {
  .page-news .news-wrap .news-content {
    max-width: unset;
  }
}
.page-news .news-wrap .news-content img {
  width: 100%;
  height: auto;
  aspect-ratio: 29/21;
  object-fit: cover;
  object-position: center;
  margin-bottom: 10px;
}
.page-news .news-wrap .news-content img.no-image {
  object-fit: contain;
  border: 1px solid #E3E3E3;
  padding: 0 60px;
}
.page-news .news-wrap .news-content .news-postdate {
  font-size: 0.8125em;
  margin-bottom: 5px;
}
.page-news .news-wrap .news-content .news-title {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* ブラウザがサポートしていない場合のフェールセーフ */
  min-height: 50px;
  font-weight: bold;
}

.single-page_news {
  padding: 30px 3.5% 0;
}
@media screen and (max-width: 835px) {
  .single-page_news {
    padding: 30px 35px 0;
  }
}
@media screen and (max-width: 600px) {
  .single-page_news {
    padding: 30px 15px 0;
  }
}
@media screen and (max-width: 480px) {
  .single-page_news {
    padding-top: 20px;
  }
}
.single-page_news .single-page {
  max-width: 980px;
  width: 100%;
  margin: 0 auto 50px;
}
.single-page_news .single-page .news-content {
  background-color: rgba(255, 255, 255, 0.97);
  border-radius: 31px 31px 0 0;
  padding: 50px 155px;
}
@media screen and (max-width: 835px) {
  .single-page_news .single-page .news-content {
    padding: 30px 50px;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 600px) {
  .single-page_news .single-page .news-content {
    padding: 40px 20px 0;
  }
}
.single-page_news .single-page .news-content .single-title {
  font-size: 1em;
  letter-spacing: 0.03em;
  line-height: 1.75;
  margin-right: -0.03em;
}
.single-page_news .single-page .news-content .news-postdate-wrap {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.single-page_news .single-page .news-content .news-postdate-wrap .news-postdate {
  font-size: 0.875em;
  margin-right: 20px;
}
@media screen and (max-width: 835px) {
  .single-page_news .single-page .news-content .news-postdate-wrap .news-postdate {
    font-size: 0.75em;
  }
}
.single-page_news .single-page .news-content .news-postdate-wrap .news-category {
  font-size: 0.75em;
  font-weight: bold;
  color: white;
  line-height: unset;
  text-align: center;
  border-radius: 23px;
  background-color: #03AFDE;
  padding: 5px 20px;
}
.single-page_news .single-page .single-content-wrap .single-content {
  background-color: rgba(255, 255, 255, 0.97);
  border-radius: 0 0 31px 31px;
  padding: 0 155px 50px;
}
@media screen and (max-width: 835px) {
  .single-page_news .single-page .single-content-wrap .single-content {
    padding: 30px 50px;
  }
}
@media screen and (max-width: 600px) {
  .single-page_news .single-page .single-content-wrap .single-content {
    padding: 40px 20px;
  }
}
.single-page_news .single-page .single-content-wrap .single-content p {
  margin-bottom: 40px;
}
@media screen and (max-width: 835px) {
  .single-page_news .single-page .single-content-wrap .single-content p {
    margin-bottom: 20px;
  }
}
.single-page_news .single-page .single-content-wrap .single-content p:last-of-type {
  margin-bottom: 0;
}
.single-page_news .single-page .single-content-wrap .single-content p a {
  text-decoration: underline;
  word-break: break-all;
}
.single-page_news .single-page .single-content-wrap .single-content p iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}
.single-page_news .single-page .single-content-wrap .single-content p img {
  max-width: 375px;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}
.single-page_news .button-wrap {
  width: fit-content;
  margin: 50px auto 100px;
}
@media screen and (max-width: 835px) {
  .single-page_news .button-wrap {
    margin: 50px auto;
  }
}
.single-page_news .button-wrap .button {
  width: 100%;
  text-align: center;
}

.page-contents .page-body .page-section table {
  width: 100%;
}
.page-contents .page-body .page-section table tbody tr {
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 835px) {
  .page-contents .page-body .page-section table tbody tr {
    width: 100%;
    display: inline-grid;
  }
}
.page-contents .page-body .page-section table tbody tr:first-of-type {
  border-top: 1px solid #ddd;
}
.page-contents .page-body .page-section table tbody tr th {
  width: 40%;
  font-size: 1em;
  letter-spacing: 0.05em;
  text-align: center;
  vertical-align: middle;
  background-color: #f8f8f8;
  padding: 30px 50px;
  margin-right: 0.05em;
}
@media screen and (max-width: 835px) {
  .page-contents .page-body .page-section table tbody tr th {
    width: 100%;
    text-align: left;
    margin-right: 0;
    padding: 20px 30px;
  }
}
@media screen and (max-width: 480px) {
  .page-contents .page-body .page-section table tbody tr th {
    font-size: 0.9375em;
    padding: 10px 20px;
  }
}
.page-contents .page-body .page-section table tbody tr td {
  width: 60%;
  letter-spacing: 0.05em;
  padding: 30px 50px;
  margin-right: 0.05em;
}
@media screen and (max-width: 835px) {
  .page-contents .page-body .page-section table tbody tr td {
    width: 100%;
    margin-right: 0;
    padding: 20px 30px;
  }
}
@media screen and (max-width: 480px) {
  .page-contents .page-body .page-section table tbody tr td {
    padding: 20px;
  }
}
.page-contents .page-body .page-section table tbody tr td .address {
  margin-bottom: 20px;
}
.page-contents .page-body .page-section table tbody tr td .address:last-of-type {
  margin-bottom: 0;
}
.page-contents .page-body .page-section table tbody tr td .address .note {
  font-size: 0.75em;
  margin-left: 5px;
}
.page-contents .page-body .page-section table tbody tr td h4 {
  font-size: 1em;
  font-weight: 500;
  color: #03AFDE;
  margin-bottom: 5px;
}
.page-contents .page-body .page-section table tbody tr td .job-desc_cap span {
  display: block;
}
.page-contents .page-body .page-section table tbody tr td .job-desc_cap span:last-of-type {
  margin-top: 9px;
}
.page-contents .page-body .page-section table tbody tr td a {
  font-size: 0.875em;
}
.page-contents .page-body .page-section table tbody tr td a:hover {
  color: #03AFDE;
}
.page-contents .page-body .page-section .banner-wrap {
  max-width: 980px;
  width: 100%;
  display: flex;
  gap: 15px;
  margin-top: 40px;
}
@media screen and (max-width: 835px) {
  .page-contents .page-body .page-section .banner-wrap {
    display: grid;
    gap: 20px 0;
  }
}
.page-contents .page-body .page-section .banner-wrap .banner-link {
  width: 100%;
  border-radius: 20px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1019607843);
  padding: 5px 10px;
  margin: auto;
}
@media screen and (max-width: 835px) {
  .page-contents .page-body .page-section .banner-wrap .banner-link {
    max-width: 360px;
  }
}
.page-contents .page-body .page-section .banner-wrap .banner-link img {
  border-radius: 20px;
}

.contact-cap {
  margin-bottom: 50px;
}
@media screen and (max-width: 835px) {
  .contact-cap {
    margin-bottom: 30px;
  }
}

.entry-cap {
  margin-bottom: 50px;
}
@media screen and (max-width: 480px) {
  .entry-cap {
    margin-bottom: 30px;
  }
}

form {
  width: 100%;
}
form .cf7-item {
  display: grid;
  gap: 15px;
  margin-bottom: 30px;
}
@media screen and (max-width: 835px) {
  form .cf7-item {
    gap: 10px;
  }
}
form .cf7-item .cf7-q p {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.2;
}
form .cf7-item .cf7-q p label {
  display: flex;
  align-items: center;
}
form .cf7-item .cf7-q .cf7-req {
  display: inline-block;
  width: 80px;
  font-size: 0.75em;
  font-weight: bold;
  color: white;
  line-height: 1.2;
  text-align: center;
  border-radius: 23px;
  background-color: #03AFDE;
  padding: 3px 0;
  margin-left: 15px;
}
@media screen and (max-width: 480px) {
  form .cf7-item .cf7-q .cf7-req {
    padding: 3px 0px 4px;
  }
}
form .cf7-item .cf7-a {
  width: 100%;
  font-size: 0.875em;
}
form .cf7-item .cf7-a input[type=text],
form .cf7-item .cf7-a input[type=tel],
form .cf7-item .cf7-a input[type=email],
form .cf7-item .cf7-a input[type=text],
form .cf7-item .cf7-a textarea {
  outline: none !important;
  background-image: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  resize: none;
}
form .cf7-item .cf7-a.select-wrap {
  max-width: 490px;
  width: 100%;
  position: relative;
}
form .cf7-item .cf7-a.select-wrap select {
  width: 100%;
  height: auto;
  color: black;
  border: 1px solid #bbb;
  border-radius: 10px;
  padding: 20px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2.5em;
  background-color: white;
}
@media screen and (max-width: 835px) {
  form .cf7-item .cf7-a.select-wrap select {
    width: 100%;
    padding-left: 20px;
  }
}
form .cf7-item .cf7-a.select-wrap::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 8px solid #333;
  border-bottom: 0;
  position: absolute;
  right: 6%;
  top: 30px;
  transform: translateY(-50%);
  pointer-events: none;
}
form .cf7-item .cf7-a .wpcf7-text {
  width: 100%;
  border: 1px solid #bbb;
  border-radius: 10px;
  padding: 20px;
}
form .cf7-item .cf7-a .wpcf7-text.zip {
  width: 120px;
}
form .cf7-item .cf7-a .wpcf7-textarea {
  width: 100%;
  font-size: 14px;
  border: 1px solid #bbb;
  border-radius: 10px;
  padding: 20px;
}
form .cf7-item .cf7-a input,
form .cf7-item .cf7-a select {
  max-width: 490px;
  width: 100%;
  font-size: 14px;
}
form .cf7-item .cf7-a.birth {
  display: flex;
  align-items: center;
  gap: 15px;
}
form .cf7-item .cf7-a.birth p {
  display: flex;
  align-items: center;
}
form .cf7-item .cf7-a.birth p span {
  margin-right: 5px;
  position: relative;
}
form .cf7-item .cf7-a.birth p span select {
  width: 100%;
  height: auto;
  color: black;
  border: 1px solid #bbb;
  border-radius: 10px;
  padding: 20px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2.5em;
  background-color: white;
}
@media screen and (max-width: 835px) {
  form .cf7-item .cf7-a.birth p span select {
    width: 100%;
    padding: 12px 25px 12px 15px;
  }
}
form .cf7-item .cf7-a.birth p span::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 8px solid #333;
  border-bottom: 0;
  position: absolute;
  right: 10%;
  top: 30px;
  transform: translateY(-50%);
  pointer-events: none;
}
form .cf7-item .cf7-a.birth p span .wpcf7-not-valid-tip::after {
  content: "";
  display: none;
}
form .cf7-item .wpcf7-radio input[type=radio] {
  display: none;
}
form .cf7-item .wpcf7-radio {
  display: flex;
  gap: 0 20px;
}
@media screen and (max-width: 600px) {
  form .cf7-item .wpcf7-radio {
    display: grid;
    gap: 20px 0;
  }
}
form .cf7-item .wpcf7-radio .wpcf7-list-item {
  margin-left: 0;
}
form .cf7-item .wpcf7-radio .wpcf7-list-item label {
  width: 120px;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 8px 12px;
  border: 1px solid #bbb;
  border-radius: 6px;
  margin: 5px 0;
  position: relative;
  transition: all 0.3s;
}
@media screen and (max-width: 600px) {
  form .cf7-item .wpcf7-radio .wpcf7-list-item label {
    width: 100%;
  }
}
form .cf7-item .wpcf7-radio .wpcf7-list-item label::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid #bbb;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s;
  position: relative;
}
form .cf7-item .wpcf7-radio .is-checked label::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-color: #03AFDE;
  position: absolute;
  top: 50%;
  left: 16px;
  border-radius: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 600px) {
  form .cf7-item .wpcf7-radio .is-checked label::after {
    left: 15px;
  }
}
@media screen and (max-width: 480px) {
  form .cf7-item .wpcf7-radio .is-checked label::after {
    left: 15.3px;
  }
}
form .cf7-item .wpcf7-not-valid-tip {
  font-size: 0.8em;
  margin-top: 5px;
}
form .cf7-item:has(+ .privacy-notice) .cf7-a {
  padding-bottom: 0;
}

.privacy-notice {
  border: 1px solid black;
  border-radius: 10px;
  padding: 30px;
  margin-top: 60px;
}
@media screen and (max-width: 835px) {
  .privacy-notice {
    padding: 30px 20px;
    margin-top: 50px;
  }
}
.privacy-notice h4 {
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 835px) {
  .privacy-notice h4 {
    font-size: 0.875em;
  }
}
@media screen and (max-width: 835px) {
  .privacy-notice p {
    font-size: 0.75em;
  }
}

.accept {
  font-size: 1.14em;
  text-align: center;
  margin: 30px 0 40px;
}
@media screen and (max-width: 480px) {
  .accept {
    font-size: 1em;
    margin: 30px auto;
  }
}
.accept a {
  text-decoration: underline;
}
.accept .wpcf7-list-item {
  margin-left: 0;
}

.form-button-wrap {
  text-align: center;
  position: relative;
}

input[type=checkbox] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
input[type=checkbox] + span {
  cursor: pointer;
  display: inline-block;
  padding: 5px 0 5px 30px;
  position: relative;
}
input[type=checkbox] + span:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  border: 1px solid black;
}
input[type=checkbox] + span:after {
  content: "";
  display: block;
  width: 5px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 6px;
  transform: rotate(35deg) skewY(16deg) translateY(-50%);
  transform-origin: center right;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  opacity: 0;
}
input[type=checkbox]:checked + span:before {
  border: none;
  background-color: #03AFDE;
  padding: 1px;
}
input[type=checkbox]:checked + span:after {
  opacity: 1;
}

.wpcf7-submit {
  width: 200px;
  border: none;
  background: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 20px;
  border-radius: 3px;
  background-color: #008CD6;
  color: white;
  font-size: 14px;
  letter-spacing: 0.03em;
}

.wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}

.page-recruit .message .headline {
  margin-bottom: 20px;
}
.page-recruit .message p {
  margin-bottom: 1em;
}
.page-recruit .message p:last-of-type {
  margin-bottom: 0;
}
.page-recruit .interview-section {
  padding-bottom: 85px !important;
}
@media screen and (max-width: 1160px) {
  .page-recruit .interview-section {
    padding-bottom: 65px !important;
  }
}
@media screen and (max-width: 835px) {
  .page-recruit .interview-section {
    padding-bottom: 45px !important;
  }
}
@media screen and (max-width: 600px) {
  .page-recruit .interview-section {
    padding-bottom: 40px !important;
  }
}
.page-recruit .staff-wrap {
  display: flex;
  overflow-x: auto;
  gap: 40px;
  padding-bottom: 30px;
  /* ===== Firefox ===== */
  scrollbar-width: thin;
  scrollbar-color: #aaa transparent;
  /* ===== Chrome / Safari / Edge ===== */
}
.page-recruit .staff-wrap::-webkit-scrollbar {
  height: 5px;
}
.page-recruit .staff-wrap::-webkit-scrollbar-track {
  background: transparent;
}
.page-recruit .staff-wrap::-webkit-scrollbar-thumb {
  background-color: #aaa;
  border-radius: 999px;
}
.page-recruit .staff-wrap::-webkit-scrollbar-thumb:hover {
  background-color: #aaa;
}
@media screen and (max-width: 835px) {
  .page-recruit .staff-wrap {
    gap: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .page-recruit .staff-wrap::-webkit-scrollbar {
    display: none;
  }
}
.page-recruit .staff-wrap .staff-content {
  flex: 0 0 300px; /* カード幅固定 */
  scroll-snap-align: start;
  width: 300px;
  min-width: 300px;
  max-width: 300px;
  margin-right: 0;
}
@media screen and (min-width: 481px) and (max-width: 835px) {
  .page-recruit .staff-wrap .staff-content {
    flex: 0 0 50%;
    width: 50%;
    min-width: 50%;
    max-width: 50%;
    display: flex;
    justify-content: center;
    scroll-snap-align: start;
    padding: 0 10px;
  }
}
@media screen and (max-width: 480px) {
  .page-recruit .staff-wrap .staff-content {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    scroll-snap-align: center;
  }
}
.page-recruit .staff-wrap .staff-content:last-of-type {
  margin-bottom: 0;
}
.page-recruit .staff-wrap .staff-content .staff_message {
  border-radius: 25px;
  background-color: #F5F5F5;
}
@media screen and (max-width: 835px) {
  .page-recruit .staff-wrap .staff-content .staff_message {
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  .page-recruit .staff-wrap .staff-content .staff_message {
    max-width: unset;
  }
}
.page-recruit .staff-wrap .staff-content .staff-img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 25px 25px 0px 0px;
}
.page-recruit .staff-wrap .staff-content .staff-info {
  padding: 20px;
}
.page-recruit .staff-wrap .staff-content .staff-info .title {
  max-height: 58px;
  font-size: 0.9375em;
  line-height: 1.625;
  overflow: hidden;
  margin: -0.25em 0;
}
@media screen and (max-width: 680px) {
  .page-recruit .staff-wrap .staff-content .staff-info .title {
    font-size: 12px;
  }
}
@media screen and (max-width: 480px) {
  .page-recruit .staff-wrap .staff-content .staff-info .title {
    font-size: 0.8125em;
  }
}
.page-recruit .staff-wrap .staff-content .staff-info .title span {
  display: block;
}
.page-recruit .staff-wrap .staff-content .staff-info .title span:first-of-type {
  text-indent: -7px;
}
.page-recruit .staff-wrap .staff-content .staff-info .job {
  width: fit-content;
  font-size: 0.75em;
  color: #008CD6;
  border-radius: 5px;
  border: 1px solid #008CD6;
  background-color: white;
  padding: 0 10px;
  margin-top: 20px;
  margin-bottom: 10px;
}
@media screen and (max-width: 480px) {
  .page-recruit .staff-wrap .staff-content .staff-info .job {
    margin-top: 15px;
  }
}
.page-recruit .staff-wrap .staff-content .staff-info .name {
  font-size: 1.125em;
  margin: -0.3375em 0;
}
@media screen and (max-width: 680px) {
  .page-recruit .staff-wrap .staff-content .staff-info .name {
    font-size: 16px;
  }
}
.page-recruit .staff-wrap .staff-content .staff-info .year {
  font-size: 0.75em;
  margin-left: 3px;
}
.page-recruit .staff-dots {
  display: none;
  justify-content: center;
  gap: 15px;
}
@media screen and (max-width: 835px) {
  .page-recruit .staff-dots {
    display: flex;
  }
}
.page-recruit .staff-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  padding: 0;
  cursor: pointer;
}
.page-recruit .staff-dots button.is-active {
  background: #008CD6;
}
.page-recruit .event img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}
.page-recruit .event p {
  margin-top: 20px;
}
.page-recruit .faq-item:last-of-type {
  border-bottom: 0.5px solid #707070;
}
.page-recruit .faq-item .faq-question {
  width: 100%;
  cursor: pointer;
  border-top: 0.5px solid #707070;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  padding: 20px;
}
@media screen and (max-width: 835px) {
  .page-recruit .faq-item .faq-question {
    padding: 20px 10px;
  }
}
.page-recruit .faq-item .faq-question .faq-toggle-icon {
  width: 1em;
  height: 1em;
  position: relative;
  flex-shrink: 0;
  margin-left: auto;
}
@media screen and (max-width: 835px) {
  .page-recruit .faq-item .faq-question .faq-toggle-icon {
    width: 0.875em;
    height: 0.875em;
  }
}
.page-recruit .faq-item .faq-question .faq-toggle-icon::before, .page-recruit .faq-item .faq-question .faq-toggle-icon::after {
  content: "";
  position: absolute;
  background: #333;
  transition: transform 0.3s ease;
}
.page-recruit .faq-item .faq-question .faq-toggle-icon::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  transform: translateY(-50%);
}
.page-recruit .faq-item .faq-question .faq-toggle-icon::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
}
.page-recruit .faq-item .faq-question.active .faq-toggle-icon::before {
  width: 80%;
  margin: auto;
}
.page-recruit .faq-item .faq-question.active .faq-toggle-icon::after {
  width: 100%;
  height: 100%;
  border: 2px solid black;
  background-color: unset;
  top: -2px;
}
.page-recruit .faq-item .faq-question .q-wrap {
  display: flex;
}
@media screen and (max-width: 835px) {
  .page-recruit .faq-item .faq-question .q-wrap {
    align-items: flex-start;
    line-height: 1.4;
  }
}
.page-recruit .faq-item .faq-question .q-wrap .q-icon {
  font-size: 1.875em;
  color: #008CD6;
  margin-right: 20px;
}
@media screen and (max-width: 835px) {
  .page-recruit .faq-item .faq-question .q-wrap .q-icon {
    font-size: 1.25em;
    margin-right: 10px;
  }
}
.page-recruit .faq-item .faq-question .q-wrap .q-txt {
  max-width: 735px;
  width: 100%;
  margin-right: 20px;
}
@media screen and (max-width: 835px) {
  .page-recruit .faq-item .faq-question .q-wrap .q-txt {
    font-size: 0.875em;
    margin-right: 20px;
  }
}
.page-recruit .faq-item .faq-answer {
  display: none;
}
.page-recruit .faq-item .faq-answer .a-icon {
  font-size: 1.875em;
  margin-right: 22px;
}
@media screen and (max-width: 835px) {
  .page-recruit .faq-item .faq-answer .a-icon {
    font-size: 1.25em;
    line-height: 1.4;
    margin-right: 12px;
  }
}
.page-recruit .faq-item .faq-answer .a-txt {
  width: 100%;
}
@media screen and (max-width: 835px) {
  .page-recruit .faq-item .faq-answer .a-txt {
    font-size: 0.875em;
  }
}
.page-recruit .faq-item .faq-answer.open {
  display: flex;
  padding: 20px;
}
@media screen and (max-width: 835px) {
  .page-recruit .faq-item .faq-answer.open {
    padding: 20px 10px;
  }
}

.page-recruit .flow-wrap .flow-content,
.order .flow-wrap .flow-content {
  min-height: 100px;
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 600px) {
  .page-recruit .flow-wrap .flow-content,
  .order .flow-wrap .flow-content {
    display: block;
    align-items: unset;
  }
}
.page-recruit .flow-wrap .flow-content::after,
.order .flow-wrap .flow-content::after {
  content: "";
  height: 160%;
  border: 0.5px solid #707070;
  position: absolute;
  top: 20px;
  left: 123px;
  z-index: 0;
}
@media screen and (max-width: 835px) {
  .page-recruit .flow-wrap .flow-content::after,
  .order .flow-wrap .flow-content::after {
    height: 140%;
  }
}
@media screen and (max-width: 600px) {
  .page-recruit .flow-wrap .flow-content::after,
  .order .flow-wrap .flow-content::after {
    left: 9.5px;
    height: 125%;
  }
}
.page-recruit .flow-wrap .flow-content:nth-of-type(2),
.order .flow-wrap .flow-content:nth-of-type(2) {
  min-height: unset;
}
.page-recruit .flow-wrap .flow-content:last-of-type,
.order .flow-wrap .flow-content:last-of-type {
  min-height: unset;
  margin-bottom: 0;
}
.page-recruit .flow-wrap .flow-content:last-of-type::after,
.order .flow-wrap .flow-content:last-of-type::after {
  content: unset;
}
.page-recruit .flow-wrap .flow-content .align,
.order .flow-wrap .flow-content .align {
  display: flex;
  align-items: center;
  z-index: 1;
}
@media screen and (max-width: 600px) {
  .page-recruit .flow-wrap .flow-content .align,
  .order .flow-wrap .flow-content .align {
    width: fit-content;
    flex-direction: row-reverse;
    margin-right: auto;
    margin-bottom: 15px;
    position: relative;
  }
}
.page-recruit .flow-wrap .flow-content .align .flow-number,
.order .flow-wrap .flow-content .align .flow-number {
  width: fit-content;
  color: #03AFDE;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.04em;
  margin-right: 43px;
}
@media screen and (max-width: 600px) {
  .page-recruit .flow-wrap .flow-content .align .flow-number,
  .order .flow-wrap .flow-content .align .flow-number {
    margin-right: 0;
  }
}
.page-recruit .flow-wrap .flow-content .align .flow-number .en,
.order .flow-wrap .flow-content .align .flow-number .en {
  font-size: 1.125em;
}
@media screen and (max-width: 600px) {
  .page-recruit .flow-wrap .flow-content .align .flow-number .en,
  .order .flow-wrap .flow-content .align .flow-number .en {
    font-size: 1em;
  }
}
.page-recruit .flow-wrap .flow-content .align .flow-number .number,
.order .flow-wrap .flow-content .align .flow-number .number {
  font-size: 3.125em;
}
@media screen and (max-width: 600px) {
  .page-recruit .flow-wrap .flow-content .align .flow-number .number,
  .order .flow-wrap .flow-content .align .flow-number .number {
    font-size: 2.5em;
  }
}
@media screen and (max-width: 600px) {
  .page-recruit .flow-wrap .flow-content .align .number-wrap,
  .order .flow-wrap .flow-content .align .number-wrap {
    display: flex;
    align-items: center;
    gap: 0 20px;
  }
}
.page-recruit .flow-wrap .flow-content .align .number-wrap .cap-head_sp,
.order .flow-wrap .flow-content .align .number-wrap .cap-head_sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .page-recruit .flow-wrap .flow-content .align .number-wrap .cap-head_sp,
  .order .flow-wrap .flow-content .align .number-wrap .cap-head_sp {
    display: block;
    font-size: 18px;
  }
}
.page-recruit .flow-wrap .flow-content .align .flow-circle,
.order .flow-wrap .flow-content .align .flow-circle {
  width: 30px;
  height: auto;
  aspect-ratio: 1/1;
  background-color: #03AFDE;
  border-radius: 50%;
  margin-right: 35px;
  position: relative;
}
@media screen and (max-width: 600px) {
  .page-recruit .flow-wrap .flow-content .align .flow-circle,
  .order .flow-wrap .flow-content .align .flow-circle {
    width: 20px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 600px) {
  .page-recruit .flow-wrap .flow-content .flow-cap,
  .order .flow-wrap .flow-content .flow-cap {
    padding-left: 40px;
  }
}
.page-recruit .flow-wrap .flow-content .cap-head,
.order .flow-wrap .flow-content .cap-head {
  font-size: 1.125em;
  margin: 1.125em 0 10px;
}
@media screen and (max-width: 600px) {
  .page-recruit .flow-wrap .flow-content .cap-head,
  .order .flow-wrap .flow-content .cap-head {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .page-recruit .flow-wrap .flow-content .cap-txt,
  .order .flow-wrap .flow-content .cap-txt {
    margin-top: -0.3em;
  }
}
.page-recruit .flow-wrap .flow-content:nth-of-type(2)::after,
.order .flow-wrap .flow-content:nth-of-type(2)::after {
  height: 160%;
}

@media screen and (max-width: 835px) {
  .page-recruit .flow-wrap .flow-content::after {
    height: 160%;
  }
}
@media screen and (max-width: 600px) {
  .page-recruit .flow-wrap .flow-content::after {
    height: 145%;
  }
}
.page-recruit .flow-wrap .flow-content:nth-of-type(3) {
  min-height: unset;
}

.order .order-head {
  font-size: 1.125em;
  font-weight: bold;
  margin-bottom: 50px;
}
@media screen and (max-width: 600px) {
  .order .order-head {
    font-size: 1em;
    margin-bottom: 30px;
  }
}
.order .flow-wrap .flow-content::after {
  content: "";
  height: 140%;
}
@media screen and (max-width: 1100px) {
  .order .flow-wrap .flow-content::after {
    height: 140%;
  }
}
@media screen and (max-width: 835px) {
  .order .flow-wrap .flow-content::after {
    height: 130%;
  }
}
@media screen and (max-width: 600px) {
  .order .flow-wrap .flow-content::after {
    height: 120%;
  }
}
@media screen and (max-width: 1100px) {
  .order .flow-wrap .flow-content:nth-of-type(2)::after {
    height: 160%;
  }
}

.static-link {
  background-color: #008CD6;
  color: #fff;
  opacity: 0.9;
  text-align: center;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
}
@media screen and (max-width: 480px) {
  .static-link {
    opacity: 1;
  }
}
.static-link.fixed {
  position: fixed;
  right: 0;
  top: 55.5%;
  bottom: auto;
  width: 45px;
  height: auto;
  border-radius: 10px 0 0 10px;
  padding: 20px 15px;
}
@media screen and (max-width: 480px) {
  .static-link.fixed {
    width: 75%;
    border-radius: 10px;
    top: auto;
    right: 50%;
    bottom: 10px;
    transform: translateX(50%);
  }
}
.static-link.fixed .text {
  display: block;
  font-size: 0.9375em;
  letter-spacing: 0.45em;
  writing-mode: vertical-rl;
  text-shadow: 0 3px 6px rgba(72, 72, 72, 0.6862745098);
  margin-bottom: -0.45em;
}
@media screen and (max-width: 480px) {
  .static-link.fixed .text {
    writing-mode: unset;
    margin-right: -0.45em;
    margin-bottom: 0;
  }
}

.policy .page-doc-content {
  margin-top: 50px;
}
@media screen and (max-width: 835px) {
  .policy .page-doc-content {
    margin-top: 40px;
  }
}
.policy .page-doc-content a {
  text-decoration: underline;
}
.policy .page-doc-content .doc-title {
  font-size: 1.25em;
  text-align: left;
  letter-spacing: 0.15rem;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #03AFDE;
}
@media screen and (max-width: 835px) {
  .policy .page-doc-content .doc-title {
    font-size: 1.125em;
  }
}
.policy .page-doc-content .page-doc-sub {
  margin: 25px 0 40px;
  padding-left: 25px;
}
@media screen and (max-width: 835px) {
  .policy .page-doc-content .page-doc-sub {
    padding-left: 0;
  }
}
.policy .page-doc-content .page-doc-sub .doc-sub-title {
  font-size: 1.125em;
  margin-bottom: 15px;
  border-left: 2px solid #03AFDE;
  padding-left: 10px;
}
@media screen and (max-width: 835px) {
  .policy .page-doc-content .page-doc-sub .doc-sub-title {
    font-size: 1em;
  }
}

.member-section .tab-menu {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
@media screen and (max-width: 835px) {
  .member-section .tab-menu {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .member-section .tab-menu {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 30px;
  }
}
.member-section .tab-menu .category {
  font-size: 0.875em;
  color: black;
  background-color: white;
  border: 0.5px solid #cccccc;
  border-radius: 20px;
  padding: 10px 15px;
  position: relative;
}
@media screen and (max-width: 835px) {
  .member-section .tab-menu .category {
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .member-section .tab-menu .category {
    text-align: center;
    font-size: 0.75em;
    padding: 10px;
  }
}
.member-section .tab-menu .category.active {
  color: white;
  border: none;
  background-color: #008CD6;
}
.member-section .member-wrap {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 20px;
}
@media screen and (min-width: 835px) and (max-width: 1110px) {
  .member-section .member-wrap {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 10px;
  }
}
@media screen and (max-width: 835px) {
  .member-section .member-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
@media screen and (max-width: 600px) {
  .member-section .member-wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px 0;
  }
}
.member-section .member-wrap .member-content {
  max-width: 230px;
  width: 100%;
  height: auto;
  background-color: #F5F5F5;
  border-radius: 20px;
  padding: 20px 15px;
}
@media screen and (max-width: 1110px) {
  .member-section .member-wrap .member-content {
    max-width: unset;
  }
}
@media screen and (max-width: 835px) {
  .member-section .member-wrap .member-content {
    max-width: unset;
    padding: 20px 15px;
  }
}
.member-section .member-wrap .member-content .member-info {
  display: flex;
  margin-bottom: 15px;
}
.member-section .member-wrap .member-content .member-info .member-img {
  width: 70px;
  height: auto;
  aspect-ratio: 1/1;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 50%;
  margin-right: 15px;
}
.member-section .member-wrap .member-content .member-info .profile {
  margin: auto 0;
}
.member-section .member-wrap .member-content .member-info .profile .job {
  font-size: 0.625em;
  line-height: 0.9375;
  margin-bottom: 5px;
}
@media screen and (max-width: 480px) {
  .member-section .member-wrap .member-content .member-info .profile .job {
    font-size: 0.75em;
  }
}
.member-section .member-wrap .member-content .member-info .profile .name {
  font-size: 1.25em;
  line-height: 1.25;
}
.member-section .member-wrap .member-content .title {
  font-size: 0.75em;
  color: white;
  line-height: 1.5;
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  white-space: pre-wrap;
  background-color: #008CD6;
  padding: 3px 5px 5px;
}

.interview-section {
  margin-top: 100px;
}
.interview-section .interview-header {
  max-width: 1080px;
  width: 100%;
  height: auto;
  aspect-ratio: 1080/500;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 39px;
  align-content: center;
  margin: auto;
  position: relative;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 835px) {
  .interview-section .interview-header {
    height: 300px;
    align-content: end;
  }
}
.interview-section .interview-header.interview_1 {
  background-position: 100% 0;
}
@media screen and (max-width: 480px) {
  .interview-section .interview-header.interview_1 {
    background-position: 83% 0;
  }
}
@media screen and (max-width: 480px) {
  .interview-section .interview-header.interview_2 {
    background-position: 75% 0;
  }
}
@media screen and (max-width: 480px) {
  .interview-section .interview-header.interview_3 {
    background-position: 75% 0;
  }
}
.interview-section .interview-header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.15); /* 黒の透過マスク */
  border-radius: 39px;
  z-index: 1;
}
.interview-section .interview-header .info-wrap {
  width: fit-content;
  color: white;
  background-clip: text;
  -webkit-background-clip: text;
  padding-left: 60px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1160px) {
  .interview-section .interview-header .info-wrap {
    padding-left: 35px;
  }
}
@media screen and (max-width: 835px) {
  .interview-section .interview-header .info-wrap {
    padding-left: 30px;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  .interview-section .interview-header .info-wrap {
    padding-left: 20px;
  }
}
.interview-section .interview-header .info-wrap h1 {
  font-size: 2.5em;
  text-align: left;
  display: flex;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 835px) {
  .interview-section .interview-header .info-wrap h1 {
    font-size: 1.25em;
  }
}
.interview-section .interview-header .info-wrap h1 .number {
  margin-left: 5px;
}
.interview-section .interview-header .info-wrap h1 .number::before {
  content: "#0";
}
.interview-section .interview-header .info-wrap .title {
  font-size: 1.5625em;
  margin: 15px 0;
}
@media screen and (max-width: 835px) {
  .interview-section .interview-header .info-wrap .title {
    font-size: 1em;
    margin: 5px 0 10px;
  }
}
@media screen and (max-width: 480px) {
  .interview-section .interview-header .info-wrap .title {
    font-size: 0.875em;
    line-height: 1.5;
  }
}
.interview-section .interview-header .info-wrap .title span {
  display: block;
}
.interview-section .interview-header .info-wrap .title span:first-of-type {
  text-indent: -12px;
}
@media screen and (max-width: 835px) {
  .interview-section .interview-header .info-wrap .title span:first-of-type {
    text-indent: -8px;
  }
}
@media screen and (max-width: 480px) {
  .interview-section .interview-header .info-wrap .title span {
    line-height: 1.375;
  }
}
.interview-section .interview-header .info-wrap .job {
  width: fit-content;
  font-size: 1em;
  line-height: unset;
  border-radius: 5px;
  border: 1px solid white;
  padding: 5px 10px;
  margin-bottom: 10px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 835px) {
  .interview-section .interview-header .info-wrap .job {
    font-size: 0.75em;
  }
}
.interview-section .interview-header .info-wrap h5 {
  font-size: 1.5625em;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 835px) {
  .interview-section .interview-header .info-wrap h5 {
    font-size: 0.875em;
  }
}
.interview-section .interview-header .info-wrap h5 .year {
  font-size: 0.75em;
  margin-left: 15px;
  position: relative;
}
@media screen and (max-width: 835px) {
  .interview-section .interview-header .info-wrap h5 .year {
    margin-left: 10px;
  }
}
.interview-section .interview-header .info-wrap h5 .year .slash {
  position: absolute;
  top: auto;
  bottom: 7px;
  left: -12px;
}
@media screen and (max-width: 835px) {
  .interview-section .interview-header .info-wrap h5 .year .slash {
    bottom: 4px;
    left: -7px;
  }
}
.interview-section .single-page {
  max-width: 1080px;
  background-color: unset;
  padding: 0;
  margin: 60px auto 100px;
}
@media screen and (max-width: 480px) {
  .interview-section .single-page {
    margin: 30px auto 50px;
  }
}
.interview-section .single-page .page-body {
  max-width: unset;
  width: 100%;
  display: grid;
  gap: 80px 0;
  margin: unset;
}
@media screen and (max-width: 835px) {
  .interview-section .single-page .page-body {
    gap: 30px 0;
  }
}
@media screen and (max-width: 480px) {
  .interview-section .single-page .page-body {
    margin: 30px auto 50px;
  }
}
.interview-section .single-page .page-body .single-section {
  background-color: hsla(0, 0%, 100%, 0.97);
  border-radius: 30px;
  padding: 100px 60px;
  position: relative;
}
@media screen and (max-width: 1160px) {
  .interview-section .single-page .page-body .single-section {
    padding: 80px 35px;
  }
}
@media screen and (max-width: 835px) {
  .interview-section .single-page .page-body .single-section {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 600px) {
  .interview-section .single-page .page-body .single-section {
    padding: 40px 20px;
  }
}
.interview-section .single-page .page-body .single-section .interview {
  margin-bottom: 50px;
}
@media screen and (max-width: 480px) {
  .interview-section .single-page .page-body .single-section .interview {
    margin-bottom: 40px;
  }
}
.interview-section .single-page .page-body .single-section .interview:last-of-type {
  margin-bottom: 0;
}
.interview-section .single-page .page-body .single-section .interview .question {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 1.25em;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-bottom: 20px;
  position: relative;
  padding-left: 12px;
}
@media screen and (max-width: 480px) {
  .interview-section .single-page .page-body .single-section .interview .question {
    font-size: 1em;
  }
}
.interview-section .single-page .page-body .single-section .interview .question::before {
  content: "";
  display: block;
  padding: 10px 2px;
  background-color: #03AFDE;
  position: absolute;
  top: 5px;
  left: 0;
}
@media screen and (max-width: 480px) {
  .interview-section .single-page .page-body .single-section .interview .question::before {
    padding: 8px 2px;
    top: 4px;
  }
}
.interview-section .single-page .page-body .single-section .interview .heading {
  font-size: 1.25em;
  font-weight: bold;
  color: #008CD6;
  line-height: 1.4;
  margin-bottom: 15px;
}
@media screen and (max-width: 480px) {
  .interview-section .single-page .page-body .single-section .interview .heading {
    font-size: 1em;
  }
}
.interview-section .single-page .page-body .single-section .interview .answer {
  white-space: pre-wrap;
  margin-top: -0.4625em;
}
.interview-section .single-page .page-body .single-section .interview .time-wrap {
  display: flex;
  align-items: flex-start;
}
.interview-section .single-page .page-body .single-section .interview .time-wrap .time-inner {
  display: flex;
  align-items: center;
  margin-right: 30px;
}
@media screen and (max-width: 480px) {
  .interview-section .single-page .page-body .single-section .interview .time-wrap .time-inner {
    margin-right: 10px;
  }
}
.interview-section .single-page .page-body .single-section .interview .time-wrap .time-inner p {
  font-size: 1.25em;
}
@media screen and (max-width: 480px) {
  .interview-section .single-page .page-body .single-section .interview .time-wrap .time-inner p {
    font-size: 1em;
  }
}
.interview-section .single-page .page-body .single-section .interview .time-wrap .time-inner .clock {
  max-width: 30px;
  width: 30px;
  height: 30px;
  position: relative;
  border: 2px solid #000;
  border-radius: 50%;
  flex-shrink: 0;
  margin-left: 30px;
}
@media screen and (max-width: 480px) {
  .interview-section .single-page .page-body .single-section .interview .time-wrap .time-inner .clock {
    max-width: 20px;
    width: 20px;
    height: 20px;
    border-width: 1.5px;
    margin-left: 10px;
  }
}
.interview-section .single-page .page-body .single-section .interview .time-wrap .time-inner .clock:before, .interview-section .single-page .page-body .single-section .interview .time-wrap .time-inner .clock:after {
  content: "";
}
.interview-section .single-page .page-body .single-section .interview .time-wrap .time-inner .clock:before {
  background-color: #000;
  border-radius: 5px;
  height: 2px;
  position: absolute;
  right: calc(50% - 1px);
  top: calc(50% - 1px);
  transform-origin: calc(100% - 1px) center;
  width: 30%;
  transform: rotate(calc((var(--hour) * 10 - 90) * 3 * 1deg));
}
@media screen and (max-width: 480px) {
  .interview-section .single-page .page-body .single-section .interview .time-wrap .time-inner .clock:before {
    height: 1px;
  }
}
.interview-section .single-page .page-body .single-section .interview .time-wrap .time-inner .clock:after {
  background-color: #000;
  border-radius: 5px;
  height: 2px;
  position: absolute;
  right: calc(50% - 1px);
  top: calc(50% - 1px);
  transform-origin: calc(100% - 1px) center;
  width: 47%;
  transform: rotate(calc((var(--minute) * 2 - 90) * 3 * 1deg));
}
@media screen and (max-width: 480px) {
  .interview-section .single-page .page-body .single-section .interview .time-wrap .time-inner .clock:after {
    height: 1px;
  }
}
.interview-section .single-page .page-body .single-section .interview .time-wrap .schedule-desc .heading {
  margin-top: 0.26em;
  margin-bottom: 12px;
}
@media screen and (max-width: 480px) {
  .interview-section .single-page .page-body .single-section .interview .time-wrap .schedule-desc .heading {
    font-size: 1em;
    margin-top: 4px;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 480px) {
  .interview-section .single-page .page-body .single-section .interview .time-wrap .schedule-desc .details {
    font-size: 0.75em;
  }
}
.interview-section .single-page .page-body .single-section .interview .support-inner {
  display: flex;
  gap: 0 60px;
}
@media screen and (max-width: 835px) {
  .interview-section .single-page .page-body .single-section .interview .support-inner {
    gap: 0 30px;
  }
}
@media screen and (max-width: 480px) {
  .interview-section .single-page .page-body .single-section .interview .support-inner {
    display: grid;
    gap: 30px 0;
  }
}
.interview-section .single-page .page-body .single-section .interview .support-inner .staff-img {
  max-width: 350px;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 8px;
  flex-shrink: 1;
}
.interview-section .single-page .page-body .single-section .interview .support-inner .message-wrap {
  width: 100%;
  align-content: center;
}
.interview-section .single-page .page-body .single-section .interview .support-inner .message-wrap .heading {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 1.25em;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: black;
  white-space: pre-wrap;
  margin-bottom: 20px;
  position: relative;
  padding-left: 12px;
}
@media screen and (max-width: 480px) {
  .interview-section .single-page .page-body .single-section .interview .support-inner .message-wrap .heading {
    font-size: 1em;
  }
}
.interview-section .single-page .page-body .single-section .interview .support-inner .message-wrap .heading::before {
  content: "";
  display: block;
  padding: 10px 2px;
  background-color: #03AFDE;
  position: absolute;
  top: 5px;
  left: 0;
}
@media screen and (max-width: 480px) {
  .interview-section .single-page .page-body .single-section .interview .support-inner .message-wrap .heading::before {
    padding: 8px 2px;
    top: 4px;
  }
}
.interview-section .single-page .page-body .single-section .interview .support-inner .message-wrap .text {
  white-space: pre-wrap;
}
.interview-section .single-page .page-body .single-section .time h2 {
  letter-spacing: 0.04em;
  margin-bottom: 50px;
}
@media screen and (max-width: 835px) {
  .interview-section .single-page .page-body .single-section .time h2 {
    font-size: 35px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 480px) {
  .interview-section .single-page .page-body .single-section .time h2 {
    font-size: 1.5em;
    margin-bottom: 30px;
  }
}
.interview-section .single-page .page-body .single-section .time .interview-wrap {
  display: grid;
  gap: 50px 0;
}
@media screen and (max-width: 480px) {
  .interview-section .single-page .page-body .single-section .time .interview-wrap {
    gap: 30px 0;
  }
}
.interview-section .single-page .page-body .single-section .time .interview-wrap .interview {
  margin-bottom: 0;
}
.interview-section .button-wrap {
  width: fit-content;
  margin: 50px auto 100px;
}
@media screen and (max-width: 835px) {
  .interview-section .button-wrap {
    margin: 50px auto;
  }
}

.single-menber {
  padding-top: 100px;
}
@media screen and (max-width: 835px) {
  .single-menber {
    padding-top: 30px;
  }
}
@media screen and (max-width: 480px) {
  .single-menber {
    padding-top: 20px;
  }
}
.single-menber .member-info {
  display: flex;
  gap: 60px;
  max-width: 990px;
  margin-left: 290px;
}
@media screen and (max-width: 1190px) {
  .single-menber .member-info {
    max-width: 940px;
    margin-left: auto;
  }
}
@media screen and (max-width: 960px) {
  .single-menber .member-info {
    max-width: unset;
    gap: 40px;
    padding: 0 20px;
    justify-content: center;
  }
}
@media screen and (max-width: 630px) {
  .single-menber .member-info {
    display: grid;
  }
}
@media screen and (max-width: 480px) {
  .single-menber .member-info {
    gap: 30px;
    justify-content: unset;
    padding: 0 20px;
  }
}
.single-menber .member-info .member-img {
  max-width: 250px;
  width: 100%;
  aspect-ratio: 1/1;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 100%;
}
@media screen and (max-width: 960px) {
  .single-menber .member-info .member-img {
    max-width: 200px;
  }
}
@media screen and (max-width: 630px) {
  .single-menber .member-info .member-img {
    max-width: 300px;
    margin: auto;
  }
}
@media screen and (max-width: 480px) {
  .single-menber .member-info .member-img {
    max-width: 250px;
  }
}
.single-menber .member-info .profile {
  align-content: center;
}
@media screen and (max-width: 630px) {
  .single-menber .member-info .profile {
    width: fit-content;
    margin: auto;
  }
}
.single-menber .member-info .profile .title {
  font-size: 1.875em;
  color: white;
  line-height: 1.45;
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  white-space: pre-wrap;
  background-color: #008CD6;
  padding: 3px 5px 5px;
}
@media screen and (max-width: 960px) {
  .single-menber .member-info .profile .title {
    font-size: 1.375em;
  }
}
@media screen and (max-width: 740px) {
  .single-menber .member-info .profile .title {
    font-size: 1.125em;
  }
}
@media screen and (max-width: 630px) {
  .single-menber .member-info .profile .title {
    font-size: 1.375em;
  }
}
@media screen and (max-width: 480px) {
  .single-menber .member-info .profile .title {
    font-size: 1.25em;
  }
}
.single-menber .member-info .profile .job {
  margin: 35px 0 10px;
  line-height: unset;
}
@media screen and (max-width: 480px) {
  .single-menber .member-info .profile .job {
    margin: 25px 0 10px;
  }
}
.single-menber .member-info .profile .name {
  font-size: 2.1875em;
  line-height: unset;
}
@media screen and (max-width: 835px) {
  .single-menber .member-info .profile .name {
    font-size: 1.5625em;
  }
}
.single-menber .page-body {
  max-width: unset;
  padding: 0;
  margin-top: 60px;
}
@media screen and (max-width: 630px) {
  .single-menber .page-body {
    margin-top: 40px;
  }
}
@media screen and (max-width: 1100px) {
  .single-menber .page-body.single-staff {
    padding: 0;
  }
}
@media screen and (max-width: 960px) {
  .single-menber .page-body.single-staff {
    padding: 0 20px;
  }
}
.single-menber .page-body .interview-inner {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}
@media screen and (max-width: 1190px) {
  .single-menber .page-body .interview-inner {
    gap: 40px;
  }
}
@media screen and (max-width: 960px) {
  .single-menber .page-body .interview-inner {
    display: block;
  }
}
.single-menber .page-body .interview-inner .i-menu {
  width: 210px;
  height: fit-content;
  background-color: white;
  padding: 40px;
  position: sticky;
  top: 100px;
  z-index: 10;
  flex-shrink: 1;
}
@media screen and (max-width: 960px) {
  .single-menber .page-body .interview-inner .i-menu {
    display: none;
  }
}
.single-menber .page-body .interview-inner .i-menu .en {
  font-size: 1.25em;
  color: #A3A3A3;
  font-weight: bold;
  margin-bottom: 20px;
}
.single-menber .page-body .interview-inner .i-menu .accordion-block .accordion-toggle {
  width: 100%;
  font-size: 1em;
  color: black;
  text-align: left;
  line-height: unset;
  background-color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: baseline;
  padding: 0;
  margin-bottom: 30px;
}
.single-menber .page-body .interview-inner .i-menu .accordion-block .accordion-toggle .accordion-toggle-icon {
  position: relative;
  width: 1em;
  height: 1em;
  margin-left: auto;
}
.single-menber .page-body .interview-inner .i-menu .accordion-block .accordion-toggle .accordion-toggle-icon::before, .single-menber .page-body .interview-inner .i-menu .accordion-block .accordion-toggle .accordion-toggle-icon::after {
  content: "";
  position: absolute;
  background: #333;
  transition: transform 0.3s ease;
}
.single-menber .page-body .interview-inner .i-menu .accordion-block .accordion-toggle .accordion-toggle-icon::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  transform: translateY(-50%);
}
.single-menber .page-body .interview-inner .i-menu .accordion-block .accordion-toggle .accordion-toggle-icon::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
}
.single-menber .page-body .interview-inner .i-menu .accordion-block .accordion-toggle .accordion-toggle-icon.active::before {
  width: 80%;
  margin: auto;
}
.single-menber .page-body .interview-inner .i-menu .accordion-block .accordion-toggle .accordion-toggle-icon.active::after {
  width: 100%;
  height: 100%;
  border: 2px solid black;
  background-color: unset;
  top: -2px;
}
.single-menber .page-body .interview-inner .i-menu .accordion-block .accordion-content {
  display: none;
  padding: 20px 5px;
  padding-top: 0;
}
.single-menber .page-body .interview-inner .i-menu .accordion-block.open {
  border-bottom: 0.5px solid #ddd;
  margin-bottom: 30px;
}
.single-menber .page-body .interview-inner .i-menu .accordion-block.open .accordion-toggle {
  margin-bottom: 20px;
}
.single-menber .page-body .interview-inner .i-menu .accordion-block.open .accordion-content {
  display: block;
  padding: 0;
  margin-bottom: 30px;
}
.single-menber .page-body .interview-inner .i-menu .staff-grid {
  display: grid;
  gap: 10px;
}
.single-menber .page-body .interview-inner .i-menu .staff-card {
  display: flex;
  gap: 8px;
  align-items: center;
}
.single-menber .page-body .interview-inner .i-menu .staff-card .staff-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}
.single-menber .page-body .interview-inner .i-menu .staff-card span {
  font-size: 0.875em;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.single-menber .page-body .interview-inner .right-item {
  flex-grow: 1;
}
@media screen and (max-width: 950px) {
  .single-menber .page-body .interview-inner .right-item {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 480px) {
  .single-menber .page-body .interview-inner .right-item {
    margin-bottom: 30px;
  }
}
.single-menber .page-body .interview-inner .right-item .page-section {
  max-width: 900px;
  width: 100%;
  border-radius: 20px;
  padding: 50px;
  margin: unset;
}
@media screen and (max-width: 835px) {
  .single-menber .page-body .interview-inner .right-item .page-section {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 600px) {
  .single-menber .page-body .interview-inner .right-item .page-section {
    padding: 40px 20px;
  }
}
.single-menber .page-body .interview-inner .right-item .page-section #title-wrap {
  margin-bottom: 30px;
}
.single-menber .page-body .interview-inner .right-item .page-section.member-history {
  margin-bottom: 50px;
}
@media screen and (max-width: 480px) {
  .single-menber .page-body .interview-inner .right-item .page-section.member-history {
    margin-bottom: 30px;
  }
}
.single-menber .page-body .interview-inner .right-item .page-section.member-history p {
  white-space: pre-wrap;
}
.single-menber .page-body .interview-inner .right-item .page-section.member-interview .interview {
  margin-bottom: 30px;
}
.single-menber .page-body .interview-inner .right-item .page-section.member-interview .interview:last-of-type {
  margin-bottom: 0;
}
.single-menber .page-body .interview-inner .right-item .page-section.member-interview .interview .question {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .single-menber .page-body .interview-inner .right-item .page-section.member-interview .interview .question {
    align-items: flex-start;
    line-height: 1.4;
  }
}
.single-menber .page-body .interview-inner .right-item .page-section.member-interview .interview .question .en {
  font-size: 1.875em;
  color: #008CD6;
  line-height: unset;
  margin-right: 8px;
}
@media screen and (max-width: 480px) {
  .single-menber .page-body .interview-inner .right-item .page-section.member-interview .interview .question .en {
    font-size: 1.125em;
  }
}
.single-menber .page-body .interview-inner .right-item .page-section.member-interview .interview .question p {
  font-weight: bold;
}
.single-menber .page-body .interview-inner .right-item .page-section.member-interview .interview .answer p {
  white-space: break-spaces;
}
.single-menber .page-body .interview-inner .sp-only {
  display: none;
}
@media screen and (max-width: 960px) {
  .single-menber .page-body .interview-inner .sp-only {
    display: block;
  }
  .single-menber .page-body .interview-inner .sp-only .en {
    font-size: 1.25em;
    color: #A3A3A3;
    font-weight: bold;
    margin-bottom: 30px;
  }
  .single-menber .page-body .interview-inner .sp-only .accordion-block {
    border-top: 1px solid #ccc;
  }
  .single-menber .page-body .interview-inner .sp-only .accordion-block:last-of-type {
    border-bottom: 1px solid #ccc;
  }
  .single-menber .page-body .interview-inner .sp-only .accordion-block .accordion-toggle {
    width: 100%;
    font-size: 0.875em;
    color: black;
    text-align: left;
    background-color: white;
    border: none;
    cursor: pointer;
    display: flex;
    padding: 20px;
  }
  .single-menber .page-body .interview-inner .sp-only .accordion-block .accordion-toggle .accordion-toggle-icon {
    position: relative;
    width: 1em;
    height: 1em;
    margin-left: auto;
  }
  .single-menber .page-body .interview-inner .sp-only .accordion-block .accordion-toggle .accordion-toggle-icon::before, .single-menber .page-body .interview-inner .sp-only .accordion-block .accordion-toggle .accordion-toggle-icon::after {
    content: "";
    position: absolute;
    background: #333;
    transition: transform 0.3s ease;
  }
  .single-menber .page-body .interview-inner .sp-only .accordion-block .accordion-toggle .accordion-toggle-icon::before {
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    transform: translateY(-50%);
  }
  .single-menber .page-body .interview-inner .sp-only .accordion-block .accordion-toggle .accordion-toggle-icon::after {
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
  }
  .single-menber .page-body .interview-inner .sp-only .accordion-block .accordion-toggle .accordion-toggle-icon.active::before {
    width: 70%;
    margin: auto;
  }
  .single-menber .page-body .interview-inner .sp-only .accordion-block .accordion-toggle .accordion-toggle-icon.active::after {
    width: 100%;
    height: 100%;
    border: 2px solid black;
    background-color: unset;
    top: -2px;
  }
  .single-menber .page-body .interview-inner .sp-only .accordion-block .accordion-content {
    display: none;
    padding: 20px;
    padding-top: 0;
  }
  .single-menber .page-body .interview-inner .sp-only .accordion-block.open .accordion-content {
    display: block;
  }
  .single-menber .page-body .interview-inner .sp-only .staff-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .single-menber .page-body .interview-inner .sp-only .staff-card {
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 6px #ccc;
    border-radius: 5px;
    padding: 10px 8px;
  }
  .single-menber .page-body .interview-inner .sp-only .staff-card .staff-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
  }
  .single-menber .page-body .interview-inner .sp-only .staff-card span {
    font-size: 0.75em;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }
}

.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.justify-arround {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.left {
  text-align: left;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.text-underline {
  text-decoration: underline;
}

.text-bold {
  font-weight: bold;
}

/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.admin-bar header {
  top: 32px;
}

body {
  font-weight: 300;
  color: #222;
  background-color: transparent;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-style: normal;
}
body.pined {
  overflow: hidden;
  height: 100%;
}

html {
  background-color: white;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: env(safe-area-inset-bottom);
  background-color: #fff;
  z-index: -1;
}
html.pined {
  overflow: hidden;
}

.en {
  font-family: avenir-next-lt-pro, sans-serif;
  font-style: normal;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

h1 {
  font-size: 3em;
  font-weight: bold;
  text-align: center;
}

h2 {
  font-size: 3.5em;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 480px) {
  h2 {
    font-size: 1.5em;
  }
}

p {
  font-size: 0.875em;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.button-wrap {
  text-align: left;
  margin: 30px auto 0;
}
.button-wrap .button {
  color: #03AFDE;
  font-size: 0.875em;
  border: 1px solid #03AFDE;
  background-color: white;
  border-radius: 50px;
  padding: 10px 15px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
}
@media screen and (max-width: 480px) {
  .button-wrap .button {
    font-size: 0.75em;
  }
}
.button-wrap .button:hover {
  background-color: #03AFDE;
  color: white;
}
.button-wrap .button:hover .triangle {
  background-color: white;
}
.button-wrap .button .button-text {
  display: flex;
  align-items: end;
}
.button-wrap .button .triangle {
  display: inline-block;
  width: 10px;
  height: 12px;
  background-color: #03AFDE;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  margin-left: 10px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

img {
  max-width: 100%;
  display: block;
}

.section-inner {
  width: 100%;
}
.section-inner .page-header {
  height: 350px;
  background-color: #E8F2F5;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  align-content: center;
  padding: 0 35px;
  position: relative;
}
@media screen and (max-width: 835px) {
  .section-inner .page-header {
    background-position: 60% 0;
    height: 250px;
  }
}
@media screen and (max-width: 600px) {
  .section-inner .page-header {
    padding: 0 15px;
  }
}
.section-inner .page-header::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  position: absolute;
  top: 0;
  left: 0;
}
.section-inner .page-header.about {
  background-position: 100% center;
}
@media screen and (max-width: 835px) {
  .section-inner .page-header.about {
    background-position: 100% 40%;
    background-size: 125%;
  }
}
@media screen and (max-width: 600px) {
  .section-inner .page-header.about {
    background-size: 190%;
    background-position: 100% 55%;
  }
}
@media screen and (max-width: 480px) {
  .section-inner .page-header.about {
    background-size: 230%;
    background-position: 100% 80%;
  }
}
.section-inner .page-header.staff {
  background-position: center 100%;
}
@media screen and (max-width: 600px) {
  .section-inner .page-header.staff {
    background-position: 65% 100%;
    background-size: 120%;
  }
}
@media screen and (max-width: 480px) {
  .section-inner .page-header.staff {
    background-position: 75% 100%;
    background-size: 200%;
  }
}
.section-inner .page-header.business {
  background-position: center 74%;
}
@media screen and (max-width: 835px) {
  .section-inner .page-header.business {
    background-position: 60% 74%;
    background-size: 150%;
  }
}
@media screen and (max-width: 480px) {
  .section-inner .page-header.business {
    background-position: 62% 68%;
    background-size: 250%;
  }
}
@media screen and (max-width: 835px) {
  .section-inner .page-header.recruit {
    background-position: 50% 0;
  }
}
.section-inner .page-header.entry {
  background-position: 100% 50%;
}
@media screen and (max-width: 1025px) {
  .section-inner .page-header.entry {
    background-position: 60% center;
  }
}
@media screen and (max-width: 600px) {
  .section-inner .page-header.entry {
    background-position: 70% center;
  }
}
.section-inner .page-header.contact, .section-inner .page-header.thanks {
  background-position: 0% center;
}
@media screen and (max-width: 835px) {
  .section-inner .page-header.contact, .section-inner .page-header.thanks {
    background-position: 0 0;
  }
}
@media screen and (max-width: 480px) {
  .section-inner .page-header.contact, .section-inner .page-header.thanks {
    background-position: 8% 0;
  }
}
.section-inner .page-header #title-wrap {
  max-width: 1100px;
  width: 100%;
  padding-left: 60px;
  margin: auto;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 5px rgba(20, 20, 20, 0.6);
}
@media screen and (max-width: 1160px) {
  .section-inner .page-header #title-wrap {
    padding-left: 35px;
  }
}
@media screen and (max-width: 835px) {
  .section-inner .page-header #title-wrap {
    padding-left: 30px;
  }
}
@media screen and (max-width: 600px) {
  .section-inner .page-header #title-wrap {
    padding-left: 20px;
  }
}
.section-inner .page-header #title-wrap h2 {
  font-size: 2.5em;
  text-align: left;
  padding-bottom: 10px;
}
@media screen and (max-width: 480px) {
  .section-inner .page-header #title-wrap h2 {
    font-size: 2.1875em;
    padding-bottom: 7px;
  }
}
.section-inner .page-header #title-wrap h2::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 30px;
  background-color: #03AFDE;
  margin-right: 10px;
}
@media screen and (max-width: 480px) {
  .section-inner .page-header #title-wrap h2::before {
    height: 27px;
    margin-right: 7px;
  }
}
.section-inner .page-header #title-wrap p {
  margin-left: 16px;
}
@media screen and (max-width: 480px) {
  .section-inner .page-header #title-wrap p {
    font-size: 11px;
    margin-left: 14px;
  }
}
.section-inner .page-header #title-wrap h2,
.section-inner .page-header #title-wrap p {
  color: white;
}
.section-inner .page-header.about #title-wrap p {
  margin-left: 12px;
}
@media screen and (max-width: 480px) {
  .section-inner .page-header.about #title-wrap p {
    margin-left: 10px;
  }
}
.section-inner .page-header.staff #title-wrap p {
  margin-left: 14px;
}

.iframe-wrap {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  position: relative;
}
.iframe-wrap iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.page-contents {
  margin-top: 70px;
}
@media screen and (max-width: 480px) {
  .page-contents {
    margin-top: 60px;
  }
}

.interview-section {
  padding: 30px 20px;
}
@media screen and (max-width: 480px) {
  .interview-section {
    padding-top: 20px;
  }
}

.pagination {
  max-width: 980px;
  width: 100%;
  text-align: center;
  padding: 55px 0;
  margin: auto;
}
.pagination .screen-reader-text {
  display: none;
}
.pagination .page-numbers {
  margin-right: 10px;
  padding: 8px;
  color: #03AFDE;
  display: inline-block;
  font-size: 1em;
  width: 2.5em;
  height: 2.5em;
  line-height: 1.3;
  border: 1px solid;
  border-radius: 50%;
}
@media screen and (max-width: 480px) {
  .pagination .page-numbers {
    font-size: 1em;
  }
}
.pagination .next {
  display: none;
}
.pagination a {
  font-size: 1em;
}
.pagination .current {
  background-color: #03AFDE;
  color: #fff;
  display: inline-block;
  border-radius: 50%;
}
.pagination svg {
  width: 0.8em;
  height: 0.8em;
}

.nopost {
  text-align: center;
}

.note:before {
  content: "※";
  margin-right: 2px;
}

.content-page-error {
  margin-top: 100px;
}
.content-page-error .content-page-title {
  text-align: center;
}
.content-page-error .content-page-title .error-title {
  font-size: 4em;
  margin-bottom: 15px;
}
.content-page-error .content-page-title .error-title i {
  margin: 20px 15px 0;
  font-size: 0.8em;
}
.content-page-error .error-body {
  max-width: 880px;
  width: 90%;
  margin: 100px auto;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .content-page-error .error-body {
    margin: 50px auto;
  }
}
.content-page-error .error-body .button-wrap .button {
  display: inline-block;
}

.front-circle,
.page-circle,
.news-circle {
  max-width: 1200px;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  background-color: #E8F2F5;
  border-radius: 50%;
  z-index: -100;
}

.front-circle {
  position: fixed;
  top: -40%;
  left: -62%;
  transform: translateX(20%);
}
@media screen and (max-width: 835px) {
  .front-circle {
    top: 10%;
    width: 130%;
    left: -25%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 480px) {
  .front-circle {
    top: 10.5%;
    left: -60%;
    transform: translateX(0%);
    width: 140%;
  }
}

.page-circle {
  position: fixed;
  top: 19%;
  left: -10%;
}
@media screen and (max-width: 740px) {
  .page-circle {
    top: 10%;
    left: -45%;
    transform: translateX(0%);
    width: 140%;
  }
}
@media screen and (max-width: 630px) {
  .page-circle {
    top: 10%;
    left: -45%;
  }
}
@media screen and (max-width: 480px) {
  .page-circle {
    top: 14.5%;
    left: -85%;
    width: 180%;
  }
}

.news-circle {
  position: fixed;
  top: 0%;
  left: -10%;
}
@media screen and (max-width: 480px) {
  .news-circle {
    top: 14.5%;
    left: -50%;
    transform: translateX(0%);
    width: 140%;
  }
}

.single-circle {
  width: 90%;
  height: 100%;
  position: fixed;
  z-index: -101;
  right: -30%;
  top: 19%;
}
@media screen and (max-width: 835px) {
  .single-circle {
    width: fit-content;
    height: fit-content;
    top: 25%;
  }
}
@media screen and (max-width: 480px) {
  .single-circle {
    right: -30%;
    top: 45%;
  }
}

#title-wrap {
  margin-bottom: 30px;
}
@media screen and (max-width: 480px) {
  #title-wrap {
    margin-bottom: 20px;
  }
}
#title-wrap .en {
  font-size: 1.875em;
  text-align: left;
  line-height: 0.035;
  padding-bottom: 10px;
}
@media screen and (max-width: 480px) {
  #title-wrap .en {
    padding-bottom: 7px;
  }
}
#title-wrap .en::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 22px;
  background-color: #03AFDE;
  margin-right: 10px;
}
@media screen and (max-width: 480px) {
  #title-wrap .en::before {
    margin-right: 7px;
  }
}
#title-wrap p {
  font-size: 0.75em;
  line-height: unset;
  margin-left: 15px;
}
@media screen and (max-width: 480px) {
  #title-wrap p {
    margin-left: 12px;
  }
}
#title-wrap h2,
#title-wrap p {
  color: #555555;
}

.page-body {
  padding: 0 35px;
  margin: 130px auto 100px;
}
@media screen and (max-width: 835px) {
  .page-body {
    margin: 80px auto 50px;
  }
}
@media screen and (max-width: 600px) {
  .page-body {
    padding: 0 15px;
    margin: 50px auto;
  }
}
.page-body.single-body {
  padding: 0;
}
.page-body .page-section {
  max-width: 1100px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.97);
  border-radius: 30px;
  padding: 100px 60px;
  margin: 70px auto;
  position: relative;
}
@media screen and (max-width: 1160px) {
  .page-body .page-section {
    padding: 80px 35px;
  }
}
@media screen and (max-width: 835px) {
  .page-body .page-section {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 600px) {
  .page-body .page-section {
    padding: 40px 20px;
    margin: 50px auto;
  }
}
.page-body .page-section:last-of-type {
  margin: 0 auto;
}
.page-body .headline {
  font-size: 1.5625em;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin-top: -0.29em;
  margin-bottom: 30px;
}
@media screen and (max-width: 480px) {
  .page-body .headline {
    font-size: 18px;
  }
}
.page-body .headline span {
  display: block;
}
.page-body #title-wrap {
  margin-bottom: 50px;
}
@media screen and (max-width: 835px) {
  .page-body #title-wrap {
    margin-bottom: 30px;
  }
}
.page-body #title-wrap h2 {
  font-size: 1.875em;
  font-weight: bold;
  text-align: left;
  line-height: 0.035;
  padding-bottom: 10px;
}
@media screen and (max-width: 480px) {
  .page-body #title-wrap h2 {
    font-size: 1.5625em;
    padding-bottom: 7px;
  }
}
.page-body #title-wrap h2::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 22px;
  background-color: #03AFDE;
  margin-right: 10px;
}
@media screen and (max-width: 480px) {
  .page-body #title-wrap h2::before {
    height: 20px;
    margin-right: 7px;
  }
}
.page-body #title-wrap h2.ja {
  font-size: 1.65em;
  display: block;
  position: relative;
  padding-left: 14px;
  line-height: 1;
  margin-bottom: -0.325em;
}
@media screen and (max-width: 835px) {
  .page-body #title-wrap h2.ja {
    font-size: 1.3em;
    display: block;
    position: relative;
    padding-left: 14px;
    line-height: 1;
    margin-bottom: -0.15em;
  }
}
.page-body #title-wrap h2.ja::before {
  content: "";
  display: block;
  width: 4px;
  height: 25px;
  background-color: #03AFDE;
  margin-right: 10px;
  position: absolute;
  left: 0;
  top: 2px;
}
@media screen and (max-width: 835px) {
  .page-body #title-wrap h2.ja::before {
    top: 1px;
    height: 22px;
  }
}
.page-body #title-wrap p {
  font-size: 0.75em;
  margin-top: 0;
  margin-left: 15px;
}
@media screen and (max-width: 480px) {
  .page-body #title-wrap p {
    font-size: 11px;
    margin-left: 12px;
  }
}
.page-body #title-wrap h2,
.page-body #title-wrap p {
  color: #332E2E;
}

#loadingAnim {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
}
#loadingAnim .loading-content {
  position: relative;
  display: inline-block;
  max-width: 250px;
  width: 100%;
  margin: auto;
  text-align: center;
  /* HTML: <div class="loader"></div> */
}
#loadingAnim .loading-content img {
  width: 100%;
  margin: 0 auto 25px;
  position: relative;
  animation: none;
}
#loadingAnim .loading-content .loader {
  position: relative;
  display: inline-block;
  width: 150px; /* 画像の幅に合わせて調整 */
  height: 50px; /* 画像の高さに合わせて調整 */
  margin: auto;
  overflow: hidden;
}
#loadingAnim .loading-content .loader svg {
  width: 100%;
  height: 100%;
  fill: #03AFDE;
  object-fit: contain;
  object-position: center;
}
#loadingAnim .loading-content .loader::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  height: 4px;
  width: 0%;
  background-color: #03AFDE;
  border-radius: 999px;
  animation: underlineGrow 1.5s infinite;
  transition: width 0.3s ease;
}
@keyframes underlineGrow {
  0% {
    width: 0%;
    left: 0%;
  }
  50% {
    width: 100%;
    left: 0%;
  }
  100% {
    width: 0%;
    left: 100%;
  }
}

.loaded #loadingAnim {
  -webkit-animation: loadingEnd 0.5s ease-in-out forwards;
  animation: loadingEnd 0.5s ease-in-out forwards;
}

.loading #loadingAnim {
  -webkit-animation: loadingStart 0.5s ease-in-out forwards;
  animation: loadingStart 0.5s ease-in-out forwards;
}

@-webkit-keyframes loadingEnd {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes loadingEnd {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@-webkit-keyframes loadingStart {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes loadingStart {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

/*# sourceMappingURL=style.css.map */
