@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  font-size: clamp(16px, 1.2vw, 18px);
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-size: 1rem;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  width: 100%;
}

a {
  color: #000;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
}

a:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.65;
}

a:active, a:hover {
  outline-width: 0;
}

li {
  margin: 0;
  list-style: none;
}

ul, ol {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, p, figure, dd, dt, dl {
  margin: 0;
}

figcaption, figure, main,
article, aside, footer,
header, nav, section {
  display: block;
}

b, strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

button, input, optgroup, select, textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button {
  border: none;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, html [type=button], [type=reset], [type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button::-moz-focus-inner, [type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring, [type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  outline-offset: -2px;
}

[type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

/* Grid System width Flex */
.flexbox {
  display: flex;
}

.flex-row {
  -ms-flex-direction: row;
  flex-direction: row;
}

.flex-row-rev {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex-col {
  -ms-flex-direction: col;
  flex-direction: col;
}

.flex-col-rev {
  -ms-flex-direction: col-reverse;
  flex-direction: col-reverse;
}

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

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

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

.flex-justify-start {
  justify-content: flex-start;
}

.flex-justify-end {
  justify-content: flex-end;
}

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

.flex-justify-between {
  justify-content: space-between;
}

.flex-justify-around {
  justify-content: space-around;
}

.flex-align-start {
  align-items: flex-start;
}

.flex-align-end {
  align-items: flex-end;
}

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

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

/*margin*/
.mt0 {
  margin-top: 0px;
}

.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mt35 {
  margin-top: 35px;
}

.mt40 {
  margin-top: 40px;
}

.mt45 {
  margin-top: 45px;
}

.mt50 {
  margin-top: 50px;
}

.mt55 {
  margin-top: 55px;
}

.mt60 {
  margin-top: 60px;
}

.mt65 {
  margin-top: 65px;
}

.mt70 {
  margin-top: 70px;
}

.mt75 {
  margin-top: 75px;
}

.mt80 {
  margin-top: 80px;
}

.mt85 {
  margin-top: 85px;
}

.mt90 {
  margin-top: 90px;
}

.mt95 {
  margin-top: 95px;
}

.mt100 {
  margin-top: 100px;
}

.mb0 {
  margin-bottom: 0px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb55 {
  margin-bottom: 55px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb65 {
  margin-bottom: 65px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb75 {
  margin-bottom: 75px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb85 {
  margin-bottom: 85px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb95 {
  margin-bottom: 95px;
}

.mb100 {
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .mt0 {
    margin-top: 0px;
  }
  .mt5 {
    margin-top: 3px;
  }
  .mt10 {
    margin-top: 6px;
  }
  .mt15 {
    margin-top: 9px;
  }
  .mt20 {
    margin-top: 12px;
  }
  .mt25 {
    margin-top: 15px;
  }
  .mt30 {
    margin-top: 18px;
  }
  .mt35 {
    margin-top: 21px;
  }
  .mt40 {
    margin-top: 24px;
  }
  .mt45 {
    margin-top: 27px;
  }
  .mt50 {
    margin-top: 30px;
  }
  .mt55 {
    margin-top: 33px;
  }
  .mt60 {
    margin-top: 36px;
  }
  .mt65 {
    margin-top: 39px;
  }
  .mt70 {
    margin-top: 42px;
  }
  .mt75 {
    margin-top: 45px;
  }
  .mt80 {
    margin-top: 48px;
  }
  .mt85 {
    margin-top: 51px;
  }
  .mt90 {
    margin-top: 54px;
  }
  .mt95 {
    margin-top: 57px;
  }
  .mt100 {
    margin-top: 60px;
  }
  .mb0 {
    margin-bottom: 0px;
  }
  .mb5 {
    margin-bottom: 3px;
  }
  .mb10 {
    margin-bottom: 6px;
  }
  .mb15 {
    margin-bottom: 9px;
  }
  .mb20 {
    margin-bottom: 12px;
  }
  .mb25 {
    margin-bottom: 15px;
  }
  .mb30 {
    margin-bottom: 18px;
  }
  .mb35 {
    margin-bottom: 21px;
  }
  .mb40 {
    margin-bottom: 24px;
  }
  .mb45 {
    margin-bottom: 27px;
  }
  .mb50 {
    margin-bottom: 30px;
  }
  .mb55 {
    margin-bottom: 33px;
  }
  .mb60 {
    margin-bottom: 36px;
  }
  .mb65 {
    margin-bottom: 39px;
  }
  .mb70 {
    margin-bottom: 42px;
  }
  .mb75 {
    margin-bottom: 45px;
  }
  .mb80 {
    margin-bottom: 48px;
  }
  .mb85 {
    margin-bottom: 51px;
  }
  .mb90 {
    margin-bottom: 54px;
  }
  .mb95 {
    margin-bottom: 57px;
  }
  .mb100 {
    margin-bottom: 60px;
  }
}
/* form input*/
table {
  border-collapse: collapse;
  border-spacing: 0;
  max-width: 100%;
  width: 100%;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=password],
input[type=number],
select {
  font-size: 16px;
  font-size: 1.6rem;
  background: #FFF;
  border: 1px solid #E8E8E8;
  margin: 2px;
  padding: 0 0.3em;
  width: 100%;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=number]:focus,
select:focus {
  outline: none;
  border-color: #000;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

select {
  font-size: 13px;
  font-size: 1.3rem;
  height: 2.5em;
  padding: 0.5em;
  width: auto;
  min-width: 7em;
}

textarea {
  font-size: 16px;
  font-size: 1.6rem;
  background: #FFF;
  border: 1px solid #E8E8E8;
  padding: 0 0.3em;
  resize: vertical;
  width: 100%;
}
textarea :focus {
  outline: none;
  border-color: #000;
}

input[type=checkbox],
input[type=radio] {
  background: #FFF;
  cursor: pointer;
  margin-right: 0.5em;
}

textarea::placeholder,
input::placeholder {
  font-size: 1.4rem;
  color: #C5C5C5;
}

/* wordpress pager */
.pager {
  display: flex;
  height: 35px;
  margin-bottom: 60px;
  max-width: 100%;
  padding: 30px 0;
  position: relative;
}
.pager a {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  position: relative;
  line-height: 1.42857143;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid #E8E8E8;
  color: #000;
  font-weight: bold;
  margin: 5px;
  padding: 5px 10px;
}

.pc .pager a:active,
.pc .pager a:hover,
.pc .pager a:focus {
  border-color: #000;
  color: #000;
}

.pager .previous, .pager .next,
.pager .back {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.pager .previous a {
  padding-left: 1.5em;
}

.pager .previous a:before {
  content: "≪";
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
}

.pager .next a {
  padding-right: 1.5em;
}
.pager .next a:after {
  content: "≫";
  content: "";
  position: absolute;
  right: 5px;
  top: 4px;
}

.pager .back a {
  padding: 5px;
}

/* wordpress pagination */
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.pagination > li {
  position: relative;
}

.pagination > li > span,
.pagination > li > a {
  border-radius: 4px;
  border: 1px solid #E8E8E8;
  color: #231815;
  margin: 3px;
  width: 2.4em;
  height: 2.4em;
  line-height: 2.4;
  display: block;
  text-decoration: none;
  padding: 0;
}

.pagination > li > span {
  border-color: #231815;
  cursor: default;
}

.pc .pagination > li > a:active,
.pc .pagination > li > a:hover,
.pc .pagination > li > a:focus {
  border-color: #000;
  color: #000;
}

.pagination > li span.dot {
  border: none;
  width: 1em;
}

/* wordpress wp-pagenavi */
.wp-pagenavi {
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.wp-pagenavi a,
.wp-pagenavi span {
  font-size: 1.6rem;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  border: 1px solid #000;
  color: #000;
  margin: 3px;
  width: 2.4em;
  height: 2.4em;
  line-height: 2.4;
  display: block;
  text-decoration: none;
  padding: 0;
}
.wp-pagenavi .current {
  border: 0;
  color: #fff;
  background: #000;
  font-weight: normal;
}
.wp-pagenavi a:hover {
  border: 1px solid #000;
}

/* wordpress breadcrumbs */
.txt_ellipsis .breadcrumbs span:last-of-type {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 130px;
  display: inline-block;
  vertical-align: bottom;
}

.breadcrumbs {
  margin: 2% 0;
  font-size: 1.2rem;
}
.breadcrumbs .container {
  margin-left: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.breadcrumbs a {
  color: #231815;
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: #000;
}
.breadcrumbs ul, .breadcrumbs ol {
  list-style: none;
  padding: 0;
}
.breadcrumbs li {
  display: inline;
}
.breadcrumbs li:before {
  content: ">";
  margin: 0 10px;
}
.breadcrumbs li:first-child:before {
  display: none;
}

@media screen and (max-width: 560px) {
  .breadcrumbs {
    font-size: 1rem;
  }
  .breadcrumbs li:before {
    margin: 0 5px;
  }
}
/* Slick Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

.slick-slide img {
  width: 100%;
  height: auto;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img,
.slick-initialized .slick-slide {
  display: block;
}

.slick-slide.slick-loading img,
.slick-arrow.slick-hidden {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./img/common/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick/slick.eot");
  src: url("./fonts/slick/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick/slick.woff") format("woff"), url("./fonts/slick/slick.ttf") format("truetype"), url("./fonts/slick/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  z-index: 1;
  display: block;
  width: 16px;
  height: 31px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  margin-top: -15px;
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  opacity: 0.65;
  color: transparent;
}

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
  opacity: 0.25;
}

.slick-prev {
  left: 30px;
  background: url(../img/common/btn-prev.png) no-repeat center center;
}

.slick-next {
  right: 30px;
  background: url(../img/common/btn-next.png) no-repeat center center;
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-dots {
  position: absolute;
  bottom: 10px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0;
  font-size: 0;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  color: #AAA;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots .slick-active button:before {
  color: #000;
  opacity: 0.75;
}

.slick-archive {
  padding-top: 10px;
  margin: 0 auto;
  width: calc(100% - 50px);
}

.slick-archive__item {
  padding: 5px;
}

.slick-archive__item a {
  display: block;
  max-width: 350px;
  margin: auto;
  color: #231815;
  text-decoration: none;
  position: relative;
}

.slick-archive__item a:hover {
  opacity: 0.65;
}

.slick-archive__date {
  margin-top: 5px;
  display: block;
}

.slick-archive__title {
  display: block;
  font-weight: bold;
}

.slick-archive__label {
  background-color: #464a4c;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 0.2em 2em;
}

@media screen and (max-width: 560px) {
  .slick-archive__date,
  .slick-archive__label {
    font-size: 1rem;
  }
  .slick-archive__title {
    font-size: 1.2rem;
  }
}
/***************************

layout/header.scss

***************************/
/* toggle button */
.toggle {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  background: #fff;
  border: none;
  outline: none;
  position: absolute;
  width: 122px;
  min-height: 36px;
  right: 30px;
  text-align: center;
  top: 30px;
  z-index: 10;
  border-radius: 3px;
}
@media screen and (max-width: 768px) {
  .toggle {
    top: 15px;
    right: 15px;
  }
}
@media screen and (max-width: 550px) {
  .toggle {
    width: 40px;
  }
}
@media screen and (max-width: 425px) {
  .toggle {
    min-height: 32px;
  }
}
.toggle .toggle__bar {
  position: relative;
  margin: 2.5px 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: transparent;
  display: block;
  width: 32px;
  height: 1px;
  outline: 1px solid transparent;
  transition-property: background-color, transform;
  transition-duration: 0.3s;
}
@media screen and (max-width: 350px) {
  .toggle .toggle__bar {
    width: 26px;
  }
}
.toggle .toggle__bar:before, .toggle .toggle__bar:after {
  display: block;
  width: 32px;
  height: 1px;
  background-color: #111;
  outline: 1px solid transparent;
  transition-property: background-color, transform;
  transition-duration: 0.3s;
  position: absolute;
  content: "";
  left: 50%;
  translate: -50% 0;
  transition: all 0.3s;
}
@media screen and (max-width: 550px) {
  .toggle .toggle__bar:before, .toggle .toggle__bar:after {
    width: 26px;
  }
}
.toggle .toggle__bar:before {
  top: -2.5px;
}
.toggle .toggle__bar:after {
  top: 2.5px;
}
.toggle .toggle__txt {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.6666666667rem;
}
@media screen and (max-width: 550px) {
  .toggle .toggle__txt {
    display: none;
  }
}
.toggle.active {
  background: #ddd;
}
.toggle.active .toggle__bar:before {
  width: 22px;
  transform: translateY(2.5px) rotate(135deg);
}
.toggle.active .toggle__bar:after {
  width: 22px;
  transform: translateY(-2.5px) rotate(-135deg);
}

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}

/***************************

 header

***************************/
body.open {
  overflow: hidden;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}
.header .logo {
  position: absolute;
  top: 30px;
  left: 20px;
  z-index: 2;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .header .logo {
    top: 15px;
    left: 15px;
  }
}
.header .logo a {
  display: flex;
  align-items: center;
  gap: 0 40px;
}
@media screen and (max-width: 768px) {
  .header .logo a {
    gap: 0 20px;
  }
}
.header .logo .img {
  position: relative;
  max-width: 265px;
  width: 100%;
  display: inline-block;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .header .logo .img {
    max-width: 205px;
  }
}
@media screen and (max-width: 750px) {
  .header .logo .img {
    max-width: 150px;
    width: 35.2941176471vw;
    padding: 5px 0;
  }
  .header .logo .img img {
    display: block;
  }
}
.header .logo .img:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  right: -20px;
  top: 0;
  background: #000;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .header .logo .img:after {
    right: -10px;
  }
}
.header .logo .inter {
  font-size: 0.7222222222rem;
  font-weight: 700;
}
@media screen and (max-width: 750px) {
  .header .logo .inter {
    font-size: 0.5555555556rem;
  }
}
.header .h-recruit {
  position: absolute;
  top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  min-height: 36px;
  border-radius: 3px;
  font-size: 0.7777777778rem;
  font-weight: 700;
  color: #fff;
  background: #111;
  z-index: 10;
  right: 155px;
}
@media screen and (max-width: 768px) {
  .header .h-recruit {
    top: 15px;
    right: 140px;
  }
}
@media screen and (max-width: 550px) {
  .header .h-recruit {
    right: 60px;
  }
}
@media screen and (max-width: 425px) {
  .header .h-recruit {
    width: 60px;
    font-size: 0.6111111111rem;
    min-height: 32px;
    right: 59px;
  }
}
@media screen and (max-width: 320px) {
  .header .h-recruit {
    display: none;
  }
}

.gnav {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 5;
  max-width: 430px;
  width: 100%;
  height: 100lvh;
  background: #fff;
  padding: 100px 30px 30px;
  translate: 100% 0;
  transition: translate 0.6s;
}
@media screen and (max-width: 768px) {
  .gnav {
    max-width: 400px;
    padding: 100px 15px 30px;
  }
}
@media screen and (max-width: 750px) {
  .gnav {
    max-width: 320px;
  }
}
.gnav.active {
  translate: 0 0;
}
.gnav.scroll {
  overflow-y: scroll;
}
.gnav-overlay {
  position: fixed;
  width: 100%;
  height: 100lvh;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  right: 0;
  z-index: 4;
  visibility: hidden;
  opacity: 0;
}
.gnav-overlay.active {
  visibility: visible;
  opacity: 1;
}
.gnav-overlay:hover {
  cursor: pointer;
}
.gnav-inner {
  width: 100%;
}
.gnav-inner .main-nav {
  width: 100%;
  margin-bottom: 30px;
}
.gnav-inner .main-nav li {
  line-height: 1;
}
.gnav-inner .main-nav li:not(:last-child) {
  margin-bottom: 10px;
}
.gnav-inner .main-nav a {
  display: block;
  font-weight: 600;
  line-height: 1.6;
}
.gnav-inner .main-nav a:hover {
  opacity: 1;
}
.gnav-inner .main-nav a:hover span {
  background-size: 0 100%;
}
.gnav-inner .main-nav a:hover span:before, .gnav-inner .main-nav a:hover span:after {
  translate: 5px -50%;
}
.gnav-inner .main-nav a span {
  position: relative;
  display: inline-block;
  background: linear-gradient(0deg, #111 1px, transparent 1px);
  background-size: 100% 100%;
  background-position: bottom left;
  background-repeat: no-repeat;
  transition: all 0.6s;
  margin-right: calc(1rem + 5px);
}
.gnav-inner .main-nav a span:before {
  position: absolute;
  content: "";
  width: 1rem;
  aspect-ratio: 1/1;
  background: #111;
  top: 50%;
  right: calc(-1rem - 5px);
  translate: 0 -50%;
  transition: all 0.6s;
  z-index: 2;
  border-radius: 3px;
}
.gnav-inner .main-nav a span:after {
  position: absolute;
  content: "";
  width: 1rem;
  aspect-ratio: 1/1;
  border-radius: 3px;
  background: url(../img/common/arrow03.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 10px 10px;
  z-index: 3;
  top: 50%;
  right: calc(-1rem - 5px);
  translate: 0 -50%;
  transition: all 0.6s;
}
.gnav-inner .sub-nav {
  width: 100%;
  margin-bottom: 40px;
}
.gnav-inner .sub-nav li:not(:last-child) {
  margin-bottom: 10px;
}
.gnav-inner .tel-area {
  width: 100%;
  padding: 30px 15px;
  background: #F5F8F7;
  text-align: center;
}
.gnav-inner .tel-area .tel {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 1.2222222222rem;
  letter-spacing: 0;
}
.gnav-inner .tel-area .tel a {
  font-size: 2.1111111111rem;
  letter-spacing: 0;
}
.gnav-inner .tel-area .txt {
  font-weight: 600;
  font-size: 0.8888888889rem;
}

/***************************

layout/footer.scss

***************************/
.footer {
  width: 100%;
  background: #fff;
  margin-top: 180px;
  padding-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .footer {
    margin-top: 90px;
    padding-bottom: 40px;
  }
}
.footer-entry {
  width: 100%;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .footer-entry {
    margin-bottom: 40px;
  }
}
.footer-entry .footer-mv {
  position: relative;
  width: 100%;
}
.footer-entry .footer-mv.act .back-ribbon {
  height: 32.1354166667vw;
}
@media screen and (max-width: 425px) {
  .footer-entry .footer-mv.act .back-ribbon {
    height: 80.3385416667vw;
  }
}
.footer-entry .footer-mv picture {
  position: relative;
  display: block;
  max-width: 1750px;
  width: 82vw;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  z-index: 3;
}
.footer-entry .btn-f-entry {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 1370px;
  width: 80vw;
  min-height: 300px;
  margin-left: auto;
  margin-right: auto;
  background: url(../img/common/footer-entry-back.jpg);
  background-position: center center;
  background-size: cover;
  z-index: 3;
  border-radius: 4px;
  margin-top: 40px;
  padding: 0 80px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer-entry .btn-f-entry {
    width: 85vw;
    min-height: 200px;
    padding: 0 40px;
  }
}
@media screen and (max-width: 425px) {
  .footer-entry .btn-f-entry {
    width: calc(100% - 30px);
    min-height: 130px;
    padding: 0 30px;
    margin-top: 20px;
  }
}
.footer-entry .btn-f-entry .en {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 3.5555555556rem;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .footer-entry .btn-f-entry .en {
    font-size: 2.4444444444rem;
  }
}
@media screen and (max-width: 425px) {
  .footer-entry .btn-f-entry .en {
    font-size: 1.6666666667rem;
  }
}
.footer-entry .btn-f-entry .ja {
  font-size: 1.2222222222rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .footer-entry .btn-f-entry .ja {
    font-size: 1rem;
  }
}
@media screen and (max-width: 425px) {
  .footer-entry .btn-f-entry .ja {
    font-size: 0.8888888889rem;
  }
}
.footer-entry .btn-f-entry:before {
  position: absolute;
  content: "";
  width: 32px;
  height: 32px;
  background: url(../img/common/arrow01.svg);
  background-size: cover;
  right: 30px;
  bottom: 30px;
  z-index: 2;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .footer-entry .btn-f-entry:before {
    width: 22px;
    height: 22px;
    right: 15px;
    bottom: 15px;
  }
}
.footer-inner {
  width: 100%;
  padding-left: 5.2083333333vw;
  padding-right: 5.2083333333vw;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
@media screen and (max-width: 1024px) {
  .footer-inner {
    padding: 0 40px;
    flex-direction: column;
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .footer-inner {
    padding: 0 20px;
  }
}
@media screen and (max-width: 425px) {
  .footer-inner {
    padding: 0 15px;
  }
}
.footer .add {
  width: 440px;
}
@media screen and (max-width: 768px) {
  .footer .add {
    width: 100%;
  }
}
.footer .add .logo {
  margin-bottom: 20px;
}
.footer .add .logo a {
  display: flex;
  align-items: center;
  gap: 0 40px;
}
@media screen and (max-width: 768px) {
  .footer .add .logo a {
    gap: 0 20px;
  }
}
@media screen and (max-width: 425px) {
  .footer .add .logo a {
    flex-direction: column;
    gap: 10px;
  }
}
.footer .add .logo .img {
  position: relative;
  display: inline-block;
  line-height: 1;
}
@media screen and (max-width: 425px) {
  .footer .add .logo .img {
    width: 100%;
  }
}
@media screen and (max-width: 425px) {
  .footer .add .logo .img img {
    width: 100%;
  }
}
.footer .add .logo .img:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  right: -20px;
  top: 0;
  background: #000;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .footer .add .logo .img:after {
    right: -10px;
  }
}
@media screen and (max-width: 425px) {
  .footer .add .logo .img:after {
    display: none;
  }
}
.footer .add .logo .inter {
  font-size: 0.7222222222rem;
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (max-width: 750px) {
  .footer .add .logo .inter {
    font-size: 0.5555555556rem;
  }
}
@media screen and (max-width: 425px) {
  .footer .add .logo .inter {
    width: 100%;
    padding: 5px;
    font-size: 0.7222222222rem;
    background: #111;
    text-align: center;
    color: #fff;
  }
}
.footer .add .privacy {
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .footer .add .privacy {
    display: none;
  }
}
.footer .page-link {
  max-width: calc(100% - 490px);
  display: flex;
  flex-direction: column;
  height: auto;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .footer .page-link {
    min-width: 100%;
    gap: 30px;
  }
}
.footer .page-link .footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 30px;
}
@media screen and (max-width: 1024px) {
  .footer .page-link .footer-nav {
    justify-content: flex-start;
    order: 2;
  }
}
@media screen and (max-width: 425px) {
  .footer .page-link .footer-nav {
    flex-direction: column;
  }
}
.footer .page-link .footer-nav li {
  line-height: 1;
}
.footer .page-link .footer-nav li a {
  line-height: 1.6;
}
.footer .page-link .privacy {
  display: none;
}
@media screen and (max-width: 1024px) {
  .footer .page-link .privacy {
    display: block;
    order: 3;
  }
}
.footer .page-link .corporate {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  flex-grow: 1;
}
@media screen and (max-width: 1024px) {
  .footer .page-link .corporate {
    align-items: flex-start;
    flex-direction: column-reverse;
    order: 1;
  }
}
.footer .page-link .corporate .flexbox {
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .footer .page-link .corporate .flexbox {
    margin-top: 0;
    margin-bottom: 20px;
  }
}
.footer small {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 0.5555555556rem;
  letter-spacing: 0.02em;
  padding-left: 5.2083333333vw;
  padding-right: 5.2083333333vw;
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  .footer small {
    padding: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .footer small {
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .footer small {
    padding: 0 15px;
    margin-top: 40px;
  }
}

.pagetop {
  position: fixed;
  z-index: 10;
  right: 20px;
  bottom: 20px;
}

/*////////////////////////

 user common css

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

.wrap {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 425px) {
  .wrap {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.sp550 {
  display: none;
}
.sp425 {
  display: none;
}

.tab {
  display: none;
}
.tab.block {
  display: block;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.vt_align_top {
  vertical-align: top;
}

.wd_100 {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .tab {
    display: block;
  }
  .tab.block {
    display: none;
  }
}
@media screen and (min-width: 651px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (max-width: 650px) {
  a[href^="tel:"] {
    text-decoration: underline;
    display: inline-block;
  }
}
@media screen and (max-width: 550px) {
  .pc550 {
    display: none;
  }
  .sp550 {
    display: block;
  }
}
@media screen and (max-width: 425px) {
  .sp425 {
    display: block;
  }
}
/*////////////////////////

fonts

////////////////////////*/
.bold {
  font-weight: bold;
}

.ls_2 {
  letter-spacing: 0.02em;
}

.ls_6 {
  letter-spacing: 0.06em;
}

.lh_2 {
  line-height: 2;
}

.lh_18 {
  line-height: 1.8;
}

.lh_1 {
  line-height: 1;
}

.thin {
  font-weight: 100;
}

.ex-light {
  font-weight: 200;
}

.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.sm-bold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.ex-bold {
  font-weight: 800;
}

.black {
  font-weight: 900;
}

.zenkaku {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.oswald {
  font-family: "Oswald", sans-serif;
}

.inter {
  font-family: "Inter", sans-serif;
}

.poppins {
  font-family: "Poppins", sans-serif;
}

.fz12 {
  font-size: 0.6666666667rem;
}

.fz14 {
  font-size: 0.7777777778rem;
}

.fz15 {
  font-size: 0.8333333333rem;
}

.fz24 {
  font-size: 1.3333333333rem;
}
@media screen and (max-width: 768px) {
  .fz24 {
    font-size: clamp(1.1111111111rem, 2.8645833333vw, 1.2222222222rem);
  }
}

.fz32 {
  font-size: 1.7777777778rem;
}
@media screen and (max-width: 768px) {
  .fz32 {
    font-size: clamp(1.2222222222rem, 3.90625vw, 1.6666666667rem);
  }
}

.fz42 {
  font-size: 2.3333333333rem;
}
@media screen and (max-width: 768px) {
  .fz42 {
    font-size: clamp(1.3888888889rem, 4.9479166667vw, 2.1111111111rem);
  }
}

.fz44 {
  font-size: 2.4444444444rem;
}
@media screen and (max-width: 768px) {
  .fz44 {
    font-size: clamp(1.5rem, 5.2083333333vw, 2.2222222222rem);
  }
}

.green {
  color: #009140;
}

.underline {
  text-decoration: underline;
}

.g20 {
  gap: 20px;
}

.basic-list01 li {
  position: relative;
  padding-left: 2.2em;
  counter-increment: count;
}
.basic-list01 li:nth-child(-n+9):before {
  content: "0" counter(count) ".";
}
.basic-list01 li:before {
  position: absolute;
  left: 0;
  top: 0.14em;
  content: counter(count) ".";
  font-family: "Oswald", sans-serif;
  line-height: 1;
  font-size: 1.25em;
}

.basic-list02 li {
  position: relative;
  padding-left: 1.5em;
}
.basic-list02 li:before {
  position: absolute;
  content: "";
  width: 1em;
  height: 1em;
  background: #009140;
  border-radius: 100%;
  left: 0;
  top: 0.3em;
}

/***************************

object/project/effects.scss

***************************/
/*ロード時にフェードイン*/
.fadein {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*スクロールフェードイン*/
.fadeInTop {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInTop;
  animation-name: fadeInTop;
  visibility: visible !important;
}

@-webkit-keyframes fadeInTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInBottom {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInBottom;
  animation-name: fadeInBottom;
  visibility: visible !important;
}

@-webkit-keyframes fadeInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInLeft {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  visibility: visible !important;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
  visibility: visible !important;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes aboutText {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes openBox {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@-webkit-keyframes openBox {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@keyframes openText {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
  }
}
@-webkit-keyframes openText {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
  }
}
@keyframes faq {
  0% {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  100% {
    padding-top: 20px;
    padding-bottom: 20px;
    line-height: 1.8;
    visibility: visible;
  }
}
@keyframes interviewScroll {
  0% {
    translate: 0 0;
  }
  100% {
    translate: -100% 0;
  }
}
@keyframes zoomInTrigger {
  0% {
    filter: blur(10px);
  }
  100% {
    filter: blur(0);
  }
}
/*////////////////////////

btn

////////////////////////*/
.btn01 {
  position: relative;
  display: inline-block;
  width: fit-content;
  overflow: hidden;
  font-weight: 600;
}
.btn01:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: #111;
  bottom: 0;
  left: 0;
}
.btn01 span {
  display: inline-block;
  translate: 0 0;
  transition: translate 0.2s;
}
.btn01_sub {
  position: absolute;
  top: 100%;
  left: 0;
}
.btn01.hov .btn01_main {
  translate: 0 -100%;
  transition: translate 0.2s;
}
.btn01.hov .btn01_sub {
  translate: 0 -100%;
  transition: translate 0.2s;
}
.btn01:hover {
  opacity: 1;
}
.btn01.blank {
  padding-right: 30px;
}
.btn01.blank:before {
  width: calc(100% - 30px);
}
.btn01.blank .arrow {
  position: absolute;
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #111;
  border-radius: 1.5px;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  z-index: 2;
}
.btn01.blank .arrow:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  rotate: -40deg;
  background-image: url(../img/common/arrow02.svg);
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 3;
}

.btn02 {
  display: flex;
  align-items: center;
  gap: 20px;
  width: fit-content;
  font-size: 2.4444444444rem;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .btn02 {
    font-size: 1.9444444444rem;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 425px) {
  .btn02 {
    font-size: 1.3888888889rem;
  }
}
.btn02:hover span {
  translate: 10px 0;
}
.btn02 span {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 44px;
  background: #111;
  border-radius: 3px;
  transition: all 0.6s;
}
@media screen and (max-width: 768px) {
  .btn02 span {
    width: 35px;
    height: 35px;
  }
}
@media screen and (max-width: 425px) {
  .btn02 span {
    width: 25px;
    height: 25px;
  }
}
.btn02 span:before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/common/arrow03.svg);
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 2;
  pointer-events: none;
}
@media screen and (max-width: 425px) {
  .btn02 span:before {
    width: 10px;
    height: 10px;
    background-size: cover;
  }
}

.btn-center {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .tab-center {
    margin-left: auto;
    margin-right: auto;
  }
}
/*////////////////////////

hdg__

////////////////////////*/
.hdg01 {
  position: relative;
  padding-left: 45px;
  color: #111;
}
.hdg01:before {
  position: absolute;
  content: "";
  width: 30px;
  height: 2px;
  background: #111;
  left: 0;
  top: calc(0.8em - 1px);
}

.hdg02 {
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 3px solid #000;
}

/***************************

object/project/top.scss

***************************/
.fixed-rotate-box-wrap {
  position: relative;
}

.fixed-rotate {
  position: sticky;
  width: 250px;
  height: 250px;
  margin-top: -250px;
  z-index: 10;
  left: 20px;
  bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .fixed-rotate {
    width: 20vw;
    height: 20vw;
    margin-top: -20vw;
  }
}
.fixed-rotate img {
  filter: grayscale(1) contrast(10);
}

.mv {
  width: 100%;
  height: 150lvh;
}
.mv .main-visual {
  position: sticky;
  width: 100%;
  aspect-ratio: 1920/1040;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .mv .main-visual {
    height: 100lvh;
  }
}
.mv .mvslider {
  position: relative;
  width: 100%;
  aspect-ratio: 1920/1040;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .mv .mvslider {
    height: 100lvh;
  }
}
.mv .mvslider .mvslider-slide {
  position: absolute;
  width: 100%;
  aspect-ratio: 1920/1040;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: 2;
}
.mv .mvslider .mvslider-slide:first-child {
  z-index: 10;
}
.mv .mvslider .mvslider-slide img {
  width: 100%;
  aspect-ratio: 1920/1040;
}
@media screen and (max-width: 1024px) {
  .mv .mvslider .mvslider-slide img {
    height: 100lvh;
    object-fit: cover;
  }
}
.mv .scroll-seek {
  position: absolute;
  bottom: 130px;
  right: 70px;
  z-index: 10;
  width: 120px;
  min-height: 32px;
  display: flex;
  align-items: center;
  padding-left: 40px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 26px;
  mix-blend-mode: overlay;
}
@media screen and (max-width: 768px) {
  .mv .scroll-seek {
    right: 30px;
    bottom: 50px;
  }
}
.mv .scroll-seek .bar {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 15px;
  height: 3px;
  border-radius: 3px;
  z-index: 5;
  translate: 0 -50%;
  overflow: hidden;
}
.mv .scroll-seek .bar:before {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 3px;
  translate: -100% 0;
  animation: scrollseek 1s linear infinite;
}
.mv .scroll-seek .text {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.6111111111rem;
  color: #fff;
}

@keyframes mvText {
  0% {
    translate: 0 0;
  }
  100% {
    translate: -100% 0;
  }
}
@keyframes scrollseek {
  0% {
    translate: -100% 0;
  }
  50% {
    translate: 0 0;
  }
  100% {
    translate: 100% 0;
  }
}
.t-about {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 150px 20px;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .t-about {
    padding: 70px 20px;
    margin-bottom: 60px;
  }
}
.t-about-text {
  position: relative;
}
.t-about-text p {
  font-size: 1.5555555556rem;
  letter-spacing: 0.1em;
  line-height: 2;
  font-weight: 700;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .t-about-text p {
    font-size: 1.3333333333rem;
  }
}
@media screen and (max-width: 600px) {
  .t-about-text p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 425px) {
  .t-about-text p {
    font-size: 0.8888888889rem;
  }
}
@media screen and (max-width: 320px) {
  .t-about-text p {
    font-size: 0.7777777778rem;
  }
}
.t-about-text p span {
  white-space: nowrap;
  overflow: hidden;
}
.t-about-text .top {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.t-about-text .top span {
  width: 0;
}
.t-about-text .back {
  opacity: 0.16;
}
.t-about-image {
  text-align: center;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .t-about-image {
    margin-bottom: 50px;
  }
}

.t-onoki-real {
  width: 100%;
  padding-top: 100px;
  margin-bottom: 300px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .t-onoki-real {
    padding-top: 50px;
    margin-bottom: 150px;
  }
}
@media screen and (max-width: 425px) {
  .t-onoki-real {
    margin-bottom: 80px;
  }
}
.t-onoki-real-head {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 90px;
  z-index: 2;
}
@media screen and (max-width: 1200px) {
  .t-onoki-real-head {
    z-index: 3;
  }
}
@media screen and (max-width: 1024px) {
  .t-onoki-real-head {
    gap: 45px;
  }
}
@media screen and (max-width: 768px) {
  .t-onoki-real-head {
    flex-direction: column;
    gap: 30px;
  }
}
.t-onoki-real-head .ttl {
  padding-top: 50px;
  max-width: 1112px;
  width: 50vw;
}
@media screen and (max-width: 768px) {
  .t-onoki-real-head .ttl {
    padding-top: 0;
    width: 100%;
  }
}
.t-onoki-real-head .text {
  position: relative;
  display: flex;
  gap: 14px;
  z-index: 3;
}
@media screen and (min-width: 769px) {
  .t-onoki-real-head .text {
    flex-direction: row-reverse;
    align-items: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .t-onoki-real-head .text {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.t-onoki-real-head .text p {
  display: inline-block;
  background: #F2F4F6;
  font-size: 1.2222222222rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 769px) {
  .t-onoki-real-head .text p {
    writing-mode: vertical-lr;
    padding: 5px 0;
  }
}
@media screen and (max-width: 425px) {
  .t-onoki-real-head .text p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 320px) {
  .t-onoki-real-head .text p {
    font-size: 0.8888888889rem;
  }
}
.t-onoki-real-head .text p .small {
  font-size: 0.6111111111rem;
  padding: 0 5px;
}
.t-onoki-real-head .text p .green {
  background: #c8d4ce;
  color: #000;
}
.t-onoki-real-data {
  position: relative;
  max-width: 1425px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
  margin-bottom: 30px;
}
@media screen and (min-width: 769px) {
  .t-onoki-real-data {
    margin-top: -30px;
  }
}
@media screen and (max-width: 768px) {
  .t-onoki-real-data {
    padding: 0 20px;
    margin-top: 60px;
  }
}
@media screen and (max-width: 425px) {
  .t-onoki-real-data {
    padding: 0;
    margin-bottom: 0;
  }
}
.t-onoki-real-data a {
  position: relative;
  display: block;
}
.t-onoki-real-data a:after {
  position: absolute;
  content: "";
  width: 36px;
  height: 36px;
  background: url(../img/common/arrow01.svg);
  right: 45px;
  bottom: 35px;
  z-index: 2;
  pointer-events: none;
  transition: translate 0.6s;
}
@media screen and (max-width: 1024px) {
  .t-onoki-real-data a:after {
    width: 22px;
    height: 22px;
    background-size: cover;
  }
}
@media screen and (max-width: 768px) {
  .t-onoki-real-data a:after {
    right: 25px;
    bottom: 20px;
  }
}
.t-onoki-real-data a:hover:after {
  translate: 10px 0;
}
.t-onoki-real-data a img {
  width: 100%;
}
@media screen and (max-width: 425px) {
  .t-onoki-real-data a img {
    width: 100%;
  }
}
.t-onoki-real-data a .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 3;
}
.t-onoki-real-data a .inner .ttl {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: clamp(1.3888888889rem, 6.4516129032vw, 4.4444444444rem);
  letter-spacing: 0;
  color: #fff;
}
.t-onoki-real-data a .inner .text {
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: clamp(0.7222222222rem, 1.4516129032vw, 1rem);
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 426px) {
  .t-onoki-real-data img {
    border-radius: 5px;
  }
}
.t-onoki-real-link {
  position: relative;
  max-width: 1425px;
  width: 100%;
  display: flex;
  gap: 70px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .t-onoki-real-link {
    gap: 20px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 425px) {
  .t-onoki-real-link {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
}
.t-onoki-real-link a {
  position: relative;
  display: block;
}
.t-onoki-real-link a:after {
  position: absolute;
  content: "";
  width: 36px;
  height: 36px;
  background: url(../img/common/arrow01.svg);
  right: 35px;
  bottom: 30px;
  z-index: 2;
  pointer-events: none;
  transition: translate 0.6s;
}
@media screen and (max-width: 1024px) {
  .t-onoki-real-link a:after {
    width: 22px;
    height: 22px;
    background-size: cover;
  }
}
@media screen and (max-width: 768px) {
  .t-onoki-real-link a:after {
    right: 25px;
    bottom: 20px;
  }
}
.t-onoki-real-link a:hover:after {
  translate: 10px 0;
}
@media screen and (min-width: 426px) {
  .t-onoki-real-link a .back img {
    border-radius: 5px;
  }
}
@media screen and (max-width: 425px) {
  .t-onoki-real-link a .back img {
    width: 100%;
  }
}
.t-onoki-real-link a h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 3;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .t-onoki-real-link a h3 {
    font-size: 1.6666666667rem;
  }
}
@media screen and (max-width: 768px) {
  .t-onoki-real-link a h3 {
    font-size: 1.1111111111rem;
  }
}
@media screen and (max-width: 425px) {
  .t-onoki-real-link a h3 {
    font-size: 0.8888888889rem;
  }
}
.t-onoki-real-link a span {
  position: absolute;
  z-index: 3;
}
.t-onoki-real-link a.workstyle span {
  bottom: -45px;
  left: 20px;
}
@media screen and (max-width: 1024px) {
  .t-onoki-real-link a.workstyle span {
    width: 4.6vw;
  }
}
@media screen and (max-width: 425px) {
  .t-onoki-real-link a.workstyle span {
    width: 10.3vw;
    bottom: 12px;
    left: 30px;
  }
}
.t-onoki-real-link a.training span {
  bottom: -30px;
  left: 50px;
}
@media screen and (max-width: 1024px) {
  .t-onoki-real-link a.training span {
    left: 20px;
    width: 6.6vw;
  }
}
@media screen and (max-width: 425px) {
  .t-onoki-real-link a.training span {
    width: 13.3vw;
    bottom: 12px;
    left: 30px;
  }
}

.t-active-field {
  width: 100%;
  margin-bottom: 250px;
}
@media screen and (max-width: 768px) {
  .t-active-field {
    margin-bottom: 120px;
  }
}
@media screen and (max-width: 425px) {
  .t-active-field {
    margin-bottom: 80px;
  }
}
.t-active-field-wrap {
  position: relative;
  max-width: 1480px;
  width: 100%;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
}
@media screen and (min-width: 769px) {
  .t-active-field-wrap {
    flex-direction: row-reverse;
    justify-content: center;
    gap: 70px;
  }
}
@media screen and (max-width: 768px) {
  .t-active-field-wrap {
    flex-direction: column;
    padding: 0 20px;
  }
}
@media screen and (min-width: 769px) {
  .t-active-field-sidebar {
    max-width: 370px;
    width: 26.4%;
  }
}
.t-active-field-head {
  display: flex;
  gap: 30px;
}
@media screen and (min-width: 769px) {
  .t-active-field-head {
    position: sticky;
    top: 120px;
    right: 0;
    flex-direction: row-reverse;
  }
}
@media screen and (max-width: 768px) {
  .t-active-field-head {
    flex-direction: column;
    rotate: -5deg;
    margin-bottom: 70px;
  }
}
.t-active-field-head .text {
  display: flex;
  gap: 5px;
}
@media screen and (min-width: 769px) {
  .t-active-field-head .text {
    flex-direction: row-reverse;
    align-items: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .t-active-field-head .text {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.t-active-field-head .text p {
  display: inline-block;
  background: #F2F4F6;
  font-size: 1.2222222222rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 769px) {
  .t-active-field-head .text p {
    writing-mode: vertical-lr;
    padding: 5px 0;
  }
}
@media screen and (max-width: 425px) {
  .t-active-field-head .text p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 320px) {
  .t-active-field-head .text p {
    font-size: 0.8888888889rem;
  }
}
.t-active-field-body {
  max-width: 1000px;
}
@media screen and (min-width: 769px) {
  .t-active-field-body {
    width: 71.4%;
  }
}
@media screen and (max-width: 768px) {
  .t-active-field-body {
    width: 82%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 425px) {
  .t-active-field-body {
    width: 92%;
  }
}
.t-active-field-list {
  width: 100%;
}
.t-active-field-list-block:not(:last-child) {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .t-active-field-list-block:not(:last-child) {
    margin-bottom: 50px;
  }
}
.t-active-field-list-block a:hover h3 span {
  translate: 10px 0;
}
.t-active-field-list-block .image {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .t-active-field-list-block .image {
    margin-bottom: 20px;
  }
}
.t-active-field-list-block .image img {
  border-radius: 5px;
}
.t-active-field-list-block h3 {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 2.4444444444rem;
  font-weight: 900;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .t-active-field-list-block h3 {
    font-size: 1.9444444444rem;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 425px) {
  .t-active-field-list-block h3 {
    font-size: 1.3888888889rem;
  }
}
.t-active-field-list-block h3 span {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 44px;
  background: #111;
  border-radius: 3px;
  transition: all 0.6s;
}
@media screen and (max-width: 768px) {
  .t-active-field-list-block h3 span {
    width: 35px;
    height: 35px;
  }
}
@media screen and (max-width: 425px) {
  .t-active-field-list-block h3 span {
    width: 25px;
    height: 25px;
  }
}
.t-active-field-list-block h3 span:before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/common/arrow03.svg);
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 2;
  pointer-events: none;
}
@media screen and (max-width: 425px) {
  .t-active-field-list-block h3 span:before {
    width: 10px;
    height: 10px;
    background-size: cover;
  }
}

.t-interview {
  position: relative;
  width: 100%;
  padding-top: 3.9vw;
  padding-bottom: calc(12.5vw + 55px);
  overflow: hidden;
  margin-bottom: 140px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .t-interview {
    margin-bottom: 70px;
  }
}
.t-interview:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3.9vw;
  background: #fff;
  z-index: 2;
  pointer-events: none;
  top: -1px;
  left: 0;
  z-index: 1;
}
.t-interview:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 15.6vw;
  background: linear-gradient(180deg, #fff, transparent);
  z-index: 2;
  pointer-events: none;
  top: 3.5vw;
  left: 0;
  z-index: 1;
}
.t-interview-under {
  position: absolute;
  width: 100%;
  height: 12.5vw;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}
.t-interview-under:before, .t-interview-under:after {
  position: absolute;
  content: "";
  width: 50%;
  height: 100%;
  background: #fff;
  bottom: -1px;
}
.t-interview-under:before {
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  left: 0;
}
.t-interview-under:after {
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
  right: 0;
}
.t-interview-scroll {
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 100%;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 50px;
  opacity: 0.32;
  mix-blend-mode: multiply;
  rotate: 15deg;
}
@media screen and (max-width: 768px) {
  .t-interview-scroll {
    top: 30%;
  }
}
@media screen and (max-width: 425px) {
  .t-interview-scroll {
    top: 20%;
  }
}
.t-interview-scroll .text {
  display: inline-block;
  animation: interviewScroll 20s linear infinite;
}
.t-interview-scroll .text img {
  min-width: 173vw;
}
.t-interview .wrap {
  position: relative;
  z-index: 3;
}
.t-interview-head {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 90px;
  z-index: 2;
  margin-bottom: 100px;
}
@media screen and (max-width: 1200px) {
  .t-interview-head {
    z-index: 3;
  }
}
@media screen and (max-width: 1024px) {
  .t-interview-head {
    gap: 45px;
  }
}
@media screen and (max-width: 768px) {
  .t-interview-head {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
  }
}
.t-interview-head .text {
  display: flex;
  gap: 14px;
}
@media screen and (min-width: 769px) {
  .t-interview-head .text {
    flex-direction: row-reverse;
    align-items: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .t-interview-head .text {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.t-interview-head .text p {
  display: inline-block;
  background: #F2F4F6;
  font-size: 1.2222222222rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 769px) {
  .t-interview-head .text p {
    writing-mode: vertical-lr;
    padding: 5px 0;
  }
}
@media screen and (max-width: 425px) {
  .t-interview-head .text p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 320px) {
  .t-interview-head .text p {
    font-size: 0.8888888889rem;
  }
}
.t-interview-linkWrap {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}
.t-interview .btn02 {
  margin-bottom: -70px;
}
@media screen and (max-width: 1620px) {
  .t-interview .btn02 {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .t-interview .btn02 {
    margin-left: 2.5%;
  }
}
.t-interview-list {
  width: 100%;
}
.t-interview-list:not(:last-of-type) {
  margin-bottom: 35px;
}
@media screen and (max-width: 1024px) {
  .t-interview-list {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }
}
.t-interview-list-block {
  position: relative;
  max-width: 1200px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .t-interview-list-block {
    overflow: hidden;
    border-radius: 5px;
  }
  .t-interview-list-block:nth-child(5) .image img, .t-interview-list-block:nth-child(6) .image img {
    object-position: center left;
  }
}
@media screen and (max-width: 600px) {
  .t-interview-list-block:first-child .image img {
    object-position: -30vw 50%;
  }
  .t-interview-list-block:nth-child(2) .image img {
    object-position: -25vw 50%;
  }
  .t-interview-list-block:nth-child(4) .image img {
    object-position: -20vw 50%;
  }
  .t-interview-list-block:nth-child(6) .image img {
    object-position: -20vw 50%;
  }
  .t-interview-list-block:last-child .image img {
    object-position: -40vw 50%;
  }
}
@media screen and (max-width: 425px) {
  .t-interview-list-block:nth-child(4) .image img {
    object-position: -25vw 50%;
  }
  .t-interview-list-block:nth-child(5) .image img {
    object-position: -5vw 50%;
  }
  .t-interview-list-block:last-child .image img {
    object-position: -50vw 50%;
  }
}
.t-interview-list-block:not(:last-child) {
  margin-bottom: 35px;
}
@media screen and (max-width: 1024px) {
  .t-interview-list-block:not(:last-child) {
    margin-bottom: 20px;
  }
}
.t-interview-list-block:nth-child(3n-2) {
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .t-interview-list-block:nth-child(3n-2) {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
.t-interview-list-block:nth-child(3n-1) {
  margin-left: auto;
  margin-right: 12.2395833333vw;
}
@media screen and (max-width: 1620px) {
  .t-interview-list-block:nth-child(3n-1) {
    margin-right: auto;
  }
}
@media screen and (max-width: 1024px) {
  .t-interview-list-block:nth-child(3n-1) {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
.t-interview-list-block:nth-child(3n) {
  margin-left: auto;
  margin-right: 24.4791666667vw;
}
@media screen and (max-width: 1620px) {
  .t-interview-list-block:nth-child(3n) {
    margin-left: 0;
    margin-right: auto;
  }
}
@media screen and (max-width: 1024px) {
  .t-interview-list-block:nth-child(3n) {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
.t-interview-list a {
  position: relative;
  display: block;
  color: #fff;
}
.t-interview-list a:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 90px;
  z-index: 2;
  background: #fff;
  top: 50%;
  right: 0;
  translate: 0 -50%;
}
.t-interview-list a:hover {
  opacity: 1;
}
.t-interview-list a:hover .image:before {
  opacity: 0;
}
.t-interview-list .image {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .t-interview-list .image {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    z-index: 1;
  }
}
.t-interview-list .image:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: #0F0F0F;
  mix-blend-mode: hue;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
  transition: all 0.6s;
}
.t-interview-list .image img {
  border-radius: 5px;
}
@media screen and (max-width: 1024px) {
  .t-interview-list .image img {
    height: 360px;
    width: auto;
    object-fit: cover;
  }
}
@media screen and (max-width: 425px) {
  .t-interview-list .image img {
    height: 270px;
  }
}
.t-interview-list .inner {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 3;
  padding: 40px 40px 35px 50px;
}
@media screen and (min-width: 769px) {
  .t-interview-list .inner {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
  }
}
@media screen and (max-width: 1024px) {
  .t-interview-list .inner {
    gap: 20px;
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  .t-interview-list .inner {
    min-height: 300px;
  }
}
@media screen and (max-width: 425px) {
  .t-interview-list .inner {
    min-height: 270px;
  }
}
.t-interview-list .inner .box {
  width: 100%;
}
.t-interview-list .inner .box .num {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  text-align: right;
}
.t-interview-list .inner .box h3 {
  font-family: "Oswald", sans-serif;
  font-size: 4.4444444444rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .t-interview-list .inner .box h3 {
    font-size: 2.7777777778rem;
  }
}
@media screen and (max-width: 768px) {
  .t-interview-list .inner .box h3 {
    font-size: 2.2222222222rem;
  }
}
@media screen and (max-width: 425px) {
  .t-interview-list .inner .box h3 {
    font-size: 1.6666666667rem;
  }
}
.t-interview-list .inner .box .post {
  width: fit-content;
  font-size: 0.7777777778rem;
  font-weight: 700;
  background: #fff;
  color: #111;
  padding: 0 5px;
}
.t-interview-list .inner .text {
  max-width: 430px;
  width: 100%;
  font-size: 0.7777777778rem;
  font-weight: 700;
  line-height: 1.8;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .t-interview-list .inner .text {
    max-width: 100%;
  }
}

.t-message {
  width: 100%;
  padding-bottom: 160px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .t-message {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 425px) {
  .t-message {
    overflow: hidden;
    padding-top: 30px;
  }
}
.t-message-block {
  max-width: 1860px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 80px;
}
@media screen and (max-width: 1024px) {
  .t-message-block {
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .t-message-block {
    flex-direction: column;
    gap: 20px;
    padding-right: 0;
  }
}
.t-message-block .ttl {
  position: relative;
  z-index: 2;
}
.t-message-block .inner {
  display: flex;
  align-items: flex-end;
  gap: 80px;
}
@media screen and (max-width: 1500px) {
  .t-message-block .inner {
    align-items: normal;
  }
}
@media screen and (max-width: 1024px) {
  .t-message-block .inner {
    flex-direction: column;
    gap: calc(5vw + 30px);
  }
}
.t-message-block .image {
  position: relative;
  width: calc(100% - 460px);
  filter: blur(10px);
}
@media screen and (max-width: 1024px) {
  .t-message-block .image {
    width: 100%;
  }
}
.t-message-block .image.blur {
  animation: zoomInTrigger 0.8s linear both;
}
.t-message-block .image img {
  border-radius: 8px;
}
.t-message-block .image .under {
  position: absolute;
  max-width: 1755px;
  width: 91.4vw;
  bottom: -8vw;
  left: 25px;
}
@media screen and (min-width: 1920px) {
  .t-message-block .image .under {
    bottom: -160px;
  }
}
@media screen and (max-width: 1024px) {
  .t-message-block .image .under {
    width: calc(100% - 50px);
    bottom: -5vw;
  }
}
@media screen and (max-width: 425px) {
  .t-message-block .image .under {
    width: 110vw;
    left: 50%;
    translate: -50% 0;
    bottom: -8vw;
  }
}
.t-message-block .text {
  width: 380px;
  padding-bottom: 80px;
}
@media screen and (max-width: 1500px) {
  .t-message-block .text {
    padding-bottom: 0;
    padding-top: 2.7vw;
  }
}
@media screen and (max-width: 1024px) {
  .t-message-block .text {
    min-width: 380px;
    width: auto;
    padding: 0 20px;
    margin-left: auto;
    margin-right: auto;
  }
}
.t-message-block .text p {
  font-size: 1.2222222222rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.06em;
}
.t-message-block .text p:not(:last-of-type) {
  margin-bottom: 30px;
}
.t-message-block .text p:last-of-type {
  margin-bottom: 45px;
}

/***************************

object/project/subpage.scss

***************************/
.subpage {
  width: 100%;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .subpage {
    margin-bottom: 60px;
  }
}
.subpage-mv {
  position: relative;
  width: 100%;
}
.subpage-mv-main {
  width: 100%;
}
.subpage-mv-inner {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-left: clamp(20px, 4.6875vw, 90px);
  padding-right: clamp(20px, 4.6875vw, 90px);
}
.subpage-mv-ttl {
  font-size: 3.3333333333rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .subpage-mv-ttl {
    font-size: clamp(25px, 4.8828125vw, 50px);
  }
}
@media screen and (max-width: 425px) {
  .subpage-mv-ttl {
    font-size: clamp(1.25rem, 5.8823529412vw, 1.5625rem);
  }
}
.subpage-mv-ttl-en {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: clamp(80px, 10.4166666667vw, 200px);
  letter-spacing: 0;
  color: #fff;
  line-height: 0.9;
}
@media screen and (max-width: 425px) {
  .subpage-mv-ttl-en {
    font-size: clamp(3.125rem, 18.8235294118vw, 5rem);
  }
}
.subpage-subtitle {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  width: 100%;
  background: url(../img/subpage/subtitle-back.jpg);
  background-size: cover;
  margin-left: auto;
  padding: 60px;
  padding-right: clamp(20px, 4.6875vw, 90px);
}
@media screen and (min-width: 769px) {
  .subpage-subtitle {
    max-width: 750px;
    min-height: 220px;
    margin-top: -110px;
    border-radius: 5px 0 0 5px;
  }
}
@media screen and (max-width: 1500px) {
  .subpage-subtitle {
    width: 50vw;
  }
}
@media screen and (max-width: 1024px) {
  .subpage-subtitle {
    padding: 30px;
    padding-right: clamp(20px, 4.6875vw, 90px);
  }
}
@media screen and (max-width: 768px) {
  .subpage-subtitle {
    width: 100%;
    padding-left: clamp(20px, 4.6875vw, 90px);
  }
}
@media screen and (max-width: 425px) {
  .subpage-subtitle {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.subpage-subtitle-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .subpage-subtitle-inner {
    gap: 8px;
  }
}
.subpage .bread-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding-left: clamp(20px, 4.6875vw, 90px);
  padding-right: clamp(20px, 4.6875vw, 90px);
}
@media screen and (min-width: 769px) {
  .subpage .bread-list {
    min-height: 110px;
    margin-top: -110px;
  }
}
@media screen and (max-width: 768px) {
  .subpage .bread-list {
    margin-top: 20px;
  }
}
.subpage .bread-list li {
  position: relative;
  line-height: 1;
  display: flex;
}
.subpage .bread-list li:not(:last-child):after {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  border-top: 1px solid #D7D7D7;
  border-right: 1px solid #D7D7D7;
  rotate: 45deg;
  top: 50%;
  right: -12px;
  translate: 0 -50%;
  z-index: 2;
}
.subpage .bread-list li:not(:last-child) a {
  color: #111;
  text-decoration: underline;
}
.subpage .bread-list li:last-child a {
  pointer-events: none;
}
.subpage .bread-list li a {
  font-size: 0.6666666667rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.subpage-contWrap {
  position: relative;
  width: 100%;
  padding-left: clamp(20px, 4.6875vw, 90px);
  padding-right: clamp(20px, 4.6875vw, 90px);
}
.subpage-contWrap:after {
  position: absolute;
  content: "";
  max-width: 878px;
  width: 45.7291666667vw;
  height: 1100px;
  background: url(../img/subpage/subpage-back-deco.svg);
  background-size: 57.2916666667vw auto;
  background-repeat: no-repeat;
  background-position: top right;
  top: 21.875vw;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 1921px) {
  .subpage-contWrap:after {
    background-size: 1100px 1100px;
    top: 420px;
  }
}
.subpage-contWrap.u-area-flex {
  display: flex;
  gap: clamp(40px, 4.6875vw, 90px);
}
@media screen and (min-width: 1921px) {
  .subpage-contWrap.u-area-flex {
    gap: 90px;
  }
}
@media screen and (max-width: 768px) {
  .subpage-contWrap.u-area-flex {
    flex-direction: column;
    gap: 50px;
  }
}
.subpage-contWrap .u-side-area {
  position: relative;
  min-width: 300px;
}
@media screen and (max-width: 1024px) {
  .subpage-contWrap .u-side-area {
    min-width: 250px;
  }
}
@media screen and (max-width: 768px) {
  .subpage-contWrap .u-side-area {
    min-width: auto;
    width: 100%;
  }
}
.subpage-contWrap .u-side-area-inner {
  border-radius: 5px;
  background: #373737;
  padding: 50px 0;
}
@media screen and (min-width: 769px) {
  .subpage-contWrap .u-side-area-inner {
    position: sticky;
    top: 110px;
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .subpage-contWrap .u-side-area-inner {
    padding: 30px 0;
  }
}
.subpage-contWrap .u-side-area-inner .page-link {
  width: 100%;
}
.subpage-contWrap .u-side-area-inner .page-link li {
  position: relative;
  padding-left: 50px;
  padding-right: 50px;
}
@media screen and (max-width: 1024px) {
  .subpage-contWrap .u-side-area-inner .page-link li {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.subpage-contWrap .u-side-area-inner .page-link li:not(:last-child) {
  margin-bottom: 20px;
}
.subpage-contWrap .u-side-area-inner .page-link li:before {
  position: absolute;
  content: "";
  width: 6px;
  height: 100%;
  background: transparent;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  z-index: 2;
}
.subpage-contWrap .u-side-area-inner .page-link li a {
  position: relative;
  display: inline-block;
  font-size: 0.8333333333rem;
  font-weight: 700;
  color: #fff;
  padding-left: 15px;
  opacity: 0.22;
}
.subpage-contWrap .u-side-area-inner .page-link li a:before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 100%;
  left: 0;
  top: calc(0.8em - 3px);
  z-index: 2;
}
.subpage-contWrap .u-side-area-inner .page-link li a:hover {
  opacity: 1;
}
.subpage-contWrap .u-side-area-inner .page-link li a:hover:before {
  opacity: 1;
}
.subpage-contWrap .u-side-area-inner .page-link li.now:before {
  background: #111;
}
.subpage-contWrap .u-side-area-inner .page-link li.now a {
  opacity: 1;
}
.subpage-contWrap .u-main-area {
  width: 100%;
}

.u-section01 {
  max-width: 57.3vw;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .u-section01 {
    max-width: 100%;
  }
}
.u-section01:not(:last-of-type) {
  margin-bottom: 160px;
}
@media screen and (max-width: 768px) {
  .u-section01:not(:last-of-type) {
    margin-bottom: 80px;
  }
}

.u-section02 {
  width: 100%;
}
.u-section02.mw1350 {
  max-width: 1350px;
  margin-left: auto;
  margin-right: auto;
}
.u-section02:not(:last-of-type) {
  margin-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .u-section02:not(:last-of-type) {
    margin-bottom: 50px;
  }
}

/***************************

object/project/message.scss

***************************/
.message .image img {
  width: 100%;
  border-radius: 8px;
}

/***************************

object/project/about.scss

***************************/
.onoki-data-block {
  width: 100%;
}
.onoki-data-block:not(:last-of-type) {
  margin-bottom: 25px;
}
@media screen and (max-width: 1024px) {
  .onoki-data-block .pc-flexwrap {
    flex-direction: column;
  }
}
@media screen and (max-width: 1620px) {
  .onoki-data-block .flexwrap {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 425px) {
  .onoki-data-block .flexbox {
    flex-wrap: wrap;
  }
}
.onoki-data-block .g25 {
  gap: 25px;
}
.onoki-data-block .g15 {
  gap: 10px 15px;
}
.onoki-data-block .g10 {
  gap: 10px;
}
.onoki-data-block .w50 {
  width: 50%;
}
@media screen and (max-width: 1620px) {
  .onoki-data-block .w50 {
    width: 100%;
  }
}
.onoki-data-block .w33 {
  width: 33%;
}
@media screen and (max-width: 1620px) {
  .onoki-data-block .w33 {
    width: calc(50% - 5px);
  }
}
@media screen and (max-width: 1024px) {
  .onoki-data-block .w33 {
    width: 100%;
  }
}
.onoki-data-block .w25 {
  width: 25%;
}
@media screen and (max-width: 1620px) {
  .onoki-data-block .w25 {
    width: calc(50% - 5px);
  }
}
@media screen and (max-width: 1024px) {
  .onoki-data-block .w25 {
    width: 100%;
  }
}

.onoki-data-item {
  position: relative;
  width: 100%;
  height: 100%;
  background: #F7F7F7;
  border: 1px solid #DDDCDC;
  border-radius: 5px;
}
.onoki-data-item .box-name {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  min-height: 47px;
  font-size: 1.2222222222rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  padding: 0 15px;
  background: #111;
  border-radius: 5px 0 5px 0;
}
@media screen and (max-width: 768px) {
  .onoki-data-item .box-name {
    font-size: 1.0555555556rem;
    min-height: 36px;
  }
}
.onoki-data-item-inner {
  padding: 60px 45px 35px;
}
@media screen and (max-width: 1024px) {
  .onoki-data-item-inner {
    padding: 60px 30px 35px;
  }
}
.onoki-data-item .data_countup {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.onoki-data-item .data_countup_num {
  font-family: "Oswald", sans-serif;
  letter-spacing: -0.02em;
  font-weight: 500;
  line-height: 1;
}
.onoki-data-item .data_countup span {
  font-weight: 700;
  line-height: 1.3;
}
.onoki-data-item .data_countup .fz140 {
  font-size: clamp(50px, 7.2916666667vw, 140px);
}
.onoki-data-item .data_countup .fz110 {
  font-size: clamp(45px, 5.7291666667vw, 110px);
}
.onoki-data-item .data_countup .fz60 {
  font-size: clamp(30px, 3.125vw, 60px);
}
.onoki-data-item .data_countup .fz54 {
  font-size: clamp(27px, 2.8125vw, 54px);
}
.onoki-data-item .data_countup .fz42 {
  font-size: clamp(21px, 2.1875vw, 42px);
}
.onoki-data-item .founded-image img {
  width: 100%;
  border-radius: 0 5px 5px 0;
}
@media screen and (max-width: 1620px) {
  .onoki-data-item .founded-image img {
    border-radius: 0 0 5px 5px;
  }
}
.onoki-data-item .data_graph_num {
  position: relative;
}
@media screen and (max-width: 425px) {
  .onoki-data-item .data_graph_num {
    width: 25vw;
  }
}
.onoki-data-item .data_graph_num.tyuto:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 32px;
  background: url(../img/about/graph-arrow-left.svg);
  background-repeat: no-repeat;
  left: 50%;
  bottom: -35px;
  z-index: 2;
}
@media screen and (max-width: 425px) {
  .onoki-data-item .data_graph_num.tyuto:before {
    display: none;
  }
}
.onoki-data-item .data_graph_num.sinsotu:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 32px;
  background: url(../img/about/graph-arrow-right.svg);
  background-position: bottom right;
  background-repeat: no-repeat;
  left: -50%;
  bottom: -35px;
  z-index: 2;
}
@media screen and (max-width: 425px) {
  .onoki-data-item .data_graph_num.sinsotu:before {
    display: none;
  }
}
.onoki-data-item .data_graph_num.dot:before {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  border: 3px solid #fff;
  border-radius: 100%;
  right: calc(100% + 5px);
  top: 75%;
  translate: 0 -50%;
  z-index: 2;
}
@media screen and (max-width: 600px) {
  .onoki-data-item .data_graph_num.dot:before {
    width: 10px;
    height: 10px;
    border: 2px solid #fff;
  }
}
.onoki-data-item .data_graph_num.women:before, .onoki-data-item .data_graph_num.bike:before {
  background: #48EBA8;
}
.onoki-data-item .data_graph_num.men:before, .onoki-data-item .data_graph_num.car:before {
  background: #00C95F;
}
.onoki-data-item .data_graph_num.mycar:before {
  background: #55D4BF;
}
.onoki-data-item .data_graph_num.work:before {
  background: #03E532;
}
.onoki-data-item .data_graph_num.train:before {
  background: #007D3B;
}
.onoki-data-item .data_graph_num.buss:before {
  background: #00A04C;
}
.onoki-data-item .data_graph_num .label {
  text-align: center;
  margin-bottom: 10px;
}
.onoki-data-item .data_graph_num .label span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(18px, 1.1979166667vw, 23px);
  background: #fff;
  border: 1px solid #000;
  min-height: 40px;
  padding: 0 10px;
  border-radius: 100px;
}
@media screen and (max-width: 600px) {
  .onoki-data-item .data_graph_num .label span {
    font-size: 0.6666666667rem;
    padding: 0 3px;
    min-height: auto;
  }
}
.onoki-data-item .data_graph {
  position: relative;
  max-width: 250px;
  width: 12vw;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 1620px) {
  .onoki-data-item .data_graph {
    width: 100%;
  }
}
@media screen and (max-width: 425px) {
  .onoki-data-item .data_graph {
    order: 3;
  }
}

/***************************

object/project/job.scss

***************************/
.job-cont-block {
  width: 100%;
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .job-cont-block {
    flex-direction: column;
    gap: 30px;
  }
}
.job-cont-block-text {
  width: 54%;
}
@media screen and (max-width: 768px) {
  .job-cont-block-text {
    width: 100%;
  }
}
.job-cont-block-image {
  width: 46%;
}
@media screen and (max-width: 768px) {
  .job-cont-block-image {
    width: 100%;
  }
}
.job-cont-block-image img {
  width: 100%;
  border-radius: 5px;
}

/***************************

object/project/interview.scss

***************************/
.interview-list {
  max-width: 1350px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.interview-list-block {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .interview-list-block {
    overflow: hidden;
    border-radius: 5px;
  }
}
.interview-list-block:not(:last-child) {
  margin-bottom: 35px;
}
@media screen and (max-width: 1024px) {
  .interview-list-block:not(:last-child) {
    margin-bottom: 20px;
  }
}
.interview-list a {
  position: relative;
  display: block;
  color: #fff;
}
.interview-list a:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 90px;
  z-index: 2;
  background: #fff;
  top: 50%;
  right: 0;
  translate: 0 -50%;
}
.interview-list a:hover {
  opacity: 1;
}
.interview-list a:hover .image:before {
  opacity: 0;
}
.interview-list .image {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .interview-list .image {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    z-index: 1;
  }
}
.interview-list .image:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: #0F0F0F;
  mix-blend-mode: hue;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
  transition: all 0.6s;
}
.interview-list .image img {
  border-radius: 5px;
}
@media screen and (max-width: 1024px) {
  .interview-list .image img {
    height: 360px;
    width: auto;
    object-fit: cover;
  }
}
.interview-list .inner {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 3;
  padding: 40px 40px 35px 50px;
}
@media screen and (min-width: 769px) {
  .interview-list .inner {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
  }
}
@media screen and (max-width: 1024px) {
  .interview-list .inner {
    gap: 20px;
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  .interview-list .inner {
    min-height: 300px;
  }
}
.interview-list .inner .box {
  width: 100%;
}
.interview-list .inner .box .num {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  text-align: right;
}
.interview-list .inner .box h3 {
  font-family: "Oswald", sans-serif;
  font-size: 4.4444444444rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .interview-list .inner .box h3 {
    font-size: 2.2222222222rem;
  }
}
.interview-list .inner .box .post {
  width: fit-content;
  font-size: 0.7777777778rem;
  font-weight: 700;
  background: #fff;
  color: #111;
  padding: 0 5px;
}
.interview-list .inner .text {
  max-width: 430px;
  width: 100%;
  font-size: 0.7777777778rem;
  font-weight: 700;
  line-height: 1.8;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .interview-list .inner .text {
    max-width: 100%;
  }
}

.interview-detail .image img {
  width: 100%;
  border-radius: 8px;
}
.interview-detail .subpage-mv-ttl {
  width: 54vw;
  padding-bottom: 100px;
  font-size: clamp(1.6666666667rem, 4vw, 3.3333333333rem);
}
@media screen and (max-width: 768px) {
  .interview-detail .subpage-mv-ttl {
    width: 100%;
    padding-bottom: 30px;
  }
  .interview-detail .subpage-mv-ttl .pc {
    display: none;
  }
}
@media screen and (max-width: 425px) {
  .interview-detail .subpage-mv-ttl {
    font-size: 1.3888888889rem;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 425px) {
  .interview-detail.interview02 .subpage-mv-ttl {
    font-size: 4.2352941176vw;
  }
}
.interview-detail .subpage-contWrap .u-side-area-inner .page-link li {
  padding-right: 20px;
}

.interview-branch {
  width: 100%;
  padding-left: clamp(20px, 4.6875vw, 90px);
  padding-right: clamp(20px, 4.6875vw, 90px);
  margin-top: 140px;
}
@media screen and (max-width: 768px) {
  .interview-branch {
    margin-top: 70px;
  }
}
.interview-branch-wrap {
  max-width: 1350px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.interview-branch-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}
@media screen and (max-width: 1024px) {
  .interview-branch-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .interview-branch-list {
    gap: 25px;
  }
}
@media screen and (max-width: 600px) {
  .interview-branch-list {
    grid-template-columns: 100%;
  }
}
.interview-branch-list-block {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
}
.interview-branch-list .image img {
  width: 100%;
}
@media screen and (max-width: 1320px) {
  .interview-branch-list .image img {
    height: 475px;
    object-fit: cover;
  }
}
@media screen and (max-width: 600px) {
  .interview-branch-list .image img {
    height: auto;
  }
}
.interview-branch-list .inner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  padding: 30px;
  color: #fff;
}
.interview-branch-list .inner .num {
  font-family: "Oswald", sans-serif;
  font-size: 0.7777777778rem;
  font-weight: 500;
  letter-spacing: 0;
  text-align: right;
}
.interview-branch-list .inner .box {
  width: 100%;
}
.interview-branch-list .inner .box h3 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(30px, 3.7037037037vw, 60px);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 10px;
}
.interview-branch-list .inner .box .post {
  width: fit-content;
  font-size: 0.7777777778rem;
  font-weight: 700;
  background: #fff;
  color: #111;
  padding: 0 5px;
  margin-bottom: 20px;
}
.interview-branch-list .inner .box .text {
  font-size: 0.7777777778rem;
  font-weight: 700;
  line-height: 1.8;
}
.interview-branch-list a:hover .image img {
  transition: scale 0.6s;
  scale: 1.1;
}

/***************************

object/project/workstyle.scss

***************************/
@media screen and (max-width: 1620px) {
  .workstyle .subpage-mv-ttl-en {
    font-size: clamp(80px, 8.6419753086vw, 140px);
  }
}
@media screen and (max-width: 425px) {
  .workstyle .subpage-mv-ttl-en {
    font-size: clamp(50px, 18.8235294118vw, 80px);
  }
}

/***************************

object/project/training.scss

***************************/
.training-gallery {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .training-gallery {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .training-gallery {
    flex-direction: column;
  }
}
.training-gallery-box {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .training-gallery-box {
    width: 100%;
  }
}
.training-gallery-box img {
  width: 100%;
  border-radius: 5px;
}

/***************************

object/project/recruitment.scss

***************************/
@media screen and (max-width: 1919px) {
  .recruitment .subpage-mv-ttl-en {
    font-size: clamp(80px, 8.3333333333vw, 160px);
  }
}
@media screen and (max-width: 1500px) {
  .recruitment .subpage-mv-ttl-en {
    font-size: clamp(80px, 6.25vw, 120px);
  }
}
@media screen and (max-width: 500px) {
  .recruitment .subpage-mv-ttl-en {
    font-size: 16vw;
  }
}
@media screen and (max-width: 1024px) {
  .recruitment .subpage-subtitle {
    max-width: 100%;
    width: 100%;
    min-height: auto;
    margin-top: 0;
    border-radius: 0;
    padding-left: clamp(20px, 4.6875vw, 90px);
  }
}
.recruitment-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
@media screen and (max-width: 1200px) {
  .recruitment-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .recruitment-list {
    grid-template-columns: 100%;
  }
}
.recruitment-list li a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 80px;
  padding: 10px 45px 10px 40px;
  background: #fff;
  border: 1px solid #111;
  border-radius: 5px;
  font-size: 1.1111111111rem;
  font-weight: 700;
  color: #111;
}
@media screen and (max-width: 425px) {
  .recruitment-list li a {
    min-height: 60px;
    padding: 10px 35px 10px 20px;
  }
}
.recruitment-list li a:hover {
  opacity: 1;
  color: #fff;
  background: #111;
}
.recruitment-list li a:hover:after {
  translate: 10px -50%;
  background: url(../img/common/arrow02@2x.png);
  background-size: cover;
}
.recruitment-list li a:after {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/recruitment/arrow.png);
  background-size: cover;
  right: 20px;
  top: 50%;
  translate: 0 -50%;
  z-index: 3;
  transition: translate 0.6s;
}
@media screen and (max-width: 425px) {
  .recruitment-list li a:after {
    width: 10px;
    height: 10px;
  }
}
@media screen and (max-width: 425px) {
  .recruitment.detail .subpage-mv-ttl {
    font-size: 5.4117647059vw;
  }
}
.recruitment.detail .subpage-mv-ttl-en {
  font-size: clamp(80px, 10.4166666667vw, 200px);
}
@media screen and (max-width: 500px) {
  .recruitment.detail .subpage-mv-ttl-en {
    font-size: 16vw;
  }
}
.recruitment.detail .subpage .bread-list {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .recruitment.detail .subpage .bread-list {
    margin-top: 20px;
  }
}

.recruitment-detail-info {
  width: 100%;
  margin-bottom: 40px;
}
.recruitment-detail-info-block {
  position: relative;
  display: flex;
  border-bottom: 1px solid #EFEFEF;
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  .recruitment-detail-info-block {
    padding: 15px 0;
  }
}
@media screen and (max-width: 600px) {
  .recruitment-detail-info-block {
    flex-direction: column;
  }
}
.recruitment-detail-info-block:after {
  position: absolute;
  content: "";
  width: 100px;
  height: 1px;
  background: #009140;
  bottom: -1px;
  left: 0;
  z-index: 2;
}
.recruitment-detail-info-block dt {
  width: 175px;
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 600px) {
  .recruitment-detail-info-block dt {
    width: 100%;
  }
}
.recruitment-detail-info-block dd {
  width: calc(100% - 175px);
  line-height: 2;
}
@media screen and (max-width: 600px) {
  .recruitment-detail-info-block dd {
    width: 100%;
  }
}
.recruitment-detail-info-block dd .basic-list02 li:before {
  top: 0.5em;
}

.recruitment-detail-back {
  display: flex;
  justify-content: center;
  gap: 25px;
}
@media screen and (max-width: 600px) {
  .recruitment-detail-back {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}
.recruitment-detail-back li {
  max-width: 300px;
  width: 100%;
}
.recruitment-detail-back .btn-back {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: 300px;
  width: 100%;
  min-height: 80px;
  font-size: 1.1111111111rem;
  font-weight: 700;
  color: #fff;
  padding: 10px 20px 10px 40px;
  background: #111;
  border-radius: 5px;
}
@media screen and (max-width: 425px) {
  .recruitment-detail-back .btn-back {
    min-height: 60px;
  }
}
.recruitment-detail-back .btn-back:hover:before {
  translate: -10px -50%;
}
.recruitment-detail-back .btn-back:before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/common/arrow01.png);
  background-size: cover;
  left: 25px;
  top: 50%;
  rotate: 180deg;
  translate: 0 -50%;
  transition: translate 0.6s;
}
.recruitment-detail-back .btn-entry {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 300px;
  width: 100%;
  min-height: 80px;
  font-size: 1.1111111111rem;
  font-weight: 700;
  color: #fff;
  padding: 10px 35px;
  background: #009140;
  border-radius: 5px;
}
@media screen and (max-width: 425px) {
  .recruitment-detail-back .btn-entry {
    min-height: 60px;
  }
}
.recruitment-detail-back .btn-entry:hover:before {
  translate: 10px -50%;
}
.recruitment-detail-back .btn-entry:before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/common/arrow01.png);
  background-size: cover;
  right: 20px;
  top: 50%;
  translate: 0 -50%;
  transition: translate 0.6s;
}

/***************************

object/project/entry.scss

***************************/
.entry-wrap {
  width: 100%;
}
.entry-form {
  width: 100%;
  margin-bottom: 60px;
}
.entry-form-block {
  width: 100%;
}
.entry-form-block:not(:last-child) {
  margin-bottom: 50px;
}
.entry-form-block input[type=text],
.entry-form-block input[type=email],
.entry-form-block input[type=tel] {
  max-width: 100%;
  width: 100%;
  min-height: 82px;
  border: 1px solid #DADEDF;
  background: #F5F6F8;
  margin: 0;
  font-size: 1rem;
  padding: 15px 25px;
}
@media screen and (max-width: 768px) {
  .entry-form-block input[type=text],
  .entry-form-block input[type=email],
  .entry-form-block input[type=tel] {
    min-height: 62px;
    padding: 15px;
  }
}
.entry-form-block input[type=text].entry-job,
.entry-form-block input[type=email].entry-job,
.entry-form-block input[type=tel].entry-job {
  background: #fff;
}
.entry-form-block textarea {
  max-width: 100%;
  width: 100%;
  min-height: 380px;
  border: 1px solid #DADEDF;
  background: #F5F6F8;
  margin: 0;
  font-size: 1rem;
  padding: 15px 25px;
}
@media screen and (max-width: 768px) {
  .entry-form-block textarea {
    min-height: 230px;
    padding: 15px;
  }
}
.entry-form-block dt {
  width: 100%;
  display: flex;
  gap: 12px;
  font-size: 1.1111111111rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.entry-form-block dt span {
  width: 50px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.7222222222rem;
  font-weight: 700;
  color: #fff;
  background: #BCC0C5;
}
.entry-form-block dt span.rq {
  background: #009140;
}
.entry-form-block dd {
  width: 100%;
}
.entry-form-block dd .gray {
  color: #BCBBC1;
}
.entry-form-block dd .fz13 {
  font-size: 0.7222222222rem;
}
.entry-form-block dd .mt8 {
  margin-top: 8px;
}

.entry-privacy-block {
  width: 100%;
  padding: 30px;
  text-align: center;
  border: 1px solid #DADEDF;
  margin-top: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .entry-privacy-block {
    padding: 20px;
  }
}
.entry-privacy-block input {
  display: none;
}
.entry-privacy-block input:checked ~ .wpcf7-list-item-label:after {
  opacity: 1;
}
.entry-privacy-block .wpcf7-list-item-label {
  position: relative;
  display: inline-block;
  padding: 5px 0;
  padding-left: 55px;
  cursor: pointer;
}
.entry-privacy-block .wpcf7-list-item-label:before {
  position: absolute;
  content: "";
  width: 33px;
  height: 33px;
  background: #fff;
  border: 1px solid #DADEDF;
  z-index: 2;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}
.entry-privacy-block .wpcf7-list-item-label:after {
  position: absolute;
  content: "";
  width: 23px;
  height: 16px;
  background: url(../img/entry/check.svg);
  top: 50%;
  left: 7px;
  translate: 0 -50%;
  z-index: 3;
  opacity: 0;
}

.submit-block {
  position: relative;
  max-width: 320px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.submit-block:before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/common/arrow01.png);
  background-size: cover;
  top: 50%;
  right: 25px;
  z-index: 3;
  translate: 0 -50%;
}
.submit-block input {
  width: 100%;
  min-height: 80px;
  display: flex;
  align-items: center;
  font-size: 1.1111111111rem;
  font-weight: 700;
  color: #fff;
  border: none;
  background: #009140;
  padding: 10px 45px;
  border-radius: 5px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .submit-block input {
    min-height: 65px;
  }
}
.submit-block input:disabled {
  background-color: #999;
  cursor: no-drop;
}

.thnaks .subpage {
  padding-top: 120px;
}
@media screen and (max-width: 768px) {
  .thnaks .subpage {
    padding-top: 100px;
  }
}
.thnaks .bread-list {
  margin-top: 0;
}
.thnaks .subpage-contWrap:after {
  display: none;
}
.thnaks .thanks-tel {
  width: 100%;
  background: #F5F8F7;
  text-align: center;
  padding: 55px 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .thnaks .thanks-tel {
    padding: 35px 20px;
  }
}
.thnaks .thanks-tel a {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 3.1111111111rem;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 425px) {
  .thnaks .thanks-tel a {
    font-size: 2.2222222222rem;
  }
}
.thnaks .thanks-tel a span {
  font-size: 2rem;
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  .thnaks .thanks-tel a span {
    font-size: 1.4444444444rem;
  }
}
.thnaks .thanks-tel p {
  font-size: 0.8888888889rem;
  margin-top: 10px;
}
.thnaks .btn-back {
  position: relative;
  max-width: 280px;
  width: 100%;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  border-radius: 5px;
  padding: 10px 40px;
  font-size: 1.1111111111rem;
  font-weight: 700;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .thnaks .btn-back {
    min-height: 65px;
  }
}
.thnaks .btn-back:hover:before {
  translate: -10px -50%;
}
.thnaks .btn-back:before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/common/arrow01.png);
  background-size: cover;
  top: 50%;
  left: 25px;
  translate: 0 -50%;
  rotate: 180deg;
  z-index: 2;
  transition: translate 0.6s;
}

.privacy .subpage {
  padding-top: 120px;
}
@media screen and (max-width: 768px) {
  .privacy .subpage {
    padding-top: 100px;
  }
}
.privacy .bread-list {
  margin-top: 0;
}
.privacy .subpage-contWrap:after {
  display: none;
}

.grecaptcha-badge {
  bottom: 100px !important;
}/*# sourceMappingURL=style.css.map */