@charset "UTF-8";
/* リキッドレイアウト対応 */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

.u-mobile {
  display: block;
}
@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

.fadein {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s, -webkit-transform 1s;
}

.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  -webkit-transform: translateX(0);
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.246105919vw;
  }
}
@media (min-width: 1284px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

li {
  list-style: none;
}

.company {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(10%, #fff), color-stop(10%, #47ABF3), to(#47ABF3));
  background: linear-gradient(180deg, #fff 0%, #fff 10%, #47ABF3 10%, #47ABF3 100%);
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .company {
    background: none;
    padding-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .company__image {
    margin: 0;
  }
}

.company__wrap {
  background-color: rgba(29, 34, 39, .3);
  width: 90%;
  margin-inline: auto;
  padding: 7%;
  position: relative;
  z-index: 1;
  margin-top: -63%;
}
@media screen and (min-width: 768px) {
  .company__wrap {
    position: absolute;
    content: "";
    width: 60%;
    top: 18%;
    padding: 2.75rem 3rem 2.5625rem 4%;
    margin: 0;
  }
}
@media screen and (min-width: 1920px) {
  .company__wrap {
    top: 19%;
    padding: 3.375rem 3rem 3.8125rem 12%;
  }
}

.company__title.title {
  color: #fff;
}

.company__head {
  margin-top: 35px;
  margin-top: 2.1875rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .company__head {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 1920px) {
  .company__head {
    margin-top: 4.0625rem;
    font-size: 1.875rem;
    line-height: 1.6;
  }
}

.company__text {
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .company__text {
    margin-top: 0.8125rem;
  }
}
@media screen and (min-width: 1920px) {
  .company__text {
    margin-top: 2.0625rem;
  }
}

.company__text p {
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .company__text p {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1920px) {
  .company__text p {
    font-size: 1.25rem;
    line-height: 1.3;
  }
}

.company__text p:not(:first-child) {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.company__btn {
  margin-top: 30px;
  margin-top: 1.875rem;
  width: 80%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
@media screen and (min-width: 768px) {
  .company__btn {
    position: absolute;
    content: "";
    top: 20%;
    right: 12vw;
    width: 25%;
    padding: 0;
    margin: 0;
    display: block;
  }
}

.company__btn a {
  display: inline-block;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.company__btn a:hover {
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
  -webkit-box-shadow: none;
          box-shadow: none;
  opacity: 1;
}

.contact {
  background-color: #F2FBFF;
}

.contact-layout--under.contact {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(80%, #fff), color-stop(80%, #F2FBFF), to(#F2FBFF));
  background: linear-gradient(180deg, #fff 0%, #fff 80%, #F2FBFF 80%, #F2FBFF 100%);
}

.contact__title img {
  width: 235px;
  width: 14.6875rem;
  margin-inline: auto;
}

.contact__title span {
  font-family: "Noto Sans JP", sans-serif;
}

.contact__head {
  font-size: 23px;
  font-size: 1.4375rem;
  color: #009CFF;
  margin-top: 25px;
  margin-top: 1.5625rem;
  position: relative;
  z-index: 10;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .contact__head {
    font-size: 1.875rem;
    line-height: 1.2;
    margin-top: 3.125rem;
    text-align: center;
  }
}

.contact__text {
  font-size: 16px;
  font-size: 1rem;
  margin-top: 20px;
  margin-top: 1.25rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .contact__text {
    font-size: 1.25rem;
    line-height: 1.2;
    text-align: center;
    margin-top: 1.1875rem;
    line-height: 1.5;
  }
}

.contact__btn {
  display: block;
  margin-top: 28px;
  margin-top: 1.75rem;
  max-width: 300px;
  max-width: 18.75rem;
  margin-inline: auto;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (min-width: 768px) {
  .contact__btn {
    max-width: 26.25rem;
    width: 100%;
    margin-top: 3rem;
  }
}

.contact__btn:hover {
  opacity: 1;
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.contact__btn img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.contact__back {
  position: relative;
  margin-top: 56px;
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .contact__back {
    margin-top: 6.625rem;
  }
}

.edu-item {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .edu-item {
    margin-top: 0.625rem;
  }
}

@media screen and (min-width: 768px) {
  .edu-item__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.625rem;
  }
}

@media screen and (min-width: 768px) {
  .edu-item__time {
    display: block;
    width: 10%;
  }
}

.edu-item__time img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  .edu-item__content {
    margin-top: 2.5rem;
    width: 90%;
  }
}

@media screen and (min-width: 768px) {
  .edu-item__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 1.875rem;
  }
}

@media screen and (min-width: 768px) {
  .edu-item__left {
    width: 60%;
  }
}

.edu-item__head {
  font-size: 25px;
  font-size: 1.5625rem;
  color: #00B9FF;
  padding-bottom: 6px;
  padding-bottom: 0.375rem;
  border-bottom: 1px solid #00B9FF;
}
@media screen and (min-width: 768px) {
  .edu-item__head {
    font-size: 2.1875rem;
    padding-bottom: 0.8125rem;
  }
}

.edu-item__text {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .edu-item__text {
    font-size: 1.0625rem;
    line-height: 1.5882352941;
  }
}

.edu-item__training {
  background-color: #fff;
  padding: 10px 10px;
  padding: 0.625rem 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  gap: 1.25rem;
  margin-top: 23px;
  margin-top: 1.4375rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .edu-item__training {
    padding: 1.25rem 1.25rem;
    margin-top: 2.0625rem;
  }
}

.edu-item__training:after {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .edu-item__training:after {
    right: 4%;
  }
}

.page-feature__edu-item:nth-of-type(2) .edu-item__training:after {
  background-image: url(../images/feature/training-icon01.png);
  width: 70px;
  width: 4.375rem;
  height: 70px;
  height: 4.375rem;
}
@media screen and (min-width: 768px) {
  .page-feature__edu-item:nth-of-type(2) .edu-item__training:after {
    width: 9.8125rem;
    height: 9.375rem;
  }
}

.page-feature__edu-item:nth-of-type(3) .edu-item__training:after {
  background-image: url(../images/feature/training-icon02.png);
  width: 94.4px;
  width: 5.9rem;
  height: 86px;
  height: 5.375rem;
}
@media screen and (min-width: 768px) {
  .page-feature__edu-item:nth-of-type(3) .edu-item__training:after {
    width: 10.625rem;
    height: 9.375rem;
  }
}

.page-feature__edu-item:nth-of-type(4) .edu-item__training:after {
  background-image: url(../images/feature/training-icon03.png);
  width: 86px;
  width: 5.375rem;
  height: 99.2px;
  height: 6.2rem;
}
@media screen and (min-width: 768px) {
  .page-feature__edu-item:nth-of-type(4) .edu-item__training:after {
    width: 9.375rem;
    height: 10.75rem;
  }
}

.edu-item__training-head {
  color: #fff;
  background-image: url(../images/feature/training-back.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 3% 1%;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
}
@media screen and (min-width: 768px) {
  .edu-item__training-head {
    padding: 9% 2%;
  }
}

.edu-item__training-desc {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .edu-item__training-desc {
    font-size: 1.125rem;
    line-height: 1.5;
  }
}

.edu-item__training-desc span {
  color: #5DCCFF;
  display: inline-block;
  margin-right: 5px;
  margin-right: 0.3125rem;
  font-size: 10px;
  font-size: 0.625rem;
}
@media screen and (min-width: 768px) {
  .edu-item__training-desc span {
    font-size: 0.8125rem;
    margin-right: 0.625rem;
  }
}

.edu-item__right {
  aspect-ratio: 655/418;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .edu-item__right {
    width: 40%;
    margin-top: 0;
  }
}

.edu-item__right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.edu-item__under {
  margin-top: 30px;
  margin-top: 1.875rem;
  background-color: #fff;
}

.edu-item__under-title {
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
  padding-left: 15px;
  padding-left: 0.9375rem;
  padding-top: 10px;
  padding-top: 0.625rem;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .edu-item__under-title {
    font-size: 1.875rem;
    padding-left: 1.875rem;
    padding-bottom: 0.625rem;
    padding-top: 1.1875rem;
  }
}

.edu-item__under-line {
  display: block;
  width: 100%;
  height: 4px;
  height: 0.25rem;
  background: -webkit-gradient(linear, left top, right top, from(#dcfff7), color-stop(62.08%, #7ce1fa), to(#00b9ff));
  background: linear-gradient(to right, #dcfff7 0%, #7ce1fa 62.08%, #00b9ff 100%);
}
@media screen and (min-width: 768px) {
  .edu-item__under-line {
    height: 0.5625rem;
  }
}

.entry {
  background-color: rgba(255, 255, 255, .95);
  border-radius: 11px;
  -webkit-box-shadow: 5px 5px 10px rgba(136, 177, 218, .32);
          box-shadow: 5px 5px 10px rgba(136, 177, 218, .32);
  padding: 8%;
  padding-top: 15%;
  position: relative;
  z-index: 0;
  margin-top: -100px;
  margin-top: -6.25rem;
}
@media screen and (min-width: 768px) {
  .entry {
    max-width: 80.25rem;
    width: 80%;
    margin-inline: auto;
    margin-top: -24.25rem;
    padding: 6.25rem 3.125rem 1.6875rem 3.125rem;
  }
}
@media screen and (min-width: 1440px) {
  .entry {
    padding: 6.25rem 6.25rem 3.5625rem 6.25rem;
    margin-top: -28.125rem;
  }
}
@media screen and (min-width: 1920px) {
  .entry {
    padding: 9.375rem 9.375rem 3.5625rem 9.375rem;
  }
}

.entry__inner.inner {
  max-width: 100%;
}

.entry:after {
  position: absolute;
  content: "";
  background-image: url(../images/top/entry-logo.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
  width: 64%;
  height: 128px;
  height: 8rem;
  top: 7%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 600px) {
  .entry:after {
    height: 12.5rem;
  }
}
@media screen and (min-width: 768px) {
  .entry:after {
    width: 50.25rem;
    height: 29.75rem;
    top: 7%;
    left: 50%;
  }
}
@media screen and (min-width: 1440px) {
  .entry:after {
    width: 45.25rem;
    height: 26.75rem;
    top: 6%;
  }
}

.entry__head {
  font-size: 23px;
  font-size: 1.4375rem;
  text-align: center;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .entry__head {
    font-size: 2.5rem;
    line-height: 1.2;
  }
}

.entry__text {
  font-size: 16px;
  font-size: 1rem;
  margin-top: 40px;
  margin-top: 2.5rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .entry__text {
    margin-top: 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
  }
}

.entry__link {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  -webkit-column-gap: 1.4375rem;
     -moz-column-gap: 1.4375rem;
          column-gap: 1.4375rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .entry__link {
    margin-top: 4.0625rem;
    -webkit-column-gap: 2.6875rem;
       -moz-column-gap: 2.6875rem;
            column-gap: 2.6875rem;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

.entry__link a {
  display: block;
  padding-top: 15px;
  padding-top: 0.9375rem;
  padding-bottom: 15px;
  padding-bottom: 0.9375rem;
  border-bottom: 1px solid #000;
  font-size: 17px;
  font-size: 1.0625rem;
  text-align: center;
  font-weight: 600;
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (min-width: 768px) {
  .entry__link a {
    font-size: 1.5625rem;
    padding-right: 1.875rem;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}
@media screen and (min-width: 1440px) {
  .entry__link a {
    font-size: 1.8125rem;
    line-height: 1.2068965517;
  }
}

.entry__link a:after {
  position: absolute;
  content: "";
  background-image: url(../images/common/black-arrow.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 15px;
  width: 0.9375rem;
  height: 6px;
  height: 0.375rem;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .entry__link a:after {
    width: 1.875rem;
    height: 0.625rem;
  }
}

.entry__link a:hover {
  opacity: 1;
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.entry__btn {
  display: block;
  max-width: 300px;
  max-width: 18.75rem;
  margin-inline: auto;
  margin-top: 40px;
  margin-top: 2.5rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (min-width: 768px) {
  .entry__btn {
    max-width: 31.6875rem;
    margin-top: 3.78125rem;
  }
}

.entry__btn:hover {
  opacity: 1;
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.entry__btn img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.features {
  background-image: url(../images/top/features-back.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding-top: 100px;
  padding-top: 6.25rem;
  padding-bottom: 130px;
  padding-bottom: 8.125rem;
}
@media screen and (min-width: 600px) {
  .features {
    padding-bottom: 11.25rem;
  }
}
@media screen and (min-width: 768px) {
  .features {
    padding-bottom: 12.5rem;
  }
}

.features__wrap {
  width: 90%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .features__wrap {
    padding-left: 11vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4.625rem;
    padding-top: 1.5rem;
    padding-bottom: 1.625rem;
    border-top: 1px solid #C9EAFF;
    border-bottom: 1px solid #C9EAFF;
    position: relative;
    margin: 0;
  }
}
@media screen and (min-width: 1440px) {
  .features__wrap {
    width: 62%;
  }
}
@media screen and (min-width: 1920px) {
  .features__wrap {
    width: 52%;
  }
}

@media screen and (min-width: 768px) {
  .features__wrap:before {
    content: "";
    position: absolute;
    top: -3px;
    width: 30%;
    right: 0;
    height: 3px;
    background: #F2FBFF;
  }
}

.features__title.title.left {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .features__title.title.left {
    text-align: left;
  }
}

.features__detail {
  color: #009CFF;
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .features__detail {
    font-size: 1.4375rem;
    line-height: 1.2608695652;
    text-align: left;
    margin: 0;
  }
}

.features__lists {
  margin-top: 60px;
  margin-top: 3.75rem;
  max-width: 500px;
  max-width: 31.25rem;
  width: 90%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .features__lists {
    max-width: 100%;
    width: 100%;
    margin-inline: 0;
  }
}

.features__list {
  position: relative;
}
@media screen and (min-width: 768px) {
  .features__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.features__list:not(:first-child) {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .features__list:not(:first-child) {
    margin-top: 7.4375rem;
  }
}

.features__list:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (min-width: 768px) {
  .features__image {
    width: 40%;
  }
}

.features__body {
  z-index: 1;
  position: relative;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .features__body {
    width: 50%;
    margin-top: 0;
  }
}

.features__point {
  max-width: 170px;
  max-width: 10.625rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .features__point {
    max-width: 16.875rem;
    margin-top: 0;
  }
}

.features__point img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  .features__list:nth-child(even) .features__point {
    margin-left: 5vw;
  }
}

.features__head {
  font-size: 27px;
  font-size: 1.6875rem;
  font-weight: 900;
  margin-top: 10px;
  margin-top: 0.625rem;
  letter-spacing: 0.078em;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  border-bottom: 1px solid #D0EDFF;
}
@media screen and (min-width: 768px) {
  .features__head {
    font-size: 2.6875rem;
    margin-top: 1.625rem;
  }
}

@media screen and (min-width: 768px) {
  .features__list:nth-child(even) .features__head {
    padding-left: 5vw;
  }
}

.features__head span {
  color: #009CFF;
}

.features__text {
  margin-top: 16px;
  margin-top: 1rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .features__text {
    margin-right: 8vw;
    margin-top: 2rem;
    font-size: 1.1875rem;
    line-height: 1.7368421053;
  }
}

@media screen and (min-width: 768px) {
  .features__list:nth-child(even) .features__text {
    margin-right: 0;
    margin-left: 5vw;
  }
}

.features__btn {
  display: block;
  max-width: 120px;
  max-width: 7.5rem;
  margin-left: auto;
  margin-top: 20px;
  margin-top: 1.25rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (min-width: 768px) {
  .features__btn {
    max-width: 9.9375rem;
    margin-left: auto;
    margin-right: 8vw;
    margin-top: 1.8125rem;
  }
}

.features__btn:hover {
  opacity: 1;
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.features__list:nth-child(even) .features__btn {
  margin-right: 0;
}

.features__btn img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.features__list:after {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 200px;
  width: 12.5rem;
  height: 400px;
  height: 25rem;
  top: 40%;
  right: 3%;
}
@media screen and (min-width: 768px) {
  .features__list:after {
    width: 25rem;
    height: 37.5rem;
    top: -28%;
    right: 3%;
  }
}
@media screen and (min-width: 1440px) {
  .features__list:after {
    top: 0;
  }
}

.features__list:nth-child(even):after {
  top: 40%;
  right: 3%;
}
@media screen and (min-width: 768px) {
  .features__list:nth-child(even):after {
    top: -20%;
    left: 3%;
  }
}

.features__list:nth-child(1):after {
  background-image: url(../images/top/number01.png);
}
@media screen and (min-width: 600px) {
  .features__list:nth-child(1):after {
    top: 50%;
  }
}
@media screen and (min-width: 1440px) {
  .features__list:nth-child(1):after {
    top: -10%;
  }
}

.features__list:nth-child(2):after {
  background-image: url(../images/top/number02.png);
}

.features__list:nth-child(3):after {
  background-image: url(../images/top/number03.png);
  top: 38%;
}
@media screen and (min-width: 600px) {
  .features__list:nth-child(3):after {
    top: 40%;
  }
}
@media screen and (min-width: 768px) {
  .features__list:nth-child(3):after {
    top: -13%;
  }
}

.features__list:nth-child(4):after {
  background-image: url(../images/top/number04.png);
  top: 38%;
}
@media screen and (min-width: 600px) {
  .features__list:nth-child(4):after {
    top: 47%;
  }
}
@media screen and (min-width: 768px) {
  .features__list:nth-child(4):after {
    top: -10%;
  }
}
@media screen and (min-width: 1440px) {
  .features__list:nth-child(4):after {
    top: -20%;
  }
}
@media screen and (min-width: 1920px) {
  .features__list:nth-child(4):after {
    top: -10%;
  }
}

.features__list:nth-child(5):after {
  background-image: url(../images/top/number05.png);
  top: 37%;
  right: 0;
}
@media screen and (min-width: 600px) {
  .features__list:nth-child(5):after {
    top: 50%;
  }
}
@media screen and (min-width: 768px) {
  .features__list:nth-child(5):after {
    width: 21.875rem;
    right: 5%;
    top: -26%;
  }
}
@media screen and (min-width: 1920px) {
  .features__list:nth-child(5):after {
    top: -5%;
  }
}

.footer {
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 110px;
  padding-bottom: 6.875rem;
  color: black;
  margin-top: auto;
  background-color: #F2FBFF;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 4.875rem;
    padding-bottom: 1.9375rem;
  }
}

@media screen and (min-width: 768px) {
  .footer__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 3%;
  }
}

.footer__logo {
  width: 80%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    margin: 0;
    max-width: 21.8125rem;
  }
}

.footer__logoLink {
  display: block;
}

.footer__items {
  display: none;
}
@media screen and (min-width: 768px) {
  .footer__items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 0.3125rem;
    place-items: flex-start;
    margin-top: 0;
  }
}

.footer__item {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 1.2px;
  letter-spacing: 0.075rem;
  margin-top: 10px;
  margin-top: 0.625rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer__item {
    line-height: 1.2142857143;
    letter-spacing: 0.125rem;
    margin-top: 0.55rem;
    margin-left: 2rem;
  }
}

.footer__link {
  display: inline-block;
  height: inherit;
  width: 100%;
  text-align: center;
  margin-block: auto;
  padding: 8px 0;
  padding: 0.5rem 0;
  text-align: left;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.2;
  font-weight: bold;
  position: relative;
  color: #121212;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.footer__link:hover {
  opacity: 1;
  color: #009CFF;
}

.footer__small li > a {
  display: inline-block;
  padding: 8px 0;
  padding: 0.5rem 0;
  font-weight: 400;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.2;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.footer__small li > a:hover {
  opacity: 1;
  color: #009CFF;
}

.footer__copyright small {
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 400;
  margin-top: 20px;
  margin-top: 12.25rem;
  display: block;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__copyright small {
    margin-top: 9.125rem;
  }
}

.fv {
  position: relative;
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .fv {
    margin-top: 81px;
  }
}

.fv__text {
  position: absolute;
  content: "";
  top: 35%;
  left: 0;
}
@media screen and (min-width: 426px) {
  .fv__text {
    top: 60%;
    left: 33%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@media screen and (min-width: 600px) {
  .fv__text {
    top: 40%;
    left: 39%;
  }
}
@media screen and (min-width: 768px) {
  .fv__text {
    top: 38%;
    left: 30%;
  }
}

.fv__main p {
  background-color: #fff;
  display: inline-block;
  text-align: center;
  margin-top: 10px;
  margin-top: 0.625rem;
  padding: 1% 6%;
  font-size: 31px;
  font-size: 1.9375rem;
  letter-spacing: 0.14em;
  max-width: 310px;
}
@media screen and (min-width: 600px) {
  .fv__main p {
    display: block;
    font-size: clamp(1.25rem, 0.181rem + 4.02vw, 5rem);
    padding: 1% 5%;
  }
}
@media screen and (min-width: 768px) {
  .fv__main p {
    max-width: 800px;
  }
}

.fv__main p > span {
  color: #00B9FF;
}

.fv__sub {
  margin-top: 37px;
  margin-top: 2.3125rem;
  font-size: clamp(16px, 11.424px + 1.43vw, 20px);
  font-size: clamp(1rem, 0.714rem + 1.43vw, 1.25rem);
  line-height: 2.1052631579;
  letter-spacing: 0.023em;
  padding: 0 10px;
  padding: 0 0.625rem;
  font-weight: bold;
  width: 100%;
}
@media screen and (min-width: 600px) {
  .fv__sub {
    padding: 0;
    font-size: clamp(0.813rem, 0.563rem + 0.52vw, 1.188rem);
  }
}

.fv__recruit-pc {
  display: none;
}
@media screen and (min-width: 600px) {
  .fv__recruit-pc {
    display: block;
    position: absolute;
    content: "";
    top: 8%;
    left: 24.5%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    color: #fff;
    font-size: clamp(1.875rem, 0.292rem + 3.3vw, 4.25rem);
    font-weight: bold;
    letter-spacing: 0.04em;
  }
}

.fv__recruit-pc:after {
  position: absolute;
  content: "";
  width: 50%;
  height: 3px;
  background-color: #fff;
  top: 50%;
  left: -60%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}

.fv__recruit-sp {
  position: absolute;
  content: "";
  top: 17%;
  left: 9%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  font-size: 35px;
  font-size: 2.1875rem;
  color: #fff;
  font-weight: bold;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  line-height: 1;
}
@media screen and (min-width: 600px) {
  .fv__recruit-sp {
    display: none;
  }
}

.fv__recruit-sp:before {
  position: absolute;
  content: "";
  width: 2px;
  height: 100px;
  background-color: #fff;
  top: -32%;
  left: 34%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}

.fv__recruit-sp:after {
  position: absolute;
  content: "";
  width: 2px;
  height: 100px;
  background-color: #fff;
  top: 130%;
  left: 34%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}

/*ハンバーガーメニュー*/
.hamburger {
  z-index: 9999;
  width: 24px;
  width: 1.5rem;
  padding: 0;
  height: inherit;
}

.hamburger span {
  display: block;
  background-color: #009CFF;
  height: 2px;
  height: 0.125rem;
  position: relative;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
  width: 23px;
  width: 1.4375rem;
}

.hamburger span:nth-child(2) {
  margin-top: 6px;
  margin-top: 0.375rem;
  margin-bottom: 6px;
  margin-bottom: 0.375rem;
}

.hamburger.is-openSP span:nth-child(1) {
  top: 10px;
  top: 0.625rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.hamburger.is-openSP span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-openSP span:nth-child(3) {
  top: -6px;
  top: -0.375rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

body.js-fixed {
  width: 100%;
  height: 100%;
  position: fixed;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  color: black;
  background-color: white;
  height: 60px;
}
@media screen and (min-width: 768px) {
  .header {
    height: 81px;
  }
}

.header__inner.inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .header__inner.inner {
    max-width: 100%;
    padding-right: 12.125rem;
    padding-left: 11vw;
  }
}

.header__logo {
  max-width: 200px;
  max-width: 12.5rem;
  width: 100%;
  z-index: 9999;
}
@media screen and (min-width: 768px) {
  .header__logo {
    max-width: 14.5rem;
  }
}

.header__logo img {
  height: inherit;
  height: 100%;
}

.header__logoLink {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header__nav {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.1666666667;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
  display: none;
  height: inherit;
  color: #121212;
  position: relative;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: block;
  }
}

.nav__items {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav__item {
  height: inherit;
}

.nav__link {
  height: inherit;
  font-size: 16px;
  font-size: 1rem;
  padding: 0 21px;
  padding: 0 1.3125rem;
  display: grid;
  place-items: center;
  margin-block: auto;
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.nav__link:hover {
  color: #009CFF;
}

/*メガメニュー*/
.nav__mega {
  position: absolute;
  top: 93%;
  left: 0;
  width: 250px;
  width: 15.625rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #fff;
  display: none;
  padding: 19px 23px;
  padding: 1.1875rem 1.4375rem;
  -webkit-box-shadow: 3px -5px 10px 2px rgba(121, 180, 202, .23);
          box-shadow: 3px -5px 10px 2px rgba(121, 180, 202, .23);
}

.nav__item:hover .nav__mega {
  display: block;
}

.nav__mega a {
  display: block;
  padding: 8px 0;
  padding: 0.5rem 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  color: #434343;
  font-size: 15px;
  font-size: 0.9375rem;
  position: relative;
}

.nav__mega a:hover {
  color: #009CFF;
}

.nav__mega a:after {
  position: absolute;
  content: "";
  background-image: url(../images/common/mega-arrow.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 13px;
  width: 0.8125rem;
  height: 5px;
  height: 0.3125rem;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.nav__item:nth-child(1) .nav__mega {
  left: 14%;
}

.nav__item:nth-child(2) .nav__mega {
  left: 42%;
}

.nav__item:nth-child(3) .nav__mega {
  left: 68%;
}

.nav__item:nth-child(4) .nav__mega {
  left: 90%;
}

.nav__mega:before {
  content: "";
  position: absolute;
  top: -20px;
  left: 47%;
  border: 10px solid transparent;
  border-top-color: #fff;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* スマホメニュー*/
.sp-nav {
  background-color: white;
  opacity: 1;
  width: 100%;
  height: 100vh;
  text-align: left;
  position: fixed;
  top: 60px;
  left: 0;
  overflow-y: scroll;
  z-index: 9998;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}
@media screen and (min-width: 768px) {
  .sp-nav {
    display: none;
  }
}

.sp-nav__items {
  display: grid;
  grid-template-columns: 1fr;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}

.sp-nav__item {
  padding: 20px;
  padding: 1.25rem;
  border-bottom: solid 1px #e6e6e6;
}

.sp-nav__item a {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: normal;
  line-height: 1.2;
  color: #454545;
  display: block;
  display: inline;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.sp-nav__content {
  display: none;
  background-color: #F2FBFF;
}

.sp-nav__content a {
  padding: 15px 0;
  padding: 0.9375rem 0;
  padding-left: 5px;
  padding-left: 0.3125rem;
  margin-left: 20px;
  margin-left: 1.25rem;
  display: block;
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  width: 90%;
  margin-inline: auto;
  border-bottom: #c7dae6 1px dotted;
}
@media screen and (min-width: 600px) {
  .sp-nav__content a {
    width: 95%;
  }
}

.sp-nav__content a:last-child {
  border: none;
}

.accordion-title::after {
  content: "+";
  float: right;
  font-weight: 400;
}

.accordion-title.open::after {
  content: "−";
}

/*ハンバーガーメニュー動かすためのコード*/
.is-openSP {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

@media screen and (min-width: 768px) {
  .header__drawer {
    display: none;
  }
}

.inner {
  width: 100%;
  max-width: 500px;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1334px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.interview {
  position: relative;
  padding-bottom: 212px;
  padding-bottom: 13.25rem;
}

.interview__back {
  position: absolute;
  content: "";
  top: 30%;
  left: 0;
  z-index: -1;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .interview__back {
    top: 40%;
  }
}

.interview__back img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.interview__wrap {
  width: 90%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .interview__wrap {
    width: 80%;
    padding-left: 11vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.875rem;
    padding-top: 1.5rem;
    padding-bottom: 1.625rem;
    position: relative;
    margin: 0;
    background-color: #fff;
    -webkit-box-shadow: 2px 3px 8px rgba(93, 150, 194, .16);
            box-shadow: 2px 3px 8px rgba(93, 150, 194, .16);
  }
}
@media screen and (min-width: 1440px) {
  .interview__wrap {
    width: 75%;
  }
}
@media screen and (min-width: 1920px) {
  .interview__wrap {
    width: 60%;
    padding-left: 11vw;
  }
}

.interview__title.title.left {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .interview__title.title.left {
    text-align: left;
  }
}

.interview__detail {
  color: #009CFF;
  font-size: 14px;
  font-size: 0.875rem;
  text-align: center;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .interview__detail {
    font-size: 1.4375rem;
    line-height: 1.2608695652;
    text-align: left;
    margin: 0;
  }
}

.interview__content {
  margin-top: 30px;
  margin-top: 1.875rem;
  position: relative;
  max-width: 500px;
  max-width: 31.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .interview__content {
    margin: 0;
    margin-left: 10vw;
    margin-top: 1.875rem;
    max-width: 100%;
  }
}

.interview__card {
  padding: 3%;
  position: relative;
  background-color: #fff;
  -webkit-box-shadow: 5px 5px 8px rgba(112, 140, 151, .16);
          box-shadow: 5px 5px 8px rgba(112, 140, 151, .16);
  width: 90%;
  margin-inline: auto;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .interview__card {
    width: 100%;
    margin: 0;
    margin-bottom: 0.625rem;
  }
}

.interview__image {
  aspect-ratio: 369/389;
}

.interview__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.interview__catch {
  background-color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  padding: 2%;
  position: absolute;
  content: "";
  top: 49%;
  left: 20px;
  left: 1.25rem;
}
@media screen and (min-width: 1440px) {
  .interview__catch {
    font-size: 1.25rem;
    left: 1.875rem;
  }
}

.interview__text {
  padding: 5% 2%;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6666666667;
}

.swiper-button-next, .swiper-button-prev {
  top: 108% !important;
}
@media screen and (min-width: 1440px) {
  .swiper-button-next, .swiper-button-prev {
    top: 111% !important;
  }
}

/* 前への矢印 */
.swiper-button-prev {
  left: 30px;
  left: 1.875rem;
}
@media screen and (min-width: 768px) {
  .swiper-button-prev {
    left: 5.625rem;
  }
}

/* 次への矢印 */
.swiper-button-next {
  left: 89px;
  left: 5.5625rem;
}
@media screen and (min-width: 768px) {
  .swiper-button-next {
    left: 10.3125rem;
  }
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev,
.swiper-button-next {
  height: 60px;
  height: 3.75rem;
  width: 60px;
  width: 3.75rem;
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev::after,
.swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 40px;
  height: 2.5rem;
  margin: auto;
  width: 40px;
  width: 2.5rem;
}
@media screen and (min-width: 768px) {
  .swiper-button-prev::after,
  .swiper-button-next::after {
    height: 3.75rem;
    width: 3.75rem;
  }
}

/* 前への矢印カスタマイズ */
.swiper-button-prev::after {
  background-image: url(../images/common/slider-left-btn.png);
}

/* 次への矢印カスタマイズ */
.swiper-button-next::after {
  background-image: url(../images/common/slider-right-btn.png);
}

.swiper-pagination-bullet {
  width: 15px;
  width: 0.9375rem;
  height: 15px;
  height: 0.9375rem;
  background-image: url(../images/common/default-dot.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-color: transparent;
  border-radius: unset;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .swiper-pagination-bullet {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.swiper-pagination-bullet-active {
  background-image: url(../images/common/active-dot.png);
}

.interview__content .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  top: 117%;
  width: 40%;
  height: 20px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 70%;
}
@media screen and (min-width: 768px) {
  .interview__content .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    top: 115%;
    left: 29%;
  }
}
@media screen and (min-width: 1440px) {
  .interview__content .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    top: 113%;
    left: 25%;
  }
}

.interview__content .swiper-pagination01 {
  top: 110%;
  width: 51%;
  height: 20px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 70%;
}
@media screen and (min-width: 768px) {
  .interview__content .swiper-pagination01 {
    width: 40%;
    top: 115%;
    left: 33%;
  }
}
@media screen and (min-width: 1440px) {
  .interview__content .swiper-pagination01 {
    top: 113%;
    left: 31%;
  }
}

.interview__btn {
  display: block;
  position: absolute;
  right: 8vw;
  bottom: 44px;
  bottom: 2.75rem;
  max-width: 131px;
  max-width: 8.1875rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (min-width: 768px) {
  .interview__btn {
    bottom: 7.75rem;
  }
}

.interview__btn:hover {
  opacity: 1;
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.interview__btn img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (min-width: 768px) {
  .link-area {
    position: relative;
  }
}

.link-area__wrap {
  width: 90%;
  margin-inline: auto;
  margin-top: -140px;
  margin-top: -8.75rem;
}
@media screen and (min-width: 600px) {
  .link-area__wrap {
    margin-top: -24.625rem;
  }
}
@media screen and (min-width: 768px) {
  .link-area__wrap {
    position: absolute;
    content: "";
    top: 10%;
    right: 7vw;
    width: 59%;
    margin-left: auto;
    margin-top: 0;
  }
}
@media screen and (min-width: 1440px) {
  .link-area__wrap {
    top: 13%;
    width: 55%;
  }
}
@media screen and (min-width: 1920px) {
  .link-area__wrap {
    top: 19%;
  }
}

.link-area__head-text {
  background-color: #fff;
  color: #009CFF;
  font-size: 23px;
  font-size: 1.4375rem;
  display: inline-block;
  padding: 1% 3%;
  margin-inline: auto;
}
@media screen and (min-width: 600px) {
  .link-area__head-text {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .link-area__head-text {
    font-size: clamp(1.875rem, 0.5rem + 2.86vw, 3.938rem);
    letter-spacing: 0.05em;
    margin: 0;
  }
}

.link-area__head-text:not(:first-child) {
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .link-area__head-text:not(:first-child) {
    margin-top: 0.9375rem;
  }
}
@media screen and (min-width: 1440px) {
  .link-area__head-text:not(:first-child) {
    margin-top: 1.5625rem;
  }
}

.link-area__body {
  padding: 1%;
}
@media screen and (min-width: 768px) {
  .link-area__body {
    margin: 0;
    max-width: 56.625rem;
  }
}

.link-area__text {
  color: #000;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 600px) {
  .link-area__text {
    margin-top: 0.625rem;
    font-size: 0.875rem;
    color: #fff;
  }
}
@media screen and (min-width: 768px) {
  .link-area__text {
    font-size: 1.4375rem;
    line-height: 1.7;
    margin-top: 2.5rem;
  }
}
@media screen and (min-width: 1440px) {
  .link-area__text {
    margin-top: 2.875rem;
    font-size: 1.5rem;
    line-height: 2.0833333333;
    color: #fff;
  }
}

.link-area__link {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 15px 15px 25px 15px;
  padding: 0.9375rem 0.9375rem 1.5625rem 0.9375rem;
  margin-top: 30px;
  margin-top: 1.875rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  -webkit-column-gap: 5%;
     -moz-column-gap: 5%;
          column-gap: 5%;
  row-gap: 5%;
  z-index: 1;
  position: relative;
}
@media screen and (min-width: 600px) {
  .link-area__link {
    margin-top: 0.625rem;
    padding: 0.625rem 0.625rem 1.25rem 0.625rem;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  }
}
@media screen and (min-width: 768px) {
  .link-area__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.875rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 5rem;
    padding: 2.1875rem 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
@media screen and (min-width: 1920px) {
  .link-area__link {
    margin-top: 8.5rem;
  }
}

.link-area__link a {
  display: block;
  color: #000;
  text-transform: uppercase;
  padding-right: 10%;
  font-family: "Lato", sans-serif;
  font-weight: bold;
  position: relative;
  font-size: 25px;
  font-size: 1.5625rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (min-width: 600px) {
  .link-area__link a {
    font-size: 1.5625rem;
    color: #fff;
  }
}
@media screen and (min-width: 768px) {
  .link-area__link a {
    font-size: 1.875rem;
    line-height: 1.3;
    letter-spacing: 0.08em;
    padding-right: 15%;
  }
}
@media screen and (min-width: 1440px) {
  .link-area__link a {
    font-size: 2.1875rem;
    padding-right: 14%;
  }
}
@media screen and (min-width: 1920px) {
  .link-area__link a {
    font-size: 2.5rem;
    padding-right: 10%;
  }
}

.link-area__link a:hover {
  opacity: 1;
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.link-area__link a:after {
  position: absolute;
  content: "";
  background-image: url(../images/common/white-arrow.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 45px;
  width: 2.8125rem;
  height: 45px;
  height: 2.8125rem;
  top: 60%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 600px) {
  .link-area__link a:after {
    width: 2.1875rem;
    height: 2.1875rem;
  }
}
@media screen and (min-width: 768px) {
  .link-area__link a:after {
    width: 2.8125rem;
    height: 2.8125rem;
  }
}
@media screen and (min-width: 1440px) {
  .link-area__link a:after {
    width: 3.125rem;
    height: 3.125rem;
  }
}
@media screen and (min-width: 1920px) {
  .link-area__link a:after {
    width: 4.0625rem;
    height: 4.0625rem;
  }
}

.link-area__link a > span {
  font-size: 17px;
  font-size: 1.0625rem;
  display: inline-block;
}
@media screen and (min-width: 600px) {
  .link-area__link a > span {
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 1440px) {
  .link-area__link a > span {
    font-size: 1.125rem;
  }
}

.message {
  position: relative;
  background-color: #F2FBFF;
  padding-top: 62px;
  padding-top: 3.875rem;
  padding-bottom: 58px;
  padding-bottom: 3.625rem;
}

.message__inner {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .message__inner {
    max-width: 666px;
    max-width: 40%;
  }
}

.message__text {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .message__text {
    margin-top: 4.125rem;
    font-size: 1.125rem;
    line-height: 1.7777777778;
  }
}

.message__text p:not(:first-child) {
  margin-top: 16px;
  margin-top: 1rem;
}

.message__read {
  color: #009CFF;
  font-size: 23px;
  font-size: 1.4375rem;
  line-height: 1.3;
  margin-top: 38px;
  margin-top: 2.375rem;
  max-width: 552px;
  max-width: 34.5rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .message__read {
    font-size: 1.75rem;
    line-height: 1.7;
    margin-top: 3.625rem;
  }
}

.message__images {
  display: none;
}
@media screen and (min-width: 768px) {
  .message__images {
    display: block;
  }
}

.message__images li {
  position: absolute;
  content: "";
}

.message__images li:nth-child(1) {
  width: 28vw;
  left: 0;
  top: 40px;
  top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .message__images li:nth-child(1) {
    width: 28vw;
    left: 0;
    top: 2.5rem;
  }
}
@media screen and (min-width: 1440px) {
  .message__images li:nth-child(1) {
    width: 28vw;
    left: 0;
    top: 2.5rem;
  }
}
@media screen and (min-width: 1920px) {
  .message__images li:nth-child(1) {
    width: 28vw;
    left: 0;
    top: 2.5rem;
  }
}

.message__images li:nth-child(2) {
  width: 34vw;
  right: 0;
  top: -250px;
  top: -15.625rem;
}
@media screen and (min-width: 768px) {
  .message__images li:nth-child(2) {
    width: 34vw;
    right: 0;
    top: -5.625rem;
  }
}
@media screen and (min-width: 1440px) {
  .message__images li:nth-child(2) {
    width: 34vw;
    right: 0;
    top: -9.625rem;
  }
}
@media screen and (min-width: 1920px) {
  .message__images li:nth-child(2) {
    width: 34vw;
    right: 0;
    top: -15.625rem;
  }
}

.message__images li:nth-child(3) {
  width: 28vw;
  right: 0;
  bottom: -150px;
  bottom: -9.375rem;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .message__images li:nth-child(3) {
    width: 28vw;
    right: 0;
    bottom: -1.375rem;
  }
}
@media screen and (min-width: 1440px) {
  .message__images li:nth-child(3) {
    width: 28vw;
    right: 0;
    bottom: -7.375rem;
  }
}
@media screen and (min-width: 1920px) {
  .message__images li:nth-child(3) {
    width: 28vw;
    right: 0;
    bottom: -9.375rem;
  }
}

.message__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-content {
  background-color: #F2FBFF;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .news-content {
    padding-bottom: 12.5rem;
  }
}

.news-content:before {
  position: absolute;
  content: "";
  background-image: url(../images/common/treat04.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  top: 0;
  left: 0;
  width: 90px;
  width: 5.625rem;
  height: 244px;
  height: 15.25rem;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .news-content:before {
    width: 17rem;
    height: 46.5rem;
  }
}

.news-content:after {
  position: absolute;
  content: "";
  background-image: url(../images/common/treat05.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  top: 80%;
  right: 0;
  width: 103px;
  width: 6.4375rem;
  height: 251px;
  height: 15.6875rem;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .news-content:after {
    width: 13.3125rem;
    height: 34.4375rem;
    top: 40%;
    right: 3rem;
  }
}

.inner.news-content__inner {
  max-width: 1100px;
  margin-inline: auto;
}

.news-content__wrap {
  background-color: #fff;
  padding: 6%;
  padding-bottom: 12%;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .news-content__wrap {
    padding: 6.25rem 6.875rem;
  }
}

.news-content__wrap h2 {
  margin-top: 10px;
  margin-top: 0.625rem;
  font-size: 25px;
  font-size: 1.5625rem;
  color: #333;
  margin-bottom: 34px;
  margin-bottom: 2.125rem;
}
@media screen and (min-width: 768px) {
  .news-content__wrap h2 {
    font-size: 2.1875rem;
    line-height: 1.2;
    margin-bottom: 3.375rem;
  }
}

.news-content__wrap time {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2.2;
  color: #009CFF;
}
@media screen and (min-width: 768px) {
  .news-content__wrap time {
    font-size: 1.25rem;
  }
}

.news-content__wrap p {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .news-content__wrap p {
    font-size: 1.0625rem;
    line-height: 2.5;
  }
}

.news {
  width: 85%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .news {
    max-width: 40.125rem;
    position: absolute;
    top: 80%;
    left: 31%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.news h3 {
  font-size: 30px;
  font-size: 1.875rem;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 0.036em;
  font-family: "Lato", sans-serif;
  color: #009CFF;
}

.news__lists {
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .news__lists {
    max-width: 40.125rem;
    margin-top: 1.25rem;
  }
}

.news__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  padding: 1.25rem;
  background-color: #fff;
  -webkit-box-shadow: 3px 3px 6px rgba(145, 147, 96, .28);
          box-shadow: 3px 3px 6px rgba(145, 147, 96, .28);
}
@media screen and (min-width: 600px) {
  .news__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 2.1875rem;
    padding: 1.5rem 1.6875rem;
  }
}

.news__list time {
  color: #AEAEAE;
  font-weight: 400;
  margin-right: auto;
}

.news__single {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  margin-right: auto;
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 600px) {
  .news__single {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2.1875rem;
    margin-top: 0;
  }
}

.news__single:hover {
  opacity: 1;
  color: #009CFF;
}

.news__all {
  margin-left: auto;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.news__all:hover {
  opacity: 1;
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.news__all img {
  margin-left: auto;
  width: 105px;
  width: 6.5625rem;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .news__all img {
    margin-top: 0.1875rem;
  }
}

.number {
  background-image: url(../images/top/number-back_sp.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  padding-top: 132px;
  padding-top: 8.25rem;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}
@media screen and (min-width: 768px) {
  .number {
    background-image: url(../images/top/number-back.png);
    padding-top: 19.25rem;
    padding-bottom: 4.25rem;
  }
}

.number__inner.inner {
  max-width: 500px;
}
@media screen and (min-width: 768px) {
  .number__inner.inner {
    max-width: 1600px;
  }
}

.number__wrap {
  background-color: #F2FBFF;
  padding: 10%;
  -webkit-box-shadow: 3px 3px 8px rgba(32, 88, 185, .18);
          box-shadow: 3px 3px 8px rgba(32, 88, 185, .18);
  position: relative;
}
@media screen and (min-width: 768px) {
  .number__wrap {
    max-width: 41.1875rem;
    padding: 4.125rem 6.1875rem;
  }
}

.number__wrap:before {
  position: absolute;
  content: "";
  background-image: url(../images/top/number-deco.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 60px;
  width: 3.75rem;
  height: 60px;
  height: 3.75rem;
  bottom: 26px;
  bottom: 1.625rem;
  left: -12px;
  left: -0.75rem;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .number__wrap:before {
    width: 6.875rem;
    height: 6.875rem;
    bottom: -1.875rem;
    left: -1.875rem;
  }
}

.number__text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5;
  color: #009CFF;
  margin-top: 44px;
  margin-top: 2.75rem;
}

.number__btn {
  margin-top: 66px;
  margin-top: 4.125rem;
  display: block;
  margin-left: auto;
  max-width: 172px;
  max-width: 10.75rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.number__btn:hover {
  opacity: 1;
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.number__btn img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-company {
  position: relative;
  z-index: 2;
}

.page-company:before {
  position: absolute;
  content: "";
  top: 5%;
  left: -50px;
  left: -3.125rem;
  width: 100px;
  width: 6.25rem;
  height: 300px;
  height: 18.75rem;
  background-image: url(../images/common/treat09.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .page-company:before {
    top: 20%;
    width: 19.125rem;
    height: 44rem;
  }
}

.page-company:after {
  position: absolute;
  content: "";
  top: 35%;
  right: 0;
  width: 100px;
  width: 6.25rem;
  height: 300px;
  height: 18.75rem;
  background-image: url(../images/common/treat10.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .page-company:after {
    width: 13.25rem;
    height: 34.4375rem;
    right: 3.125rem;
  }
}

.page-company__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-color: #F2FBFF;
}
@media screen and (min-width: 768px) {
  .page-company__wrap {
    padding-top: 3.125rem;
  }
}

.page-company__sidebar {
  display: none;
}
@media screen and (min-width: 768px) {
  .page-company__sidebar {
    display: block;
    position: sticky;
    z-index: 2;
    top: 200px;
    width: 200px;
    padding-bottom: 6.5rem;
    margin-top: 5.625rem;
  }
}
@media screen and (min-width: 1440px) {
  .page-company__sidebar {
    width: 410px;
  }
}

.page-company__sidebar ul {
  width: 230px;
  width: 14.375rem;
  margin-inline: auto;
}

.page-company__sidebar ul li:not(:last-child) {
  border-bottom: none;
}

.page-company__sidebar ul li a {
  display: inline-block;
  width: 100%;
  color: #B8B8B8;
  font-size: 20px;
  font-size: 1.25rem;
  padding: 10px 35px;
  padding: 0.625rem 2.1875rem;
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.page-company__sidebar ul li a:hover {
  opacity: 1;
  color: #4b4b4b;
}

.page-company__sidebar ul li a.active {
  color: #000;
  padding: 10px 35px;
  padding: 0.625rem 2.1875rem;
  font-weight: 600;
}

.page-company__sidebar ul li a.active:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background-color: #199;
  top: 44%;
  left: 10px;
  border-radius: 10px;
}
@media screen and (min-width: 1440px) {
  .page-company__sidebar ul li a.active:before {
    width: 10px;
    height: 10px;
  }
}

.page-company__items {
  padding-right: 20px;
  padding-left: 20px;
  max-width: 500px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .page-company__items {
    margin-top: 1.5625rem;
    width: 65%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
}
@media screen and (min-width: 1440px) {
  .page-company__items {
    width: 70%;
  }
}

.page-company__policy,
.page-company__profile {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .page-company__policy,
  .page-company__profile {
    margin-right: 10vw;
  }
}
@media screen and (min-width: 1440px) {
  .page-company__policy,
  .page-company__profile {
    margin-right: 8vw;
  }
}

.page-company__items li:first-child {
  margin: 0;
}

.page-company__message {
  padding-top: 70px;
  padding-top: 4.375rem;
  margin: 0;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .page-company__message {
    padding-top: 5.625rem;
  }
}

@media screen and (min-width: 768px) {
  .page-company__message-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5%;
  }
}

@media screen and (min-width: 768px) {
  .page-company__message-text {
    width: 50%;
    font-size: 1.125rem;
  }
}

.page-company__message-textbox {
  margin-top: 45px;
  margin-top: 2.8125rem;
  line-height: 2;
  font-weight: 600;
}

.page-company__message-textbox p:not(:first-child) {
  margin-top: 20px;
  margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
  .page-company__message-image {
    width: 50%;
    margin-top: 2.5rem;
  }
}

.page-company__message-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-company__policy {
  padding-top: 80px;
  padding-top: 5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-company__policy {
    padding-top: 12.5rem;
  }
}

.page-company__policy:after {
  position: absolute;
  content: "";
  bottom: -68px;
  bottom: -4.25rem;
  right: -20px;
  right: -1.25rem;
  width: 242px;
  width: 15.125rem;
  height: 38px;
  height: 2.375rem;
  background-image: url(../images/common/treat11.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
@media screen and (min-width: 768px) {
  .page-company__policy:after {
    width: 49.5rem;
    height: 4.25rem;
    right: -3.625rem;
    bottom: -6.25rem;
    background-size: cover;
  }
}

@media screen and (min-width: 768px) {
  .page-company__policy-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3%;
  }
}

.page-company__policy-head {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .page-company__policy-head {
    font-size: 1.5rem;
    margin-top: 1.875rem;
  }
}

.page-company__policy-list {
  padding: 25px 0;
  padding: 1.5625rem 0;
  position: relative;
  border-bottom: 3px solid #D9D9D9;
}
@media screen and (min-width: 768px) {
  .page-company__policy-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6%;
    padding: 4.6875rem 0;
  }
}

.page-company__policy-image {
  aspect-ratio: 396/111;
  max-width: 71%;
}
@media screen and (min-width: 768px) {
  .page-company__policy-image {
    max-width: 24.75rem;
  }
}

.page-company__policy-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-company__policy-lists {
  margin-top: 89px;
  margin-top: 5.5625rem;
}

.page-company__policy-list:after {
  content: "";
  position: absolute;
  bottom: -3px;
  width: 30%;
  height: 3px;
  background: #009CFF;
}

.page-company__policy-list:first-child {
  border-top: 3px solid #D9D9D9;
  position: relative;
}

.page-company__policy-list:first-child:before {
  content: "";
  position: absolute;
  top: -3px;
  width: 30%;
  height: 3px;
  background: #009CFF;
}

.page-company__policy-text {
  margin-top: 20px;
  margin-top: 1.25rem;
  padding-left: 10px;
  padding-left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .page-company__policy-text {
    width: 50%;
    margin-top: 0;
    padding-left: 0;
  }
}

.page-company__policy-number {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .page-company__policy-number {
    font-size: 1.1875rem;
  }
}

.page-company__policy-number span {
  color: #5DCCFF;
  font-size: 13px;
  font-size: 0.8125rem;
  display: inline-block;
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  .page-company__policy-number span {
    font-size: 0.8125rem;
  }
}

.page-company__policy-desc {
  font-size: 21px;
  font-size: 1.3125rem;
  line-height: 1.2068965517;
  letter-spacing: 0.025em;
  margin-top: 10px;
  margin-top: 0.625rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .page-company__policy-desc {
    font-size: 1.8125rem;
    margin-top: 1.875rem;
  }
}

.page-company__profile {
  padding-top: 120px;
  padding-top: 7.5rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .page-company__profile {
    padding-top: 12.5rem;
    padding-bottom: 6.25rem;
  }
}

.page-company__profile-table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .page-company__profile-table {
    margin-top: 5rem;
  }
}

.page-company__profile-table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  gap: 0.375rem;
  margin-top: 6px;
  margin-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .page-company__profile-table tr {
    margin-top: 0.75rem;
    gap: 1.0625rem;
  }
}

.page-company__profile-table th {
  color: #fff;
  background-image: url(../images/company/table-back01.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.page-company__profile-table tr:nth-child(4) > th {
  background-image: url(../images/company/table-back02.png);
}

.page-company__profile-table td {
  background-color: #fff;
}

.page-company__profile-table th,
.page-company__profile-table td {
  padding: 10px;
  padding: 0.625rem;
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .page-company__profile-table th,
  .page-company__profile-table td {
    font-size: 1rem;
    padding: 1.4375rem;
  }
}

.page-company__profile-table th {
  width: 33%;
  vertical-align: top;
}
@media screen and (min-width: 768px) {
  .page-company__profile-table th {
    width: 25%;
  }
}

.page-company__profile-table td {
  width: 80%;
}

.page-company__treat {
  display: block;
  width: 100%;
  position: relative;
}

.page-company__treat:before {
  display: none;
}
@media screen and (min-width: 768px) {
  .page-company__treat:before {
    display: block;
    position: absolute;
    content: "";
    bottom: 37.5rem;
    left: 0;
    background-image: url(../images/common/treat12.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 18.0625rem;
    height: 41.75rem;
  }
}

.page-company__treat:after {
  position: absolute;
  content: "";
  bottom: -100px;
  bottom: -6.25rem;
  right: 0;
  width: 88px;
  width: 5.5rem;
  height: 228px;
  height: 14.25rem;
  background-image: url(../images/common/treat13.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (min-width: 768px) {
  .page-company__treat:after {
    width: 14.875rem;
    height: 39.875rem;
    right: 0.375rem;
  }
}

.page-faq {
  padding-bottom: 174px;
  padding-bottom: 10.875rem;
  background-color: #F2FBFF;
  position: relative;
}

.page-faq:before {
  position: absolute;
  content: "";
  background-image: url(../images/common/treat23.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  top: 20%;
  right: 0;
  width: 57px;
  width: 3.5625rem;
  height: 150px;
  height: 9.375rem;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .page-faq:before {
    top: 0;
    width: 8.75rem;
    height: 21.375rem;
    right: 3.75rem;
  }
}

.page-faq:after {
  position: absolute;
  content: "";
  background-image: url(../images/common/treat24.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  top: 30%;
  left: -20px;
  left: -1.25rem;
  width: 105px;
  width: 6.5625rem;
  height: 358px;
  height: 22.375rem;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .page-faq:after {
    top: 20%;
    width: 21.6875rem;
    height: 69.3125rem;
  }
}

.page-faq__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-faq__wrap {
    padding-top: 3.125rem;
  }
}

.page-faq__sidebar {
  display: none;
}
@media screen and (min-width: 768px) {
  .page-faq__sidebar {
    display: block;
    position: sticky;
    z-index: 2;
    top: 200px;
    width: 200px;
    padding-bottom: 6.5rem;
    margin-top: 5.625rem;
  }
}
@media screen and (min-width: 1440px) {
  .page-faq__sidebar {
    width: 410px;
  }
}

.page-faq__sidebar ul {
  width: 230px;
  width: 14.375rem;
  margin-inline: auto;
}

.page-faq__sidebar ul li:not(:last-child) {
  border-bottom: none;
}

.page-faq__sidebar ul li a {
  display: inline-block;
  width: 100%;
  color: #B8B8B8;
  font-size: 20px;
  font-size: 1.25rem;
  padding: 10px 35px;
  padding: 0.625rem 2.1875rem;
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.page-faq__sidebar ul li a:hover {
  opacity: 1;
  color: #4b4b4b;
}

.page-faq__sidebar ul li a.active {
  color: #000;
  padding: 10px 35px;
  padding: 0.625rem 2.1875rem;
  font-weight: 600;
}

.page-faq__sidebar ul li a.active:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background-color: #199;
  top: 44%;
  left: 10px;
  border-radius: 10px;
}
@media screen and (min-width: 1440px) {
  .page-faq__sidebar ul li a.active:before {
    width: 10px;
    height: 10px;
  }
}

.page-faq__items {
  padding-right: 20px;
  padding-left: 20px;
  max-width: 500px;
  margin-inline: auto;
  position: relative;
  z-index: 3;
  padding-top: 40px;
  padding-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .page-faq__items {
    padding-right: 7vw;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
}

.page-faq__app,
.page-faq__welfare {
  padding-top: 70px;
  padding-top: 4.375rem;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .page-faq__app,
  .page-faq__welfare {
    padding-top: 12.1875rem;
  }
}

.page-faq__app:before {
  position: absolute;
  content: "";
  background-image: url(../images/common/treat25.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  top: 70%;
  right: -20px;
  width: 57px;
  width: 3.5625rem;
  height: 150px;
  height: 9.375rem;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .page-faq__app:before {
    width: 11.5rem;
    height: 28.8125rem;
    right: -3.125rem;
  }
}

.page-faq__treat {
  position: relative;
}

.page-faq__treat:before {
  position: absolute;
  content: "";
  background-image: url(../images/common/treat27.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  top: 0;
  right: 0;
  width: 105px;
  width: 6.5625rem;
  height: 246px;
  height: 15.375rem;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .page-faq__treat:before {
    width: 16.125rem;
    height: 31.5625rem;
  }
}

.page-faq__treat:after {
  position: absolute;
  content: "";
  background-image: url(../images/common/treat26.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  top: 0;
  left: -20px;
  left: -1.25rem;
  width: 105px;
  width: 6.5625rem;
  height: 246px;
  height: 15.375rem;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .page-faq__treat:after {
    width: 14.75rem;
    height: 34.3125rem;
  }
}

.page-feature {
  position: relative;
}

.page-feature:before {
  position: absolute;
  content: "";
  background-image: url(../images/common/treat28.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 57px;
  width: 3.5625rem;
  height: 140px;
  height: 8.75rem;
  top: -1%;
  right: 0;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .page-feature:before {
    width: 8.8125rem;
    height: 21.25rem;
    right: 1.875rem;
  }
}

.page-feature:after {
  position: absolute;
  content: "";
  background-image: url(../images/common/treat29.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 89px;
  width: 5.5625rem;
  height: 252px;
  height: 15.75rem;
  top: 2%;
  left: -30px;
  left: -1.875rem;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .page-feature:after {
    top: 5%;
    width: 17.8125rem;
    height: 59.0625rem;
  }
}

.page-feature__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  background-color: #F2FBFF;
}
@media screen and (min-width: 768px) {
  .page-feature__wrap {
    padding-top: 3.125rem;
  }
}

.page-feature__sidebar {
  display: none;
}
@media screen and (min-width: 768px) {
  .page-feature__sidebar {
    display: block;
    position: sticky;
    z-index: 3;
    top: 200px;
    width: 200px;
    padding-bottom: 6.5rem;
    margin-top: 5.625rem;
    z-index: 10;
  }
}
@media screen and (min-width: 1440px) {
  .page-feature__sidebar {
    width: 410px;
  }
}

.page-feature__sidebar ul {
  width: 230px;
  width: 14.375rem;
  margin-inline: auto;
}

.page-feature__sidebar ul li:not(:last-child) {
  border-bottom: none;
}

.page-feature__sidebar ul li a {
  display: inline-block;
  width: 100%;
  color: #B8B8B8;
  font-size: 20px;
  font-size: 1.25rem;
  padding: 10px 35px;
  padding: 0.625rem 2.1875rem;
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.page-feature__sidebar ul li a:hover {
  opacity: 1;
  color: #4b4b4b;
}

.page-feature__sidebar ul li a.active {
  color: #000;
  padding: 10px 35px;
  padding: 0.625rem 2.1875rem;
  font-weight: 600;
}

.page-feature__sidebar ul li a.active:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background-color: #199;
  top: 44%;
  left: 10px;
  border-radius: 10px;
}
@media screen and (min-width: 1440px) {
  .page-feature__sidebar ul li a.active:before {
    width: 10px;
    height: 10px;
  }
}

.page-feature__items {
  padding-right: 20px;
  padding-left: 20px;
  max-width: 500px;
  width: 100%;
  margin-inline: auto;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .page-feature__items {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
    width: 80%;
  }
}

.page-feature__desc {
  margin-top: 27px;
  margin-top: 1.6875rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .page-feature__desc {
    width: 80%;
    font-size: 1.375rem;
  }
}

.page-feature__edu {
  padding-top: 112px;
  padding-top: 7rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-feature__edu {
    padding-top: 7.5rem;
  }
}

.page-feature__edu:after {
  position: absolute;
  content: "";
  background-image: url(../images/feature/education-icon.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 217px;
  width: 13.5625rem;
  height: 76px;
  height: 4.75rem;
  top: 2%;
  left: 30%;
}
@media screen and (min-width: 768px) {
  .page-feature__edu:after {
    width: 19.8125rem;
    height: 6.875rem;
    top: 3.5%;
    left: 32%;
  }
}
@media screen and (min-width: 1920px) {
  .page-feature__edu:after {
    left: 25%;
  }
}

.page-feature__study,
.page-feature__up,
.page-feature__sports {
  padding-top: 127px;
  padding-top: 7.9375rem;
}
@media screen and (min-width: 768px) {
  .page-feature__study,
  .page-feature__up,
  .page-feature__sports {
    padding-right: 7vw;
  }
}

.page-feature__study {
  position: relative;
  z-index: 2;
}

.page-feature__study:after {
  position: absolute;
  content: "";
  background-image: url(../images/feature/study-icon.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 144px;
  width: 9rem;
  height: 78px;
  height: 4.875rem;
  top: 10%;
  left: 58%;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .page-feature__study:after {
    width: 13rem;
    height: 6.875rem;
    top: 12%;
    left: 29%;
  }
}
@media screen and (min-width: 1920px) {
  .page-feature__study:after {
    left: 35%;
  }
}

.page-feature__study-wrap {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .page-feature__study-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.8125rem;
  }
}

@media screen and (min-width: 768px) {
  .page-feature__study-right,
  .page-feature__study-left {
    width: 50%;
  }
}

.page-feature__study-text {
  margin-top: 28px;
  margin-top: 1.75rem;
  line-height: 1.7;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .page-feature__study-text {
    line-height: 1.9;
    font-size: 1.375rem;
  }
}

.page-feature__study-right {
  aspect-ratio: 666/611;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .page-feature__study-right {
    margin-top: 0;
  }
}

.page-feature__study-right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-feature__up {
  position: relative;
  z-index: 2;
}

.page-feature__up:after {
  position: absolute;
  content: "";
  background-image: url(../images/feature/up-icon.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 192px;
  width: 12rem;
  height: 78px;
  height: 4.875rem;
  top: 10%;
  left: 44%;
}
@media screen and (min-width: 768px) {
  .page-feature__up:after {
    width: 17rem;
    height: 6.875rem;
    top: 8%;
    left: 35%;
  }
}
@media screen and (min-width: 1920px) {
  .page-feature__up:after {
    left: 24%;
  }
}

.page-feature__up-text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 22px;
  margin-top: 1.375rem;
}
@media screen and (min-width: 768px) {
  .page-feature__up-text {
    font-size: 1.375rem;
  }
}

.page-feature__up-image {
  aspect-ratio: 575 / 449;
  margin-inline: auto;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .page-feature__up-image {
    width: 80%;
  }
}

.page-feature__up-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-feature__sports {
  position: relative;
  z-index: 2;
}

.page-feature__sports::after {
  position: absolute;
  content: "";
  background-image: url(../images/feature/sport-icon.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 232px;
  width: 14.5rem;
  height: 78px;
  height: 4.875rem;
  top: 1.5%;
  left: 35%;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .page-feature__sports::after {
    width: 25rem;
    height: 7.875rem;
    top: 3%;
    left: 55%;
  }
}
@media screen and (min-width: 1920px) {
  .page-feature__sports::after {
    left: 38%;
  }
}

.page-feature__sports-text {
  font-size: 16px;
  font-size: 1rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}

.page-feature__year {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.page-feature__year-image {
  aspect-ratio: 584/410;
}
@media screen and (min-width: 1440px) {
  .page-feature__year-image {
    width: 60%;
  }
}

.page-feature__year-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 1440px) {
  .page-feature__year {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.page-feature__year-box {
  background-color: #F2FBFF;
  position: relative;
  padding-top: 8px;
  padding-top: 0.5rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .page-feature__year-box {
    margin-top: 1.25rem;
    padding-top: 0;
  }
}
@media screen and (min-width: 1440px) {
  .page-feature__year-box {
    margin-top: 30%;
    margin-left: -30%;
    width: 68%;
  }
}
@media screen and (min-width: 1920px) {
  .page-feature__year-box {
    width: 50%;
    margin-top: 30%;
    margin-left: -10%;
  }
}

.page-feature__year-box:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 260px;
  height: 16.25rem;
  top: 4%;
  left: 3%;
  background: -webkit-gradient(linear, left top, right top, from(#c0faff), color-stop(59.45%, #6adafe), to(#0ebdfe));
  background: linear-gradient(to right, #c0faff 0%, #6adafe 59.45%, #0ebdfe 100%);
  opacity: 0.5;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .page-feature__year-box:after {
    width: 53.75rem;
    height: 16.25rem;
    top: 9%;
  }
}
@media screen and (min-width: 1440px) {
  .page-feature__year-box:after {
    width: 42.75rem;
    height: 19.25rem;
    top: 9%;
    left: 2%;
  }
}

.page-feature__year-head {
  font-size: 16px;
  font-size: 1rem;
  background-color: #fff;
  margin-right: 2%;
  border-radius: 0 50px 50px 0;
  padding: 10px;
  padding: 0.625rem;
  margin-top: 10px;
  margin-top: 0.625rem;
  letter-spacing: 0.07em;
}
@media screen and (min-width: 768px) {
  .page-feature__year-head {
    font-size: 1.625rem;
    padding-left: 11%;
    margin-right: 10%;
    margin-top: 1.625rem;
  }
}

.page-feature__year-head span {
  font-size: 20px;
  font-size: 1.25rem;
  color: #009CFF;
}
@media screen and (min-width: 768px) {
  .page-feature__year-head span {
    font-size: 3.125rem;
  }
}

.page-feature__year-text {
  font-size: 14px;
  font-size: 0.875rem;
  padding: 5%;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .page-feature__year-text {
    font-size: 1.125rem;
    padding: 1.875rem 4.9375rem;
  }
}

.page-feature__play-head {
  margin-inline: auto;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .page-feature__play-head {
    width: 50%;
    margin-top: 9.125rem;
  }
}

.page-feature__play-lists {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .page-feature__play-lists {
    margin-top: 7.5625rem;
  }
}

.page-feature__play-list {
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .page-feature__play-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.page-feature__play-list:not(:first-child) {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .page-feature__play-list:not(:first-child) {
    margin-top: 11.5rem;
  }
}

@media screen and (min-width: 768px) {
  .page-feature__play-list:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    margin-left: -5%;
  }
}

.page-feature__play-image {
  aspect-ratio: 515/410;
}
@media screen and (min-width: 768px) {
  .page-feature__play-image {
    width: 40%;
  }
}

.page-feature__play-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.page-feature__play-box {
  position: relative;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .page-feature__play-box {
    width: 60%;
    margin-top: 0;
  }
}

.page-feature__play-box:after {
  position: absolute;
  content: "";
  width: 213px;
  width: 13.3125rem;
  height: 213px;
  height: 13.3125rem;
  border-radius: 50%;
  background-color: #F2FBFF;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .page-feature__play-box:after {
    width: 20.8125rem;
    height: 20.8125rem;
  }
}
@media screen and (min-width: 1920px) {
  .page-feature__play-box:after {
    width: 33.3125rem;
    height: 33.3125rem;
  }
}

.page-feature__box-head {
  font-size: 18px;
  font-size: 1.125rem;
  padding: 10px 14px;
  padding: 0.625rem 0.875rem;
  border-bottom: 1px solid #36C8FF;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .page-feature__box-head {
    font-size: 2rem;
    padding: 0.625rem 4rem;
  }
}

.page-feature__box-head span {
  font-size: 26px;
  font-size: 1.625rem;
  color: #009CFF;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .page-feature__box-head span {
    font-size: 2.875rem;
  }
}

.page-feature__box-text {
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .page-feature__box-text {
    padding: 0.625rem 4rem;
    font-size: 1.125rem;
  }
}

.page-feature-treat01 {
  position: relative;
  display: block;
}

.page-feature-treat01:before {
  position: absolute;
  content: "";
  background-image: url(../images/common/treat30.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 105px;
  width: 6.5625rem;
  height: 332px;
  height: 20.75rem;
  top: -1%;
  left: -49px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .page-feature-treat01:before {
    width: 17rem;
    height: 52.4375rem;
    top: -1%;
    left: -36%;
  }
}

.page-feature__study:before {
  position: absolute;
  content: "";
  background-image: url(../images/common/treat31.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 73px;
  width: 4.5625rem;
  height: 76px;
  height: 4.75rem;
  top: -1%;
  right: -20px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .page-feature__study:before {
    width: 12rem;
    height: 30.5rem;
    top: 90%;
    right: 1.25rem;
  }
}

.page-feature-treat03 {
  position: relative;
  display: block;
}

.page-feature-treat03:after {
  display: none;
}
@media screen and (min-width: 768px) {
  .page-feature-treat03:after {
    display: block;
    position: absolute;
    content: "";
    background-image: url(../images/common/treat32.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: 1;
    width: 10.75rem;
    height: 34.3125rem;
    top: -1%;
    left: -35%;
  }
}

.page-feature-treat03:before {
  position: absolute;
  content: "";
  background-image: url(../images/common/treat33.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 217px;
  width: 13.5625rem;
  height: 76px;
  height: 4.75rem;
  top: -1%;
  right: 0;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .page-feature-treat03:before {
    width: 10.75rem;
    height: 34.3125rem;
    top: -1%;
    right: -4.25rem;
  }
}

.page-feature-treat04 {
  position: relative;
  display: block;
}

.page-feature-treat04:after {
  display: none;
}
@media screen and (min-width: 768px) {
  .page-feature-treat04:after {
    display: block;
    position: absolute;
    content: "";
    background-image: url(../images/common/treat34.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 13.5625rem;
    height: 4.75rem;
    top: -1%;
    left: -35%;
    z-index: 1;
    width: 11.0625rem;
    height: 54.75rem;
    top: -1%;
    left: -35%;
  }
}

.page-feature__play {
  position: relative;
  display: block;
}

.page-feature__play:after {
  display: none;
}
@media screen and (min-width: 768px) {
  .page-feature__play:after {
    display: block;
    position: absolute;
    content: "";
    background-image: url(../images/common/treat35.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 13.5625rem;
    height: 4.75rem;
    top: -1%;
    right: 0;
    z-index: 1;
    width: 11.0625rem;
    height: 54.75rem;
    top: 26%;
    right: -9%;
  }
}

.play-slider {
  position: relative;
  z-index: 5;
}

.play-slider:before {
  display: none;
}
@media screen and (min-width: 768px) {
  .play-slider:before {
    display: block;
    position: absolute;
    content: "";
    background-image: url(../images/common/treat36.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 4.5625rem;
    height: 11.75rem;
    top: -100%;
    left: -2%;
    z-index: 0;
    width: 15.5rem;
    height: 50.5rem;
  }
}

.play-slider:after {
  display: none;
}
@media screen and (min-width: 768px) {
  .play-slider:after {
    display: block;
    position: absolute;
    content: "";
    background-image: url(../images/common/treat37.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 5.5rem;
    height: 13.5rem;
    top: 100%;
    right: 0;
    z-index: 1;
    width: 14.9375rem;
    height: 28.0625rem;
  }
}

.page-feature__sports:before {
  display: none;
}
@media screen and (min-width: 768px) {
  .page-feature__sports:before {
    display: block;
    position: absolute;
    content: "";
    background-image: url(../images/common/feature-line.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 10.125rem;
    height: 112%;
    top: 0;
    left: -20%;
    z-index: 0;
  }
}

.page-human-layout {
  padding-top: 80px;
  padding-top: 5rem;
}

.page-human {
  position: relative;
}

.page-human:before {
  position: absolute;
  content: "";
  background-image: url(../images/common/treat40.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 54px;
  width: 3.375rem;
  height: 224px;
  height: 14rem;
  right: 0;
  top: 0;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .page-human:before {
    width: 13.5625rem;
    height: 35.375rem;
  }
}

.page-human:after {
  position: absolute;
  content: "";
  background-image: url(../images/common/treat41.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 102px;
  width: 6.375rem;
  height: 368px;
  height: 23rem;
  left: -20px;
  left: -1.25rem;
  top: 30%;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .page-human:after {
    width: 14.625rem;
    height: 57.4375rem;
  }
}

.page-human__title {
  text-align: center;
  font-size: 23px;
  font-size: 1.4375rem;
  padding: 10px;
  padding: 0.625rem;
  width: 80%;
  background-color: #fff;
  margin-top: -40px;
  margin-top: -2.5rem;
  margin-inline: auto;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .page-human__title {
    font-size: 2.1875rem;
    margin-top: -2.5rem;
    width: 39rem;
  }
}

.page-human__line {
  display: block;
  background-color: #88DAFF;
  height: 3px;
  margin-top: 77px;
  margin-top: 4.8125rem;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .page-human__line {
    margin-top: 8.5625rem;
  }
}

@media screen and (min-width: 768px) {
  .page-human__inner {
    max-width: 1100px;
    padding-right: 7vw;
  }
}
@media screen and (min-width: 1440px) {
  .page-human__inner {
    padding-right: 25px;
  }
}

.page-human__items {
  margin-top: 50px;
  margin-top: 3.125rem;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .page-human__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 5rem;
  }
}

.page-human-item {
  background-color: #F2FBFF;
  -webkit-box-shadow: 5px 5px 8px rgba(144, 186, 211, .21);
          box-shadow: 5px 5px 8px rgba(144, 186, 211, .21);
  padding: 26px 20px;
  padding: 1.625rem 1.25rem;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .page-human-item {
    padding: 2.6875rem 1.8125rem;
  }
}

.page-human-item p {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .page-human-item p {
    font-size: 1.875rem;
  }
}

.page-human__gender-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  gap: 1.875rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .page-human__gender-flex {
    gap: 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .page-human__gender-men,
  .page-human__gender-woman {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.625rem;
  }
}

.page-human__gender-title {
  text-align: center;
}

.page-human .big {
  font-size: 40px;
  font-size: 2.5rem;
}
@media screen and (min-width: 768px) {
  .page-human .big {
    font-size: 4.6875rem;
  }
}

.page-human__gender-text .red {
  color: #E2000E;
}

.page-human__gender-text {
  text-align: center;
  margin-top: 17px;
  margin-top: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .page-human__gender-text {
    margin-top: 0;
  }
}

.page-human__gender img {
  width: 51px;
  width: 3.1875rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .page-human__gender img {
    width: 5.6875rem;
  }
}

.page-human__age {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .page-human__age {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.3125rem;
    margin-top: 0;
  }
}

.page-human__age-text {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-human__age-text {
    text-align: left;
    margin-left: -3.875rem;
  }
}

.page-human__age img {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .page-human__age img {
    width: 77%;
    margin: 0;
  }
}

.page-human__single-item {
  margin-top: 40px;
  margin-top: 2.5rem;
  position: relative;
  z-index: 3;
}

@media screen and (min-width: 768px) {
  .page-human__com {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2.5rem;
  }
}

.page-human__com-text {
  text-align: center;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .page-human__com-text {
    width: 50%;
  }
}

.page-human__com-text:before {
  display: none;
}
@media screen and (min-width: 768px) {
  .page-human__com-text:before {
    display: block;
    position: absolute;
    content: "";
    background-color: #fff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: -1;
    width: 25.4375rem;
    height: 25.4375rem;
  }
}

.page-human__com img {
  margin-inline: auto;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .page-human__com img {
    width: 50%;
    margin: 0;
  }
}

.page-human__ranking {
  margin-top: 40px;
  margin-top: 2.5rem;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .page-human__ranking {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

.ranking-item {
  background-color: #F2FBFF;
  -webkit-box-shadow: 5px 5px 8px rgba(144, 186, 211, .21);
          box-shadow: 5px 5px 8px rgba(144, 186, 211, .21);
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  padding-top: 20px;
  padding-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .ranking-item {
    padding-bottom: 7.5rem;
    padding-top: 1.875rem;
  }
}

.page-human__ranking-title {
  background-color: #00B9FF;
  color: #fff;
  padding: 8px;
  padding: 0.5rem;
  padding-left: 30px;
  padding-left: 1.875rem;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .page-human__ranking-title {
    font-size: 1.875rem;
    padding-left: 2.875rem;
  }
}

.page-human__ranking-items {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .page-human__ranking-items {
    width: 80%;
  }
}

.page-human__ranking-item {
  border-bottom: 1px solid #6EC7FF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 22px;
  gap: 1.375rem;
  padding-left: 10px;
  padding-left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .page-human__ranking-item {
    padding-left: 2.0625rem;
  }
}

.page-human__ranking-item .rank span {
  color: #009CFF;
}

.page-human__ranking-item .rank {
  width: 20%;
  text-align: center;
  letter-spacing: 0.07em;
}

.page-human__ranking-item:nth-child(1) .rank span {
  font-size: 40px;
  font-size: 2.5rem;
}
@media screen and (min-width: 768px) {
  .page-human__ranking-item:nth-child(1) .rank span {
    font-size: 3.75rem;
  }
}

.page-human__ranking-item:nth-child(1) .rank {
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .page-human__ranking-item:nth-child(1) .rank {
    font-size: 1.875rem;
  }
}

.page-human__ranking-item:nth-child(1) .desc {
  font-size: 30px;
  font-size: 1.875rem;
  color: #009CFF;
}
@media screen and (min-width: 768px) {
  .page-human__ranking-item:nth-child(1) .desc {
    font-size: 3.125rem;
  }
}

.page-human__ranking-item:nth-child(2) .rank span {
  font-size: 30px;
  font-size: 1.875rem;
}
@media screen and (min-width: 768px) {
  .page-human__ranking-item:nth-child(2) .rank span {
    font-size: 2.8125rem;
  }
}

.page-human__ranking-item:nth-child(2) .rank {
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .page-human__ranking-item:nth-child(2) .rank {
    font-size: 1.5625rem;
  }
}

.page-human__ranking-item:nth-child(2) .desc {
  font-size: 25px;
  font-size: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .page-human__ranking-item:nth-child(2) .desc {
    font-size: 2.1875rem;
  }
}

.page-human__ranking-item:nth-child(3) .rank span {
  font-size: 28px;
  font-size: 1.75rem;
}
@media screen and (min-width: 768px) {
  .page-human__ranking-item:nth-child(3) .rank span {
    font-size: 2.8125rem;
  }
}

.page-human__ranking-item:nth-child(3) .rank {
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .page-human__ranking-item:nth-child(3) .rank {
    font-size: 1.5625rem;
  }
}

.page-human__ranking-item:nth-child(3) .desc {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .page-human__ranking-item:nth-child(3) .desc {
    font-size: 2.1875rem;
  }
}

.page-human__ranking-item:nth-child(4) .rank span {
  font-size: 25px;
  font-size: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .page-human__ranking-item:nth-child(4) .rank span {
    font-size: 2.1875rem;
  }
}

.page-human__ranking-item:nth-child(4) .rank {
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .page-human__ranking-item:nth-child(4) .rank {
    font-size: 1.25rem;
  }
}

.page-human__ranking-item:nth-child(4) .desc {
  font-size: 17px;
  font-size: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .page-human__ranking-item:nth-child(4) .desc {
    font-size: 1.5625rem;
  }
}

.page-human__ranking-item:nth-child(5) .rank span {
  font-size: 25px;
  font-size: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .page-human__ranking-item:nth-child(5) .rank span {
    font-size: 1.875rem;
  }
}

.page-human__ranking-item:nth-child(5) .rank {
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .page-human__ranking-item:nth-child(5) .rank {
    font-size: 0.9375rem;
  }
}

.page-human__ranking-item:nth-child(5) .desc {
  font-size: 17px;
  font-size: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .page-human__ranking-item:nth-child(5) .desc {
    font-size: 1.5625rem;
  }
}

.page-human__ranking-item:nth-child(5) {
  padding-top: 3px;
  padding-top: 0.1875rem;
  padding-bottom: 3px;
  padding-bottom: 0.1875rem;
}

.page-human__ranking-item:nth-child(6) .rank span {
  font-size: 25px;
  font-size: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .page-human__ranking-item:nth-child(6) .rank span {
    font-size: 1.875rem;
  }
}

.page-human__ranking-item:nth-child(6) .rank {
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .page-human__ranking-item:nth-child(6) .rank {
    font-size: 0.9375rem;
  }
}

.page-human__ranking-item:nth-child(6) .desc {
  font-size: 17px;
  font-size: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .page-human__ranking-item:nth-child(6) .desc {
    font-size: 1.5625rem;
  }
}

.page-human__ranking-item:nth-child(6) {
  padding-top: 3px;
  padding-top: 0.1875rem;
  padding-bottom: 3px;
  padding-bottom: 0.1875rem;
}

.page-human__like {
  position: relative;
}

.page-human__like:before {
  position: absolute;
  content: "";
  background-image: url(../images/number/like.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 86px;
  width: 5.375rem;
  height: 83.2px;
  height: 5.2rem;
  bottom: 30px;
  bottom: 1.875rem;
  right: 10px;
  right: 0.625rem;
}
@media screen and (min-width: 768px) {
  .page-human__like:before {
    width: 8.5rem;
    height: 8.125rem;
  }
}

.page-human__personality {
  position: relative;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .page-human__personality {
    margin-top: 0;
  }
}

.page-human__personality:before {
  position: absolute;
  content: "";
  background-image: url(../images/number/personality.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 67px;
  width: 4.1875rem;
  height: 83.2px;
  height: 5.2rem;
  bottom: 30px;
  bottom: 1.875rem;
  right: 10px;
  right: 0.625rem;
}
@media screen and (min-width: 768px) {
  .page-human__personality:before {
    width: 7.3125rem;
    height: 9rem;
  }
}

.page-human__reason {
  margin-top: 30px;
  margin-top: 1.875rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .page-human__reason {
    margin-top: 2.5rem;
  }
}

.page-human__reason-image {
  margin-inline: auto;
  margin-top: 20px;
  margin-top: 1.25rem;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .page-human__reason-image {
    width: 90%;
    margin-top: -0.625rem;
  }
}

.page-human__reason:before {
  position: absolute;
  content: "";
  background-image: url(../images/common/treat42.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  top: 0;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .page-human__reason:before {
    width: 17.0625rem;
    height: 41.5rem;
    left: -18.25rem;
  }
}
@media screen and (min-width: 1920px) {
  .page-human__reason:before {
    left: -30.25rem;
  }
}

.page-interview-layout {
  padding-top: 95px;
  padding-top: 5.9375rem;
  padding-bottom: 127px;
  padding-bottom: 7.9375rem;
  background-color: #F2FBFF;
}
@media screen and (min-width: 768px) {
  .page-interview-layout {
    padding-right: 6vw;
  }
}

.page-interview {
  position: relative;
  z-index: 2;
}

.page-interview:before {
  position: absolute;
  content: "";
  top: -40px;
  top: -2.5rem;
  right: 0;
  width: 54px;
  width: 3.375rem;
  height: 204px;
  height: 12.75rem;
  background-image: url(../images/common/treat14.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .page-interview:before {
    width: 7.5625rem;
    height: 25.25rem;
    right: 4.6875rem;
  }
}

.page-interview:after {
  position: absolute;
  content: "";
  top: 100px;
  top: 6.25rem;
  left: 0;
  width: 136px;
  width: 8.5rem;
  height: 700px;
  height: 43.75rem;
  background-image: url(../images/common/treat15.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .page-interview:after {
    width: 17.1875rem;
    height: 80.3125rem;
  }
}

@media screen and (min-width: 768px) {
  .inner.page-interview__inner {
    max-width: 1100px;
  }
}

.page-interview__title {
  position: relative;
  z-index: 2;
}

.page-interview__lists {
  margin-top: 72px;
  margin-top: 4.5rem;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .page-interview__lists {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 2.125rem;
       -moz-column-gap: 2.125rem;
            column-gap: 2.125rem;
    row-gap: 0.625rem;
  }
}

.page-interview__list:not(:first-child) {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .page-interview__list:not(:first-child) {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .page-interview__list:not(:nth-child(1)):nth-child(n+1) {
    margin-top: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .page-interview__list:not(:nth-child(1)):nth-child(2n+1) {
    margin-top: 4.375rem;
  }
}

@media screen and (min-width: 768px) {
  .page-interview__list:not(:nth-child(1)):nth-child(3n+1) {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .page-interview__list:not(:nth-child(1)):nth-child(4n+1) {
    margin-top: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .page-interview__list:not(:nth-child(1)):nth-child(5n+1) {
    margin-top: 4.375rem;
  }
}

.page-interview__list > a {
  display: block;
  -webkit-box-shadow: 12px 12px 0px 0 rgb(221, 242, 255);
          box-shadow: 12px 12px 0px 0 rgb(221, 242, 255);
  background-color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.page-interview__list > a:hover {
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
  opacity: 1;
}

.page-interview__image {
  aspect-ratio: 340/242;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 77%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 100% 77%, 0% 100%);
}
@media screen and (min-width: 768px) {
  .page-interview__image {
    aspect-ratio: 340/258;
    max-width: 100%;
  }
}

.page-interview__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-interview__textbox {
  padding: 10px 15px;
  padding: 0.625rem 0.9375rem;
  -webkit-box-shadow: 5px 10px 5px 0 rgb(215, 233, 243);
          box-shadow: 5px 10px 5px 0 rgb(215, 233, 243);
}
@media screen and (min-width: 768px) {
  .page-interview__textbox {
    padding: 1rem 1.25rem;
  }
}

.page-interview__head {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.3043478261;
}
@media screen and (min-width: 768px) {
  .page-interview__head {
    font-size: 1.4375rem;
  }
}

.page-interview__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 18px;
  margin-top: 1.125rem;
}

.page-interview__name {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .page-interview__name {
    font-size: 1.5rem;
  }
}

.page-interview__time {
  font-size: 15px;
  font-size: 0.9375rem;
}

.page-interview__tag {
  display: inline-block;
  color: #fff;
  padding: 3px 8px;
  padding: 0.1875rem 0.5rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#7ff5ff), color-stop(31.98%, #6adafe), to(#0af));
  background: linear-gradient(#7ff5ff 0%, #6adafe 31.98%, #0af 100%);
  margin-top: 12px;
  margin-top: 0.75rem;
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
}

.page-interview__list:nth-child(7) .page-interview__tag {
  font-size: 17px;
  font-size: 1.0625rem;
}

.page-interview__treat {
  position: relative;
  display: block;
}

.page-interview__treat:before {
  position: absolute;
  content: "";
  bottom: -180px;
  bottom: -11.25rem;
  right: 0;
  width: 84px;
  width: 5.25rem;
  height: 200px;
  height: 12.5rem;
  background-image: url(../images/common/treat16.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .page-interview__treat:before {
    width: 9.25rem;
    height: 21.125rem;
    right: -1.25rem;
    bottom: -1.25rem;
  }
}

.page-news {
  background-color: #F2FBFF;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-news {
    padding-bottom: 12.5rem;
  }
}

.page-news:before {
  position: absolute;
  content: "";
  background-image: url(../images/common/treat01.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  top: 20%;
  left: 0;
  width: 105px;
  width: 6.5625rem;
  height: 246px;
  height: 15.375rem;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .page-news:before {
    top: 0;
    width: 17.1875rem;
    height: 40.375rem;
  }
}

.page-news:after {
  position: absolute;
  content: "";
  background-image: url(../images/common/treat02.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  top: 40%;
  right: 0;
  width: 86px;
  width: 5.375rem;
  height: 258px;
  height: 16.125rem;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .page-news:after {
    width: 17.875rem;
    height: 53.625rem;
  }
}

.page-news__treat {
  position: relative;
}

.page-news__treat:before {
  position: absolute;
  content: "";
  background-image: url(../images/common/treat03.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  top: 0;
  left: 0;
  width: 88px;
  width: 5.5rem;
  height: 238px;
  height: 14.875rem;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .page-news__treat:before {
    width: 16.125rem;
    height: 46.125rem;
  }
}

.page-news__inner.inner {
  max-width: 1100px;
}

.page-news__title {
  position: relative;
  z-index: 1;
}

.page-news__items {
  margin-top: 42px;
  margin-top: 2.625rem;
  margin-inline: auto;
  background-color: #fff;
  padding: 12% 6%;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .page-news__items {
    margin-top: 8.875rem;
    padding: 6.25rem 6.875rem;
  }
}

.page-news__items li {
  border-top: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
  padding: 20px 0;
  padding: 1.25rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .page-news__items li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
    padding-left: 1.25rem;
  }
}

.page-news__items li:not(:first-child) {
  border-top: none;
}

.page-news__items li > time {
  color: #009CFF;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  padding-right: 10px;
  padding-right: 0.625rem;
}
@media screen and (min-width: 768px) {
  .page-news__items li > time {
    font-size: 1.25rem;
    padding-right: 4.375rem;
  }
}

.page-news__items li > a {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: bold;
  color: #000000;
  display: inline-block;
  padding: 5px 0;
  padding: 0.3125rem 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (min-width: 768px) {
  .page-news__items li > a {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    font-size: 1.25rem;
    line-height: 1.0909090909;
  }
}

.page-news__items li > a:hover {
  opacity: 1;
  color: #009CFF;
}

.page-news__navi {
  margin-top: 50px;
  margin-top: 3.125rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-news__navi {
    margin-top: 6.25rem;
  }
}

.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.wp-pagenavi .pages {
  display: none;
}

.wp-pagenavi a,
.wp-pagenavi span {
  text-decoration: none;
  padding: 5px 14px;
  padding: 0.3125rem 0.875rem;
  margin: 5px;
  margin: 0.3125rem;
  font-size: 20px;
  font-size: 1.25rem;
  color: #000000;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  border: none;
}

.wp-pagenavi a:hover, .wp-pagenavi span.current {
  color: #009CFF;
}

.wp-pagenavi .previouspostslink {
  background: url("../images/common/prev.png") no-repeat;
  background-size: cover;
  background-position: center center;
  width: 102px;
  height: 42px;
  display: inline-block;
}

.wp-pagenavi .nextpostslink {
  background: url("../images/common/next.png") no-repeat;
  background-size: cover;
  background-position: center center;
  width: 102px;
  height: 42px;
  display: inline-block;
}

/*詳細ページ　ぺージャー*/
.pagenavi02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-transform: uppercase;
}

.pagenavi02 .page {
  color: #009CFF;
  border: 1px solid #009CFF;
  font-size: 13px;
  font-size: 0.8125rem;
  padding: 7px 10px;
  white-space: nowrap;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  text-align: center;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .pagenavi02 .page {
    font-size: 1.0625rem;
    padding: 8px 45px;
  }
}

.pagenavi02 a:not(:last-child),
.nav-previous {
  margin-right: 14px;
  margin-right: 0.875rem;
}
@media screen and (min-width: 768px) {
  .pagenavi02 a:not(:last-child),
  .nav-previous {
    margin-right: 2.75rem;
  }
}

.pagenavi02 .page:hover {
  color: #fff;
  background-color: #0687d7;
  border: 1px solid #0687d7;
}

.nav-previous,
.nav-next {
  aspect-ratio: 102/42;
  max-width: 87px;
  max-width: 5.4375rem;
}
@media screen and (min-width: 768px) {
  .nav-previous,
  .nav-next {
    max-width: 6.375rem;
  }
}

.nav-previous img,
.nav-next img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-number {
  background-color: #F2FBFF;
  position: relative;
}

.page-number:before {
  position: absolute;
  content: "";
  background-image: url(../images/common/treat38.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 38px;
  width: 2.375rem;
  height: 240px;
  height: 15rem;
  right: 0;
  top: 0;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .page-number:before {
    width: 12.375rem;
    height: 48rem;
  }
}

.page-number:after {
  position: absolute;
  content: "";
  background-image: url(../images/common/treat39.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 150px;
  width: 9.375rem;
  height: 512px;
  height: 32rem;
  left: -20px;
  left: -1.25rem;
  top: 20%;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .page-number:after {
    width: 18.75rem;
    height: 62.625rem;
  }
}

.page-number-layout {
  padding-top: 80px;
  padding-top: 5rem;
}
@media screen and (min-width: 768px) {
  .page-number-layout {
    padding-top: 8.125rem;
  }
}

@media screen and (min-width: 768px) {
  .page-number__inner {
    max-width: 1100px;
    padding-right: 7vw;
  }
}
@media screen and (min-width: 1440px) {
  .page-number__inner {
    padding-right: 25px;
  }
}

.page-number__head {
  background-color: #fff;
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  padding: 18px 32px;
  padding: 1.125rem 2rem;
  border-radius: 50px;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .page-number__head {
    padding: 2.375rem 4.5rem;
    font-size: 1.25rem;
    border-radius: 100px;
  }
}

.page-number__title {
  text-align: center;
  font-size: 23px;
  font-size: 1.4375rem;
  background-color: #F2FBFF;
  padding: 10px;
  padding: 0.625rem;
  margin-top: -32px;
  margin-top: -2rem;
  margin-inline: auto;
  width: 80%;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .page-number__title {
    width: 28.75rem;
    font-size: 2.1875rem;
    margin-top: -2.5rem;
  }
}

.page-number__line {
  display: block;
  background-color: #88DAFF;
  height: 3px;
  margin-top: 77px;
  margin-top: 4.8125rem;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .page-number__line {
    margin-top: 8.5625rem;
  }
}

.page-recruit {
  position: relative;
}

.page-recruit:before {
  display: none;
}
@media screen and (min-width: 768px) {
  .page-recruit:before {
    display: block;
    position: absolute;
    content: "";
    background-image: url(../images/recruit/personalty-back.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 87.5rem;
    top: -1%;
    left: 0;
    z-index: 1;
  }
}

.page-recruit:after {
  position: absolute;
  content: "";
  top: 5%;
  left: -50px;
  left: -3.125rem;
  width: 100px;
  width: 6.25rem;
  height: 300px;
  height: 18.75rem;
  background-image: url(../images/common/treat20.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .page-recruit:after {
    top: 12%;
    width: 17.125rem;
    height: 47.0625rem;
  }
}

.page-recruit__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-color: #F2FBFF;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-recruit__wrap {
    padding-top: 3.125rem;
  }
}

.page-recruit__wrap:before {
  position: absolute;
  content: "";
  top: 61%;
  right: 0;
  width: 100px;
  width: 6.25rem;
  height: 332px;
  height: 20.75rem;
  background-image: url(../images/common/treat21.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .page-recruit__wrap:before {
    top: 40%;
    right: 3.125rem;
    width: 17rem;
    height: 56.5625rem;
  }
}

.page-recruit__wrap:after {
  position: absolute;
  content: "";
  top: 30%;
  left: -50px;
  left: -3.125rem;
  width: 100px;
  width: 6.25rem;
  height: 300px;
  height: 18.75rem;
  background-image: url(../images/common/treat22.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .page-recruit__wrap:after {
    top: 70%;
    width: 21.6875rem;
    height: 69rem;
  }
}

.page-recruit__sidebar {
  display: none;
}
@media screen and (min-width: 768px) {
  .page-recruit__sidebar {
    display: block;
    position: sticky;
    z-index: 2;
    top: 200px;
    width: 200px;
    padding-bottom: 6.5rem;
    margin-top: 5.625rem;
  }
}
@media screen and (min-width: 1440px) {
  .page-recruit__sidebar {
    width: 410px;
  }
}

.page-recruit__sidebar ul {
  width: 230px;
  width: 14.375rem;
  margin-inline: auto;
}

.page-recruit__sidebar ul li:not(:last-child) {
  border-bottom: none;
}

.page-recruit__sidebar ul li a {
  display: inline-block;
  width: 100%;
  color: #B8B8B8;
  font-size: 20px;
  font-size: 1.25rem;
  padding: 10px 35px;
  padding: 0.625rem 2.1875rem;
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.page-recruit__sidebar ul li a:hover {
  opacity: 1;
  color: #4b4b4b;
}

.page-recruit__sidebar ul li a.active {
  color: #000;
  padding: 10px 35px;
  padding: 0.625rem 2.1875rem;
  font-weight: 600;
}

.page-recruit__sidebar ul li a.active:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background-color: #199;
  top: 44%;
  left: 10px;
  border-radius: 10px;
}
@media screen and (min-width: 1440px) {
  .page-recruit__sidebar ul li a.active:before {
    width: 10px;
    height: 10px;
  }
}

.page-recruit__items {
  padding-right: 20px;
  padding-left: 20px;
  max-width: 500px;
  margin-inline: auto;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .page-recruit__items {
    padding-right: 7vw;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
}

.page-recruit__personalty-image {
  aspect-ratio: 840/4718;
  max-width: 100%;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .page-recruit__personalty-image {
    aspect-ratio: 1222/1114;
    max-width: 59rem;
  }
}

.page-recruit__personalty-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-recruit__recruitment {
  padding-top: 100px;
  padding-top: 6.25rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .page-recruit__recruitment {
    padding-top: 15.5625rem;
    padding-bottom: 9.25rem;
  }
}

.tab__container {
  margin-inline: auto;
  margin-top: 40px;
}

.tab__items {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.tab__item {
  padding-top: 18px;
  padding-top: 1.125rem;
  padding-bottom: 18px;
  padding-bottom: 1.125rem;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5;
  text-align: center;
  font-weight: bold;
  max-width: 375px;
  max-width: 23.4375rem;
  width: 100%;
  background: #DCE9ED;
  border-radius: 25px 25px 0px 0px;
  border-bottom: 2px solid #000;
  margin-bottom: -2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
@media screen and (min-width: 768px) {
  .tab__item {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
    font-size: 1.375rem;
  }
}

.tab__item.active {
  background-color: #fff;
  color: #000;
  border: 2px solid #000;
  border-bottom: none;
}

.tab__item .dot {
  display: none;
}

.tab__item.active .dot {
  display: inline-block;
  margin-right: 10px;
  margin-right: 0.625rem;
  color: #5DCCFF;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.2;
}

.tab__item .line {
  display: none;
  width: 90%;
  margin-inline: auto;
  background-color: #5DCCFF;
  height: 5px;
  height: 0.3125rem;
  border-radius: 10px;
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.tab__item.active .line {
  display: block;
}

.panel__item {
  display: none;
  text-align: center;
}

.panel__item.active {
  display: block;
}

.panel__title {
  font-size: 20px;
  font-size: 1.25rem;
  border-left: 8px solid #009CFF;
  padding: 5px 0;
  padding: 0.3125rem 0;
  padding-left: 18px;
  padding-left: 1.125rem;
  text-align: left;
  margin-top: 39px;
  margin-top: 2.4375rem;
  margin-left: 10px;
  margin-left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .panel__title {
    font-size: 1.5625rem;
    margin-top: 3.6875rem;
    margin-left: 1.875rem;
    border-left: 12px solid #009CFF;
  }
}

.panel__table {
  margin-top: 34px;
  margin-top: 2.125rem;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.panel__table tr:nth-child(odd) {
  background-color: #fff;
}

.panel__table tr:nth-child(even) {
  background-color: #F2FBFF;
}

.panel__table th {
  padding: 15px;
  padding: 0.9375rem;
  text-align: left;
  width: 30%;
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .panel__table th {
    padding: 1.4375rem;
    font-size: 1.0625rem;
    padding-left: 6.625rem;
    width: 35%;
  }
}

.panel__table td {
  padding: 15px 0;
  padding: 0.9375rem 0;
  text-align: left;
  width: 70%;
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .panel__table td {
    padding: 1.4375rem 0;
    font-size: 1.0625rem;
    width: 65%;
  }
}

.page-recruit__treat {
  display: block;
  width: 100%;
  position: relative;
}

.page-recruit__treat:before {
  position: absolute;
  content: "";
  top: 5%;
  right: 0;
  width: 100px;
  width: 6.25rem;
  height: 300px;
  height: 18.75rem;
  background-image: url(../images/common/treat23.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .page-recruit__treat:before {
    top: 5%;
    width: 11rem;
    right: 1.25rem;
    height: 27.75rem;
  }
}

@media screen and (min-width: 768px) {
  .page-recruit__recruitment-wrap {
    max-width: 909px;
  }
}
@media screen and (min-width: 1920px) {
  .page-recruit__recruitment-wrap {
    max-width: 100%;
  }
}

.page-title__sub {
  font-size: 17px;
  font-size: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .page-title__sub {
    font-size: 1.25rem;
  }
}

.page-title__main {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.03em;
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  margin-top: 6px;
  margin-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .page-title__main {
    font-size: 3.75rem;
    margin-top: 0.625rem;
  }
}

.pagetop {
  width: 35px;
  width: 2.1875rem;
  height: 35px;
  height: 2.1875rem;
  position: fixed;
  bottom: 76px;
  bottom: 4.75rem;
  right: 20px;
  right: 1.25rem;
  z-index: 99;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .pagetop {
    bottom: 1.875rem;
    right: 7rem;
    width: 3.125rem;
    height: 3.125rem;
  }
}
@media screen and (min-width: 1920px) {
  .pagetop {
    right: 12rem;
  }
}

.pagetop:hover {
  opacity: 0.7;
}

.play-slider {
  margin-top: 50px;
  margin-top: 3.125rem;
  margin-bottom: 212px;
  margin-bottom: 13.25rem;
}
@media screen and (min-width: 768px) {
  .play-slider {
    margin-top: 9.1875rem;
  }
}

.play-slider__wrap {
  margin-top: 71px;
  margin-top: 4.4375rem;
  position: relative;
}

.play-slider__head {
  margin-inline: auto;
  width: 90%;
}
@media screen and (min-width: 768px) {
  .play-slider__head {
    width: 40%;
  }
}

.play__slider {
  width: 90%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .play__slider {
    width: 100%;
    margin: 0;
  }
}

.play-slider__wrap .swiper-button-next03,
.play-slider__wrap .swiper-button-prev03 {
  top: 118% !important;
}
@media screen and (min-width: 768px) {
  .play-slider__wrap .swiper-button-next03,
  .play-slider__wrap .swiper-button-prev03 {
    top: 123.5% !important;
  }
}

/* 前への矢印 */
.play-slider__wrap .swiper-button-prev {
  left: 13%;
}
@media screen and (min-width: 768px) {
  .play-slider__wrap .swiper-button-prev {
    left: 37% !important;
  }
}

/* 次への矢印 */
.play-slider__wrap .swiper-button-next {
  left: 72%;
}
@media screen and (min-width: 768px) {
  .play-slider__wrap .swiper-button-next {
    left: 59% !important;
  }
}

.play-slider__wrap .swiper-pagination03 {
  top: 121%;
  left: 50%;
}
@media screen and (min-width: 768px) {
  .play-slider__wrap .swiper-pagination03 {
    top: 124.5% !important;
  }
}

.privacy {
  background-color: #F2FBFF;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .privacy {
    padding-bottom: 12.5rem;
  }
}

.privacy:before {
  position: absolute;
  content: "";
  background-image: url(../images/common/treat06.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  top: 0;
  right: 0;
  width: 80px;
  width: 5rem;
  height: 200px;
  height: 12.5rem;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .privacy:before {
    width: 14.75rem;
    height: 36.9375rem;
  }
}

.privacy:after {
  position: absolute;
  content: "";
  background-image: url(../images/common/treat07.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  top: 40%;
  left: -60px;
  width: 84px;
  width: 5.25rem;
  height: 331px;
  height: 20.6875rem;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .privacy:after {
    width: 17.75rem;
    height: 70.6875rem;
  }
}

.inner.privacy__inner {
  max-width: 1100px;
}

.privacy__wrap {
  position: relative;
  z-index: 10;
}

.privacy__wrap h2 {
  text-align: center;
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 3.7428571429;
}
@media screen and (min-width: 768px) {
  .privacy__wrap h2 {
    font-size: 2.1875rem;
  }
}

.privacy__intro {
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-align: center;
  margin-top: 25px;
  margin-top: 1.5625rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .privacy__intro {
    font-size: 1.125rem;
    margin-top: 2.8125rem;
  }
}

.privacy__lists {
  margin-top: 32px;
  margin-top: 2rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .privacy__lists {
    margin-top: 3.875rem;
  }
}

.privacy__lists li {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .privacy__lists li {
    font-size: 1.5625rem;
  }
}

.privacy__lists li:not(:first-child) {
  margin-top: 31px;
  margin-top: 1.9375rem;
}
@media screen and (min-width: 768px) {
  .privacy__lists li:not(:first-child) {
    margin-top: 4.4375rem;
  }
}

.privacy__lists li > p {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.3333333333;
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.privacy__treat {
  position: relative;
  display: block;
  width: 100%;
}

.privacy__treat:before {
  position: absolute;
  content: "";
  background-image: url(../images/common/treat08.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  top: 0;
  right: 0;
  width: 83px;
  width: 5.1875rem;
  height: 251px;
  height: 15.6875rem;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .privacy__treat:before {
    width: 13.3125rem;
    height: 34.4375rem;
    right: 40px;
  }
}

.privacy__contact {
  line-height: 1.7;
}

.privacy__link {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: inline-block;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
  border-bottom: 1px solid;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.privacy__link:hover {
  color: #009CFF;
}

.qa {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 100%;
  margin-top: 40px;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .qa {
    width: 56.25rem;
  }
}
@media screen and (min-width: 1920px) {
  .qa {
    width: 81.25rem;
  }
}

.qa__item:last-child {
  border-bottom: 1px solid #009CFF;
}

.qa__head {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  gap: 0.625rem;
  padding: 24px 10px;
  padding: 1.5rem 0.625rem;
  border-top: 1px solid #009CFF;
}
@media screen and (min-width: 768px) {
  .qa__head {
    padding: 2.75rem 1.875rem;
  }
}

.qa__text {
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 1.2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 11px;
  gap: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .qa__text {
    font-size: 1.5625rem;
    gap: 2.5625rem;
  }
}

.qa__text p {
  width: 100%;
}

.qa__answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 11px;
  gap: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .qa__answer {
    gap: 2.5625rem;
  }
}

.qa__answer p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.35;
  font-weight: 500;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .qa__answer p {
    font-size: 1.25rem;
  }
}

.qa__q {
  display: inline-block;
  width: 10%;
}
@media screen and (min-width: 768px) {
  .qa__q {
    width: 29px;
  }
}
@media screen and (min-width: 1440px) {
  .qa__q {
    width: 45px;
  }
}
@media screen and (min-width: 1920px) {
  .qa__q {
    width: 47px;
  }
}

.qa__a {
  display: inline-block;
  width: 9%;
}
@media screen and (min-width: 768px) {
  .qa__a {
    width: 5%;
  }
}
@media screen and (min-width: 1920px) {
  .qa__a {
    width: 3.5%;
  }
}

/* アコーディオンアイコン */
.qa__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  width: 25px;
  width: 1.5625rem;
  height: 25px;
  height: 1.5625rem;
  background-image: url("../images/common/close-btn.png"); /* プラスアイコンの画像パス */
  background-size: cover;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
@media screen and (min-width: 768px) {
  .qa__icon {
    width: 2.6875rem;
    height: 2.6875rem;
  }
}

/* アコーディオンが開いた時のスタイル */
.qa__item[open] .qa__icon {
  background-image: url("../images/common/open-btn.png"); /* マイナスアイコンの画像パス */
}

.qa__container {
  overflow: hidden;
  padding: 18px 10px;
  padding: 1.125rem 0.625rem;
  border-top: 1px solid #BCE5FF;
}
@media screen and (min-width: 768px) {
  .qa__container {
    padding: 1.75rem 1.875rem;
  }
}

/* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
summary {
  display: block;
}

/* Safariで表示されるデフォルトの三角形アイコンを消します */
summary::-webkit-details-marker {
  display: none;
}

.schedule__slider {
  width: 100%;
  margin: 0;
  margin-bottom: 100px;
  margin-bottom: 6.25rem;
  padding: 20px;
  padding: 1.25rem;
}

@media screen and (min-width: 768px) {
  .schedule__card {
    max-width: 17.5rem;
    position: relative;
    min-height: 20.75rem;
  }
}

@media screen and (min-width: 768px) {
  .schedule__card:after {
    position: absolute;
    content: "";
    top: 50%;
    right: -30px;
    border-style: solid;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 20px solid #00B9FF;
    border-right: 0;
  }
}
@media screen and (min-width: 1920px) {
  .schedule__card:after {
    right: -40px;
  }
}

.schedule__image {
  aspect-ratio: 280/200;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .schedule__image {
    max-width: 17.5rem;
  }
}

.schedule__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.schedule__text {
  margin-top: 22px;
  margin-top: 1.375rem;
}

.schedule__name {
  background-color: #fff;
  -webkit-box-shadow: 2px 2px 10px #AED6FF;
          box-shadow: 2px 2px 10px #AED6FF;
  color: #009CFF;
  font-size: 18px;
  font-size: 1.125rem;
  padding: 8px 15px;
  padding: 0.5rem 0.9375rem;
  border-radius: 5px;
  display: inline-block;
  position: relative;
}

.schedule__name:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 39%;
  border: 10px solid transparent;
  border-top-color: #fff;
  width: 5px;
  width: 0.3125rem;
  height: 5px;
  height: 0.3125rem;
}

.schedule__desc {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  margin-top: 12px;
  margin-top: 0.75rem;
}

.schedule .swiper-button-next02,
.schedule .swiper-button-prev02 {
  top: 53.3% !important;
}
@media screen and (min-width: 768px) {
  .schedule .swiper-button-next02,
  .schedule .swiper-button-prev02 {
    top: 58.5% !important;
  }
}
@media screen and (min-width: 1440px) {
  .schedule .swiper-button-next02,
  .schedule .swiper-button-prev02 {
    top: 58.7% !important;
  }
}
@media screen and (min-width: 1920px) {
  .schedule .swiper-button-next02,
  .schedule .swiper-button-prev02 {
    top: 53.7% !important;
  }
}
@media screen and (min-width: 2560px) {
  .schedule .swiper-button-next02,
  .schedule .swiper-button-prev02 {
    top: 45.7% !important;
  }
}

/* 前への矢印 */
.schedule .swiper-button-prev {
  left: 25px;
  left: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .schedule .swiper-button-prev {
    left: 13% !important;
  }
}

/* 次への矢印 */
.schedule .swiper-button-next {
  left: 85px;
  left: 5.3125rem;
}
@media screen and (min-width: 768px) {
  .schedule .swiper-button-next {
    left: 20% !important;
  }
}
@media screen and (min-width: 2560px) {
  .schedule .swiper-button-next {
    left: 18% !important;
  }
}

.schedule .swiper-pagination02 {
  top: 53.5%;
  left: 63%;
}
@media screen and (min-width: 768px) {
  .schedule .swiper-pagination02 {
    top: 58.6%;
    left: 33%;
  }
}
@media screen and (min-width: 1440px) {
  .schedule .swiper-pagination02 {
    top: 59%;
    left: 33%;
  }
}
@media screen and (min-width: 1920px) {
  .schedule .swiper-pagination02 {
    top: 54%;
    left: 33%;
  }
}
@media screen and (min-width: 2560px) {
  .schedule .swiper-pagination02 {
    top: 46%;
    left: 28%;
  }
}

.side {
  display: none;
}
@media screen and (min-width: 768px) {
  .side {
    background-color: #00B9FF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: fixed;
    width: 5vw;
    right: 0;
    top: 0;
    height: 100vh;
    padding: 1.9375rem 1.25rem;
    z-index: 99999;
  }
}

.side img {
  aspect-ratio: 1/1;
  width: 55px;
  width: 3.4375rem;
}

.contact-link .contact-icon {
  content: url("../images/common/sidebar-mail.png");
}

.contact-link:hover .contact-icon {
  content: url("../images/common/sidebar-mail-hover.png");
}

.entry-link .entry-icon {
  content: url("../images/common/sidebar-icon.png");
}

.entry-link:hover .entry-icon {
  content: url("../images/common/sidebar-icon-hover.png");
}

.side a {
  text-transform: uppercase;
  color: #fff;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 23px;
  gap: 1.4375rem;
  border-bottom: 1px solid #fff;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.side a:hover {
  opacity: 1;
  color: #16556d;
}

.side a:nth-child(2) {
  padding-top: 27px;
  padding-top: 1.6875rem;
}

.side small {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 23px;
  margin-top: 1.4375rem;
  font-weight: 400;
  font-size: 10px;
  font-size: 0.625rem;
}

/*スマホ*/
.side-sp {
  background-color: #00B9FF;
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 2%;
  z-index: 99999999;
}
@media screen and (min-width: 768px) {
  .side-sp {
    display: none;
  }
}

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

.side-sp a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50%;
  gap: 20px;
  gap: 1.25rem;
}

.side-sp a > p {
  text-transform: uppercase;
  color: #fff;
}

.side-sp img {
  width: 40px;
  width: 2.5rem;
}

.side-sp small {
  font-size: 10px;
  font-size: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  margin-top: 8px;
  margin-top: 0.5rem;
}

.single-interview {
  background-color: #F2FBFF;
  position: relative;
}

.single-interview:before {
  position: absolute;
  content: "";
  top: 100px;
  top: 6.25rem;
  left: -30px;
  left: -1.875rem;
  width: 70px;
  width: 4.375rem;
  height: 300px;
  height: 18.75rem;
  background-image: url(../images/common/treat17.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .single-interview:before {
    width: 17rem;
    height: 49.5625rem;
    left: -2.5rem;
  }
}

.single-interview:after {
  position: absolute;
  content: "";
  top: 35%;
  right: 0;
  width: 38px;
  width: 2.375rem;
  height: 140px;
  height: 8.75rem;
  background-image: url(../images/common/treat18.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .single-interview:after {
    width: 9.25rem;
    height: 34.3125rem;
    right: 3.125rem;
  }
}

.single-interview-layout {
  padding-top: 45px;
  padding-top: 2.8125rem;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}
@media screen and (min-width: 768px) {
  .single-interview-layout {
    padding-top: 5.9375rem;
    padding-bottom: 7.5rem;
  }
}

@media screen and (min-width: 768px) {
  .inner.single-interview__inner {
    max-width: 1100px;
  }
}

.single-interview__content {
  position: relative;
  z-index: 2;
  margin-top: 51px;
  margin-top: 3.1875rem;
}

.single-interview__image {
  aspect-ratio: 918/542;
  max-width: 918px;
  max-width: 57.375rem;
  -webkit-box-shadow: 10px 10px 0px 0 rgb(215, 242, 255);
          box-shadow: 10px 10px 0px 0 rgb(215, 242, 255);
}

.single-interview__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 10%;
     object-position: 50% 10%;
}

.single-interview__desc {
  padding: 25px;
  padding: 1.5625rem;
  background-color: #fff;
  -webkit-box-shadow: 10px 10px 0px 0 rgb(215, 242, 255);
          box-shadow: 10px 10px 0px 0 rgb(215, 242, 255);
  max-width: 580px;
  max-width: 36.25rem;
  width: 100%;
  position: absolute;
  content: "";
  bottom: -160px;
  bottom: -10rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .single-interview__desc {
    padding: 2.1875rem;
    padding-left: 4.0625rem;
    bottom: -7.5rem;
    left: 67%;
  }
}
@media screen and (min-width: 1440px) {
  .single-interview__desc {
    left: 77%;
  }
}

.desc__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 22px;
  gap: 1.375rem;
}

.desc__in {
  font-size: 13px;
  font-size: 0.8125rem;
  color: #fff;
  background-color: #009CFF;
  padding: 2px 0;
  padding: 0.125rem 0;
  border-radius: 3.125rem;
  width: 90px;
  width: 5.625rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .desc__in {
    font-size: 1.0625rem;
  }
}

.desc__time {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .desc__time {
    font-size: 1.125rem;
  }
}

.desc__name {
  font-size: 18px;
  font-size: 1.125rem;
  margin-top: 14px;
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .desc__name {
    font-size: 1.5625rem;
    margin-top: 1.5rem;
  }
}

.desc__tag {
  font-size: 16px;
  font-size: 1rem;
  margin-top: 4px;
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .desc__tag {
    font-size: 1.25rem;
    margin-top: 0.5625rem;
  }
}

.desc__stay {
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 14px;
  margin-top: 0.875rem;
  margin-left: 5px;
  margin-left: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .desc__stay {
    font-size: 1.125rem;
    margin-top: 1.5rem;
  }
}

.desc__stay span {
  color: #009CFF;
  display: inline-block;
  margin-right: 22px;
  margin-right: 1.375rem;
}

.single-interview__lists {
  margin-top: 200px;
  margin-top: 12.5rem;
  position: relative;
  z-index: 2;
}

.single-interview__lists:after {
  position: absolute;
  content: "";
  bottom: -100px;
  bottom: -6.25rem;
  right: 0;
  width: 89px;
  width: 5.5625rem;
  height: 300px;
  height: 18.75rem;
  background-image: url(../images/common/treat19.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .single-interview__lists:after {
    width: 19.6875rem;
    height: 70.375rem;
    right: 3.125rem;
    bottom: -25rem;
  }
}

.single-interview__list:not(:first-child) {
  margin-top: 49px;
  margin-top: 3.0625rem;
}
@media screen and (min-width: 768px) {
  .single-interview__list:not(:first-child) {
    margin-top: 9.3125rem;
  }
}

.single-interview__question {
  color: #009CFF;
  font-size: 14px;
  font-size: 0.875rem;
  background-color: #fff;
  border-radius: 0 20px 20px 0;
  height: 30px;
  height: 1.875rem;
  padding: 4px 0;
  padding: 0.25rem 0;
  padding-right: 4px;
  padding-right: 0.25rem;
  padding-top: 8px;
  padding-top: 0.5rem;
  text-align: right;
  line-height: 1;
  width: 66vw;
}
@media screen and (min-width: 600px) {
  .single-interview__question {
    width: 43vw;
  }
}
@media screen and (min-width: 768px) {
  .single-interview__question {
    font-size: 1.25rem;
    height: 2.5rem;
    padding: 0.5rem 0;
    padding-right: 0.5rem;
    width: 30vw;
  }
}
@media screen and (min-width: 1440px) {
  .single-interview__question {
    width: 36vw;
  }
}
@media screen and (min-width: 1920px) {
  .single-interview__question {
    width: 40vw;
  }
}

.single-interview__list:nth-child(2) .single-interview__question {
  width: 80.5vw;
}
@media screen and (min-width: 600px) {
  .single-interview__list:nth-child(2) .single-interview__question {
    width: 50vw;
  }
}
@media screen and (min-width: 768px) {
  .single-interview__list:nth-child(2) .single-interview__question {
    width: 36vw;
  }
}
@media screen and (min-width: 1440px) {
  .single-interview__list:nth-child(2) .single-interview__question {
    width: 41vw;
  }
}
@media screen and (min-width: 1920px) {
  .single-interview__list:nth-child(2) .single-interview__question {
    width: 44vw;
  }
}

.single-interview__list:nth-child(3) .single-interview__question {
  width: 80.5vw;
}
@media screen and (min-width: 600px) {
  .single-interview__list:nth-child(3) .single-interview__question {
    width: 50vw;
  }
}
@media screen and (min-width: 768px) {
  .single-interview__list:nth-child(3) .single-interview__question {
    width: 36vw;
  }
}
@media screen and (min-width: 1440px) {
  .single-interview__list:nth-child(3) .single-interview__question {
    width: 41vw;
  }
}
@media screen and (min-width: 1920px) {
  .single-interview__list:nth-child(3) .single-interview__question {
    width: 44vw;
  }
}

@media screen and (min-width: 600px) {
  .single-interview__list:nth-child(4) .single-interview__question {
    width: 43vw;
  }
}
@media screen and (min-width: 768px) {
  .single-interview__list:nth-child(4) .single-interview__question {
    width: 30vw;
  }
}
@media screen and (min-width: 1440px) {
  .single-interview__list:nth-child(4) .single-interview__question {
    width: 36vw;
  }
}
@media screen and (min-width: 1920px) {
  .single-interview__list:nth-child(4) .single-interview__question {
    width: 40vw;
  }
}

.single-interview__list:nth-child(5) .single-interview__question {
  width: 88vw;
}
@media screen and (min-width: 600px) {
  .single-interview__list:nth-child(5) .single-interview__question {
    width: 54vw;
  }
}
@media screen and (min-width: 768px) {
  .single-interview__list:nth-child(5) .single-interview__question {
    width: 39vw;
  }
}
@media screen and (min-width: 1440px) {
  .single-interview__list:nth-child(5) .single-interview__question {
    width: 44vw;
  }
}
@media screen and (min-width: 1920px) {
  .single-interview__list:nth-child(5) .single-interview__question {
    width: 46vw;
  }
}

.single-interview__list:nth-child(6) .single-interview__question {
  width: 88vw;
}
@media screen and (min-width: 600px) {
  .single-interview__list:nth-child(6) .single-interview__question {
    width: 54vw;
  }
}
@media screen and (min-width: 768px) {
  .single-interview__list:nth-child(6) .single-interview__question {
    width: 39vw;
  }
}
@media screen and (min-width: 1440px) {
  .single-interview__list:nth-child(6) .single-interview__question {
    width: 44vw;
  }
}
@media screen and (min-width: 1920px) {
  .single-interview__list:nth-child(6) .single-interview__question {
    width: 46vw;
  }
}

.single-interview__list:nth-child(7) .single-interview__question {
  width: 84vw;
}
@media screen and (min-width: 600px) {
  .single-interview__list:nth-child(7) .single-interview__question {
    width: 52vw;
  }
}
@media screen and (min-width: 768px) {
  .single-interview__list:nth-child(7) .single-interview__question {
    width: 37vw;
  }
}
@media screen and (min-width: 1440px) {
  .single-interview__list:nth-child(7) .single-interview__question {
    width: 42.5vw;
  }
}
@media screen and (min-width: 1920px) {
  .single-interview__list:nth-child(7) .single-interview__question {
    width: 45vw;
  }
}

.single-interview__answer {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-top: 13px;
  margin-top: 0.8125rem;
  padding: 0 20px;
  max-width: 700px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 426px) {
  .single-interview__answer {
    width: 78vw;
  }
}
@media screen and (min-width: 600px) {
  .single-interview__answer {
    width: 78vw;
  }
}
@media screen and (min-width: 768px) {
  .single-interview__answer {
    font-size: 1.25rem;
    margin-top: 2.0625rem;
    margin-left: 4.5vw;
    padding: 0;
    padding-right: 7vw;
    max-width: 100%;
  }
}
@media screen and (min-width: 1440px) {
  .single-interview__answer {
    margin-left: 13vw;
  }
}
@media screen and (min-width: 1920px) {
  .single-interview__answer {
    margin-left: 23vw;
  }
}

.single-interview__btn {
  text-align: center;
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .single-interview__btn {
    margin-top: 15.625rem;
  }
}

.single-interview__btn a {
  display: inline-block;
  padding: 19px 10px;
  padding: 1.1875rem 0.625rem;
  width: 180px;
  width: 11.25rem;
  color: #009CFF;
  border: 1px solid #1DAFFE;
  font-size: 16px;
  font-size: 1rem;
  padding: 7px 10px;
  white-space: nowrap;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  text-align: center;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .single-interview__btn a {
    padding: 0.875rem 0.625rem;
    font-size: 1.625rem;
    width: 17.5rem;
  }
}

.single-interview__btn a:hover {
  color: #fff;
  background-color: #009CFF;
}

#nav {
  z-index: 1;
  top: 100px;
  left: 20px;
  position: fixed;
  background: #fff;
  list-style: none;
  border: 2px solid #FFFFFF;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
}

#nav li a {
  color: #000000;
  font-weight: bold;
  text-decoration: none;
  width: 140px;
  display: block;
  padding: 10px;
  text-align: center;
}

#article {
  width: 800px;
  margin: 0 auto;
}

div.section {
  background: #fff;
  padding: 20px;
  height: 1000px;
  margin-bottom: 20px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
}

div.section h2 {
  font-size: 230%;
}

.title {
  font-size: 35px;
  font-size: 2.1875rem;
  letter-spacing: 0.03em;
  font-family: "Lato", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .title {
    font-size: 3.125rem;
    line-height: 1.2;
  }
}

.title span {
  font-size: 18px;
  font-size: 1.125rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .title span {
    font-size: 1.625rem;
    line-height: 1.1923076923;
  }
}

.title.center {
  text-align: center;
}

.title.left {
  text-align: left;
}

.treatment {
  background-color: #F2FBFF;
  padding-top: 304px;
  padding-top: 19rem;
}
@media screen and (min-width: 768px) {
  .treatment {
    padding-top: 20.6875rem;
  }
}

@media screen and (min-width: 768px) {
  .inner.treatment__inner {
    max-width: 1100px;
    padding-right: 7vw;
  }
}
@media screen and (min-width: 1440px) {
  .inner.treatment__inner {
    padding-right: 25px;
  }
}

.treatment__lists {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  -webkit-column-gap: 1.375rem;
     -moz-column-gap: 1.375rem;
          column-gap: 1.375rem;
  row-gap: 10px;
  row-gap: 0.625rem;
  margin-top: 47px;
  margin-top: 2.9375rem;
  position: relative;
  z-index: 4;
}
@media screen and (min-width: 768px) {
  .treatment__lists {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
    row-gap: 1.875rem;
  }
}

.treatment__lists:before {
  display: none;
}
@media screen and (min-width: 768px) {
  .treatment__lists:before {
    display: block;
    position: absolute;
    content: "";
    background-image: url(../images/common/treat44.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 17.3125rem;
    height: 47.4375rem;
    top: 0;
    right: 0;
    z-index: -1;
    width: 9.6875rem;
    height: 24.125rem;
    right: -4rem;
  }
}
@media screen and (min-width: 1440px) {
  .treatment__lists:before {
    right: -10rem;
  }
}
@media screen and (min-width: 1920px) {
  .treatment__lists:before {
    right: -22rem;
  }
}

.treatment__list {
  background-image: url(../images/welfare/treatment-back.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  gap: 1rem;
  border-radius: 8px;
  height: 50px;
}
@media screen and (min-width: 768px) {
  .treatment__list {
    height: 80px;
    gap: 2.25rem;
  }
}

.treatment__icon {
  aspect-ratio: 95/73;
  height: 50px;
}
@media screen and (min-width: 768px) {
  .treatment__icon {
    height: 80px;
  }
}

.treatment__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.treatment__text {
  width: 80%;
  color: #fff;
  letter-spacing: 0.03em;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.1923076923;
}
@media screen and (min-width: 768px) {
  .treatment__text {
    font-size: 1.625rem;
  }
}

.treatment__list:last-child .treatment__text {
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .treatment__list:last-child .treatment__text {
    font-size: 1rem;
  }
}

.under-fv {
  background-color: #F2FBFF;
  position: relative;
  z-index: 0;
}

.under-fv__content {
  position: absolute;
  content: "";
  top: 33%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 23px;
  gap: 1.4375rem;
}
@media screen and (min-width: 768px) {
  .under-fv__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
    width: 70%;
    margin-inline: auto;
    top: 45%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    left: 50%;
  }
}

.under-fv__content h1 {
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .under-fv__content h1 {
    font-size: 2.6875rem;
  }
}

.breadcrumb {
  font-size: 10px;
  font-size: 0.625rem;
  color: #fff;
  border-radius: 22.5px;
  background: -webkit-gradient(linear, right top, left top, from(#ffd700), color-stop(26.43%, #ffbd00), color-stop(44.91%, #fa0), to(#ff8000));
  background: linear-gradient(to left, #ffd700 0%, #ffbd00 26.43%, #fa0 44.91%, #ff8000 100%);
  -webkit-box-shadow: 4px 4px 10px rgba(142, 142, 142, .66);
          box-shadow: 4px 4px 10px rgba(142, 142, 142, .66);
  border-radius: 50px;
  padding: 5px;
  padding: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .breadcrumb {
    font-size: 1rem;
    padding: 1% 2%;
  }
}

.breadcrumb span {
  padding: 0 5px;
  padding: 0 0.3125rem;
}

.breadcrumb a {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.breadcrumb a:hover {
  opacity: 1;
  color: #753d05;
}

.under-fv-interview .under-fv__content {
  left: 30%;
}
@media screen and (min-width: 768px) {
  .under-fv-interview .under-fv__content {
    left: 50%;
  }
}

.under-fv-interview .breadcrumb {
  width: 160px;
}
@media screen and (min-width: 768px) {
  .under-fv-interview .breadcrumb {
    width: 267px;
  }
}

.under-fv-recruit .under-fv__content {
  left: 25%;
}
@media screen and (min-width: 768px) {
  .under-fv-recruit .under-fv__content {
    left: 50%;
  }
}

.under-fv-privacy .under-fv__content {
  left: 36%;
}
@media screen and (min-width: 768px) {
  .under-fv-privacy .under-fv__content {
    left: 50%;
  }
}

.under-fv-privacy .breadcrumb {
  width: 178px;
}
@media screen and (min-width: 768px) {
  .under-fv-privacy .breadcrumb {
    width: 18.3125rem;
  }
}

.under-fv-feature .under-fv__content {
  left: 30%;
}
@media screen and (min-width: 768px) {
  .under-fv-feature .under-fv__content {
    left: 50%;
  }
}

.under-fv-feature .breadcrumb {
  width: 148px;
  width: 9.25rem;
}
@media screen and (min-width: 768px) {
  .under-fv-feature .breadcrumb {
    width: 15.3125rem;
  }
}

.under-fv-number .under-fv__content {
  left: 36%;
}
@media screen and (min-width: 768px) {
  .under-fv-number .under-fv__content {
    left: 50%;
  }
}

.under-fv-number .breadcrumb {
  width: 176px;
  width: 11rem;
}
@media screen and (min-width: 768px) {
  .under-fv-number .breadcrumb {
    width: 17.3125rem;
  }
}

.welfare {
  background-color: #F2FBFF;
  padding-top: 80px;
  padding-top: 5rem;
}
@media screen and (min-width: 768px) {
  .welfare {
    padding-top: 8.6875rem;
  }
}

.event {
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}

@media screen and (min-width: 768px) {
  .inner.welfare__inner {
    max-width: 1100px;
    padding-right: 7vw;
  }
}
@media screen and (min-width: 1440px) {
  .inner.welfare__inner {
    padding-right: 25px;
  }
}

.welfare__wrap {
  position: relative;
  z-index: 4;
}

@media screen and (min-width: 768px) {
  .welfare__titleBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2.0625rem;
  }
}

.welfare__desc {
  font-size: 17px;
  font-size: 1.0625rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .welfare__desc {
    margin-top: 2.5rem;
    font-size: 1.25rem;
  }
}

.welfare__textBox {
  background-color: #fff;
  margin-top: 30px;
  margin-top: 1.875rem;
  padding: 5%;
}
@media screen and (min-width: 768px) {
  .welfare__textBox {
    padding: 2.9375rem;
    margin-top: 2.6875rem;
  }
}

.welfare__textBox p {
  font-size: 15px;
  font-size: 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .welfare__textBox p {
    font-size: 1.25rem;
  }
}

.welfare__textBox p:not(:first-child) {
  margin-top: 3px;
  margin-top: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .welfare__textBox p:not(:first-child) {
    margin-top: 0.3125rem;
  }
}

.welfare__textBox span {
  color: #5DCCFF;
  font-size: 11px;
  font-size: 0.6875rem;
  display: inline-block;
  margin-right: 10px;
  margin-right: 0.625rem;
}

.welfare__image {
  margin-top: 30px;
  margin-top: 1.875rem;
  aspect-ratio: 1100/585;
}
@media screen and (min-width: 768px) {
  .welfare__image {
    margin-top: 3.625rem;
  }
}

.welfare__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.study {
  position: relative;
}

.study:before {
  position: absolute;
  content: "";
  background-image: url(../images/common/treat45.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 69px;
  width: 4.3125rem;
  height: 455px;
  height: 28.4375rem;
  top: 30%;
  left: -20px;
  left: -1.25rem;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .study:before {
    width: 16.375rem;
    height: 76.1875rem;
  }
}

.study:after {
  position: absolute;
  content: "";
  background-image: url(../images/common/treat47.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 53px;
  width: 3.3125rem;
  height: 167px;
  height: 10.4375rem;
  top: 0;
  right: 0;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .study:after {
    width: 10.875rem;
    height: 31.125rem;
    right: 3.875rem;
  }
}

.event {
  position: relative;
}

.event:after {
  position: absolute;
  content: "";
  background-image: url(../images/common/treat46.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 69px;
  width: 4.3125rem;
  height: 151px;
  height: 9.4375rem;
  bottom: 0;
  right: 0;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .event:after {
    width: 11.375rem;
    height: 22.25rem;
    right: 3.875rem;
  }
}

.what {
  margin-top: 47px;
  margin-top: 2.9375rem;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .what {
    margin-top: 4.1875rem;
  }
}

.what__first {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .what__first {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.what-item {
  background-color: #fff;
  -webkit-box-shadow: 5px 5px 8px rgba(144, 186, 211, .21);
          box-shadow: 5px 5px 8px rgba(144, 186, 211, .21);
  padding: 26px 20px;
  padding: 1.625rem 1.25rem;
}

.what-item p {
  font-size: 20px;
  font-size: 1.25rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .what-item p {
    font-size: 1.875rem;
  }
}

.big {
  font-size: 50px;
  font-size: 3.125rem;
  color: #00B9FF;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .big {
    font-size: 7.5rem;
  }
}

.small {
  font-size: 20px;
  font-size: 1.25rem;
}

.what__store img {
  width: 219px;
  width: 13.6875rem;
  margin-inline: auto;
  margin-top: 17px;
  margin-top: 1.0625rem;
}

.what__employee img {
  width: 113px;
  width: 7.0625rem;
  margin-inline: auto;
  margin-bottom: 19px;
  margin-bottom: 1.1875rem;
}

.what__halfway img {
  width: 137px;
  width: 8.5625rem;
  margin-inline: auto;
  margin-top: 16px;
  margin-top: 1rem;
}

.what__second {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .what__second {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .what__consultation {
    width: 31%;
  }
}

.what__consultation img {
  width: 219px;
  width: 13.6875rem;
  margin-inline: auto;
  margin-top: 17px;
  margin-top: 1.0625rem;
}

.what__vacation {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.what__consultation-small {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .what__consultation-small {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-left: 1.875rem;
    padding-right: 2.5rem;
    margin-top: 0;
  }
}

.what__consultation-small img {
  width: 113px;
  width: 7.0625rem;
  margin-inline: auto;
  margin-bottom: 17px;
  margin-bottom: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .what__consultation-small img {
    margin: 0;
  }
}

@media screen and (min-width: 768px) {
  .what__consultation-small:nth-child(2) {
    margin-top: 2.5rem;
  }
}

.what__consultation-small:nth-child(2) img {
  width: 108px;
  width: 6.75rem;
  margin-inline: auto;
  margin-top: 17px;
  margin-top: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .what__consultation-small:nth-child(2) img {
    margin: 0;
  }
}

.what__third {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .what__third {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2.5rem;
    margin-top: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .what__year {
    width: 62%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    gap: 1.25rem;
    padding: 6.5% 4%;
  }
}

.what__year-image {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .what__year-image {
    width: 60%;
    margin-top: 0;
  }
}

.what__time {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .what__time {
    margin-top: 0;
  }
}

.what__time img {
  width: 148px;
  width: 9.25rem;
  margin-inline: auto;
  margin-bottom: 17px;
  margin-bottom: 1.0625rem;
}

.what__force {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  gap: 1.875rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .what__force {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .what__test {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 1rem 0.625rem;
  }
}

.what__test img {
  width: 107px;
  width: 6.6875rem;
  margin-inline: auto;
  margin-top: 17px;
  margin-top: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .what__test img {
    width: 5.4375rem;
  }
}

@media screen and (min-width: 768px) {
  .what__marriage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.what__marriage img {
  width: 116px;
  width: 7.25rem;
  margin-inline: auto;
  margin-bottom: 17px;
  margin-bottom: 1.0625rem;
}

@media screen and (min-width: 768px) {
  .what__separation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.625rem;
  }
}

.what__separation img {
  width: 65px;
  width: 4.0625rem;
  margin-inline: auto;
  margin-top: 17px;
  margin-top: 1.0625rem;
}

.work {
  background-color: #F2FBFF;
  padding-top: 80px;
  padding-top: 5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .work {
    padding-top: 8.6875rem;
  }
}

.work:before {
  position: absolute;
  content: "";
  background-image: url(../images/common/treat43.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 21px;
  width: 1.3125rem;
  height: 263px;
  height: 16.4375rem;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .work:before {
    width: 17.3125rem;
    height: 47.4375rem;
    left: -1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .inner.work__inner {
    max-width: 1100px;
    padding-right: 7vw;
  }
}
@media screen and (min-width: 1440px) {
  .inner.work__inner {
    padding-right: 25px;
  }
}

.work__wrap {
  position: relative;
}

.work__wrap:before {
  position: absolute;
  content: "";
  bottom: -115%;
  right: -11.2px;
  right: -0.7rem;
  background-image: url(../images/welfare/work-back.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 345px;
  width: 21.5625rem;
  height: 240px;
  height: 15rem;
}
@media screen and (min-width: 768px) {
  .work__wrap:before {
    width: 45.5625rem;
    height: 21rem;
    bottom: -52%;
    right: -1.1875rem;
  }
}

.work__image {
  aspect-ratio: 861/501;
}
@media screen and (min-width: 768px) {
  .work__image {
    max-width: 53.8125rem;
    margin-right: auto;
  }
}

.work__textBox {
  background-color: #fff;
  position: absolute;
  content: "";
  top: 80%;
  right: 0;
}
@media screen and (min-width: 768px) {
  .work__textBox {
    max-width: 46.5625rem;
  }
}

.work__textBox h3 {
  font-size: 18px;
  font-size: 1.125rem;
  padding-top: 17px;
  padding-top: 1.0625rem;
  padding-left: 5%;
  padding-right: 5%;
}
@media screen and (min-width: 768px) {
  .work__textBox h3 {
    font-size: 2.5625rem;
    padding-top: 1.6875rem;
    padding-left: 5%;
    padding-right: 5%;
  }
}

.work__line {
  height: 2px;
  background: -webkit-gradient(linear, right top, left top, from(#7ff5ff), color-stop(37.53%, #6adafe), to(#0af));
  background: linear-gradient(to left, #7ff5ff 0%, #6adafe 37.53%, #0af 100%);
  display: block;
  width: 95%;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .work__line {
    height: 4px;
  }
}

.work__text {
  font-size: 14px;
  font-size: 0.875rem;
  padding-left: 5%;
  padding-right: 5%;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .work__text {
    font-size: 1.3125rem;
    padding-left: 5%;
    padding-right: 5%;
    margin-top: 1.875rem;
  }
}

.work__text:last-child {
  padding-bottom: 27px;
  padding-bottom: 1.6875rem;
}

.company-layout {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 600px) {
  .company-layout {
    margin-top: 5.625rem;
  }
}

.contact-layout {
  padding-top: 53px;
  padding-top: 3.3125rem;
  margin-top: 44px;
  margin-top: 2.75rem;
}
@media screen and (min-width: 768px) {
  .contact-layout {
    padding-top: 17.3125rem;
    margin-top: -14.25rem;
  }
}

.contact-layout--under {
  padding-top: 53px;
  padding-top: 3.3125rem;
  padding-top: 88px;
  padding-top: 5.5rem;
}
@media screen and (min-width: 768px) {
  .contact-layout--under {
    padding-top: 6.25rem;
  }
}

.features-layout {
  z-index: 1;
  position: relative;
}
@media screen and (min-width: 768px) {
  .features-layout {
    margin-top: -3.125rem;
  }
}

.interview-layout {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .interview-layout {
    margin-top: 3.75rem;
  }
}

.message-layout {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.news-content-layout {
  padding-top: 95px;
  padding-top: 5.9375rem;
}

.news-layout {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .news-layout {
    margin-top: 0;
  }
}

.number-layout {
  margin-top: -110px;
  margin-top: -6.875rem;
  z-index: 1;
  position: relative;
}
@media screen and (min-width: 768px) {
  .number-layout {
    margin-top: -14.375rem;
  }
}

.page-news-layout {
  padding-top: 55px;
  padding-top: 3.4375rem;
}
@media screen and (min-width: 768px) {
  .page-news-layout {
    padding-top: 5.9375rem;
  }
}

.privacy-layout {
  padding-top: 50px;
  padding-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .privacy-layout {
    padding-top: 6.25rem;
  }
}

.modal-container{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0,0,0,50%);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
  z-index: 2147483647;
}

.modal-container:before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.modal-container.active{
  opacity: 1;
  visibility: visible;
}

.modal-body{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 500px;
  width: 90%;
}

.modal-close{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -40px;
  right: -32px;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .modal-close{
    right: -40px;
  }
}

.modal-content{
  background: #fff;
  text-align: left;
  padding: 30px;
  border-radius:5px;
}

.modal-content .entry__btn{
  margin-top:0.75rem;
}
@media screen and (min-width: 768px) {
  .modal-content .entry__btn{
    margin-top: 2rem;
  }
}

.footer__inner {
  position: relative;
}
.footer_dolphins {
  position: absolute;
  top: 65px;
  left: 50%;
  transform: translateX(-50%);
}
.footer_grampus {
  position: absolute;
  top: 140px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}
.footer_dolphins img, .footer_grampus img {
  min-width: 210px;
}
@media(min-width:768px){
  .footer_dolphins {
    top: 65px;
    left: 50px;
    transform: unset;
}
  .footer_grampus {
    top: 125px;
    left: 50px;
    transform: unset;
}
.footer_dolphins img, .footer_grampus img {
  min-width:160px;
  width: 160px;
}
}
@media(min-width:1200px){
  .footer_dolphins {
    top: 90px;
    left: 30px;
    transform: unset;
}
  .footer_grampus {
    top: 90px;
    left: 220px;
    transform: unset;
}
}
.sp-nav__dolphins {
  width: 270px;
  margin: 40px auto 0;
}
.sp-nav__grampus{
  width: 270px;
  margin: 20px auto 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}
.sp-nav__dolphins img, .sp-nav__grampus img {
  min-width: 270px;
}
.message__logo {
  display: none;
  max-width: 450px;
  gap: 15px;
  position: absolute;
  top: 33rem;
  left: 8rem;
}
.message__logo img {
  max-width: 200px;
  aspect-ratio:1/1;
  border-radius: 5px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.features__image{
position:relative;
}
.features__logo {
  display:flex;
  max-width: 150px;
  gap: 15px;
  position: absolute;
  bottom: -4em;
  right: 2em;
  z-index: 1;
}
.features__logo img {
  max-width: 45px;
  aspect-ratio:1/1;
  border-radius: 5px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

@media (min-width:768px){
.message__logo {
  display:flex;
  top: 20rem;
  left: 3rem;
}
.message__logo img {
  max-width: 90px;
}
.features__logo {
  flex-direction:column;
  bottom: 3em;
  right: -6.5em;
}
.features__logo img{
max-width: 45px;
}
}
@media (min-width:1440px){
.message__logo {
  top: 23rem;
  left: 6rem;
}
.message__logo img {
  max-width: 120px;
}
.features__logo {
bottom: 4em;
right: -7em;
}
.features__logo img{
max-width: 80px;
}
}
@media (min-width:1920px){
.message__logo {
  top: 33rem;
  left: 8rem;
}
.message__logo img {
  max-width: 200px;
}
.features__logo {
bottom: 3em;
right: -10em;
}
.features__logo img{
max-width: 110px;
}
}


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