@charset "utf-8";
/* *************************************
header
************************************* */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: transparent;
  height: calc(80 * var(--rem));
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.header.is-active {
  background-color: var(--white);
  box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 0.2);
}

.header.not-front {
  background-color: var(--white);
}

.header__inner {
  padding-inline: calc(55 * var(--rem));
  height: inherit;
  @media (width < 768px) {
    padding-inline: 10px;
  }
}

.header__container {
  display: flex;
  align-items: center;
  height: inherit;
}

.header__logo {
  width: calc(340 * var(--rem));
  @media (width < 768px) {
    width: calc(200 * var(--rem));
  }
}

.header__logo img {
  aspect-ratio: 300 /58;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header__hamburger {
  display: none;
  @media (width < 768px) {
    display: block;
    margin-inline-start: auto;
    position: relative;
    z-index: 100;
  }
}

.header__modal {
  display: contents;
  @media (width < 768px) {
    display: block;
    background-color: var(--white);
    position: fixed;
    inset: 0;
    padding: calc(20 * var(--rem)) calc(10 * var(--rem));
    overflow: scroll;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
}

.header__modal.is-open {
  @media (width < 768px) {
    visibility: visible;
    opacity: 1;
  }
}

.header__modal-container {
  display: contents;
  @media (width < 768px) {
    min-height: calc(600 * var(--rem));
    padding-block-end: calc(40 * var(--rem));
  }
}

.header__modal-logo {
  display: none;
  @media (width < 768px) {
    display: block;
    width: calc(200 * var(--rem));
  }
}

.header__modal-logo img {
  @media (width < 768px) {
    aspect-ratio: 300 /58;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.header__nav {
  margin-inline-start: auto;
  @media (width < 768px) {
    margin-block-start: calc(64 * var(--rem));
    margin-inline-start: revert;
  }
}

.header__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: calc(20 * var(--rem));
  @media (width < 768px) {
    grid-template-columns: 1fr;
  }
}

.header__list > li {
}

.header__list > li > a {
  display: block;
  padding: calc(14 * var(--rem)) calc(10 * var(--rem));
  font-size: calc(18 * var(--rem));
  line-height: 1;
  @media (width < 768px) {
    border-bottom: 1px double var(--green);
  }
}

.header__contact {
  display: inline-block;
  background-color: var(--green);
  color: var(--white);
  padding: calc(14 * var(--rem)) calc(22 * var(--rem));
  font-size: calc(20 * var(--rem));
  line-height: 1;
  letter-spacing: -0.05em;
  margin-inline-start: calc(20 * var(--rem));
  @media (width < 768px) {
    display: block;
    margin-block-start: calc(40 * var(--rem));
    width: min(100%, calc(400 * var(--rem)));
    margin-inline: auto;
    text-align: center;
    padding-block: calc(24 * var(--rem));
  }
}

.header__tel-container {
  display: none;
  @media (width < 768px) {
    display: block;
    margin-block-start: calc(40 * var(--rem));
    text-align: center;
  }
}

.header__tel {
  @media (width < 768px) {
    display: inline-grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    font-size: calc(32 * var(--rem));
    font-weight: bold;
    font-family: var(--font-en);
    margin-block-start: calc(8 * var(--rem));
    padding: calc(8 * var(--rem)) calc(16 * var(--rem));
  }
}

.header__tel::before {
  content: '';
  display: block;
  width: calc(30 * var(--rem));
  aspect-ratio: 1;
  background: url(../../library/images/common/tel.svg) no-repeat center / contain;
}

/* リクルートページ */
.header.header--recruit {
  background-color: transparent;
}

.header.header--recruit.recruit-child {
  background-color: var(--white);
}

.header.header--recruit.is-active {
  background-color: var(--white);
}

.header.header--recruit.is-active .header__logo img:nth-child(1),
.header.header--recruit.recruit-child .header__logo img:nth-child(1) {
  display: none;
}

.header.header--recruit .header__logo img:nth-of-type(2) {
  display: none;
}

.header.header--recruit.is-active .header__logo img:nth-of-type(2),
.header.header--recruit.recruit-child .header__logo img:nth-of-type(2) {
  display: block;
}

.header.header--recruit .hamburger span {
  background-color: var(--white);
}

.header.header--recruit.is-active .hamburger span {
  background-color: var(--black);
}

.header.header--recruit .hamburger .hamburger__menu,
.header.header--recruit .hamburger .hamburger__close {
  color: var(--white);
}

.header.header--recruit.is-active .hamburger .hamburger__menu,
.header.header--recruit.is-active .hamburger .hamburger__close {
  color: var(--text);
}

.header.header--recruit .hamburger.is-open span,
.header.header--recruit.recruit-child .hamburger span {
  background-color: var(--black);
}

.header.header--recruit .hamburger.is-open .hamburger__menu,
.header.header--recruit .hamburger.is-open .hamburger__close,
.header.header--recruit.recruit-child .hamburger .hamburger__menu,
.header.header--recruit.recruit-child .hamburger .hamburger__close {
  color: var(--text);
}

.header.header--recruit .header__list {
  grid-template-columns: repeat(5, auto);
  gap: calc(12 * var(--rem));
  @media (width < 768px) {
    grid-template-columns: 1fr;
  }
}

.header.header--recruit .header__list a {
  color: var(--white);
}

.header.header--recruit.is-active .header__list a {
  color: var(--text);
}

.header.header--recruit .is-open .header__list a {
  color: var(--text);
}

.header.header--recruit.recruit-child .header__list a {
  color: var(--text);
}

.header.header--recruit .header__contact {
  background-color: var(--blue);
  padding-inline: calc(40 * var(--rem));
  margin-inline-start: calc(35 * var(--rem));
  @media (width < 768px) {
    margin-inline: auto;
  }
}

/* *************************************
footer
************************************* */
.footer {
  background-color: var(--white);
  padding-block: calc(34 * var(--rem));
  @media (width < 768px) {
    padding-block-end: calc(10 * var(--rem));
  }
}

.footer__inner {
  padding-inline: calc(64 * var(--rem));
  @media (width < 768px) {
    padding-inline: 10px;
  }
}

.footer__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  @media (width < 768px) {
    grid-template-columns: 1fr;
    gap: calc(16 * var(--rem));
  }
}

.footer__left {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: calc(40 * var(--rem));
  align-items: flex-start;
  @media (width < 768px) {
    display: contents;
  }
}

.footer__wrap {
}

.footer__logo {
  width: calc(340 * var(--rem));
  @media (width < 768px) {
    margin-inline: auto;
    order: 1;
  }
}

.footer__logo img {
  aspect-ratio: 300 /58;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer__mate {
  margin-block-start: calc(17 * var(--rem));
  @media (width < 768px) {
    text-align: center;
    order: 2;
  }
}

.footer__tel,
.footer__fax {
  text-transform: uppercase;
}

.footer__external-logo {
  width: calc(200 * var(--rem));
  @media (width < 768px) {
    order: 5;
    margin-inline: auto;
  }
}

.footer__external-logo img {
  aspect-ratio: 289 / 156;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer__right {
  margin-inline-start: auto;
  @media (width < 768px) {
    display: contents;
  }
}

.footer__menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(24 * var(--rem));
  @media (width < 768px) {
    grid-template-columns: repeat(2, 1fr);
    order: 3;
    width: fit-content;
    margin-inline: auto;
  }
}

.footer__list {
  border-left: 1px solid #7f7f7f;
  padding-inline-start: calc(10 * var(--rem));
}

.footer__item > a {
  display: block;
  padding: calc(4 * var(--rem)) calc(10 * var(--rem));
}

.footer__menu-child {
  padding-inline-start: calc(9 * var(--rem));
  margin-block-start: calc(4 * var(--rem));
}

.footer__menu-child-item {
  line-height: 1;
  font-size: calc(14 * var(--rem));
}

.footer__menu-child-item > a {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: calc(4 * var(--rem));
  padding: calc(4 * var(--rem)) calc(5 * var(--rem));
  font-size: calc(14 * var(--rem));
  line-height: 1;
}

.footer__menu-child-item > a::before {
  content: '';
  display: block;
  width: calc(6 * var(--rem));
  height: calc(2 * var(--rem));
  background-color: var(--green);
}

.footer__bottom {
  display: flex;
  margin-block-start: calc(30 * var(--rem));
  @media (width < 768px) {
    display: grid;
  }
}

.footer__copy {
  font-size: calc(10 * var(--rem));
  line-height: 1;
  letter-spacing: 0.03em;
  @media (width < 768px) {
    order: 2;
    text-align: center;
    margin-block-start: calc(16 * var(--rem));
  }
}

.footer__privacy {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: calc(2 * var(--rem));
  margin-inline: auto calc(24 * var(--rem));
  font-size: calc(10 * var(--rem));
  @media (width < 768px) {
    display: grid;
    order: 1;
    margin-inline: auto;
  }
}

.footer__privacy::before {
  content: '';
  display: block;
  width: calc(12 * var(--rem));
  aspect-ratio: 1;
  background: url(../../library/images/common/btn-arrow-k2.svg) no-repeat center / contain;
}

/* *************************************
recruit-footer
************************************* */
.recruit-footer {
  background-color: var(--blue);
  padding-block: calc(58 * var(--rem)) calc(42 * var(--rem));
}

.recruit-footer__inner {
  padding-inline: 20px;
  @media (width < 768px) {
    padding-inline: 10px;
  }
}

.recruit-footer__logo {
  width: fit-content;
  margin-inline: auto;
  width: calc(370 * var(--rem));
  @media (width < 768px) {
    width: calc(300 * var(--rem));
  }
}

.recruit-footer__logo img {
  aspect-ratio: 300 /58;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recruit-footer__top-list {
  width: fit-content;
  margin-inline: auto;
  margin-block-start: calc(20 * var(--rem));
  display: grid;
  gap: calc(13 * var(--rem));
}

.recruit-footer__top-item {
  text-align: center;
  color: var(--white);
  line-height: 1;
  font-size: calc(18 * var(--rem));
}

.recruit-footer__top-item a {
  display: inline-block;
  padding: calc(4 * var(--rem)) calc(16 * var(--rem));
  line-height: 1;
}

.recruit-footer__bottom-list {
  width: fit-content;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-block-start: calc(30 * var(--rem));
  width: calc(450 * var(--rem));
  border-top: 1px solid var(--white);
  padding-block-start: calc(13 * var(--rem));
  @media (width < 768px) {
    width: fit-content;
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.recruit-footer__bottom-item {
  @media (width < 768px) {
    display: grid;
    place-content: center;
  }
}

.recruit-footer__bottom-item a {
  font-size: calc(18 * var(--rem));
  display: block;
  padding: calc(12 * var(--rem)) calc(10 * var(--rem));
  color: var(--white);
}

.recruit-footer__privacy {
  display: flex;
  align-items: center;
  gap: calc(4 * var(--rem));
  width: fit-content;
  margin-inline: auto;
  padding: calc(8 * var(--rem)) calc(20 * var(--rem));
  text-align: center;
  color: var(--white);
  font-size: calc(10 * var(--rem));
  margin-block-start: calc(30 * var(--rem));
}

.recruit-footer__privacy::before {
  content: '';
  display: block;
  width: calc(16 * var(--rem));
  aspect-ratio: 1;
  background-color: var(--white);
  clip-path: polygon(50% 0%, 50% 100%, 100% 50%);
}

.recruit-footer__copy {
  text-align: center;
  color: var(--white);
  font-size: calc(10 * var(--rem));
}

/* *************************************
contact
************************************* */
.contact {
  margin-block-start: calc(24 * var(--rem));
  padding-block-end: calc(155 * var(--rem));
  border-bottom: 1px solid var(--border);
}

.contact__inner.inner {
  width: min(100%, calc(850 * var(--rem)));
}

.contact__text {
  text-align: center;
  font-size: calc(18 * var(--rem));
  font-weight: bold;
  @media (width < 768px) {
    font-size: calc(16 * var(--rem));
  }
}

.contact__form {
  margin-block-start: calc(50 * var(--rem));
}

/* *************************************
thanks & page-404
************************************* */
.thanks,
.page-404 {
  margin-block-start: calc(40 * var(--rem));
  padding-block: calc(100 * var(--rem));
}

.thanks__title,
.page-404__title {
  font-size: calc(30 * var(--rem));
  text-align: center;
  @media (width < 768px) {
    font-size: calc(26 * var(--rem));
  }
}

.thanks__text,
.page-404__text {
  font-size: calc(18 * var(--rem));
  margin-block-start: calc(40 * var(--rem));
  text-align: center;
  @media (width < 768px) {
    font-size: calc(16 * var(--rem));
  }
}

.thanks__btn,
.page-404__btn {
  margin-block-start: calc(40 * var(--rem));
  text-align: center;
}

/* *************************************
mv
************************************* */
.mv {
  position: relative;
}

.mv::before {
  content: '';
  display: block;
  width: min(15%, calc(348 * var(--rem)));
  height: 24%;
  background: url(../../library/images/common/decoration1.svg) no-repeat center / contain;
  position: absolute;
  top: 89%;
  left: 0;
  opacity: 0.7;
}

.mv::after {
  content: '';
  display: block;
  width: min(43%, calc(620 * var(--rem)));
  height: 51%;
  background: url(../../library/images/common/decoration1-1.svg) no-repeat center / contain;
  position: absolute;
  top: 73%;
  right: 0;
  @media (width < 768px) {
    top: 57%;
  }
}

.mv__img1 {
  width: 100%;
  @media (width < 768px) {
    height: calc(500 * var(--rem));
  }
}

.mv__img1 img {
  aspect-ratio: 1440 / 920;
  width: 100%;
  height: 100%;
  object-fit: cover;
  @media (width < 768px) {
    aspect-ratio: 3 /4;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.mv__img2 {
  width: calc(415 * var(--rem));
  position: absolute;
  top: 86%;
  right: 0;
  z-index: 20;
  @media (width < 768px) {
    width: calc(270 * var(--rem));
  }
}

.mv__img2 img {
  aspect-ratio: 1083 / 723;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv__text-block {
  position: absolute;
  top: 17%;
  right: 6%;
  @media (width < 768px) {
    top: 36%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding-inline: calc(20 * var(--rem));
    container-type: inline-size;
  }
}

.mv_title {
  font-size: calc(75 * var(--rem));
  line-height: 1.2;
  @media (width < 768px) {
    font-size: max(5cqi, 40px);
  }
}

.mv__text {
  font-size: calc(25 * var(--rem));
  font-weight: bold;
  margin-block-start: calc(23 * var(--rem));
  @media (width < 768px) {
    font-size: calc(12 * var(--rem));
  }
}

/* *************************************
happiness
************************************* */
.happiness {
  padding-block-start: calc(146 * var(--rem));
  padding-inline-start: calc(146 * var(--rem));
  @media (width < 768px) {
    padding-inline: 0;
    padding-block-start: calc(140 * var(--rem));
  }
}

.happiness__title-en {
  margin-inline-start: calc(18 * var(--rem));
  @media (width < 768px) {
    width: fit-content;
    margin-inline: auto;
  }
}

.happiness__container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: calc(40 * var(--rem));
  @media (width < 768px) {
    grid-template-columns: 1fr;
    margin-block-start: calc(8 * var(--rem));
    gap: calc(24 * var(--rem));
  }
}

.happiness__wrap {
  width: min(100%, calc(600 * var(--rem)));
  margin-inline-start: auto;
  @media (width < 768px) {
    order: 2;
    margin-inline-start: 0;
    padding-inline: 20px;
    width: 100%;
  }
}

.happiness__title-jp {
  margin-block-start: calc(38 * var(--rem));
  font-size: calc(45 * var(--rem));
  line-height: 1.4;
  letter-spacing: -0.06em;
  @media (width < 768px) {
    font-size: calc(30 * var(--rem));
    width: fit-content;
    margin-inline: auto;
  }
}

.happiness__text {
  font-size: calc(20 * var(--rem));
  margin-block-start: calc(19 * var(--rem));
  line-height: 2.2;
  letter-spacing: 0.05em;
  @media (width < 768px) {
    font-size: calc(16 * var(--rem));
  }
}

.happiness__btn {
  margin-block-start: calc(44 * var(--rem));
  @media (width < 768px) {
    text-align: center;
    margin-block-start: calc(24 * var(--rem));
  }
}

.happiness__img {
  margin-block-start: calc(160 * var(--rem));
  @media (width < 768px) {
    order: 1;
    margin-block-start: 0;
  }
}

.happiness__img img {
  aspect-ratio: 1015 /771;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* *************************************
top-company
************************************* */
.top-company {
  margin-block-start: calc(59 * var(--rem));
  position: relative;
  padding-inline-end: calc(130 * var(--rem));
  @media (width < 768px) {
    padding-inline: 0;
  }
}

.top-company::before {
  content: '';
  display: block;
  width: 14%;
  height: 37%;
  background: url(../../library/images/common/decoration2.svg) no-repeat center / contain;
  position: absolute;
  top: -24%;
  right: 0;
  opacity: 0.7;
  @media (width < 768px) {
    display: none;
  }
}

.top-company__container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: calc(72 * var(--rem));
  align-items: self-start;
  @media (width < 768px) {
    grid-template-columns: 1fr;
    gap: calc(24 * var(--rem));
  }
}

.top-company__img {
  @media (width < 768px) {
    position: relative;
  }
}

.top-company__img::before {
  @media (width < 768px) {
    content: '';
    display: block;
    background: url(../../library/images/common/decoration2.svg) no-repeat center / contain;
    position: absolute;
    right: 0;
    width: calc(210 * var(--rem));
    height: calc(170 * var(--rem));
    top: 81%;
    opacity: 0.7;
  }
}

.top-company__img img {
  aspect-ratio: 1015 /771;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-company__wrap {
  margin-block-start: calc(70 * var(--rem));
  width: min(100%, calc(620 * var(--rem)));
  @media (width < 768px) {
    padding-inline: 20px;
    margin-block-start: 0;
    width: 100%;
  }
}

.top-company__text {
  font-size: calc(20 * var(--rem));
  margin-block-start: calc(65 * var(--rem));
  line-height: 2.2;
  letter-spacing: 0.05em;
  @media (width < 768px) {
    font-size: calc(16 * var(--rem));
    margin-block-start: calc(40 * var(--rem));
    width: min(100%, calc(500 * var(--rem)));
    margin-inline: auto;
  }
}

.top-company__btns {
  display: grid;
  width: fit-content;
  grid-template-columns: repeat(2, 1fr);
  margin-block-start: calc(53 * var(--rem));
  gap: calc(20 * var(--rem)) calc(20 * var(--rem));
  @media (width < 768px) {
    grid-template-columns: 1fr;
    margin-block-start: calc(24 * var(--rem));
    margin-inline: auto;
  }
}

.top-company__btn {
  width: fit-content;
}

/* *************************************
top-recruit
************************************* */
.top-recruit {
  margin-block-start: calc(138 * var(--rem));
  padding-inline-start: calc(150 * var(--rem));
  position: relative;
  @media (width < 768px) {
    padding-inline: 0;
    margin-block-start: calc(68 * var(--rem));
  }
}

/* pc時のみ表示 */
.top-recruit::before {
  content: '';
  display: block;
  background: url(../../library/images/common/decoration3.svg) no-repeat center / contain;
  width: 19%;
  height: 69%;
  position: absolute;
  top: -37%;
  left: 0;
  z-index: -1;
  @media (width < 768px) {
    display: none;
  }
}

.top-recruit__container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: calc(40 * var(--rem));
  @media (width < 768px) {
    grid-template-columns: 1fr;
    gap: calc(24 * var(--rem));
  }
}

.top-recruit__wrap {
  margin-block-start: calc(81 * var(--rem));
  width: min(100%, calc(587 * var(--rem)));
  margin-inline-start: auto;
  position: relative;
  z-index: 10;
  @media (width < 768px) {
    padding-inline: 20px;
    order: 2;
    margin-block-start: 0;
    margin-inline: auto;
    width: min(100%, calc(375 * var(--rem)));
  }
}

.top-recruit__text {
  font-size: calc(20 * var(--rem));
  margin-block-start: calc(65 * var(--rem));
  line-height: 2.2;
  letter-spacing: 0.05em;
  @media (width < 768px) {
    font-size: calc(16 * var(--rem));
    margin-block-start: calc(40 * var(--rem));
    width: min(100%, calc(500 * var(--rem)));
    margin-inline: auto;
  }
}

.top-recruit__btn {
  margin-block-start: calc(50 * var(--rem));
  @media (width < 768px) {
    text-align: center;
    margin-block-start: calc(24 * var(--rem));
  }
}

.top-recruit__img {
  position: relative;
  @media (width < 768px) {
    order: 1;
  }
}

/* pc時のみ表示 */
.top-recruit__img::before {
  content: '';
  display: block;
  background: url(../../library/images/common/decoration4.svg) no-repeat center / contain;
  width: 63%;
  height: 41%;
  position: absolute;
  top: -9%;
  left: -41%;
  opacity: 0.7;
  @media (width < 768px) {
    display: none;
  }
}

/* sp時のみ表示 */
.top-recruit__img::after {
  @media (width < 768px) {
    content: '';
    display: block;
    background: url(../../library/images/common/decoration3.svg) no-repeat center / contain;
    width: 31%;
    height: 69%;
    position: absolute;
    top: 92%;
    left: 0;
    z-index: -1;
  }
}

.top-recruit__img img {
  aspect-ratio: 1015 /771;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* *************************************
parking-banner
************************************* */
.parking-banner {
  margin-block-start: calc(70 * var(--rem));
}

.parking-banner__link {
  display: block;
  position: relative;
}

.parking-banner__img {
  margin-inline: auto;
  @media (width < 768px) {
    width: 100%;
    height: calc(300 * var(--rem));
  }
}

.parking-banner__img img {
  aspect-ratio: 1440/ 271;
  width: 100%;
  height: 100%;
  object-fit: cover;
  @media (width < 768px) {
    aspect-ratio: 3/2;
  }
}

.parking-banner__text-block {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  @media (width < 768px) {
    width: 100%;
  }
}

.parking-banner__title {
  font-size: calc(45 * var(--rem));
  text-align: center;
  color: #ff5b19;
  line-height: 1;
  @media (width < 768px) {
    font-size: calc(30 * var(--rem));
  }
}

.parking-banner__sub-title {
  font-size: calc(55 * var(--rem));
  color: var(--white);
  display: flex;
  width: fit-content;
  align-items: center;
  gap: calc(14 * var(--rem));
  line-height: 1;
  margin-block-start: calc(16 * var(--rem));
  @media (width < 768px) {
    font-size: calc(35 * var(--rem));
    margin-inline: auto;
    line-height: 1.2;
  }
}

.parking-banner__sub-title::before {
  content: '';
  display: block;
  width: calc(50 * var(--rem));
  aspect-ratio: 1;
  background: url(../../library/images/top/parking-icon.svg) no-repeat center / contain;
}

.parking-banner__text-block-maru {
  background-color: #ff5b19;
  border-radius: 100vmax;
  width: calc(154 * var(--rem));
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  gap: calc(8 * var(--rem));
  position: absolute;
  top: 14%;
  right: 4%;
  rotate: 15deg;
  transform-origin: center;
  @media (width < 768px) {
    width: calc(80 * var(--rem));
    top: 5%;

    right: calc(50% - min(43vw, 165px));
  }
}

.parking-banner__text-block-maru-text {
  color: var(--white);
  font-weight: bold;
  font-size: calc(22 * var(--rem));
  text-align: center;
  line-height: 1;
  letter-spacing: 0.01em;
  @media (width < 768px) {
    font-size: calc(12 * var(--rem));
  }
}

/* *************************************
contact-section
************************************* */
.contact-section {
  background-color: var(--gray2);
  margin-block-start: calc(80 * var(--rem));
  padding-block: calc(90 * var(--rem)) calc(80 * var(--rem));
  @media (width < 768px) {
    padding-block: calc(56 * var(--rem));
  }
}

.contact-section__lead {
  font-size: calc(22 * var(--rem));
  font-weight: 500;
  text-align: center;
  margin-block-start: calc(64 * var(--rem));
  @media (width < 768px) {
    font-size: calc(18 * var(--rem));
    margin-block-start: calc(40 * var(--rem));
  }
}

.contact-section__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(24 * var(--rem));
  margin-block-start: calc(51 * var(--rem));
  @media (width < 768px) {
    grid-template-columns: 1fr;
    margin-block-start: calc(28 * var(--rem));
  }
}

.contact-section__wrap {
  background-color: var(--white);
  padding: calc(54 * var(--rem)) calc(20 * var(--rem));
}

.contact-section__sub-title {
  text-align: center;
  font-size: calc(22 * var(--rem));
  text-transform: uppercase;
}

.contact-section__tel-block {
  text-align: center;
  margin-block-start: calc(20 * var(--rem));
}

.contact-section__tel-num {
  font-size: calc(30 * var(--rem));
  text-transform: uppercase;
  color: var(--blue);
  font-weight: bold;
  @media (width < 768px) {
    font-size: calc(20 * var(--rem));
  }
}

.contact-section__tel-num span {
  font-size: calc(50 * var(--rem));
  @media (width < 768px) {
    font-size: calc(35 * var(--rem));
  }
}

.contact-section__tel-time {
  font-size: calc(18 * var(--rem));
}

.contact-section__btn {
  text-align: center;
  margin-block-start: calc(30 * var(--rem));
}

/* *************************************
to-top
************************************* */
.to-top {
  position: fixed;
  bottom: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.to-top.is-active {
  visibility: visible;
  opacity: 1;
}

.to-top__btn {
  display: block;
  width: calc(68 * var(--rem));
  @media (width < 768px) {
    width: calc(50 * var(--rem));
  }
}

.to-top__btn img {
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* *************************************
business
************************************* */
.business {
  margin-block-start: calc(123 * var(--rem));
  @media (width < 768px) {
    margin-block-start: calc(80 * var(--rem));
  }
}

/* *************************************
recruit-mv
************************************* */
.recruit-mv {
  position: relative;
  @media (width < 768px) {
    height: 100svh;
  }
}

.recruit-mv::before {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background-color: #00000020;
  @media (width < 768px) {
    background-color: #00000050;
  }
}

.recruit-mv::after {
  content: '';
  display: block;
  width: calc(358 * var(--rem));
  height: calc(453 * var(--rem));
  background: url(../../library/images/recruit/recruit-decoration2.svg) no-repeat center / contain;
  position: absolute;
  right: 0;
  bottom: -12%;
  @media (width < 768px) {
    display: none;
  }
}

.recruit-mv__img {
  @media (width < 768px) {
    height: inherit;
  }
}

.recruit-mv__img img {
  aspect-ratio: 1440 /1296;
  width: 100%;
  height: 100%;
  object-fit: cover;
  @media (width < 768px) {
  }
}

.recruit-mv__title {
  position: absolute;
  top: 14%;
  left: 0;
  padding-inline-start: calc(152 * var(--rem));
  @media (width < 768px) {
    padding-inline-start: calc(10 * var(--rem));
  }
}

.recruit-mv__title-container {
  font-size: calc(65 * var(--rem));
  color: var(--white);
  line-height: 1.5;
  position: relative;
  z-index: 10;
  @media (width < 768px) {
    font-size: calc(30 * var(--rem));
  }
}

.recruit-mv__title-container::before {
  content: '';
  display: block;
  width: calc(410 * var(--rem));
  height: calc(410 * var(--rem));
  background: url(../../library/images/recruit/recruit-decoration1.svg) no-repeat center / contain;
  position: absolute;
  top: -35%;
  left: -35%;
  z-index: -1;
  @media (width < 768px) {
    width: calc(200 * var(--rem));
    height: calc(200 * var(--rem));
  }
}

.recruit-mv__text-block {
  position: absolute;
  top: 62%;
  left: 0;
  padding-inline-start: calc(152 * var(--rem));
  @media (width < 768px) {
    top: revert;
    bottom: calc(20 * var(--rem));
    padding-inline: calc(10 * var(--rem));
  }
}

.recruit-mv__text-title {
  font-size: calc(40 * var(--rem));
  color: var(--white);
  line-height: 1;
  @media (width < 768px) {
    font-size: calc(20 * var(--rem));
  }
}

.recruit-mv__text {
  color: var(--white);
  margin-block-start: calc(40 * var(--rem));
  font-size: calc(20 * var(--rem));
  width: calc(590 * var(--rem));
  line-height: 2.2;
  @media (width < 768px) {
    width: 100%;
    font-size: calc(16 * var(--rem));
    margin-block-start: calc(16 * var(--rem));
    line-height: 1.5;
  }
}

/* *************************************
recruit-message
************************************* */
.recruit-message {
  padding-block-start: calc(137 * var(--rem));
  @media (width < 768px) {
    margin-block-start: calc(80 * var(--rem));
  }
}

.recruit-message__container {
  display: flex;
  align-items: flex-start;
  gap: calc(75 * var(--rem));
  margin-block-start: calc(115 * var(--rem));
  @media (width < 768px) {
    flex-direction: column;
    margin-block-start: calc(40 * var(--rem));
    gap: calc(24 * var(--rem));
  }
}

.recruit-message__img {
  width: 45%;
  @media (width < 768px) {
    width: 100%;
  }
}

.recruit-message__img img {
  aspect-ratio: 968 /738;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recruit-message__wrap {
  width: 39%;
  @media (width < 768px) {
    width: 100%;
    padding-inline: 20px;
  }
}

.recruit-message__text-title {
  font-size: calc(40 * var(--rem));
  line-height: 1.5;
  @media (width < 768px) {
    font-size: calc(24 * var(--rem));
  }
}

.recruit-message__text {
  margin-block-start: calc(24 * var(--rem));
  font-size: calc(20 * var(--rem));
  line-height: 2;
  @media (width < 768px) {
    font-size: calc(16 * var(--rem));
    margin-block-start: calc(16 * var(--rem));
  }
}

.recruit-message__text span {
  display: block;
  width: fit-content;
  margin-block-start: calc(58 * var(--rem));
  font-size: calc(20 * var(--rem));
  line-height: 2;
  margin-inline: auto calc(18 * var(--rem));
  @media (width < 768px) {
    font-size: calc(16 * var(--rem));
    margin-block-start: calc(24 * var(--rem));
  }
}

/* *************************************
recruit-interview
************************************* */
.recruit-interview {
  margin-block-start: calc(118 * var(--rem));
  padding-block: calc(90 * var(--rem)) calc(95 * var(--rem));
  background: var(--gray2);
  /* background:#e8ecee10; */
  @media (width < 768px) {
    margin-block-start: calc(80 * var(--rem));
  }
}

.recruit-interview__inner.inner {
  max-width: calc(1096 * var(--rem));
}

.recruit-interview__text {
  margin-block-start: calc(80 * var(--rem));
  font-size: calc(20 * var(--rem));
  text-align: center;
  line-height: 2;
}

.recruit-interview__list {
  margin-block-start: calc(64 * var(--rem));
}

/* *************************************
recruit-department
************************************* */
.recruit-department {
  padding-block: calc(124 * var(--rem)) calc(200 * var(--rem));
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
  background-size: 45px 45px;
  background-repeat: repeat;
  background-position: center center;
  /* overflow-x: hidden; */
  scroll-behavior: smooth;
  position: relative;
  @media (width < 768px) {
    padding-block-end: calc(24 * var(--rem));
  }
}

.recruit-department::before,
.recruit-department::after {
  content: '';
  display: block;
  position: absolute;
  pointer-events: none;
}

.recruit-department::before {
  width: calc(340 * var(--rem));
  height: calc(330 * var(--rem));
  top: -5%;
  left: 0;
  background: url(../../library/images/recruit/department-decoration1.svg) no-repeat center / contain;
  @media (width < 768px) {
    width: calc(100 * var(--rem));
  }
}

.recruit-department::after {
  width: calc(300 * var(--rem));
  height: calc(300 * var(--rem));
  top: -5%;
  right: 0;
  background: url(../../library/images/recruit/department-decoration2.svg) no-repeat center / contain;
  @media (width < 768px) {
    width: calc(120 * var(--rem));
  }
}

.recruit-department__inner.inner {
  max-width: calc(1100 * var(--rem));
}

.recruit-department__title {
}

.recruit-department__cat-list {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: calc(24 * var(--rem));
  width: min(100%, calc(850 * var(--rem)));
  margin-inline: auto;
  margin-block-start: calc(94 * var(--rem));
  @media (width < 768px) {
    gap: calc(16 * var(--rem));
  }
}

.recruit-department__btn {
  display: inline-bloc;
  border: 1px solid var(--border);
  font-size: calc(22 * var(--rem));
  font-weight: bold;
  padding: calc(22 * var(--rem)) calc(16 * var(--rem));
  background-color: var(--white);
  position: relative;
  color: var(--text);
  @media (width < 768px) {
    padding: calc(10 * var(--rem));
    font-size: calc(16 * var(--rem));
  }
}

.recruit-department__btn::before {
  content: '';
  display: block;
  width: calc(14 * var(--rem));
  aspect-ratio: 1;
  background-color: var(--blue);
  clip-path: polygon(35% 0, 35% 100%, 100% 50%);
  position: absolute;
  top: 52%;
  left: 30%;
  transform: translate(-50%, -50%);
  @media (width < 768px) {
    left: 14%;
  }
}

.recruit-department__btn.is-current {
  border-bottom: 4px solid var(--blue);
}

.recruit-department__list {
  margin-block-start: calc(80 * var(--rem));
  display: grid;
  gap: calc(85 * var(--rem));
  min-height: calc(550 * var(--rem));
  @media (width < 768px) {
    margin-block-start: calc(40 * var(--rem));
    min-height: calc(800 * var(--rem));
  }
}

.recruit-department__item {
  display: none;
}

/* *************************************
recruit-contact
************************************* */
.recruit-contact {
  background: url(../../library/images/recruit/recruit-contact-bg.webp) no-repeat center / cover;
  min-height: calc(350 * var(--rem));
  padding-block-start: calc(22 * var(--rem));
  position: relative;
}

.recruit-contact::before {
  content: '';
  display: block;
  width: calc(1140 * var(--rem));
  height: calc(425 * var(--rem));
  background: url(../../library/images/recruit/recruit-contact.webp) no-repeat center / cover;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  @media (width < 768px) {
    width: calc(370 * var(--rem));
    height: calc(140 * var(--rem));
    top: 2%;
    transform: translate(-50%, 0%);
  }
}

.recruit-contact__inner.inner {
  max-width: calc(1000 * var(--rem));
}

.recruit-contact__img {
  width: calc(140 * var(--rem));
  margin-inline: auto;
  @media (width < 768px) {
    width: calc(120 * var(--rem));
  }
}

.recruit-contact__img img {
  aspect-ratio: 103 /65;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recruit-contact__title {
  margin-block-start: calc(32 * var(--rem));
  @media (width < 768px) {
    margin-block-start: calc(64 * var(--rem));
  }
}

.recruit-contact__title a {
  display: flex;
  align-items: center;
  width: fit-content;
  margin-inline: auto;
  font-size: calc(26 * var(--rem));
  line-height: 1;
  @media (width < 768px) {
    font-size: calc(20 * var(--rem));
    padding-block: calc(20 * var(--rem));
  }
}

.recruit-contact__title a::before {
  content: '';
  display: block;
  width: calc(20 * var(--rem));
  aspect-ratio: 1;
  background-color: var(--blue);
  line-height: 1;
  clip-path: polygon(40% 0, 40% 100%, 100% 50%);
}

.recruit-contact__btn {
  display: block;
  width: fit-content;
  min-width: calc(365 * var(--rem));
  margin-inline: auto;
  margin-block-start: calc(23 * var(--rem));
  font-size: calc(24 * var(--rem));
  font-weight: bold;
  color: var(--white);
  background-color: var(--blue);
  text-align: center;
  padding: calc(27 * var(--rem)) calc(10 * var(--rem));
  @media (width < 768px) {
    min-width: revert;
    width: min(100%, calc(335 * var(--rem)));
    font-size: calc(20 * var(--rem));
    padding-block: calc(20 * var(--rem));
    margin-block-start: calc(10 * var(--rem));
  }
}

/* *************************************
recruitment-mv
************************************* */
.recruitment-mv {
  position: relative;
  margin-block-start: calc(80 * var(--rem));
}

.recruitment-mv::before {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background-color: #d0d9de50;
}

.recruitment-mv img {
  aspect-ratio: 2161 /697;
  width: 100%;
  height: 100%;
  object-fit: cover;
  @media (width < 768px) {
    aspect-ratio: 4/3;
  }
}

/* *************************************
ideal-candidate-profile
************************************* */
.ideal-candidate-profile {
  background-color: var(--gray2);
  padding-block: calc(65 * var(--rem)) calc(80 * var(--rem));
  position: relative;
}

.ideal-candidate-profile::after {
  content: '';
  display: block;
  width: calc(369 * var(--rem));
  height: calc(319 * var(--rem));
  background: url(../../library/images/recruitment/ideal-candidate-profile-decoration.svg) no-repeat center / contain;
  position: absolute;
  bottom: -34%;
  right: 0;
  z-index: 1;
  pointer-events: none;
  @media (width < 768px) {
    width: calc(147 * var(--rem));
    height: calc(119 * var(--rem));
    bottom: 0;
  }
}

.ideal-candidate-profile__container {
  display: grid;
  grid-template-columns: 1fr 2.6fr;
  gap: calc(47 * var(--rem));
  align-items: self-start;
  background-color: var(--white);
  padding-inline: calc(60 * var(--rem));
  padding-block: calc(48 * var(--rem)) calc(45 * var(--rem));
  @media (width < 768px) {
    gap: calc(24 * var(--rem));
    grid-template-columns: 1fr;
    padding-inline: calc(30 * var(--rem));
    padding-block: calc(40 * var(--rem));
  }
}

.ideal-candidate-profile__title {
}

.ideal-candidate-profile__list {
  display: grid;
  gap: calc(27 * var(--rem));
}

.ideal-candidate-profile__item {
  font-size: calc(24 * var(--rem));
  position: relative;
  padding-inline-start: calc(32 * var(--rem));
  @media (width < 768px) {
    font-size: calc(20 * var(--rem));
  }
}

.ideal-candidate-profile__item::before {
  content: '';
  display: block;
  width: calc(20 * var(--rem));
  aspect-ratio: 1;
  border: 1px solid var(--blue);
  position: absolute;
  top: calc(8 * var(--rem));
  left: 0;
}

/* *************************************
recruitment-application
************************************* */
.recruitment-application {
  margin-block-start: calc(70 * var(--rem));
  padding-block-end: calc(84 * var(--rem));
  @media (width < 768px) {
    padding-block-end: calc(40 * var(--rem));
  }
}

.recruitment-application__inner.inner {
  max-width: calc(1000 * var(--rem));
}

.recruitment-application__cat-list {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: calc(50 * var(--rem));
  width: min(100%, calc(630 * var(--rem)));
  margin-inline: auto;
  margin-block-start: calc(80 * var(--rem));
  @media (width < 768px) {
    gap: calc(24 * var(--rem));
  }
}

.recruitment-application__cat-item {
}

.recruitment-application__cat-btn {
  display: block;
  background-color: var(--white);
  font-size: calc(26 * var(--rem));
  font-weight: bold;
  color: var(--blue);
  line-height: 1;
  border: 1px solid var(--blue);
  padding: calc(24 * var(--rem)) calc(10 * var(--rem));
  position: relative;
  @media (width < 768px) {
    font-size: calc(18 * var(--rem));
    padding-block: calc(16 * var(--rem));
  }
}

.recruitment-application__cat-btn::after {
  content: '';
  display: block;
  width: calc(16 * var(--rem));
  aspect-ratio: 1;
  background-color: var(--blue);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  clip-path: polygon(0 0, 50% 60%, 100% 0);
}

.recruitment-application__cat-btn.is-current {
  background-color: var(--blue);
  color: var(--white);
}

.recruitment-application__list {
  margin-block-start: calc(74 * var(--rem));
  min-height: calc(1200 * var(--rem));
  @media (width < 768px) {
    margin-block-start: calc(40 * var(--rem));
  }
}

.recruitment-application__item {
  display: none;
}

.recruitment-application__table {
  margin-block-start: calc(24 * var(--rem));
}

/* *************************************
interview-single-title
************************************* */
.interview-single-title {
  margin-block-start: calc(80 * var(--rem));
  display: grid;
  place-content: center;
  min-height: calc(308 * var(--rem));
  @media (width < 768px) {
    min-height: calc(150 * var(--rem));
  }
}

/* *************************************
interview-single-mv
************************************* */
.interview-single-mv {
  position: relative;
}

.interview-single-mv::before {
  content: '';
  display: block;
  width: calc(650 * var(--rem));
  height: calc(650 * var(--rem));
  background: url(../../library/images/interview/interview-mv-decoration.svg) no-repeat center / contain;
  position: absolute;
  top: 0;
  left: 0;
  @media (width < 768px) {
    width: calc(100 * var(--rem));
    height: calc(100 * var(--rem));
  }
}

.interview-single-mv__img img {
  aspect-ratio: 2163 /978;
  width: 100%;
  height: 100%;
  object-fit: cover;
  @media (width < 768px) {
  }
}

.interview-single-mv__text-block {
  background-color: var(--white);
  padding: calc(40 * var(--rem)) calc(44 * var(--rem)) calc(63 * var(--rem)) calc(70 * var(--rem));
  position: absolute;
  top: 18%;
  left: 7%;
  @media (width < 768px) {
    padding: calc(20 * var(--rem));
    position: static;
    width: min(90%, calc(500 * var(--rem)));
    margin-inline: auto;
    margin-block-start: calc(16 * var(--rem));
    box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 0.2);
  }
}

.interview-single-mv__interview {
  display: inline-flex;
  align-items: center;
  gap: calc(4 * var(--rem));
  font-size: calc(22 * var(--rem));
  color: var(--blue);
  text-transform: uppercase;
  font-weight: bold;
  font-family: var(--font-en);
  margin-block-start: calc(16 * var(--rem));
  line-height: 1;
  @media (width < 768px) {
    font-size: calc(16 * var(--rem));
  }
}

.interview-single-mv__interview::before {
  content: '';
  display: block;
  width: calc(8 * var(--rem));
  height: calc(2 * var(--rem));
  background-color: var(--blue);
}

.interview-single-mv__title {
  margin-block-start: calc(23 * var(--rem));
  font-size: calc(37 * var(--rem));
  @media (width < 768px) {
    font-size: calc(20 * var(--rem));
  }
}

.interview-single-mv__tag {
  display: inline-block;
  font-size: calc(20 * var(--rem));
  font-weight: bold;
  line-height: 1;
  color: var(--white);
  background-color: var(--blue);
  padding: calc(10 * var(--rem)) calc(23 * var(--rem));
  margin-block-start: calc(24 * var(--rem));
  @media (width < 768px) {
    font-size: calc(16 * var(--rem));
  }
}

.interview-single-mv__list {
  display: flex;
  gap: calc(4 * var(--rem));
  margin-block-start: calc(17 * var(--rem));
}

.interview-single-mv__item {
  font-size: calc(18 * var(--rem));
  display: inline-flex;
  align-items: center;
  gap: calc(6 * var(--rem));
  @media (width < 768px) {
    font-size: calc(16 * var(--rem));
  }
}

.interview-single-mv__item:not(:first-child)::before {
  content: '/';
}

/* *************************************
interview-faq
************************************* */
.interview-faq {
  margin-block-start: calc(85 * var(--rem));
  @media (width < 768px) {
    margin-block-start: calc(40 * var(--rem));
  }
}

/* *************************************
interview-schedule
************************************* */
.interview-schedule {
  margin-block-start: calc(125 * var(--rem));
  padding-block: calc(40 * var(--rem)) calc(66 * var(--rem));
  background-color: var(--gray2);
  @media (width < 768px) {
    margin-block-start: calc(80 * var(--rem));
  }
}

.interview-schedule__title {
  font-size: calc(30 * var(--rem));
  font-weight: bold;
  color: var(--blue);
  @media (width < 768px) {
    font-size: calc(24 * var(--rem));
  }
}

.interview-schedule__container {
  background-color: var(--white);
  margin-block-start: calc(12 * var(--rem));
  padding-block: calc(30 * var(--rem)) calc(40 * var(--rem));
  padding-inline: calc(56 * var(--rem));
  width: min(100%, calc(920 * var(--rem)));
  position: relative;
  @media (width < 768px) {
    grid-template-columns: 1fr;
    gap: 0;
    padding-inline: calc(40 * var(--rem)) calc(20 * var(--rem));
  }
}

.interview-schedule__container::before {
  content: '';
  display: block;
  width: calc(213 * var(--rem));
  height: calc(90 * var(--rem));
  background: url(../../library/images/interview/one-day.svg) no-repeat center / contain;
  position: absolute;
  right: -4%;
  bottom: -14%;
  @media (width < 768px) {
    width: calc(150 * var(--rem));
    height: calc(90 * var(--rem));
    left: 0;
    right: revert;
  }
}

/* .interview-schedule__container::after {
  content: '';
  display: block;
  width: calc(340 * var(--rem));
  height: calc(400 * var(--rem));
  background: url(../../library/images/interview/ti.webp) no-repeat center / contain;
  position: absolute;
  right: -29%;
  bottom: -25%;
  @media (width < 768px) {
    width: calc(140 * var(--rem));
    height: calc(200 * var(--rem));
    right: 2%;
    bottom: -32%;
  }
} */

.interview-schedule__lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(60 * var(--rem));
  @media (width < 768px) {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.interview-schedule__list {
}

.interview-schedule__item {
  display: grid;
  grid-template-columns: calc(70 * var(--rem)) 1fr;
  gap: calc(10 * var(--rem));
  @media (width < 768px) {
    grid-template-columns: calc(55 * var(--rem)) 1fr;
  }
}

.interview-schedule__item {
  position: relative;
}

.interview-schedule__item::before {
  content: '';
  display: block;
  width: calc(8 * var(--rem));
  aspect-ratio: 1;
  border: 2px solid var(--blue);
  border-radius: 100vmax;
  position: absolute;
  top: calc(18 * var(--rem));
  left: calc(-26 * var(--rem));
  z-index: 1;
  background-color: var(--white);
  @media (width < 768px) {
  top: calc(13 * var(--rem));
  }
}

.interview-schedule__item::after {
  content: '';
  display: block;
  width: calc(1 * var(--rem));
  height: 100%;
  border-left: 2px solid var(--border);
  position: absolute;
  top: calc(5 * var(--rem));
  left: calc(-23 * var(--rem));
}

.interview-schedule__time {
  font-size: calc(26 * var(--rem));
  font-weight: bold;
  font-family: var(--font-en);
  color: var(--blue);
  @media (width < 768px) {
    font-size: calc(18 * var(--rem));
  }
}

.interview-schedule__text {
  font-size: calc(22 * var(--rem));
  @media (width < 768px) {
    font-size: calc(18 * var(--rem));
  }
}

.interview-schedule__img {
  width: 37%;
  position: absolute;
  bottom: calc(-66 * var(--rem));
  left: 92%;
  @media (width < 768px) {
    width: calc(140 * var(--rem));
    bottom: -32%;
    left: 100%;
    transform: translateX(-90%);
  }
}

.interview-schedule__img img {
  aspect-ratio: 507 / 595;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* *************************************
interview-other-lists
************************************* */
.interview-other-lists {
  margin-block-start: calc(117 * var(--rem));
  padding-block-end: calc(117 * var(--rem));
}

.interview-other-lists__list {
  margin-block-start: calc(40 * var(--rem));
}

/* *************************************
words-archive
************************************* */
.words-archive {
  margin-block-start: calc(80 * var(--rem));
}

.words-archive__wrap {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding-block-end: calc(25 * var(--rem));
  @media (width < 768px) {
    flex-direction: column;
  }
}

.words-archive__search {
  margin-inline-start: auto;
  @media (width < 768px) {
    margin-block-start: calc(24 * var(--rem));
  }
}

.words-archive__list {
  margin-block-start: calc(60 * var(--rem));
}

.words-archive__btn {
  margin-block-start: calc(53 * var(--rem));
  text-align: center;
}

/* *************************************
works-single
************************************* */
.works-single {
  margin-block-start: calc(103 * var(--rem));
  @media (width < 768px) {
    margin-block-start: calc(64 * var(--rem));
  }
}

.works-single__inner.inner {
  max-width: calc(1000 * var(--rem));
}

.works-single__wrap {
  display: inline-grid;
  grid-template-columns: repeat(2, auto);
  align-items: center;
  gap: calc(30 * var(--rem));
  @media (width < 768px) {
    gap: calc(16 * var(--rem));
  }
}

.works-single__era-name {
  font-size: calc(22 * var(--rem));
  line-height: 1;
  @media (width < 768px) {
    font-size: calc(18 * var(--rem));
  }
}

.works-single__cat {
  background-color: var(--blue);
  font-size: calc(18 * var(--rem));
  line-height: 1;
  color: var(--white);
  padding: calc(4 * var(--rem)) calc(17 * var(--rem));
  @media (width < 768px) {
    font-size: calc(16 * var(--rem));
  }
}

.works-single__title {
  margin-block-start: calc(10 * var(--rem));
  font-size: calc(32 * var(--rem));
  padding-block-end: calc(33 * var(--rem));
  border-bottom: 1px solid var(--border);
  position: relative;
  @media (width < 768px) {
    font-size: calc(24 * var(--rem));
    padding-block-end: calc(24 * var(--rem));
  }
}

.works-single__title::before {
  content: '';
  display: block;
  width: 14%;
  height: 1px;
  background-color: var(--blue);
  position: absolute;
  bottom: calc(-1 * var(--rem));
  left: 0;
}

.works-single__img {
  margin-block-start: calc(80 * var(--rem));
  @media (width < 768px) {
    margin-block-start: calc(40 * var(--rem));
  }
}

.works-single__img img {
  aspect-ratio: 523 /356;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.works-single__table {
  margin-block-start: calc(53 * var(--rem));
  @media (width < 768px) {
    margin-block-start: calc(32 * var(--rem));
  }
}

.works-single__pagination {
  margin-block-start: calc(90 * var(--rem));
  @media (width < 768px) {
    margin-block-start: calc(40 * var(--rem));
  }
}

/* *************************************
contact-title
************************************* */
.contact-title {
  margin-block-start: calc(80 * var(--rem));
  display: grid;
  place-content: center;
  min-height: calc(308 * var(--rem));
  @media (width < 768px) {
    min-height: calc(150 * var(--rem));
  }
}
