@charset "UTF-8";
body {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  color: #000;
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  html {
    font-size: vw(1480, 16);
  }
}
@media screen and (min-width: 1480px) {
  html {
    font-size: 16px;
  }
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.4s ease;
}

*,
*::before,
*::after {
  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 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%;
  height: auto;
}

/* 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: 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;
}

/*******トップの横スクロール******/
#top {
  overflow-x: auto;
  overflow-y: hidden;
  height: 100vh;
  height: 100dvh;
  /* スクロールバー非表示（Webkit系ブラウザ） */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE, Edge */
}
@media screen and (max-width: 768px) {
  #top {
    overflow: auto;
    height: auto;
    scrollbar-width: block; /* Firefox */
    -ms-overflow-style: block; /* IE, Edge */
  }
}

#top::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
@media screen and (max-width: 768px) {
  #top::-webkit-scrollbar {
    display: block;
  }
}

.top-container {
  display: flex;
  width: max-content;
}
@media screen and (max-width: 768px) {
  .top-container {
    flex-direction: column;
    width: 100%;
  }
}

.top-item {
  width: auto;
  height: 100vh;
}
@media screen and (max-width: 768px) {
  .top-item {
    height: auto;
  }
}

/****  pc,spだし分け  *****/
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

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

/*****  タイトル系  *******/
h1,
h2 {
  font-weight: normal;
}

.section-title {
  font-size: 8.8888888889vh;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  margin-bottom: 3.3333333333vh;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 11.8421052632vw;
    line-height: 1.3;
    margin-bottom: 5.2631578947vw;
  }
}

.section-titleSub {
  font-size: 2.2222222222vh;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .section-titleSub {
    font-size: 4.2105263158vw;
  }
}

/***** innerなど余白 *****/
.inner {
  margin-top: 16.6666666667vh;
}
@media screen and (max-width: 768px) {
  .inner {
    margin-top: 0;
    padding-inline: 5.2631578947vw;
  }
}

/******* flex ******/
.flex {
  display: flex;
}
@media screen and (max-width: 768px) {
  .flex {
    flex-direction: column;
  }
}

/****** font ****/
p {
  font-size: 1.25rem;
  line-height: 3;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 0.75rem;
    line-height: 2;
  }
}

/********** スクロール時にふわっと **********/
.fadein {
  transform: translateY(100px);
  opacity: 0;
}

.fadein.scrollin {
  transform: unset;
  opacity: 1;
  transition: 1s;
}

.--delay200 {
  transition-delay: 0.2s;
}

/*************　パーツ ************/
.btn {
  width: 100%;
  max-width: 20rem;
  height: 3.125rem;
}
@media screen and (max-width: 768px) {
  .btn {
    max-width: 60.5263157895vw;
    height: 13.1578947368vw;
  }
}
.btn:hover a {
  background-color: #fff;
  color: #005260;
}
.btn:hover a::after {
  background: no-repeat center/contain url(../images/btn-arrow-green.png);
}
.btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 6.25rem;
  background-color: #005260;
  border: 1px solid #005260;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  transition: all 0.4s ease;
}
@media screen and (max-width: 768px) {
  .btn a {
    font-size: 3.4210526316vw;
  }
}
.btn a::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.25rem;
  width: 12px;
  height: 10px;
  background: no-repeat center/contain url(../images/btn-arrow-white.png);
  transition: all 0.4s ease;
}
.btn.--gray:hover a {
  border: 1px solid #000;
}
.btn.--gray a {
  background-color: #ededed;
  border: 1px solid #ededed;
  color: #000;
}
.btn.--gray a::after {
  background: no-repeat center/contain url(../images/btn-arrow-black.png);
}

/*------------------------
パンクズ
------------------------*/
.bread {
  max-width: 1050px;
  margin: 6.25rem auto 3.125rem;
  padding-inline: 25px;
}
@media screen and (max-width: 768px) {
  .bread {
    margin: 15.7894736842vw 0;
    padding-inline: 5.2631578947vw;
  }
}
.bread.--white .bread__list a::before {
  background-color: #fff;
}

.bread__lists {
  display: flex;
  gap: 2.1875rem;
}
@media screen and (max-width: 768px) {
  .bread__lists {
    gap: 5.2631578947vw;
  }
}

.bread__list {
  position: relative;
  line-height: 1;
}
.bread__list:nth-child(n+2):before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -25px;
  width: 15px;
  height: 1px;
  background-color: #d8d8d8;
}
@media screen and (max-width: 768px) {
  .bread__list:nth-child(n+2):before {
    left: -3.9473684211vw;
    width: 2.6315789474vw;
  }
}
.bread__list a {
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: bold;
  position: relative;
  height: 100%;
  display: block;
}
@media screen and (max-width: 768px) {
  .bread__list a {
    font-size: 2.6315789474vw;
  }
}
.bread__list a:hover:before {
  width: 100%;
}
.bread__list a::before {
  display: block;
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: #000;
  transition: all 0.4s ease;
}

.footer {
  min-width: 100vw;
  color: #fff;
  background-color: #005260;
  position: relative;
  display: flex;
}
@media screen and (max-width: 768px) {
  .footer {
    flex-direction: column;
  }
}

.footer__mainCont {
  flex: 1;
  flex-shrink: 0;
  padding: 11.1111111111vh;
}
@media screen and (max-width: 768px) {
  .footer__mainCont {
    padding: 0;
  }
}
.footer__mainCont .inner {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  height: 77.7777777778vh;
}
@media screen and (max-width: 768px) {
  .footer__mainCont .inner {
    padding: 13.1578947368vw 7.8947368421vw 21.0526315789vw;
    height: auto;
  }
}

.footer__logo {
  display: flex;
  margin-bottom: 5.5555555556vh;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    margin-bottom: 10.5263157895vw;
  }
}
.footer__logo img {
  display: block;
  width: 12.5rem;
  height: auto;
}
@media screen and (max-width: 768px) {
  .footer__logo img {
    width: 27.3684210526vw;
  }
}
.footer__logo span {
  display: inline-block;
  margin-left: 1.25rem;
  margin-top: 0.625rem;
  width: 6.25rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.0625rem;
  line-height: 1;
  font-weight: bold;
  background-color: #004450;
}
@media screen and (max-width: 768px) {
  .footer__logo span {
    font-size: 3.4210526316vw;
    width: 21.0526315789vw;
    height: 8.4210526316vw;
    margin-top: 0;
    margin-left: 5.2631578947vw;
  }
}

.footer__address {
  font-size: 0.75rem;
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .footer__address {
    font-size: 0.625rem;
    line-height: 2.5;
    margin-bottom: 15.7894736842vw;
  }
}

.footer_bottom {
  margin-top: auto;
}

.footer__nav {
  margin-bottom: 18.8888888889vh;
}
@media screen and (max-width: 768px) {
  .footer__nav {
    margin-bottom: 26.3157894737vw;
  }
}
@media screen and (max-width: 768px) {
  .footer__nav {
    display: flex;
    gap: 15.7894736842vw;
    margin-bottom: 26.3157894737vw;
  }
}
.footer__nav .flex {
  flex-wrap: wrap;
  gap: 1.875rem;
  max-width: 25.9375rem;
}
@media screen and (max-width: 768px) {
  .footer__nav .flex {
    max-width: 100%;
  }
}
.footer__nav .flex + .flex {
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .footer__nav .flex + .flex {
    margin-top: 0;
  }
}

.footer__link a {
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer__link a {
    font-size: 3.9473684211vw;
  }
}
.footer__link a:hover:after {
  width: 100%;
}
.footer__link a::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: #fff;
  transition: all 0.4s ease;
}

.footer__toTop {
  flex-shrink: 0;
  border-left: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .footer__toTop {
    border-left: none;
    border-top: 1px solid #fff;
  }
}
.footer__toTop.ul-page a .arrow {
  transform: none;
}
.footer__toTop.ul-page a:hover .arrow {
  transform: translateY(-5px);
}
.footer__toTop a {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  gap: 1.25rem;
  grid-template-columns: 30px 1fr;
  padding: 0 16.1111111111vh;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer__toTop a {
    padding: 13.1578947368vw 0 21.0526315789vw;
    grid-template-columns: repeat(1, 1fr);
    gap: 3.9473684211vw;
    font-size: 6.3157894737vw;
  }
}
.footer__toTop a:hover .arrow {
  transform: translateX(-10px);
}
@media screen and (max-width: 768px) {
  .footer__toTop a:hover .arrow {
    transform: rotate(90deg) translateX(-10px);
  }
}
.footer__toTop a .arrow {
  display: block;
  transition: all 0.4s ease;
}
@media screen and (max-width: 768px) {
  .footer__toTop a .arrow {
    transform: rotate(90deg);
    width: 7.8947368421vw;
  }
}
.footer__toTop a .arrow img {
  height: auto;
}

.copy-right {
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 768px) {
  .copy-right {
    font-size: 0.625rem;
  }
}

@media (min-width: 769px) {
  .footer.ul-footer {
    display: block;
    min-width: 100%;
  }
  .footer.ul-footer .inner {
    max-width: 100%;
    height: auto;
  }
  .footer.ul-footer .footer__mainCont {
    padding: 3.75rem 2.5rem 3.125rem;
  }
  .footer.ul-footer .footer__top {
    margin-bottom: 3.75rem;
  }
  .footer.ul-footer .footer__nav {
    margin-bottom: 10.5rem;
  }
  .footer__toTop.ul-page {
    position: absolute;
    top: 4.375rem;
    right: 5rem;
    border-left: none;
  }
  .footer__toTop.ul-page a {
    border: 1px solid #fff;
    padding: 0 0 34px;
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    background-color: #004450;
    border: 1px solid #004450;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.4s ease;
  }
  .footer__toTop.ul-page a:hover {
    background-color: #fff;
    color: #004450;
  }
  .footer__toTop.ul-page a:hover span {
    transform: translateY(-5px);
  }
  .footer__toTop.ul-page a:hover span::after {
    opacity: 1;
  }
  .footer__toTop.ul-page a span {
    display: block;
    width: 14px;
    height: 10px;
    transition: all 0.2s ease;
    position: relative;
  }
  .footer__toTop.ul-page a span::after {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    background: no-repeat center/contain url(../images/ul-totop-arrow-green.png);
    z-index: 1;
    opacity: 0;
    transition: all 0.4s ease;
  }
}
body.nav-open {
  overflow: hidden;
}

.header {
  width: 100%;
  height: 3.75rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .header {
    height: 13.1578947368vw;
  }
}
.header.on-scroll .header__logo a img.normal {
  opacity: 0;
  visibility: hidden;
  height: 0;
}
.header.on-scroll .header__logo a img.scroll {
  opacity: 1;
  visibility: visible;
  height: auto;
}
.header.off {
  opacity: 0;
  visibility: hidden;
}

.header__inner {
  width: calc(100% - 60px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.4375rem;
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding-top: 3.1578947368vw;
  }
}

.header__logo {
  width: 7.5rem;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 26.3157894737vw;
  }
}
.header__logo a {
  display: block;
}
.header__logo a img {
  display: block;
  transition: visibility 0.4s ease;
}
.header__logo a img.scroll {
  opacity: 0;
  visibility: hidden;
  height: 0;
}

.header__left {
  padding-right: 4.375rem;
}

.header__entry.btn {
  flex: 1;
  min-width: 8.75rem;
  height: 2.125rem;
}
.header__entry.btn a {
  font-size: 0.8125rem;
}
.header__entry.btn a::after {
  display: none;
}

.header__btn {
  width: 40px;
  height: 14px;
  position: fixed;
  top: 33px;
  right: 30px;
}
@media screen and (max-width: 768px) {
  .header__btn {
    width: 7.8947368421vw;
    height: 3.6842105263vw;
    top: 5.2631578947vw;
    right: 5.2631578947vw;
  }
}

.header__btn span {
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  display: block;
  left: 0;
}

.header.is-active .header__btn span {
  background-color: #fff !important;
}

.header.on-scroll .header__btn span {
  background-color: #000;
}

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

.header__btn span:nth-child(2) {
  top: 7px;
}
@media screen and (max-width: 768px) {
  .header__btn span:nth-child(2) {
    top: 1.6vw;
  }
}

.header__btn span:nth-child(3) {
  top: 15px;
}
@media screen and (max-width: 768px) {
  .header__btn span:nth-child(3) {
    top: 3.2vw;
  }
}

.header.is-active .header__btn span:nth-child(1) {
  transform: rotate(-45deg);
  top: 9px;
}
@media screen and (max-width: 768px) {
  .header.is-active .header__btn span:nth-child(1) {
    top: 2vw;
  }
}

.header.is-active .header__btn span:nth-child(2) {
  display: none;
}

.header.is-active .header__btn span:nth-child(3) {
  transform: rotate(45deg);
  top: 9px;
}
@media screen and (max-width: 768px) {
  .header.is-active .header__btn span:nth-child(3) {
    top: 2vw;
  }
}

/*
  -----------------------------------
sp
  -----------------------------------
  */
.headerSp__nav {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0%;
  width: 28.75rem;
  height: 100%;
  overflow-y: scroll;
  background-color: #005260;
  padding: 13.3333333333vh 3.75rem 0;
  transition: all 0.4s ease;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 768px) {
  .headerSp__nav {
    width: 100%;
    padding: 14.2857142857vh 13.1578947368vw 12.2222222222vh;
  }
}
.headerSp__nav .header__nav-items {
  width: 100%;
}
.headerSp__nav .header__nav-item {
  margin-bottom: 4.4444444444vh;
}
@media screen and (max-width: 768px) {
  .headerSp__nav .header__nav-item {
    margin-bottom: 6.4285714286vh;
  }
}
.headerSp__nav .header__nav-item.--external .header__nav-link {
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .headerSp__nav .header__nav-item.--external .header__nav-link {
    font-size: 3.6842105263vw;
  }
}
.headerSp__nav .header__nav-item.--external .header__nav-link span {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 5px;
  background: no-repeat center/contain url(../images/external-icon.png);
  transform: translateY(3px);
}
@media screen and (max-width: 768px) {
  .headerSp__nav .header__nav-item.--external .header__nav-link span {
    width: 5.2631578947vw;
    height: 5.2631578947vw;
    margin-left: 2vw;
  }
}
.headerSp__nav .header__nav-link {
  width: fit-content;
  font-size: 1.25rem;
  line-height: 0.1em;
  letter-spacing: 0.01em;
  color: #fff;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 768px) {
  .headerSp__nav .header__nav-link {
    font-size: 3.9473684211vw;
  }
}
.headerSp__nav .header__nav-link::after {
  display: block;
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: #fff;
  transition: all 0.4s ease;
}
.headerSp__nav .header__nav-link:hover:after {
  width: 100%;
}
.headerSp__nav .header__nav-item.btn {
  max-width: 13.75rem;
  margin-bottom: 6.6666666667vh;
}
@media screen and (max-width: 768px) {
  .headerSp__nav .header__nav-item.btn {
    max-width: 57.8947368421vw;
    height: 13.1578947368vw;
    margin-bottom: 7.1428571429vh;
  }
}
.headerSp__nav .header__nav-item.btn:hover a {
  border: 1px solid #fff;
  background-color: #005260;
  color: #fff;
}
.headerSp__nav .header__nav-item.btn a {
  font-size: 1.25rem;
  letter-spacing: normal;
  background-color: #fff;
  border: 1px solid #fff;
  color: #005260;
}
@media screen and (max-width: 768px) {
  .headerSp__nav .header__nav-item.btn a {
    font-size: 5.2631578947vw;
  }
}
.headerSp__nav .header__nav-item.btn a::after {
  display: none;
}

.header.is-active .headerSp__nav {
  opacity: 1;
  visibility: visible;
}

#top {
  /*------------------------
  index
  ------------------------*/
  /*------------------------
  ギャラリー
  ------------------------*/
  /*------------------------
  会社を知る
  ------------------------*/
  /*------------------------
  ビルドの強み
  ------------------------*/
  /*------------------------
  インタビュー
  ------------------------*/
  /*------------------------
  カジュアル面談
  ------------------------*/
  /*------------------------
  Q&A
  ------------------------*/
}
#top .mv {
  position: relative;
  width: 100vw;
}
@media screen and (max-width: 768px) {
  #top .mv {
    width: 100%;
    margin-bottom: 0.625rem;
  }
}
#top .mv__textWrapper {
  position: absolute;
  bottom: 8.8888888889vh;
  left: 8.8888888889vh;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #top .mv__textWrapper {
    bottom: 15.7894736842vw;
    left: 0;
    padding-inline: 7.3684210526vw;
  }
}
#top .mv__catch,
#top .mv__desc {
  color: #fff;
  font-weight: bold;
}
#top .mv__catch {
  font-size: 2.5rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
  margin-bottom: 3.3333333333vh;
}
@media screen and (max-width: 768px) {
  #top .mv__catch {
    font-size: 6.0526315789vw;
    line-height: 1.6;
    letter-spacing: 0.1em;
  }
}
#top .mv__desc {
  font-size: 0.875rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #top .mv__desc {
    font-size: 3.1578947368vw;
    line-height: 2;
  }
}
#top .mv__slider .swiper-slide {
  width: 100% !important;
  height: 100vh;
}
#top .mv__slider .swiper-slide img {
  height: 100%;
  object-fit: cover;
}
#top .mv__scroll {
  position: absolute;
  bottom: 5.5555555556vh;
  right: 5.5555555556vh;
  z-index: 2;
}
#top .mv__scroll:hover a {
  background-color: #fff;
  color: #005260;
}
#top .mv__scroll:hover a span {
  background: no-repeat center/contain url(../images/top/scroll-arrow-green.png);
}
#top .mv__scroll a {
  padding-top: 5px;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background-color: #005260;
  border: 1px solid #005260;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.2s ease;
}
#top .mv__scroll a span {
  display: block;
  width: 20px;
  height: 10px;
  margin-top: 10px;
  background: no-repeat center/contain url(../images/top/scroll-arrow.png);
  transition: all 0.2s ease;
}
#top .index {
  padding-left: calc(340 * 100vw / 1920);
  margin-right: calc(100 * 100vw / 1920);
}
@media screen and (max-width: 768px) {
  #top .index {
    display: none;
  }
}
#top .index .section-title {
  margin-bottom: 6.6666666667vh;
}
#top .index .inner {
  min-width: 39.375rem;
}
#top .index__list {
  margin-bottom: 5.5555555556vh;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
#top .index__list:last-child {
  margin-bottom: 0;
}
#top .index__list::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: calc(100% - 11px);
  height: 1px;
  background-color: #d8d8d8;
  z-index: -1;
}
#top .index__list::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 14px;
  height: 8px;
  background: no-repeat center/contain url(../images/btn-arrow-black.png);
}
#top .index__list a {
  display: flex;
  align-items: end;
  gap: 1.25rem;
  background-color: #fff;
}
#top .index__list a .en {
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
}
#top .index__list a .jp {
  font-size: 0.9375rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: bold;
  padding-bottom: 7px;
  margin-right: 1.875rem;
}
#top .index__list .line {
  height: 1px;
  background-color: #d8d8d8;
  position: relative;
}
#top .gallery {
  display: flex;
  gap: 0.625rem;
}
@media screen and (max-width: 768px) {
  #top .gallery {
    width: 100%;
    overflow: hidden;
    flex-direction: column;
    margin-bottom: 21.0526315789vw;
  }
}
#top .gallery__slider {
  height: 100vh;
}
@media screen and (max-width: 768px) {
  #top .gallery__slider {
    height: 59.2105263158vw;
  }
}
#top .gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}
#top .gallery__slider .swiper-slide {
  background-color: #005260;
  width: 55.5555555556vh;
  height: auto !important;
}
@media screen and (max-width: 768px) {
  #top .gallery__slider .swiper-slide {
    width: auto !important;
    height: 59vw !important;
  }
}
#top .gallery__slider .swiper-slide img {
  width: auto !important;
  height: 100%;
  object-fit: cover;
}
#top .about {
  margin-left: calc(340 * 100vw / 1920);
}
@media screen and (max-width: 768px) {
  #top .about {
    margin-left: 0;
    margin-bottom: 21.0526315789vw;
  }
}
#top .about .inner {
  display: flex;
}
@media screen and (max-width: 768px) {
  #top .about .inner {
    flex-direction: column;
  }
}
#top .about .section-titleSub {
  margin-bottom: 8.8888888889vh;
}
@media screen and (max-width: 768px) {
  #top .about .section-titleSub {
    margin-bottom: 10.5263157895vw;
  }
}
#top .about__text {
  max-width: 40rem;
  margin-right: calc(80 * 100vw / 1920);
}
@media screen and (max-width: 768px) {
  #top .about__text {
    max-width: 100%;
    margin-right: 0;
    padding-inline: 5.2631578947vw;
  }
}
#top .about__desc {
  font-size: 1.25rem;
  line-height: 2;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #top .about__desc {
    font-size: 3.1578947368vw;
    margin-bottom: 7.8947368421vw;
  }
}
#top .about__img {
  width: 62.5rem;
  margin-top: 1.1111111111vh;
}
@media screen and (max-width: 768px) {
  #top .about__img {
    width: 100%;
    height: auto;
    margin-top: 0;
  }
}
#top .about__img img {
  border-radius: 0.625rem;
}
#top .our-advantage {
  margin-left: calc(340 * 100vw / 1920);
  margin-right: calc(50 * 100vw / 1920);
}
@media screen and (max-width: 768px) {
  #top .our-advantage {
    margin-inline: 0;
    margin-bottom: 21.0526315789vw;
  }
}
#top .our-advantage .inner {
  display: flex;
}
@media screen and (max-width: 768px) {
  #top .our-advantage .inner {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  #top .our-advantage .title-set {
    padding-inline: 5.2631578947vw;
  }
}
@media screen and (max-width: 768px) {
  #top .our-advantage .section-title {
    order: 1;
  }
}
#top .our-advantage .section-titleSub {
  margin-bottom: 8.8888888889vh;
}
@media screen and (max-width: 768px) {
  #top .our-advantage .section-titleSub {
    margin-bottom: 7.8947368421vw;
    order: 2;
  }
}
@media screen and (max-width: 768px) {
  #top .our-advantage__text {
    display: contents;
  }
}
#top .our-advantage__desc__wrapper {
  display: flex;
  gap: calc(100 * 100vw / 1920);
  margin-right: calc(80 * 100vw / 1920);
}
@media screen and (max-width: 768px) {
  #top .our-advantage__desc__wrapper {
    order: 4;
    flex-direction: column;
    margin-right: 0;
    padding-inline: 5.2631578947vw;
  }
}
#top .our-advantage__desc {
  max-width: 43.75rem;
  font-size: 1.25rem;
  line-height: 2;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #top .our-advantage__desc {
    font-size: 3.1578947368vw;
  }
}
#top .our-advantage__img {
  width: auto;
  height: 75.5555555556vh;
}
#top .our-advantage__img img {
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  #top .our-advantage__img {
    order: 3;
    margin-top: 0;
    max-width: 100%;
  }
}
#top .interview.top-item {
  width: 100vw;
  height: 100vh;
  position: relative;
  display: flex;
}
@media screen and (max-width: 768px) {
  #top .interview.top-item {
    display: block;
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  #top .interview.top-item .section-title {
    color: #fff;
  }
}
#top .interview.top-item .interview__link.btn {
  max-width: 11.5rem;
  height: 2.125rem;
}
@media screen and (max-width: 768px) {
  #top .interview.top-item .interview__link.btn {
    max-width: 60.5263157895vw;
    height: 13.1578947368vw;
    margin: 0 auto 21.0526315789vw;
  }
}
#top .interview.top-item .interview__link.btn:hover a {
  background-color: #000;
  color: #fff;
}
#top .interview.top-item .interview__link.btn:hover a:after {
  background: no-repeat center/contain url(../images/btn-arrow-white.png);
}
#top .interview.top-item .interview__link.btn a {
  font-size: 0.8125rem;
  background-color: #fff;
  color: inherit;
  border: none;
}
@media screen and (max-width: 768px) {
  #top .interview.top-item .interview__link.btn a {
    font-size: 3.4210526316vw;
    background-color: #ededed;
  }
}
#top .interview.top-item .interview__link.btn a::after {
  width: 6px;
  height: 6px;
  right: 15px;
  background: no-repeat center/contain url(../images/btn-arrow-black.png);
}
#top .interview__mainImg {
  width: 100vw;
  height: 100vh;
  position: relative;
  z-index: -1;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 768px) {
  #top .interview__mainImg {
    width: 100%;
    height: auto;
    padding-top: 100%;
    margin-bottom: 7.8947368421vw;
  }
}
@media screen and (max-width: 768px) {
  #top .interview__mainImg picture {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
}
#top .interview__mainImg img {
  height: 100vh;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  #top .interview__mainImg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 1/1;
    height: 100%;
    object-fit: cover;
  }
}
#top .interview__cont {
  position: absolute;
  bottom: 8.8888888889vh;
  left: calc(50% - 30vw);
  width: calc(1200 * 100vw / 1920);
  z-index: 4;
  display: flex;
  align-items: end;
}
@media screen and (max-width: 768px) {
  #top .interview__cont {
    bottom: auto;
    top: 67.3684210526vw;
    left: 7.8947368421vw;
  }
}
#top .intervrew__titelBox {
  display: flex;
  align-items: end;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #top .intervrew__titelBox {
    flex-direction: column;
    align-items: start;
  }
}
#top .intervrew__titelBox .section-title {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 0;
  margin-right: calc(26 * 100vw / 1920);
  transform: translateY(0.3vw);
}
@media screen and (max-width: 768px) {
  #top .intervrew__titelBox .section-title {
    font-size: 13.1578947368vw;
    line-height: 1.3;
    letter-spacing: 0.05em;
  }
}
#top .intervrew__titelBox .section-titleSub {
  font-size: 0.9375rem;
  margin-right: calc(30 * 100vw / 1920);
}
@media screen and (max-width: 768px) {
  #top .intervrew__titelBox .section-titleSub {
    font-size: 4.2105263158vw;
    margin-right: 0;
  }
}
#top .interview__items {
  display: flex;
  gap: 4.4444444444vh;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #top .interview__items {
    position: static;
    flex-direction: column;
    transform: none;
    padding-inline: 7.8947368421vw;
    gap: 0rem;
  }
}
#top .interview__item {
  width: 33.3333333333vh;
  color: #fff;
  display: block;
  transition: all 0.4s ease;
}
@media screen and (max-width: 768px) {
  #top .interview__item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 3.9473684211vw;
    color: inherit;
    font-weight: bold;
    margin-bottom: 2.6315789474vw;
  }
  #top .interview__item:last-child {
    margin-bottom: 7.8947368421vw;
  }
}
#top .interview__item:hover {
  color: #005260;
}
#top .interview__item:hover .interview__item--img img {
  transform: scale(1.1);
}
#top .interview__item--text {
  display: contents;
}
@media screen and (max-width: 768px) {
  #top .interview__item--text {
    display: block;
    flex: 1;
  }
}
#top .interview__item--img {
  margin-bottom: 3.3333333333vh;
  overflow: hidden;
}
#top .interview__item--img img {
  transition: all 1s ease;
}
@media screen and (max-width: 768px) {
  #top .interview__item--img {
    width: 28.9473684211vw;
    margin-bottom: 0;
  }
}
#top .interview__item--category {
  font-size: 2.2222222222vh;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: bold;
  margin-bottom: 1.1111111111vh;
  transition: all 0.4s ease;
}
@media screen and (max-width: 768px) {
  #top .interview__item--category {
    font-size: 3.6842105263vw;
    margin-bottom: 2.6315789474vw;
    letter-spacing: normal;
  }
}
#top .interview__item--catch {
  font-size: 2.2222222222vh;
  line-height: 2;
  font-weight: bold;
  transition: all 0.4s ease;
}
@media screen and (max-width: 768px) {
  #top .interview__item--catch {
    font-size: 3.1578947368vw;
  }
}
#top .meeting {
  margin-left: calc(390 * 100vw / 1920);
}
@media screen and (max-width: 768px) {
  #top .meeting {
    margin-left: 0;
    margin-bottom: 21.0526315789vw;
  }
}
#top .meeting__top {
  gap: 3.75rem;
  margin-bottom: 4.4444444444vh;
}
@media screen and (max-width: 768px) {
  #top .meeting__top {
    gap: 0rem;
    padding-inline: 5.2631578947vw;
    margin-bottom: 21.0526315789vw;
  }
}
#top .meeting__title {
  font-size: 7.1111111111vh;
  line-height: 1.8;
  letter-spacing: 0.1em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #top .meeting__title {
    font-size: 8.4210526316vw;
    margin-bottom: 7.8947368421vw;
  }
}
#top .meeting__text {
  width: 37.5rem;
}
@media screen and (max-width: 768px) {
  #top .meeting__text {
    width: 100%;
  }
}
#top .meeting__desc {
  font-size: 2.2222222222vh;
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: bold;
  margin-bottom: 2.2222222222vh;
}
@media screen and (max-width: 768px) {
  #top .meeting__desc {
    font-size: 0.75rem;
    margin-bottom: 5.2631578947vw;
  }
}
#top .meeting__btn.btn {
  max-width: 14.375rem;
}
@media screen and (max-width: 768px) {
  #top .meeting__btn.btn {
    max-width: 60.5263157895vw;
    margin: 0 auto;
  }
}
#top .meeting__imgs {
  display: flex;
  max-width: 85rem;
}
#top .meeting__imgs img {
  display: block;
  width: 50%;
}
#top .qa {
  margin-left: calc(340 * 100vw / 1920);
  margin-right: calc(340 * 100vw / 1920);
}
@media screen and (max-width: 768px) {
  #top .qa {
    margin-inline: 0;
  }
}
@media screen and (max-width: 768px) {
  #top .qa .inner {
    display: flex;
    flex-direction: column;
  }
}
#top .qa .qa__titleSet {
  order: 1;
}
@media screen and (max-width: 768px) {
  #top .qa .qa__titleSet {
    padding-inline: 5.2631578947vw;
    margin-bottom: 7.8947368421vw;
  }
}
#top .qa__top {
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 7.7777777778vh;
}
@media screen and (max-width: 768px) {
  #top .qa__top {
    display: contents;
  }
}
#top .qa__btn.btn {
  max-width: 11.5rem;
  height: 2.125rem;
}
@media screen and (max-width: 768px) {
  #top .qa__btn.btn {
    order: 3;
    max-width: 60.5263157895vw;
    height: 13.1578947368vw;
    margin: 0 auto 21.0526315789vw;
  }
}
#top .qa__btn.btn a {
  font-size: 0.8125rem;
}
@media screen and (max-width: 768px) {
  #top .qa__btn.btn a {
    font-size: 3.4210526316vw;
  }
}

/*------------------------
QAパーツ
------------------------*/
.qa__items {
  display: grid;
  grid-template-columns: repeat(3, 410px);
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .qa__items {
    order: 2;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2.6315789474vw;
    margin-bottom: 7.8947368421vw;
  }
}

.qa__item {
  padding: 1.875rem 1.875rem;
  border: 1px solid #d8d8d8;
}
@media screen and (max-width: 768px) {
  .qa__item {
    padding: 5.2631578947vw 2.6315789474vw;
  }
}

.qa__q {
  font-size: 1.125rem;
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: bold;
  margin-bottom: 3.3333333333vh;
  padding-left: 3.125rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .qa__q {
    font-size: 3.6842105263vw;
    line-height: 1.7;
    margin-bottom: 7.8947368421vw;
    padding-left: 13.1578947368vw;
  }
}
.qa__q::before {
  display: block;
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 40px;
  height: 40px;
  background: no-repeat center/contain url(../images/top/q-icon.png);
}
@media screen and (max-width: 768px) {
  .qa__q::before {
    width: 10.5263157895vw;
    height: 10.5263157895vw;
    top: -2vw;
  }
}

.qa__a {
  padding-left: 3.125rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .qa__a {
    padding-left: 13.1578947368vw;
  }
}
.qa__a::before {
  display: block;
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 40px;
  height: 40px;
  background: no-repeat center/contain url(../images/top/a-icon.png);
}
@media screen and (max-width: 768px) {
  .qa__a::before {
    width: 10.5263157895vw;
    height: 10.5263157895vw;
    top: -2vw;
  }
}
.qa__a .flow,
.qa__a .text {
  font-size: 0.875rem;
  line-height: 1.7;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .qa__a .flow,
.qa__a .text {
    font-size: 3.1578947368vw;
  }
}
.qa__a .flow {
  display: block;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .qa__a .flow {
    margin-bottom: 4.7368421053vw;
  }
}
.qa__a .flow .delta {
  width: 14px;
  display: inline-block;
  transform: translateY(3px);
}
.qa__a .flow .small {
  font-size: 0.625rem;
}

/*------------------------
募集職種
------------------------*/
.spacer {
  width: 30vw;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .spacer {
    display: none;
  }
}

.job-information {
  padding-left: calc(340 * 100vw / 1920);
}
@media screen and (max-width: 768px) {
  .job-information {
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .job-information .inner {
    display: flex;
    flex-direction: column;
    padding-inline: 5.2631578947vw;
    padding-bottom: 7.8947368421vw;
  }
}
@media screen and (max-width: 768px) {
  .job-information .job-information__titleSet {
    padding-inline: 2.6315789474vw;
  }
}
@media screen and (max-width: 768px) {
  .job-information .section-title {
    line-height: 1.3;
    margin-bottom: 5.2631578947vw;
    order: 1;
  }
}
@media screen and (max-width: 768px) {
  .job-information .section-titleSub {
    margin-bottom: 7.8947368421vw;
    order: 2;
  }
}

.job-information__top {
  margin-bottom: 6.6666666667vh;
  justify-content: space-between;
  align-items: end;
}
@media screen and (max-width: 768px) {
  .job-information__top {
    display: contents;
  }
}

.job-information__link.btn {
  max-width: 11.5rem;
  height: 2.125rem;
  order: 4;
}
@media screen and (max-width: 768px) {
  .job-information__link.btn {
    max-width: 60.5263157895vw;
    height: 13.1578947368vw;
    margin: 0 auto;
  }
}
.job-information__link.btn a {
  font-size: 0.8125rem;
}
@media screen and (max-width: 768px) {
  .job-information__link.btn a {
    font-size: 3.4210526316vw;
  }
}

.job-information__items {
  display: grid;
  gap: 1.875rem 1.25rem;
  grid-auto-flow: column; /* ←列方向にアイテムを並べる */
  grid-template-rows: repeat(2, auto); /* 2行 */
  grid-auto-columns: 420px; /* 各列の幅 */
}
@media screen and (max-width: 768px) {
  .job-information__items {
    order: 3;
    grid-auto-flow: row; /* 行方向に流す */
    grid-template-rows: none; /* 行数固定を解除 */
    grid-template-columns: 100%; /* 全幅1列 */
    grid-auto-columns: unset; /* 自動列幅の指定を解除 */
    gap: 5.2631578947vw;
    margin-bottom: 7.8947368421vw;
  }
}

.job-information__item {
  padding: 4.4444444444vh 3.3333333333vh;
  background-color: #f3f3f3;
  position: relative;
}
@media screen and (max-width: 768px) {
  .job-information__item {
    padding: 1.875rem 1.25rem;
  }
}
.job-information__item:hover span.line.--top {
  width: 100%;
}
.job-information__item:hover span.line.--right {
  height: 100%;
  transition-delay: 0.2s;
}
.job-information__item:hover span.line.--bottom {
  width: 100%;
  transition-delay: 0.4s;
}
.job-information__item:hover span.line.--left {
  height: 100%;
  transition-delay: 0.6s;
}
.job-information__item::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 6px;
  right: 6px;
  width: 12px;
  height: 12px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
}
.job-information__item span.line {
  position: absolute;
  background-color: #000;
  transition: all 0.2s linear;
}
.job-information__item span.line.--top, .job-information__item span.line.--bottom {
  width: 0%;
  height: 2px;
}
.job-information__item span.line.--left, .job-information__item span.line.--right {
  width: 2px;
  height: 0%;
}
.job-information__item span.line.--top {
  top: 0;
  left: 0;
}
.job-information__item span.line.--bottom {
  bottom: 0;
  right: 0;
}
.job-information__item span.line.--left {
  left: 0;
  bottom: 0;
}
.job-information__item span.line.--right {
  right: 0;
  top: 0;
}

.job-information__item--title {
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: bold;
  margin-bottom: 2.2222222222vh;
}
@media screen and (max-width: 768px) {
  .job-information__item--title {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
}

.job-information__item--desc {
  font-size: 0.875rem;
  line-height: 1.7;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .job-information__item--desc {
    font-size: 0.75rem;
  }
}

/*------------------------
    comeback
    ------------------------*/
.comeback {
  margin-left: calc(170 * 100vw / 1920);
  width: 22.5rem;
}
@media screen and (max-width: 768px) {
  .comeback {
    margin-left: 0;
    width: 100%;
    margin: 0 auto 21.0526315789vw;
    padding: 15.7894736842vw 0;
    border-top: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
  }
}
@media screen and (max-width: 768px) {
  .comeback .inner {
    max-width: 78.9473684211vw;
    margin: 0 auto;
  }
}

.comeback__title {
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 4.4444444444vh;
}
@media screen and (max-width: 768px) {
  .comeback__title {
    font-size: 6.3157894737vw;
    margin-bottom: 5.2631578947vw;
  }
}

.comeback__img {
  width: 100%;
  margin-bottom: 3.3333333333vh;
}
@media screen and (max-width: 768px) {
  .comeback__img {
    margin-bottom: 5.2631578947vw;
  }
}

.comeback__desc {
  font-size: 1.25rem;
  line-height: 2;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2.2222222222vh;
}
@media screen and (max-width: 768px) {
  .comeback__desc {
    font-size: 1rem;
  }
}

.comeback__btn.btn {
  max-width: 11.5rem;
  height: 2.125rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .comeback__btn.btn {
    max-width: 60.5263157895vw;
    height: 13.1578947368vw;
  }
}
.comeback__btn.btn a {
  font-size: 0.8125rem;
}
@media screen and (max-width: 768px) {
  .comeback__btn.btn a {
    font-size: 3.4210526316vw;
  }
}

/*------------------------
下層ページ共通
------------------------*/
.ul-page .inner {
  max-width: 62.5rem;
  margin: 0 auto;
}
.ul-page .meeting {
  margin: 0 auto 6.25rem;
  width: 100%;
  max-width: 53.125rem;
}
@media screen and (max-width: 768px) {
  .ul-page .meeting {
    padding: 0;
    max-width: 100%;
    margin: 0 auto 21.0526315789vw;
  }
}
.ul-page .meeting .inner {
  display: flex;
  align-items: center;
  gap: 5.8823529412%;
}
@media screen and (max-width: 768px) {
  .ul-page .meeting .inner {
    flex-direction: column;
    gap: 0rem;
  }
}
.ul-page .meeting__img {
  width: 40%;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .ul-page .meeting__img {
    width: 100%;
    margin-bottom: 7.8947368421vw;
  }
}
.ul-page .meeting__text {
  flex: 1;
}
.ul-page .meeting__title {
  font-size: 1.625rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: bold;
  margin-bottom: 1.875rem;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .ul-page .meeting__title {
    font-size: 4.2105263158vw;
    margin-bottom: 5.2631578947vw;
    text-align: center;
  }
}
.ul-page .meeting__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  font-weight: bold;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .ul-page .meeting__desc {
    font-size: 3.1578947368vw;
    margin-bottom: 7.8947368421vw;
  }
}
.ul-page .meeting__btn {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .ul-page .meeting__btn {
    margin: 0 auto;
  }
}

.ul-title {
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: bold;
  color: #b2b2b2;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .ul-title {
    font-size: 3.6842105263vw;
    margin-bottom: 5.2631578947vw;
  }
}

.ul-titleSub {
  font-size: 2.875rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .ul-titleSub {
    font-size: 8.4210526316vw;
  }
}

/*------------------------
募集職種
------------------------*/
#information.ul-page .job-information {
  padding-left: 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  #information.ul-page .job-information .inner {
    padding-bottom: 0;
  }
}
#information.ul-page .job-information__titleSet {
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 768px) {
  #information.ul-page .job-information__titleSet {
    margin-bottom: 13.1578947368vw;
  }
}
#information.ul-page .job-information__items {
  grid-auto-flow: row; /* 行方向に流す */
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 768px) {
  #information.ul-page .job-information__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 5.2631578947vw;
    margin-bottom: 10.5263157895vw;
  }
}
#information.ul-page .job-information__item {
  padding: 2.5rem;
}
@media screen and (max-width: 768px) {
  #information.ul-page .job-information__item {
    padding: 7.8947368421vw 5.2631578947vw;
  }
}
#information.ul-page .job-information__item--title {
  font-size: 1.625rem;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  #information.ul-page .job-information__item--title {
    font-size: 4.2105263158vw;
    margin-bottom: 5.2631578947vw;
  }
}
@media screen and (max-width: 768px) {
  #information.ul-page .job-information__item--desc {
    font-size: 3.1578947368vw;
  }
}
#information.ul-page .comeback {
  margin: 0 auto 5rem;
  width: 100%;
  max-width: 43.75rem;
  border: 1px solid #d8d8d8;
}
@media screen and (max-width: 768px) {
  #information.ul-page .comeback {
    padding: 0;
    margin: 0 auto 10.5263157895vw;
    max-width: 89.4736842105%;
  }
}
#information.ul-page .comeback .inner {
  display: flex;
  align-items: center;
  padding: 1.25rem;
}
@media screen and (max-width: 768px) {
  #information.ul-page .comeback .inner {
    flex-direction: column;
    gap: 0rem;
    padding: 7.8947368421vw;
  }
}
#information.ul-page .comeback__title {
  font-size: 1.625rem;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-right: 1.875rem;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  #information.ul-page .comeback__title {
    font-size: 6.3157894737vw;
    margin-right: 0;
    margin-bottom: 5.2631578947vw;
  }
}
#information.ul-page .comeback__desc {
  font-size: 0.9375rem;
  line-height: 2;
  text-align: left;
  margin-right: 3.125rem;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  #information.ul-page .comeback__desc {
    font-size: 4.2105263158vw;
    margin-right: 0;
    margin-bottom: 5.2631578947vw;
    text-align: center;
  }
}
#information.ul-page .comeback__btn {
  margin: 0;
}

/*------------------------
各職種
------------------------*/
.job-type .ul-titleSub {
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .job-type .ul-titleSub {
    margin-bottom: 7.8947368421vw;
  }
}
.job-type .btn {
  margin: 0 auto 1.25rem;
}
@media screen and (max-width: 768px) {
  .job-type .btn {
    margin: 0 auto 5.2631578947vw;
  }
}
.job-type .btn + .btn {
  margin: 0 auto 6.25rem;
}
@media screen and (max-width: 768px) {
  .job-type .btn + .btn {
    margin: 0 auto 21.0526315789vw;
  }
}

.job-type__lead {
  font-size: 0.875rem;
  line-height: 2;
  font-weight: bold;
  max-width: 37.5rem;
  margin: 0 auto 3.75rem;
}
@media screen and (max-width: 768px) {
  .job-type__lead {
    font-size: 3.1578947368vw;
  }
}

.job-type__cont {
  max-width: 50rem;
  margin: 0 auto 3.75rem;
}
@media screen and (max-width: 768px) {
  .job-type__cont {
    margin: 0 calc(50% - 50vw) 13.1578947368vw;
  }
}
.job-type__cont dl {
  border-top: 1px solid #d8d8d8;
  display: flex;
}
@media screen and (max-width: 768px) {
  .job-type__cont dl {
    flex-direction: column;
    padding: 7.8947368421vw 5.2631578947vw;
  }
}
.job-type__cont dl:last-child {
  border-bottom: 1px solid #d8d8d8;
}
.job-type__cont dt {
  padding: 2.5rem 1.25rem 2.5rem 0;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: bold;
  width: 31.25%;
}
@media screen and (max-width: 768px) {
  .job-type__cont dt {
    padding: 0;
    font-size: 4.2105263158vw;
    margin-bottom: 5.2631578947vw;
  }
}
.job-type__cont dd {
  padding: 2.5rem 0;
  font-size: 0.9375rem;
  line-height: 2;
  font-weight: bold;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .job-type__cont dd {
    padding: 0;
    font-size: 3.1578947368vw;
  }
}

/*------------------------
よくある質問
------------------------*/
#qa.ul-page .inner {
  max-width: 50rem;
}
#qa.ul-page .qa a {
  transition: all 0.4s ease;
}
#qa.ul-page .qa a:hover {
  text-decoration: underline;
  color: #005260;
}
#qa.ul-page .qa .btn a:hover {
  text-decoration: none;
}
#qa.ul-page .qa__titleSet {
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 768px) {
  #qa.ul-page .qa__titleSet {
    margin-bottom: 13.1578947368vw;
  }
}
#qa.ul-page .qa__top {
  font-size: 1.875rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: bold;
  padding-left: 3.125rem;
  padding-bottom: 1.875rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  #qa.ul-page .qa__top {
    font-size: 5.2631578947vw;
    padding-bottom: 7.8947368421vw;
    padding-left: 7.8947368421vw;
  }
}
#qa.ul-page .qa__top::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.875rem;
  height: 1.875rem;
  background: no-repeat center/contain url(../images/square-icon.png);
}
@media screen and (max-width: 768px) {
  #qa.ul-page .qa__top::before {
    width: 5.2631578947vw;
    height: 5.2631578947vw;
  }
}
#qa.ul-page .qa__items {
  display: block;
  margin-bottom: 6.25rem;
}
@media screen and (max-width: 768px) {
  #qa.ul-page .qa__items {
    margin: 0 calc(50% - 50vw) 21.0526315789vw;
  }
}
#qa.ul-page .qa__item {
  padding: 2.5rem 0;
  border-bottom: none;
  border-left: none;
  border-right: none;
}
@media screen and (max-width: 768px) {
  #qa.ul-page .qa__item {
    padding: 7.8947368421vw 5.2631578947vw 10.5263157895vw;
  }
}
#qa.ul-page .qa__item:last-child {
  border-bottom: 1px solid #d8d8d8;
}
#qa.ul-page .qa__q {
  margin-bottom: 1.6875rem;
  padding-left: 3.75rem;
}
@media screen and (max-width: 768px) {
  #qa.ul-page .qa__q {
    margin-bottom: 8.6842105263vw;
    padding-left: 13.1578947368vw;
  }
}
#qa.ul-page .qa__a {
  padding-left: 3.75rem;
}
@media screen and (max-width: 768px) {
  #qa.ul-page .qa__a {
    padding-left: 13.1578947368vw;
  }
}
#qa.ul-page .qa__text {
  font-size: 0.875rem;
  line-height: 1.7;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #qa.ul-page .qa__text {
    font-size: 3.1578947368vw;
  }
}
#qa.ul-page .qa__bottom .qa__text {
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 768px) {
  #qa.ul-page .qa__bottom .qa__text {
    margin-bottom: 13.1578947368vw;
  }
}
#qa.ul-page .qa__bottom .btn {
  margin: 0 auto 6.25rem;
}
@media screen and (max-width: 768px) {
  #qa.ul-page .qa__bottom .btn {
    margin: 0 auto 21.0526315789vw;
  }
}

/*------------------------
interview
------------------------*/
#interview .interview {
  display: block !important;
}
#interview .interview .interview__btn.btn {
  margin: 0 auto 6.25rem;
}
@media screen and (max-width: 768px) {
  #interview .interview .interview__btn.btn {
    margin: 0 auto 21.0526315789vw;
  }
}
#interview .interview-mv {
  position: relative;
  margin-top: 5rem;
  margin-bottom: 6.25rem;
}
@media screen and (max-width: 768px) {
  #interview .interview-mv {
    margin-top: 13.1578947368vw;
    margin-bottom: 13.1578947368vw;
  }
}
#interview .interview-mv__img {
  width: 100%;
  height: 48.75rem;
}
@media screen and (max-width: 768px) {
  #interview .interview-mv__img {
    height: auto;
  }
}
#interview .interview-mv__img img {
  height: 100%;
  object-fit: cover;
}
#interview .interview-mv__cont {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1050px;
  padding: 3.75rem 25px 6.25rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  #interview .interview-mv__cont {
    padding: 5.2631578947vw 5.2631578947vw 13.1578947368vw;
  }
}
#interview .bread {
  margin: 0 0 4.25rem;
  padding-inline: 0;
}
@media screen and (max-width: 768px) {
  #interview .bread {
    margin: 0 0 13.1578947368vw;
  }
}
#interview .bread .bread__list a {
  color: #fff;
}
#interview .interview-mv__title {
  max-width: 99%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #interview .interview-mv__title {
    max-width: 78.1578947368vw;
  }
}
#interview .interview-mv__textWrapper {
  margin-top: auto;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #interview .interview-mv__textWrapper {
    padding-left: 2.6315789474vw;
  }
}
#interview .interview-mv__catch {
  font-size: 2.5rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
  font-weight: bold;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  #interview .interview-mv__catch {
    font-size: 6.3157894737vw;
    line-height: 1.6;
    margin-bottom: 5.2631578947vw;
  }
}
#interview .interview-mv__desc {
  font-size: 0.875rem;
  line-height: 2;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #interview .interview-mv__desc {
    font-size: 3.1578947368vw;
  }
}
@media screen and (max-width: 768px) {
  #interview .interview-link {
    margin-bottom: 15.7894736842vw;
  }
}
#interview .interview-link .inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5%;
}
@media screen and (max-width: 768px) {
  #interview .interview-link .inner {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.6315789474vw;
  }
}
#interview .interview-link__link {
  margin-bottom: 6.25rem;
}
@media screen and (max-width: 768px) {
  #interview .interview-link__link {
    display: flex;
    align-items: center;
    gap: 5.2631578947vw;
    margin-bottom: 0;
  }
}
#interview .interview-link__link:hover .img::after {
  opacity: 1;
}
#interview .interview-link__link:hover .category,
#interview .interview-link__link:hover .catch {
  color: #005260;
}
#interview .interview-link__link .img {
  margin-bottom: 1.875rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  #interview .interview-link__link .img {
    width: 28.9473684211vw;
    margin-bottom: 0;
  }
}
#interview .interview-link__link .img::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: all 0.4s ease;
}
#interview .interview-link__link .text {
  flex: 1;
}
#interview .interview-link__link .category {
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: bold;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  #interview .interview-link__link .category {
    font-size: 3.6842105263vw;
    line-height: 1.5;
    letter-spacing: normal;
    margin-bottom: 2.6315789474vw;
  }
}
#interview .interview-link__link .catch {
  font-size: 0.875rem;
  line-height: 2;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #interview .interview-link__link .catch {
    font-size: 3.1578947368vw;
  }
}
#interview .interview-item {
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 768px) {
  #interview .interview-item {
    padding-bottom: 21.0526315789vw;
  }
}
#interview .interview-item.--last {
  padding-bottom: 3.75rem;
}
@media screen and (max-width: 768px) {
  #interview .interview-item.--last {
    padding-bottom: 13.1578947368vw;
  }
}
#interview .interview-item__top {
  margin-bottom: 4.375rem;
}
@media screen and (max-width: 768px) {
  #interview .interview-item__top {
    margin-bottom: 10.5263157895vw;
  }
}
#interview .interview-item__top .img {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #interview .interview-item__top .img {
    width: 100%;
  }
}
#interview .interview-item__top .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 4.2105263158%;
  background-color: #f3f3f3;
}
@media screen and (max-width: 768px) {
  #interview .interview-item__top .text {
    padding: 13.1578947368vw 0;
    text-align: center;
  }
}
#interview .interview-item__top .category {
  font-size: 2.875rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: bold;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  #interview .interview-item__top .category {
    font-size: 8.4210526316vw;
    line-height: 1.3;
    margin-bottom: 7.8947368421vw;
  }
}
#interview .interview-item__top .desc {
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #interview .interview-item__top .desc {
    font-size: 3.6842105263vw;
  }
}
#interview .interview-item__details .inner {
  max-width: 50rem;
}
#interview .interview-item__text-wrapper {
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 768px) {
  #interview .interview-item__text-wrapper {
    margin-bottom: 14.7368421053vw;
  }
}
#interview .interview-item__text-wrapper:last-of-type {
  margin-bottom: 0;
}
#interview .interview-item__title {
  font-size: 1.875rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: bold;
  padding-left: 3.125rem;
  margin-bottom: 1.875rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  #interview .interview-item__title {
    font-size: 5.2631578947vw;
    line-height: 1.7;
    padding-left: 7.8947368421vw;
    margin-bottom: 5.2631578947vw;
  }
}
#interview .interview-item__title::before {
  display: block;
  content: "";
  position: absolute;
  top: 0rem;
  left: 0;
  width: 1.875rem;
  height: 1.875rem;
  background: no-repeat center/contain url(../images/square-icon.png);
}
@media screen and (max-width: 768px) {
  #interview .interview-item__title::before {
    width: 5.2631578947vw;
    height: 5.2631578947vw;
    top: 1.7vw;
  }
}
#interview .interview-item__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #interview .interview-item__desc {
    font-size: 3.1578947368vw;
  }
}
#interview .interview-item__imgs {
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 768px) {
  #interview .interview-item__imgs {
    gap: 5.2631578947vw;
    margin-bottom: 13.1578947368vw;
  }
}/*# sourceMappingURL=styles.css.map */