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

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

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

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4814814815vw;
  }
}
@media (min-width: 1080px) {
  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;
}

.base-button {
  display: inline-block;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  background-color: #E55723;
  color: #fff;
  padding: 17.5px 24px 17.5px 46px;
  padding: 1.09375rem 1.5rem 1.09375rem 2.875rem;
  border-radius: 25px;
  position: relative;
  width: 160px;
  width: 10rem;
}

.base-button::before {
  content: "";
  display: block;
  background-image: url(../images/common/mail-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 15%;
  width: 16px;
  width: 1rem;
  height: 12.8px;
  height: 0.8rem;
}

.base-button.base-button--recruit {
  color: #E55723;
  border: 1px solid #E55723;
  background-color: #fff;
  padding: 17.5px;
  padding: 1.09375rem;
  text-align: center;
}

.base-button.base-button--recruit::before,
.base-button.base-button--apply::before,
.base-button.base-button--confirmation::before {
  content: none;
}

.base-button.base-button--wide {
  width: 300px;
  width: 18.75rem;
  padding: 22.5px 94px 22.5px 116px;
  padding: 1.40625rem 5.875rem 1.40625rem 7.25rem;
  border-radius: 30px;
}

.base-button.base-button--wide::before {
  left: 31%;
}

.base-button.base-button--tell {
  width: 300px;
  width: 18.75rem;
  padding: 8px 68.4px 29px 86.6px;
  padding: 0.5rem 4.275rem 1.8125rem 5.4125rem;
  color: #E55723;
  border: 1px solid #E55723;
  background-color: #fff;
  font-size: 19px;
  font-size: 1.1875rem;
  font-family: "Poppins", sans-serif;
  border-radius: 30px;
  white-space: nowrap;
}

.base-button.base-button--tell::before {
  background-image: url(../images/common/tell-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top;
  top: 34%;
  left: 23%;
  width: 14.65px;
  width: 0.915625rem;
  height: 14.65px;
  height: 0.915625rem;
}

.base-button.base-button--tell span {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  position: absolute;
  bottom: 10.3px;
  left: 50%;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.base-button.base-button--tell.base-button--tell-header {
  width: 160px;
  width: 10rem;
  padding: 9px 15.8px 22px 31.2px;
  padding: 0.5625rem 0.9875rem 1.375rem 1.95rem;
  font-size: 16px;
  font-size: 1rem;
  border-radius: 25px;
  font-family: "Montserrat", sans-serif;
}

.base-button.base-button--tell.base-button--tell-header::before {
  top: 37%;
  left: 10%;
  width: 12.02px;
  width: 0.75125rem;
  height: 12.02px;
  height: 0.75125rem;
}

.base-button.base-button--tell.base-button--tell-header span {
  font-size: 10px;
  font-size: 0.625rem;
  bottom: 20%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
}

.base-button.base-button--apply {
  width: 100%;
  padding: 17.5px;
  padding: 1.09375rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .base-button.base-button--apply {
    max-width: 28.75rem;
    padding: 1rem;
    font-size: 1.125rem;
  }
}

.base-button.base-button--mail {
  width: 280px;
  width: 17.5rem;
  padding: 22.5px 47px 22.5px 68px;
  padding: 1.40625rem 2.9375rem 1.40625rem 4.25rem;
  border-radius: 30px;
}

.base-button.base-button--mail::before {
  left: 16%;
}

.base-button.base-button--tell-sub {
  width: 280px;
  width: 17.5rem;
  padding: 0px 0px 19px 26px;
  padding: 0rem 0rem 1.1875rem 1.625rem;
  background-color: transparent;
  font-size: 32px;
  font-size: 2rem;
  font-family: "Poppins", sans-serif;
  border-radius: 0;
}

.base-button.base-button--tell-sub::before {
  background-image: url(../images/common/tell-icon-white.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top;
  top: 5px;
  top: 0.3125rem;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  left: 4px;
  left: 0.25rem;
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
}

.base-button.base-button--tell-sub span {
  display: block;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

.base-button.base-button--confirmation {
  max-width: 240px;
  max-width: 15rem;
  width: 100%;
  padding: 17.5px;
  padding: 1.09375rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .base-button.base-button--confirmation {
    max-width: 35.625rem;
    max-width: 28.75rem;
    padding: 1.3125rem;
    font-size: 1.125rem;
  }
}

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

.company__content {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .company__content {
    margin-top: 7.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media screen and (min-width: 768px) {
  .company__content-body {
    margin-left: 5rem;
    width: 42.6%;
  }
}

.company__content-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #2C68CC;
}
@media screen and (min-width: 768px) {
  .company__content-title {
    font-size: 1.375rem;
  }
}

.company__content-text {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .company__content-text {
    font-size: 1.125rem;
    line-height: 1.7777777778;
  }
}

.company__content-subtext {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .company__content-subtext {
    font-size: 1rem;
    line-height: 1.6842105263;
  }
}

.company__content-button {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.company__content-img {
  margin-top: 50px;
  margin-top: 3.125rem;
  aspect-ratio: 330/220;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .company__content-img {
    margin-top: 0;
    aspect-ratio: 540/400;
    width: 50%;
  }
}

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

.formTable,
.formTable tbody {
  width: 100%;
}

.formTable tr,
.formTable th {
  border-bottom: none;
  display: block;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .formTable tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.formTable tr:not(:first-child) {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .formTable tr:not(:first-child) {
    margin-top: 2.5rem;
  }
}

.formTable th {
  font-weight: 500;
  color: #333333;
  font-size: 16px;
  font-size: 1rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .formTable th {
    font-size: 1rem;
    width: 28.75%;
  }
}

.formTable td {
  font-size: 14px;
  font-size: 0.875rem;
  width: 100%;
  font-weight: 400;
  line-height: 2.285;
  margin-top: 10px;
  margin-top: 0.625rem;
  overflow: auto;
}
@media screen and (min-width: 768px) {
  .formTable td {
    font-size: 0.875rem;
    margin-top: 0;
    width: 71.25%;
  }
}

.confirm__buttons {
  margin-top: 40px;
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .confirm__buttons {
    margin-top: 5rem;
  }
}

.confirm__button {
  display: inline-block;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  background-color: #E55723;
  color: #fff;
  padding: 17.5px;
  padding: 1.09375rem;
  border-radius: 25px;
  width: 160px;
  width: 10rem;
}

.confirm__submit-input {
  margin-left: 20px;
  margin-left: 1.25rem;
}

.ConfirmPage__wrapper {
  max-width: 850px;
  max-width: 53.125rem;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .ConfirmPage__wrapper {
    padding: 0 25px;
  }
}

.ConfirmPage__top {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .ConfirmPage__top {
    margin-top: 6.25rem;
  }
}

.ConfirmPage__text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .ConfirmPage__text {
    font-size: 1rem;
  }
}

.ConfirmPage__list {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .ConfirmPage__list {
    margin-top: 4.9375rem;
  }
}

.contact {
  padding: 57px 0 62px;
  padding: 3.5625rem 0 3.875rem;
  background-image: url(../images/common/contact-img-sp.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .contact {
    background-image: url(../images/common/contact-img-pc.jpg);
    padding: 4.25rem 0 4.9375rem;
  }
}

.contact::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/common/contact-img-mask.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.9;
  z-index: -1;
}

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

.contact__text {
  margin-top: 30px;
  margin-top: 1.875rem;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .contact__text {
    font-size: 1rem;
  }
}

.contact__button-wrapper {
  margin-top: 24px;
  margin-top: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__button-wrapper {
    margin-top: 1.0625rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}

.contact__mail-button {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .contact__mail-button {
    margin-top: 0;
    margin-left: 1.875rem;
  }
}

.ContactPage {
  padding-bottom: 70px;
  padding-bottom: 4.375rem;
}
@media screen and (min-width: 768px) {
  .ContactPage {
    padding-bottom: 8.75rem;
  }
}

.ContactPage__inner {
  max-width: 850px;
  max-width: 53.125rem;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .ContactPage__inner {
    padding: 0 25px;
  }
}

.ContactPage__title {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .ContactPage__title {
    font-size: 1.875rem;
  }
}

.ContactPage__text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .ContactPage__text {
    font-size: 1rem;
    margin-top: 2.3125rem;
  }
}

.ContactPage__content {
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .ContactPage__content {
    margin-top: 3rem;
  }
}

.ContactPage__content-text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .ContactPage__content-text {
    font-size: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .ContactPage__content-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.3125rem;
    margin-top: 4px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.ContactPage__content-tell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  gap: 0.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .ContactPage__content-tell {
    margin-top: 0;
  }
}

.ContactPage__content-tell span {
  display: inline-block;
  content: "";
  background-image: url(../images/common/tell-icon-black.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top;
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
}
@media screen and (min-width: 768px) {
  .ContactPage__content-tell span {
    width: 1.875rem;
    height: 1.875rem;
  }
}

.ContactPage__content-tell a {
  display: inline-block;
  text-decoration: underline;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .ContactPage__content-tell a {
    font-size: 1.75rem;
  }
}

.ContactPage__content-time {
  margin-top: 8px;
  margin-top: 0.5rem;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .ContactPage__content-time {
    margin-top: 0;
    font-size: 0.875rem;
  }
}

.ContactPage__subtext {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  margin-top: 56px;
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .ContactPage__subtext {
    font-size: 0.875rem;
    margin-top: 3.5625rem;
  }
}

.ContactPage__subtext span {
  color: #2C68CC;
}

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

.flow-item {
  padding: 20px 8px 16px;
  padding: 1.25rem 0.5rem 1rem;
  background-color: #F0F6FF;
  border-radius: 8px;
}
@media screen and (min-width: 768px) {
  .flow-item {
    padding: 1.625rem 1.25rem 1.25rem;
    border-radius: 10px;
  }
}

.flow-item.flow-item--tell {
  padding: 61px 8px;
  padding: 3.8125rem 0.5rem;
  background-color: #2C68CC;
  border: 1px solid #fff;
}

.flow-item__icon {
  margin-inline: auto;
  width: 50px;
  width: 3.125rem;
  height: 50px;
  height: 3.125rem;
}

.flow-item__body {
  margin-top: 20px;
  margin-top: 1.25rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.flow-item__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #2C68CC;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5866666667;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .flow-item__title {
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 1024px) {
  .flow-item__title {
    font-size: 0.9375rem;
  }
}

.flow-item__title span {
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #fff;
  background-color: #2C68CC;
  border-radius: 50%;
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  margin-right: 7px;
  margin-right: 0.4375rem;
  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;
}

.flow-item__text {
  margin-top: 8px;
  margin-top: 0.5rem;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .flow-item__text {
    margin-top: 0.3125rem;
    font-size: 0.875rem;
    line-height: 1.7;
  }
}

.flow-item__text span {
  color: #2C68CC;
  font-size: 8px;
  font-size: 0.5rem;
  vertical-align: text-top;
}

.flow-item__tell {
  color: #fff;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 2;
}

.flow-item__tell a {
  font-weight: 700;
  text-decoration: underline;
}

.footer {
  padding: 40px 0 20px;
  padding: 2.5rem 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 3.125rem 0 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .footer__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .footer__item {
    width: 25rem;
  }
}

.footer__logo {
  width: 187.2px;
  width: 11.7rem;
}

.footer__logo a {
  display: inline-block;
  width: 100%;
}

.footer__nav {
  margin-top: 10.5px;
  margin-top: 0.65625rem;
  width: 140px;
  width: 8.75rem;
}
@media screen and (min-width: 768px) {
  .footer__nav {
    margin-top: 0rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.footer__nav-list {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer__nav-list {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    row-gap: 0.625rem;
    -webkit-column-gap: 2.6875rem;
       -moz-column-gap: 2.6875rem;
            column-gap: 2.6875rem;
  }
}

.footer__nav-item {
  width: 100%;
}

.footer__nav-item a {
  width: 100%;
  height: 100%;
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 7.5px 0;
  padding: 0.46875rem 0;
  line-height: 1.4285714286;
}
@media screen and (min-width: 768px) {
  .footer__nav-item a {
    padding: 0;
    width: auto;
  }
}

.footer__address {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .footer__address {
    margin-top: 0;
  }
}

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

.footer__address-title {
  width: 60px;
  width: 3.75rem;
  background-color: #333333;
  color: #fff;
  border-radius: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .footer__address-title {
    width: 6.25rem;
    font-size: 0.875rem;
    padding: 0.125rem;
  }
}

.footer__address-text {
  margin-top: 6px;
  margin-top: 0.375rem;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .footer__address-text {
    font-size: 0.875rem;
    line-height: 1.9428571429;
  }
}

.footer__address-map {
  margin-top: 7px;
  margin-top: 0.4375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: underline;
  color: #E55723;
  font-size: 13px;
  font-size: 0.8125rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  gap: 5px;
  gap: 0.3125rem;
  cursor: pointer;
  -webkit-transform: opacity 0.3s;
          transform: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .footer__address-map {
    margin-top: 0.1875rem;
  }
}

.footer__address-map:hover {
  opacity: 0.8;
}

.footer__address-map img {
  width: 12.43px;
  width: 0.776875rem;
}

.footer__house-button {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .footer__house-button {
    margin-top: 1.625rem;
  }
}

.footer__copylight {
  margin-top: 49px;
  margin-top: 3.0625rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .footer__copylight {
    margin-top: 1.875rem;
    text-align: center;
  }
}

.footer__copylight small {
  display: inline-block;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .footer__copylight small {
    font-size: 0.875rem;
  }
}

.form__list {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .form__item dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .form__not-center {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.form__item:not(:first-child) {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .form__item:not(:first-child) {
    margin-top: 2.5rem;
  }
}

.form__item.form__item--checkbox {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.form__item:last-child {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .form__item:last-child {
    margin-top: 4.9375rem;
  }
}

.form__label {
  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) {
  .form__label {
    width: 28.75%;
  }
}

.form__label span {
  color: #2C68CC;
  padding-left: 5px;
  padding-left: 0.3125rem;
}

.form__label-text {
  font-weight: 500;
  color: #333333;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .form__label-text {
    font-size: 1rem;
  }
}

.form__input {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .form__input {
    width: 71.25%;
  }
}

.form__input.form__input--select {
  position: relative;
}

.form__input.form__input--select::after {
  content: "";
  border-style: solid;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 10px solid #a4a4a4;
  border-bottom: 0;
  -webkit-transform: skew(-15deg) rotate(-3deg);
          transform: skew(-15deg) rotate(-3deg);
  position: absolute;
  top: 55%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 16px;
}

.form__select,
.form__input-text,
.form__textarea,
.form__box {
  font-size: 14px;
  font-size: 0.875rem;
  padding: 13px 20px 13.2px;
  padding: 0.8125rem 1.25rem 0.825rem;
  width: 100%;
  border: 1px solid #AAAAAA;
  font-weight: 400;
  border-radius: 3px;
  line-height: 2.285;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .form__select,
  .form__input-text,
  .form__textarea,
  .form__box {
    font-size: 0.875rem;
    margin-top: 0;
  }
}

.form__select option {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  color: #555555;
}

@media screen and (min-width: 768px) {
  .form__label-text.form__label-text--top {
    margin-top: 1.1875rem;
  }
}

.form__input-subtext {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  color: #AAAAAA;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .form__input-subtext {
    padding-left: 28.75%;
  }
}

.form__input-text::-webkit-input-placeholder,
.form__textarea::-webkit-input-placeholder {
  color: #AAAAAA;
}

.form__input-text::-moz-placeholder,
.form__textarea::-moz-placeholder {
  color: #AAAAAA;
}

.form__input-text::-ms-input-placeholder,
.form__textarea::-ms-input-placeholder {
  color: #AAAAAA;
}

.form__input-text::placeholder,
.form__textarea::placeholder {
  color: #AAAAAA;
}

.form__item.form__item--radio dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.form__textarea {
  height: 300px;
  height: 18.75rem;
  resize: none;
  display: block;
}

.form__box {
  width: 100%;
  height: 300px;
  height: 18.75rem;
  overflow-y: scroll;
  border: none;
  background-color: #F5F5F5;
}
@media screen and (min-width: 768px) {
  .form__box {
    max-width: 71.25%;
  }
}

.form__box-text ol {
  margin-left: 10px;
  margin-left: 0.625rem;
}

.form__box-text li {
  margin-top: 10px;
  margin-top: 0.625rem;
  margin-left: 10px;
  margin-left: 0.625rem;
  list-style: block;
}

.form__box-title {
  font-weight: 700;
  margin: 30px 0 20px;
  margin: 1.875rem 0 1.25rem;
}

.form__checkbox {
  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;
}

.form__checkbox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 5px;
  position: relative;
  cursor: pointer;
  font-size: 14px;
  font-size: 0.875rem;
}

.form__checkbox label::before {
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  border-radius: 3px;
  border: 1px solid #2C68CC;
  content: "";
}

.form__checkbox label:has(:checked)::after {
  position: absolute;
  top: 5px;
  top: 0.3125rem;
  left: 7px;
  left: 0.4375rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 5px;
  width: 0.3125rem;
  height: 10px;
  height: 0.625rem;
  border: solid #2C68CC;
  border-width: 0 3px 3px 0;
  content: "";
}

.form__checkbox span {
  color: #2C68CC;
  text-decoration: underline;
}

.form__button input {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  background-color: #E55723;
  border-radius: 5px;
  padding: 17px;
  padding: 1.0625rem;
  width: 100%;
}

.header {
  width: 100%;
  height: 60px;
  height: 3.75rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5000;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .header {
    height: 6.25rem;
  }
}

.header__inner {
  width: 100%;
  height: inherit;
  padding-left: 15px;
  padding-left: 0.9375rem;
  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;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding-left: 1rem;
    padding-right: 1.25rem;
  }
}

.header__logo {
  height: inherit;
  z-index: 5000;
  width: 132px;
  width: 8.25rem;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: 11rem;
  }
}

.header__logo-link {
  display: inline-block;
  width: 100%;
  height: inherit;
  background-image: url(../images/common/logo.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.header__logo-link.is-active {
  background-image: url(../images/common/logo-reverse.svg);
}

.header__hamburger {
  z-index: 5000;
}

.house-button {
  width: 260px;
  width: 16.25rem;
  display: inline-block;
  border: 1px solid #2C68CC;
  border-radius: 5px;
  padding: 16px;
  padding: 1rem;
}

.house-button__wrapper {
  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;
}

.house-button__logo {
  width: 150px;
  width: 9.375rem;
  height: 20px;
  height: 1.25rem;
}

.house-button__tab {
  width: 28px;
  width: 1.75rem;
  height: 28px;
  height: 1.75rem;
}

.house-button.house-button--bg {
  width: 100%;
  padding: 36px 15px;
  padding: 2.25rem 0.9375rem;
  border: none;
  background-image: url(../images/common/house-button-bg.jpg);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .house-button.house-button--bg {
    max-width: 25rem;
    padding: 2.25rem 1.25rem 2.25rem 1.875rem;
  }
}

.house-button__logo.house-button__logo--bg {
  width: 180px;
  width: 11.25rem;
  height: 24px;
  height: 1.5rem;
}

.house-button__tab {
  width: 28px;
  width: 1.75rem;
  height: 28px;
  height: 1.75rem;
}

.hamburger {
  width: 60px;
  width: 3.75rem;
  height: 60px;
  height: 3.75rem;
  background-color: #2C68CC;
  padding: 15px 0 11px;
  padding: 0.9375rem 0 0.6875rem;
  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;
}
@media screen and (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

.hamburger__icon {
  width: 100%;
  height: 16px;
  height: 1rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hamburger.is-active .hamburger__icon {
  height: 0;
}

.hamburger__icon span {
  position: absolute;
  display: block;
  height: 2px;
  height: 0.125rem;
  width: 26px;
  width: 1.625rem;
  background: #fff;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
}

.hamburger__icon span:nth-child(1) {
  top: 0;
}

.hamburger__icon span:nth-child(2) {
  top: 7px;
  top: 0.4375rem;
}

.hamburger__icon span:nth-child(3) {
  top: 14px;
  top: 0.875rem;
}

.hamburger.is-active .hamburger__icon span:nth-child(1) {
  top: 13px;
  top: 0.8125rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.hamburger.is-active .hamburger__icon span:nth-child(2) {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
}

.hamburger.is-active .hamburger__icon span:nth-child(3) {
  top: 13px;
  top: 0.8125rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.hamburger__text {
  font-size: 10px;
  font-size: 0.625rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 4px;
  margin-top: 0.25rem;
}

.hamburger.is-active .hamburger__text {
  display: none;
}

.info-list__item {
  padding: 21px 0 25px;
  padding: 1.3125rem 0 1.5625rem;
  border-bottom: 1px solid #707070;
}
@media screen and (min-width: 768px) {
  .info-list__item {
    padding: 1.875rem 0 1.9375rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.25rem;
  }
}

.info-list__item:first-child {
  border-top: 1px solid #707070;
}

.info-list__title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.225;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .info-list__title {
    font-weight: 500;
    line-height: 1.7;
    min-width: 11.25rem;
  }
}

.info-list__text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4;
  color: #333333;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .info-list__text {
    margin-top: 0;
    font-size: 1rem;
    line-height: 1.7;
  }
}

.info-list__item.info-list__item--reverse {
  padding: 21px 0 25px;
  padding: 1.3125rem 0 1.5625rem;
  border-bottom: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .info-list__item.info-list__item--reverse {
    padding: 1.8125rem 0 1.75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.info-list__item.info-list__item--reverse:first-child {
  border-top: 1px solid #fff;
}

.info-list__title.info-list__title--reverse {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.225;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .info-list__title.info-list__title--reverse {
    font-weight: 500;
    line-height: 1.7;
    min-width: 11.25rem;
  }
}

.info-list__text.info-list__text--reverse {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .info-list__text.info-list__text--reverse {
    margin-top: 0;
    font-size: 1rem;
    line-height: 1.7;
  }
}

.info-list__text.info-list__text--reverse a {
  text-decoration: underline;
}

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

.message {
  padding: 100px 0 109px;
  padding: 6.25rem 0 6.8125rem;
  background-color: #2C68CC;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .message {
    padding: 6.875rem 0 9.25rem;
  }
}

@media screen and (min-width: 768px) {
  .message__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.message__images {
  position: relative;
}
@media screen and (min-width: 768px) {
  .message__images {
    margin-left: 7.5rem;
    width: 50%;
  }
}

.message__main-image {
  width: 100%;
  aspect-ratio: 330/300;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .message__main-image {
    aspect-ratio: 540/460;
  }
}

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

.message__top-image,
.message__bottom-image {
  position: absolute;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .message__top-image,
  .message__bottom-image {
    border-radius: 10px;
  }
}

.message__top-image {
  width: 66.6%;
  aspect-ratio: 220/110;
  top: -40px;
  right: -15px;
}
@media screen and (min-width: 768px) {
  .message__top-image {
    width: 46.2%;
    aspect-ratio: 250/160;
    top: -41px;
    right: -40px;
  }
}

.message__bottom-image {
  width: 51.5%;
  aspect-ratio: 170/80;
  bottom: -35px;
  left: -15px;
}
@media screen and (min-width: 768px) {
  .message__bottom-image {
    width: 46.2%;
    aspect-ratio: 250/160;
    bottom: -9px;
    left: -40px;
  }
}

.message__top-image img,
.message__bottom-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}

.message__top-image::after,
.message__bottom-image::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: #000;
  opacity: 0.2;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.message__image-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: clamp(14px, 3vw, 25px);
  font-weight: 500;
  color: #fff;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .message__image-text {
    font-size: 1.125rem;
  }
}

.message__body {
  margin-top: 85px;
  margin-top: 5.3125rem;
}
@media screen and (min-width: 768px) {
  .message__body {
    margin-top: 0;
    width: 38.8%;
  }
}

.message__heading {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 27.2px;
  line-height: 1.7rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .message__heading {
    margin-top: 2.5rem;
    font-size: 1.125rem;
    line-height: 1.7777777778;
  }
}

.message__texts {
  margin-top: 23px;
  margin-top: 1.4375rem;
}
@media screen and (min-width: 768px) {
  .message__texts {
    margin-top: 1.875rem;
  }
}

.message__text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .message__text {
    font-size: 1rem;
    line-height: 2;
  }
}

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

.message__bg-text {
  position: absolute;
  left: 30px;
  bottom: -45px;
  color: rgba(255, 255, 255, .1);
  font-family: "Poppins", sans-serif;
  font-size: 100px;
  font-size: 6.25rem;
  font-weight: 300;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .message__bg-text {
    font-size: 7.5rem;
    left: 6.25rem;
    bottom: -57px;
  }
}

.message::after {
  content: "";
  display: block;
  width: 100%;
  height: 30px;
  height: 1.875rem;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#2C68CC));
  background: linear-gradient(180deg, transparent 0%, #2C68CC 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .message::after {
    height: 3.125rem;
  }
}

.modal,
.modal__2 {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  padding: 40px 20px;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  background-color: rgba(51, 51, 51, .8);
}

.modal.is-open,
.modal__2.is-open {
  visibility: visible;
  opacity: 1;
}

.modal__body {
  position: relative;
  width: 100%;
}

.modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 24px;
  max-width: 460px;
  width: 100%;
  background: #fff;
}

.modal__text {
  font-size: 15px;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .modal__text {
    font-size: 14px;
  }
}

.modal__close-button {
  position: fixed;
  z-index: 5000;
  top: 35px;
  right: 23px;
  cursor: pointer;
  width: 12px;
  height: 12px;
}

.modal__close-button span {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333333;
}

.modal__close-button span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.modal__close-button span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.modal__map {
  margin-top: 24px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .modal__map {
    margin-top: 20px;
  }
}

.google-map {
  width: 100%;
  aspect-ratio: 412/406;
  vertical-align: bottom;
}

.mv {
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(91%, transparent), color-stop(91%, #2C68CC), to(#2C68CC));
  background: linear-gradient(transparent 0%, transparent 91%, #2C68CC 91%, #2C68CC 100%);
}
@media screen and (min-width: 768px) {
  .mv {
    height: 100vh;
    height: 100dvh;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(75%, transparent), color-stop(75%, #2C68CC), to(#2C68CC));
    background: linear-gradient(transparent 0%, transparent 75%, #2C68CC 75%, #2C68CC 100%);
    position: relative;
  }
}

.mv__inner {
  padding: 60px 0 0 30px;
  padding: 3.75rem 0 0 1.875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .mv__inner {
    padding: 6.25rem 0 2.5rem 5rem;
  }
}

.mv__slider {
  height: 73.5dvh;
  position: relative;
  z-index: 0;
  border-radius: 20px 0 0 20px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .mv__slider {
    height: 82.5dvh;
    border-radius: 30px 0 0 30px;
  }
}

.mv__slider::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.mv__swiper,
.mv__swiper-slide,
.mv__swiper-images,
.mv__swiper-img {
  height: inherit;
}

.mv__swiper-img source,
.mv__swiper-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mv__title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  position: absolute;
  top: 42%;
  left: 15%;
  white-space: nowrap;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .mv__title {
    font-size: 2.5rem;
    line-height: 1.4;
    top: 45%;
    left: 15.5%;
  }
}

.mv__scroll {
  display: none;
}
@media screen and (min-width: 768px) {
  .mv__scroll {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    position: absolute;
    bottom: 5.375rem;
    left: -0.9375rem;
  }
}

.mv__scroll span {
  display: block;
  width: 28px;
  width: 1.75rem;
  height: 18px;
  height: 1.125rem;
  border: 1px solid #fff;
  border-radius: 12px;
  position: relative;
}

.mv__scroll span::after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 46%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 7px;
}

.mv__scroll-text {
  font-size: 10px;
  font-size: 0.625rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #fff;
  margin-left: 10px;
}

.pc-nav {
  height: inherit;
}

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

.pc-nav__item {
  height: inherit;
}

.pc-nav__item a {
  height: inherit;
  color: #333333;
  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;
  padding: 0 17px;
  padding: 0 1.0625rem;
  font-size: 16px;
  font-size: 1rem;
  white-space: nowrap;
}

.pc-nav__arrow {
  width: 20px;
  height: 6px;
  background-image: url(../images/common/arrow.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.pc-nav__button:not(:last-child) {
  margin-right: 10px;
  margin-right: 0.625rem;
  margin-left: 23px;
  margin-left: 1.4375rem;
}

.recruit {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(9%, transparent), color-stop(9%, #2C68CC), color-stop(98%, #2C68CC), color-stop(98%, transparent), to(transparent));
  background: linear-gradient(180deg, transparent 0%, transparent 9%, #2C68CC 9%, #2C68CC 98%, transparent 98%, transparent 100%);
}
@media screen and (min-width: 768px) {
  .recruit {
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(11%, transparent), color-stop(11%, #2C68CC), color-stop(98%, #2C68CC), color-stop(98%, transparent), to(transparent));
    background: linear-gradient(180deg, transparent 0%, transparent 11%, #2C68CC 11%, #2C68CC 98%, transparent 98%, transparent 100%);
  }
}

.recruit__top {
  margin-left: calc(50% - 50vw);
  border-radius: 0 20px 20px 0;
  background-image: url(../images/common/recruit-bg-sp.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0 30px;
}
@media screen and (min-width: 768px) {
  .recruit__top {
    background-image: url(../images/common/recruit-bg.jpg);
    padding: 0 25px;
  }
}

.recruit__top-inner {
  padding: 50px 0 114px;
  padding: 3.125rem 0 7.125rem;
}
@media screen and (min-width: 768px) {
  .recruit__top-inner {
    padding: 3.75rem 0 4rem;
    max-width: 1080px;
    width: 100%;
    margin: 0 0 0 auto;
  }
}

.recruit__top-text {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .recruit__top-text {
    margin-top: 2.5rem;
    font-size: 1.125rem;
    line-height: 1.7777777778;
  }
}

.recruit__top-subtext {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .recruit__top-subtext {
    margin-top: 1.25rem;
    font-size: 1rem;
  }
}

.recruit__flow {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .recruit__flow {
    margin-top: 5rem;
  }
}

.recruit__flow-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .recruit__flow-title {
    font-size: 1.375rem;
  }
}

.recruit__flow-list {
  margin-top: 20px;
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .recruit__flow-list {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 2.5rem;
  }
}

.recruit__flow-tell {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
  font-weight: 400;
}

.recruit__flow-tell a {
  font-weight: 700;
  text-decoration: underline;
}

.recruit__dormitory {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .recruit__dormitory {
    margin-top: 5rem;
  }
}

.recruit__dormitory__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .recruit__dormitory__title {
    font-size: 1.375rem;
  }
}

.recruit__dormitory__text {
  margin-top: 10px;
  margin-top: 0.625rem;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .recruit__dormitory__text {
    font-size: 1rem;
  }
}

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

.recruit__dormitory__item:not(:first-child) {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .recruit__dormitory__item:not(:first-child) {
    margin-top: 0;
  }
}

.recruit__dormitory__item-img {
  aspect-ratio: 330/218;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .recruit__dormitory__item-img {
    aspect-ratio: 333/220;
  }
}

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

.recruit__dormitory__item-text {
  margin-top: 10px;
  margin-top: 0.625rem;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .recruit__dormitory__item-text {
    font-size: 1rem;
  }
}

.recruit__info {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .recruit__info {
    margin-top: 5rem;
  }
}

.recruit__info-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .recruit__info-title {
    font-size: 1.375rem;
  }
}

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

.recruit__info-button {
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .recruit__info-button {
    margin-top: 3.75rem;
  }
}

@-webkit-keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.recruit__images {
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .recruit__images {
    margin-top: 7.5rem;
  }
}

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

.recruit__images__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  -webkit-animation: infinity-scroll-left 80s infinite linear 0.5s both;
          animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

.recruit__images__item {
  width: 66.6666666667vw;
  border-radius: 10px;
  overflow: hidden;
  margin-left: 20px;
  margin-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .recruit__images__item {
    width: 20.4081632653vw;
  }
}

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

.section-title__main {
  font-size: 48px;
  font-size: 3rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #2C68CC;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .section-title__main {
    font-size: 5rem;
  }
}

.section-title__sub {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #2C68CC;
  margin-top: -7px;
  margin-top: -0.4375rem;
}
@media screen and (min-width: 768px) {
  .section-title__sub {
    font-size: 1.75rem;
  }
}

.section-title__main.section-title__main--reverse,
.section-title__sub.section-title__sub--reverse {
  color: #fff;
}

.section-title__main.section-title__main--small {
  font-size: 36px;
  font-size: 2.25rem;
}
@media screen and (min-width: 768px) {
  .section-title__main.section-title__main--small {
    font-size: 2.5rem;
  }
}

.section-title__sub.section-title__sub--small {
  font-size: 16px;
  font-size: 1rem;
  margin-top: 7px;
  margin-top: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .section-title__sub.section-title__sub--small {
    font-size: 1.125rem;
    margin-top: 0.875rem;
  }
}

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

.service__item:not(:first-child) {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .service__item:not(:first-child) {
    margin-top: 0;
  }
}

.service__item-img {
  aspect-ratio: 330/220;
  border-radius: 10px;
  overflow: hidden;
}

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

.service__item-body {
  margin-top: 14px;
  margin-top: 0.875rem;
}

.service__item-label {
  color: #2C68CC;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-transform: uppercase;
}

.service__item-label span {
  font-weight: bold;
  display: inline-block;
  margin-left: 5px;
  margin-left: 0.3125rem;
}

.service__item-title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .service__item-title {
    font-size: 1.125rem;
    margin-top: 0.3125rem;
  }
}

.service__item-text {
  margin-top: 5px;
  margin-top: 0.3125rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .service__item-text {
    font-size: 1rem;
    font-weight: 400;
  }
}

.sp-nav {
  display: none;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: #2C68CC;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.sp-nav__inner {
  width: 100%;
  height: inherit;
  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;
  overflow: scroll;
  padding-top: 182px;
  padding-top: 11.375rem;
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
}

.sp-nav__links {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

.sp-nav__link a {
  display: block;
  width: 100%;
  padding-top: 15px;
  padding-top: 0.9375rem;
  padding-bottom: 15px;
  padding-bottom: 0.9375rem;
  text-align: center;
  color: #fff;
  font-weight: 500;
  font-size: 20px;
  font-size: 1.25rem;
}

.sp-nav__link.sp-nav__link--icon 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;
  gap: 8px;
  gap: 0.5rem;
}

.sp-nav__link.sp-nav__link--icon img {
  width: 12.3px;
  width: 0.76875rem;
}

.sp-nav__bnttons {
  margin-top: auto;
}

.sp-nav__bntton:not(:first-child) {
  margin-top: 10px;
}

.test {
  font-size: 20px;
  font-size: 1.25rem;
  background-color: #333333;
  color: #fff;
}

.ThanksPage {
  padding-top: 160px;
  padding-top: 10rem;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}
@media screen and (min-width: 768px) {
  .ThanksPage {
    padding-top: 12.5rem;
  }
}

.ThanksPage__title {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .ThanksPage__title {
    font-size: 2.5rem;
    text-align: center;
  }
}

.ThanksPage__text {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .ThanksPage__text {
    text-align: center;
    margin-top: 30;
    font-size: 1.25rem;
  }
}

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

.ThanksPage__button a {
  margin-top: 40px;
  margin-top: 2.5rem;
  width: 100%;
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  background-color: #E55723;
  border-radius: 5px;
  padding: 17px;
  padding: 1.0625rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .ThanksPage__button a {
    width: 18.75rem;
  }
}

.layout-company {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .layout-company {
    margin-top: 8.75rem;
  }
}

.layout-ConfirmPage {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .layout-ConfirmPage {
    margin-top: 12.5rem;
  }
}

.layout-contact {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .layout-contact {
    margin-top: 11.25rem;
  }
}

.layout-ContactPage {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .layout-ContactPage {
    margin-top: 12.5rem;
  }
}

.layout-recruit {
  margin-top: 58px;
  margin-top: 3.625rem;
}
@media screen and (min-width: 768px) {
  .layout-recruit {
    margin-top: 7.5rem;
  }
}

.layout-service {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .layout-service {
    margin-top: 6.25rem;
  }
}
/*# sourceMappingURL=styles.css.map */
