@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

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

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

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

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

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算(小数第3位以下切り捨て)
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * %の計算(小数第3位以下切り捨て)
******************************************/
/*****************************************
 * vwとpxの値で小さい方
******************************************/
/*****************************************
 * vwとpxの値で大きい方
******************************************/
body {
  font-size: 16px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  color: #1F286F;
  overflow-x: hidden;
}

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

a:hover {
  opacity: 0.9;
}

.layout-header {
  position: absolute;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
}

.pc_only {
  display: block;
}

@media screen and (max-width: 640px) {
  .pc_only {
    display: none;
  }
}
.sp_only {
  display: none;
}

@media screen and (max-width: 640px) {
  .sp_only {
    display: block;
  }
}
.site-frame {
  display: grid;
  grid-template-columns: 200px 1fr;
}

@media screen and (max-width: 640px) {
  .site-frame {
    display: block;
  }
}
.section-title__eng {
  font-size: 1.375rem;
  font-weight: bold;
  color: #005787;
  display: block;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 640px) {
  /*
  .section-title {
    padding-left: 15px;
  }
  */
  .section-title img {
    height: 33px;
  }
}
.button {
  display: block;
  width: min(10.41vw, 200px);
  height: min(3.12vw, 60px);
  color: #fff;
  line-height: min(3.12vw, 60px);
  text-align: center;
  border-radius: 5px;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}
.button--guideline {
  background-color: #005787;
}
.button--entry {
  background-color: #1F286F;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 1024px) {
  .button {
    width: min(17.57vw, 180px);
    height: min(5.85vw, 60px);
    line-height: min(5.85vw, 60px);
  }
}
@media screen and (max-width: 640px) {
  .button {
    width: 11.25rem;
    height: 3.75rem;
    line-height: 3.75rem;
  }
}
.contents-wrapper {
  width: min(74.47vw, 1430px);
  margin: auto;
}

@media screen and (max-width: 640px) {
  .contents-wrapper {
    width: calc(100vw - 32px);
  }
}
.slider {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  opacity: 1;
  transition: opacity 0.3s ease;
}

.slider-arrow.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.slider-arrow {
  transform: translateX(-50%) translateY(-50%);
  width: min(3.95vw, 76px);
  height: min(3.95vw, 76px);
  border-radius: 50%;
  background-color: #005787;
  transition: 0.3s;
}
.slider-arrow::after {
  content: "";
  display: block;
  background-image: url(../img/arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 46.05%;
  height: 21.05%;
  transform: translate(-50%, -50%) rotate(180deg);
}
.slider-arrow--next::after {
  transform: translate(-50%, -50%);
}
.slider-arrow:hover {
  opacity: 0.9;
}

@media screen and (max-width: 640px) {
  .slider-arrow {
    width: min(12.13vw, 50px);
    height: min(12.13vw, 50px);
  }
}
.submit-button {
  background-color: #1F286F;
  color: #fff;
  font-size: 2.625rem;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  line-height: min(6.14vw, 118px);
  text-transform: uppercase;
  border-radius: 10px;
  width: min(34.11vw, 655px);
  height: min(6.14vw, 118px);
  display: block;
  letter-spacing: 0.1em;
  transition: 0.3s;
  border: none;
}
.submit-button:hover {
  opacity: 0.9;
}

@media screen and (max-width: 640px) {
  .submit-button {
    width: 11.25rem;
    height: 3.75rem;
    line-height: 3.75rem;
    font-size: 1.25rem;
  }
}
.application__confirm-button {
  display: block;
width: min(19.41vw, 240px);
    height: min(5.12vw, 60px);
  color: #fff;
  line-height: min(3.12vw, 60px);
  text-align: center;
  border-radius: 5px;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  border: none;
  transition: 0.3s;
  position:relative;
}
/*
button[type*='button'].application__confirm-button::before{
	content:"←編集に戻る";
	font-size:15px;
	display:block;
	width:100%;
	text-align:center;
	color:#27206F;
	position:absolute;
	top:-45px;
	left:0;
	letter-spacing:0;
}
button[type*='submit'].application__confirm-button::before{
	content:"この内容で送信→";
	font-size:15px;
	display:block;
	width:100%;
	text-align:center;
	color:#27206F;
	position:absolute;
	top:-45px;
	left:0;
	letter-spacing:0;
}
@media screen and (max-width: 1240px) {
	button[type*='button'].application__confirm-button::before,
	button[type*='submit'].application__confirm-button::before{
		font-size:14px;
		top:-35px;
	}
}
@media screen and (max-width: 640px) {
	button[type*='button'].application__confirm-button::before,
	button[type*='submit'].application__confirm-button::before{
		top:-40px;
	}
	.application__confirm-button {
		margin:5px 0 10px 0;
	}
}
*/
.application__confirm-button--edit {
  background-color: #005787;
}
.application__confirm-button--send {
  background-color: #1F286F;
}
.application__confirm-button:hover {
  opacity: 0.9;
}

@media screen and (max-width: 640px) {
  .application__confirm-button {
    width: min(55.68vw, 240px);
    height: min(14.56vw, 60px);
    line-height: min(14.56vw, 60px);
  }
}
.mv_about-us__wrapper {
  background-image: url(../img/mv_bg.jpg);
  background-size: cover;
}

@media screen and (max-width: 640px) {
  .mv_about-us__wrapper {
    background-image: url(../img/mv_sp_bg.jpg);
  }
}
.mv {
  padding-top: min(6.77vw, 130px);
  padding-bottom: min(7.6vw, 146px);
  position: relative;
}
.mv::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../img/mv_m-trust_recruit_old.png);
  background-size: contain;
  background-repeat: no-repeat;
  mix-blend-mode: overlay;
  width: 100vw;
  max-width: 1920px;
  height: min(7.81vw, 150px);
  z-index: 0;
}
.mv .mv__inner {
  width: min(84.79vw, 1628px);
  margin: auto;
  display: flex;
  gap: min(5.2vw, 100px);
  justify-content: space-between;
  z-index: 1;
}
.mv .mv__text-wrapper {
  margin-top: min(4.16vw, 80px);
  color: #fff;
}
.mv .mv__lead {
  width: 32.9375rem;
}
.mv .mv__description {
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.95;
  text-indent: 0.4em;
  margin-top: min(2.6vw, 50px);
  margin-left: min(0.36vw, 7px);
}
.mv .mv__description::before {
  content: "";
  display: inline-block;
  background-color: #fff;
  height: 1px;
  width: 3.125rem;
  transform: translateY(-5px);
}
.mv .mv__button-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: min(4.16vw, 80px);
  margin-left: min(0.36vw, 7px);
  width: min(22.39vw, 430px);
}
.mv .mv__img {
  width: min(52.08vw, 1000px);
  z-index: 2;
}

@media screen and (max-width: 1024px) {
  .mv {
    padding-top: 7.1875rem;
  }
  .mv .mv__inner {
    width: calc(100vw - 32px);
    flex-direction: column-reverse;
  }
  .mv .mv__lead {
    width: 80%;
  }
  .mv .mv__button-wrapper {
    flex-direction: column;
    width: 100%;
    align-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 1.875rem;
  }
  .mv .mv__img {
    width: 100%;
  }
}
.about-us {
  padding-top: min(6.71vw, 129px);
  padding-bottom: min(11.97vw, 230px);
}
.about-us .about-us__section-title {
  width: 25.875rem;
}
.about-us .section-title__eng {
  margin-bottom: min(0.83vw, 16px);
}
.about-us .about-us__text-img-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: min(3.12vw, 60px);
}
.about-us .about-us__img-wrapper {
  width: min(33.75vw, 648px);
  height: min(28.85vw, 554px);
  position: relative;
}
.about-us .about-us__img-wrapper img {
  position: absolute;
}
.about-us .about-us__img-wrapper img:nth-of-type(1) {
  top: 0;
  left: 0;
  width: min(24.73vw, 475px);
  z-index: 2;
}
.about-us .about-us__img-wrapper img:nth-of-type(2) {
  bottom: 0;
  right: 0;
  width: min(24.79vw, 476px);
  z-index: 1;
}
.about-us .about-us__text-wrapper {
  width: min(34.47vw, 662px);
  margin-top: min(0.57vw, 11px);
}
.about-us .about-us__lead {
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.about-us .about-us__description {
  margin-top: min(2.08vw, 40px);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2.4;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 640px) {
  .about-us .about-us__section-title {
    width: 100%;
  }
  .about-us .about-us__text-img-wrapper {
    flex-direction: column-reverse;
  }
  .about-us .about-us__img-wrapper {
    width: 100%;
    height: 82vw;
    margin-top: 5vw;
  }
  .about-us .about-us__img-wrapper img:nth-of-type(1) {
    width: 73.3%;
  }
  .about-us .about-us__img-wrapper img:nth-of-type(2) {
    width: 73.3%;
  }
  .about-us .about-us__text-wrapper {
    width: 100%;
    margin-top: 3rem;
  }
  .about-us .about-us__lead {
    font-size: 1.625rem;
  }
  .about-us .about-us__description {
    font-size: 1.3rem;
    margin-top: 1.3rem;
    font-size: 1rem;
  }
}
.business {
  background-color: #EDF0F5;
  padding-top: min(8.54vw, 164px);
}
.business .business__section-title {
  letter-spacing: -0.1em;
  display: inline-block;
  width: 12.75rem;
}
.business .section-title img {
  display: inline;
}
.business .section-title__eng {
  margin-bottom: min(0.83vw, 16px);
}
.business .business__sub-title {
  display: inline;
  font-size: 1.25rem;
  font-weight: 500;
  margin-left: 2.6875rem;
  letter-spacing: 0.04em;
  vertical-align: 0.2em;
}
.business .business__job-list {
  margin-top: min(2.5vw, 48px);
  position: relative;
}
.business .slider-arrow {
  top: 50%;
  left: calc(50vw - min(37.23vw, 715px));
  position: absolute;
  z-index: 3;
}
.business .slider-arrow::after {
  position: absolute;
  top: 50%;
  left: 50%;
}
.business .slider-arrow--next {
  left: calc(50vw + min(37.23vw, 715px));
}
.business .business__job-item {
  background-color: #fff;
  width: min(74.47vw, 1430px);
  border-radius: 80px 0 80px 0/80px 0 80px 0;
  padding-top: min(1.35vw, 26px);
  padding-left: min(6.04vw, 116px);
  padding-right: min(0.98vw, 19px);
  padding-bottom: min(1.35vw, 26px);
  display: flex;
  position: relative;
  overflow: hidden;
  margin-left: min(2.6vw, 50px);
  margin-right: min(2.6vw, 50px);
}
.business .business__job-item::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  display: block;
  width: 44.75%;
  height: 100%;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 0;
}
.business .business__job-item:nth-of-type(1):after {
  background: linear-gradient(0deg, #67add7 0%, #d2e0ee 100%);
}
.business .business__job-item:nth-of-type(1) .business__job-category::after {
  content: "01";
  color: #EDF0F5;
  right: max(-3.75vw, -72px);
}
.business .business__job-item:nth-of-type(2):after {
  background: linear-gradient(0deg, #D7976B 0%, #F4E5E0 100%);
}
.business .business__job-item:nth-of-type(2) .business__job-category::after {
  content: "02";
  color: #F5F1ED;
  right: max(-6.25vw, -120px);
}
.business .business__job-item:nth-of-type(3):after {
  background: linear-gradient(0deg, #BAC5CC 0%, #F5F5F6 100%);
}
.business .business__job-item:nth-of-type(3) .business__job-category::after {
  content: "03";
  color: #E6EAF1;
  right: max(-6.25vw, -120px);
}
.business .business__job-contents {
  width: min(50.46vw, 969px);
  display: grid;
  grid-template-columns: min(50.52vw, 970px) min(17.39vw, 334px);
  grid-template-rows: auto auto;
  grid-template-areas: "head image" "routine image";
  z-index: 3;
}
.business .business__job-category {
  font-size: 2.375rem;
  font-weight: bold;
  padding-bottom: min(0.41vw, 8px);
  margin-bottom: min(1.82vw, 35px);
  position: relative;
  z-index: 0;
}
.business .business__job-category::before {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  background-color: #1F286F;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}
.business .business__job-category::after {
  display: block;
  font-size: min(255px, 13.3vw);
  position: absolute;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  top: max(-6.05vw, -116px);
  z-index: -1;
}
.business .business__job-head-area {
  grid-area: head;
  padding-top: min(1.71vw, 33px);
  padding-bottom: min(2.08vw, 40px);
}
.business .business__job-routine-area {
  grid-area: routine;
}
.business .business__person-img {
  grid-area: image;
  z-index: 2;
}
.business .business__job-section-title {
  color: #fff;
  height: 2.625rem;
  background-color: #005787;
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2.625rem;
  display: inline-block;
  padding-left: 0.8125rem;
  padding-right: 0.8125rem;
}
.business .business__job-lead {
  font-size: 1.75rem;
  font-weight: bold;
  letter-spacing: -0.02em;
  margin-top: min(0.83vw, 16px);
}
.business .business__job-description {
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin-top: min(0.41vw, 8px);
  position: relative;
}
.business .business__job-routine-list {
  display: flex;
  justify-content: space-between;
  gap: min(1.56vw, 30px);
  margin-top: min(0.72vw, 14px);
}
.business .business__job-routine-item + .business__job-routine-item .business__job-routine-img:before {
  content: "";
  display: grid;
  position: absolute;
  left: max(-1.2vw, -23px);
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-top: min(0.52vw, 10px) solid transparent;
  border-bottom: min(0.52vw, 10px) solid transparent;
  border-left: min(0.93vw, 18px) solid #005787;
  border-right: 0;
}
.business .business__job-routine-img {
  margin-bottom: min(0.41vw, 8px);
  position: relative;
}
.business .business__job-routine-text {
  font-size: min(1.04vw, 20px);
  font-weight: 500;
  text-align: center;
}
.business .business__person-img .pc_only {
  display: block;
}
.business .business__person-img .sp_only {
  display: none;
}

@media screen and (max-width: 1024px) {
  .business .business__sub-title {
    display: block;
    margin-left: 0;
    margin-top: 0.75rem;
  }
  .business .slider-arrow {
    left: 10px;
    transform: inherit;
  }
  .business .slider-arrow--next {
    left: auto;
    right: 10px;
  }
  .business .business__job-item {
    border-radius: 40px 0 40px 0/40px 0 40px 0;
    padding-top: min(11.16vw, 46px);
    padding-left: 16px;
    padding-right: 16px;
    margin-left: 16px;
    margin-right: 16px;
  }
  .business .business__job-item::after {
    width: 88%;
    clip-path: polygon(0 100%, 100% 33%, 100% 100%);
  }
  .business .business__job-item:nth-of-type(1) .business__job-category::after {
    right: max(-4.13vw, -17px);
  }
  .business .business__job-item:nth-of-type(2) .business__job-category::after {
    right: max(-2.43vw, -10px);
  }
  .business .business__job-item:nth-of-type(3) .business__job-category::after {
    right: 0;
  }
  .business .business__job-contents {
    width: 100%;
    grid-template-columns: 40.77vw 1fr;
    grid-template-areas: "head head" "routine image";
  }
  .business .business__job-category {
    font-size: 1.75rem;
    margin-bottom: min(16.01vw, 66px);
  }
  .business .business__job-category::before {
    width: 85%;
    bottom: -0.5625rem;
  }
  .business .business__job-category::after {
    font-size: 10rem;
    top: max(-14.57vw, -60px);
  }
  .business .business__job-routine-area {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .business .business__job-routine-area .business__job-section-title {
    margin-left: 0;
  }
  .business .business__person-img {
    margin-top: auto;
    margin-bottom: auto;
  }
  .business .business__job-section-title {
    font-size: 0.9375rem;
    margin-left: min(7.28vw, 30px);
    height: 1.75rem;
    line-height: 1.75rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .business .business__job-lead {
    font-size: 1.375rem;
    margin-top: min(2.18vw, 9px);
    letter-spacing: 0.05em;
  }
  .business .business__job-description {
    letter-spacing: 0;
  }
  .business .business__job-routine-list {
    flex-direction: column;
    width: 20.38vw;
    gap: 4.12vw;
  }
  .business .business__job-routine-item + .business__job-routine-item .business__job-routine-img:before {
    border-bottom: none;
    border-left: min(1.45vw, 6px) solid transparent;
    border-right: min(1.45vw, 6px) solid transparent;
    border-top: min(1.94vw, 8px) solid #005787;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-200%);
  }
  .business .business__job-routine-text {
    font-size: 0.625rem;
  }
  .business .business__person-img .sp_only {
    display: block;
  }
  .business .business__person-img .pc_only {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  .business {
    padding-top: min(19.41vw, 80px);
  }
  .business .business__sub-title {
    display: block;
    margin-left: 0;
    margin-top: 0.75rem;
  }
  .business .business__job-list {
    margin-top: 6.06vw;
  }
  .business .slider-arrow {
    left: 10px;
    transform: inherit;
  }
  .business .slider-arrow--next {
    left: auto;
    right: 10px;
  }
  .business .business__job-item {
    border-radius: 40px 0 40px 0/40px 0 40px 0;
    padding-top: min(11.16vw, 46px);
    padding-left: 16px;
    padding-right: 16px;
    margin-left: 16px;
    margin-right: 16px;
  }
  .business .business__job-item::after {
    width: 88%;
    clip-path: polygon(0 100%, 100% 33%, 100% 100%);
  }
  .business .business__job-item:nth-of-type(1) .business__job-category::after {
    right: max(-4.13vw, -17px);
  }
  .business .business__job-item:nth-of-type(2) .business__job-category::after {
    right: max(-2.43vw, -10px);
  }
  .business .business__job-contents {
    width: 100%;
    grid-template-columns: 40.77vw 1fr;
    grid-template-areas: "head head" "routine image";
  }
  .business .business__job-category {
    font-size: 1.75rem;
    margin-bottom: min(16.01vw, 66px);
  }
  .business .business__job-category::before {
    width: 85%;
    bottom: -0.5625rem;
  }
  .business .business__job-category::after {
    font-size: 10rem;
    top: max(-14.57vw, -60px);
  }
  .business .business__job-routine-area {
    display: flex;
    flex-direction: column;
    align-items: center;
	width:65%;
  }
  .business .business__job-routine-area .business__job-section-title {
    margin-left: 0;
  }
  .business .business__person-img {
    margin-top: auto;
	margin-bottom: auto;
	width: 115%;
	margin-left: -10%;
  }
  .business .business__job-section-title {
    font-size: 0.9375rem;
    /*margin-left: min(7.28vw, 30px);*/
    margin-left: 0;
    height: 1.75rem;
    line-height: 1.75rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .business .business__job-lead {
    font-size: 1.375rem;
    margin-top: min(2.18vw, 9px);
    letter-spacing: 0.05em;
  }
  .business .business__job-description {
    letter-spacing: 0;
  }
  .business .business__job-routine-list {
    flex-direction: column;
    width: 20.38vw;
    gap: 4.12vw;
  }
  .business .business__job-routine-item + .business__job-routine-item .business__job-routine-img:before {
    border-bottom: none;
    border-left: min(1.45vw, 6px) solid transparent;
    border-right: min(1.45vw, 6px) solid transparent;
    border-top: min(1.94vw, 8px) solid #005787;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-200%);
  }
  .business .business__job-routine-text {
    font-size: 0.625rem;
  }
  .business .business__person-img .sp_only {
    display: block;
  }
  .business .business__person-img .pc_only {
    display: none;
  }
}
.people {
  background-color: #EDF0F5;
  padding-top: min(8.69vw, 167px);
  padding-bottom: min(9.37vw, 180px);
}
.people .people__section-title {
  width: 10.1875rem;
}
.people .people__list {
  margin-top: min(3.12vw, 60px);
  position: relative;
}
.people .section-title__eng {
  margin-bottom: min(0.62vw, 12px);
}
.people .people__item {
  background-color: #fff;
  width: min(74.47vw, 1430px);
  border-radius: 80px 0 80px 0/80px 0 80px 0;
  margin-left: min(2.6vw, 50px);
  margin-right: min(2.6vw, 50px);
  padding-top: min(4.06vw, 78px);
  padding-left: min(5.98vw, 115px);
  padding-bottom: min(2.23vw, 43px);
  display: grid;
  grid-column-gap: min(0.31vw, 6px);
  grid-template-columns: min(46.87vw, 900px) 1fr;
  grid-template-rows: auto auto auto auto;
  grid-template-areas: "lead image" "name image" "description image" "off image";
}
.people .people__item:nth-of-type(2) .people__offtime-description {
  letter-spacing: 0;
}
.people .people__item:nth-of-type(4) .people__lead {
  letter-spacing: 0;
}
.people .slider-arrow {
  top: 50%;
  left: calc(50vw - min(37.23vw, 715px));
  position: absolute;
  z-index: 3;
}
.people .slider-arrow::after {
  position: absolute;
  top: 50%;
  left: 50%;
}
.people .slider-arrow--next {
  left: calc(50vw + min(37.23vw, 715px));
}
.people .people__lead {
  font-size: 2.125rem;
  font-weight: bold;
  border-bottom: 1px solid #1F286F;
  letter-spacing: 0.04em;
  padding-bottom: min(1.25vw, 24px);
  grid-area: lead;
}
.people .people__career-name-wrapper {
  display: flex;
  gap: min(1.45vw, 28px);
  justify-content: end;
  align-items: baseline;
  margin-top: min(1.19vw, 23px);
  padding-right: min(2.34vw, 45px);
  grid-area: name;
}
.people .people__name {
  font-size: 1.75rem;
  font-weight: bold;
  letter-spacing: 0.03em;
}
.people .people__careere {
  font-size: 1.25rem;
  font-weight: 500;
}
.people .people__description {
  font-size: 1.0625rem;
  font-weight: 400;
  margin-top: min(1.61vw, 31px);
  padding-right: min(2.08vw, 40px);
  letter-spacing: 0.04em;
  line-height: 1.8;
  grid-area: description;
}
.people .people__offtime-wrapper {
  margin-top: min(2.18vw, 42px);
  background-size: contain;
  background-repeat: no-repeat;
  grid-area: off;
}
.people .people__offtime-title {
  font-size: min(1.25vw, 24px);
  font-weight: bold;
  letter-spacing: 0.05em;
  padding-left: min(2.18vw, 42px);
  padding-top: min(1.56vw, 30px);
  line-height: 1;
  background-color: #EDF0F5;
  border-radius: 5px 0 0 0/5px 0 0 0;
  display: block;
  width: min(15.98vw, 307px);
  position: relative;
}
.people .people__offtime-title::after {
  content: "";
  display: block;
  background-image: url(../img/offtime_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
  width: 40px;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(100%);
}
.people .people__offtime-contents {
  display: flex;
  justify-content: space-between;
  padding-top: min(1.14vw, 22px);
  background-color: #EDF0F5;
  border-radius: 0 5px 5px 5px/0 5px 5px 5px;
  padding-left: min(2.18vw, 42px);
  padding-right: min(2.13vw, 41px);
  padding-top: min(1.66vw, 32px);
  padding-bottom: min(1.4vw, 27px);
  position: relative;
}
.people .people__offtime-contents::before {
  content: "";
  display: block;
  background-image: url(../img/off_time.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: min(12.5vw, 240px);
  height: min(2.34vw, 45px);
  position: absolute;
  top: 0;
  transform: translateY(calc(-100% + 1px));
  right: min(3.12vw, 60px);
}
.people .people__offtime-description {
  line-height: 1.96;
  width: min(25.72vw, 494px);
  flex-shrink: 0;
  letter-spacing: 0.1em;
}
.people .people__offtime-img {
  width: min(14.68vw, 282px);
  height: min(10.52vw, 202px);
}
.people .perople__img {
  grid-area: image;
  overflow-x: hidden;
  margin-top: min(0.26vw, 5px);
}
.people .perople__img img {
  width: 118.53%;
  max-width: inherit;
}

@media screen and (max-width: 1024px) {
  .people .slick-track {
    display: flex;
  }
  .people .slick-slide {
    height: auto;
  }
  .people .slick-slide div {
    height: auto;
  }
  .people .people__item {
    padding-top: min(11.16vw, 46px);
    /*grid-template-rows: auto auto 400px 580px;*/
    grid-template-rows: auto;
    grid-template-areas: "lead lead" "name image" "description description" "off off";
    margin-left: 16px;
    margin-right: 16px;
    padding-left: 16px;
    padding-bottom: 40px;
  }
  .people .slider-arrow {
    left: 50px;
    top: 46%;
  }
  .people .slider-arrow--next {
    left: auto;
    right: 0;
  }
  .people .people__lead {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    margin-right: 16px;
  }
  .people .people__lead span{
	  display:block;
	  margin-bottom:-20px;
  }
  .people .people__career-name-wrapper {
    flex-direction: column;
    justify-content: center;
  }
  .people .people__description {
    margin-right: 16px;
    padding-right: 0;
  }
  .people .people__offtime-wrapper.sp_mt {
	  margin-top:20px;
  }
  .people .people__offtime-title {
    font-size: 1rem;
    width: 10rem;
  }
  .people .people__offtime-contents {
    flex-direction: column;
    margin-right: 16px;
    padding-bottom: 1rem;
    gap: 1rem;
  }
  .people .people__offtime-contents::before {
    width: 22vw;
    height: 4vw;
  }
  .people .people__offtime-description {
    width: 100%;
  }
  .people .people__offtime-img {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .people {
    padding-top: min(19.41vw, 80px);
    padding-bottom: min(19.41vw, 80px);
  }
  .people .people__list {
    margin-top: min(9.7vw, 40px);
  }
  .people .people__offtime-title {
    width: 34.3vw;
    font-size: 4.36vw;
  }
  .people .people__offtime-contents::before {
    width: 40vw;
    height: 5vw;
    right: -11.2vw;
  }
}
.join {
  background-image: url(../img/join_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
  padding-top: min(10.67vw, 205px);
  padding-bottom: min(10.67vw, 205px);
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 1025px) {
  .join .join__bg {
    display: none;
  }
}
.join::after {
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  background-image: url(../img/join_white_bg.png);
  background-size: cover;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.join .join__contents-wrapper {
  position: relative;
  display: flex;
  justify-content: end;
  z-index: 2;
}
.join .join__section-title {
  font-size: 2.375rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.join .join__text {
  font-size: 1.125rem;
  font-weight: 400;
  margin-top: min(1.04vw, 20px);
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.join .join__button-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: min(2.08vw, 40px);
  width: min(22.39vw, 430px);
}
@media screen and (max-width: 1024px) {
  .join {
    padding-top: 0;
    padding-bottom: min(14.56vw, 60px);
    background-image: none;
  }
  .join .join__bg {
    display: block;
    width: 100vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .join .join__bg img {
    width: 100%;
  }
  .join::after {
    display: none;
  }
  .join .join__contents-wrapper {
    justify-content: center;
  }
  .join .contents-wrapper {
    width: 100%;
  }
  .join .join__section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-top: 0.25rem;
  }
  .join .join__text {
    font-size: 1.6rem;
    text-align: center;
    margin-top: 1.625rem;
  }
  .join .join__button-wrapper {
    flex-direction: column;
    width: 100%;
    align-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 1.875rem;
  }
}
@media screen and (max-width: 640px) {
  .join .join__contents-wrapper {
    justify-content: center;
  }
  .join .join__section-title {
    font-size: 1.5rem;
  }
  .join .join__text {
    font-size: 0.875rem;
  }
}
.culture {
  padding-top: min(6.77vw, 130px);
  padding-bottom: min(7.81vw, 150px);
  overflow: hidden;
}
.culture .culture__section-title {
  width: 12.375rem;
}
.culture .section-title__eng {
  margin-bottom: min(1.14vw, 22px);
}
.culture .culture__lead {
  font-size: 2.375rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  margin-top: min(3.75vw, 72px);
}
.culture .culture__feature-list {
  display: flex;
  justify-content: space-between;
  -moz-column-gap: min(7.29vw, 140px);
       column-gap: min(7.29vw, 140px);
  margin-top: min(3.02vw, 58px);
  position: relative;
}
.culture .culture__feature-list::before {
  content: "";
  position: absolute;
  display: block;
  height: 85%;
  width: 1px;
  background-color: #1F286F;
  top: 7.5%;
  left: 50%;
}
.culture .culture__feature-list--space .culture__feature-text-wrapper {
  padding-top: min(1.77vw, 34px);
}
.culture .culture__feature-item {
  display: flex;
  justify-content: space-between;
  width: 45.1%;
  -moz-column-gap: min(1.56vw, 30px);
       column-gap: min(1.56vw, 30px);
}
.culture .culture__feature-icon {
  width: min(10.41vw, 200px);
  flex-shrink: 0;
}
.culture .culture__feature-text-wrapper {
  padding-top: min(0.78vw, 15px);
}
.culture .culture__feature-title {
  font-size: 1.625rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.culture .culture__feature-text {
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-top: min(0.78vw, 15px);
  line-height: 1.75;
}
.culture .culture__career-list {
  display: flex;
  justify-content: space-between;
  background-color: #EDF0F5;
  border-radius: 80px 0 80px 0/80px 0 80px 0;
  padding-top: min(3.12vw, 60px);
  padding-left: min(5.2vw, 100px);
  padding-right: min(5.2vw, 100px);
  padding-bottom: min(2.65vw, 51px);
  margin-top: min(2.86vw, 55px);
}
.culture .pc_allow {
	width:20px;
    position: relative;
}
.culture .pc_allow::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: min(0.88vw, 17px) solid #005787;
  border-top: min(0.52vw, 10px) solid transparent;
  border-bottom: min(0.52vw, 10px) solid transparent;
  position: absolute;
  top: 40.3%;
  right: 0;
}

.culture .culture__career-item {
  display: flex;
  flex-direction: column-reverse;
  justify-content: start;
  position: relative;
}
.culture .culture__career-item:nth-of-type(2) {
  transform: translateX(0.5vw);
}
.culture .culture__career-item:nth-of-type(4) {
  transform: translateX(-0.3vw);
}
.culture .culture__career-item:not(:last-of-type):before {
  /*content: "";*/
  display: block;
  width: 0;
  height: 0;
  border-left: min(0.88vw, 17px) solid #005787;
  border-top: min(0.52vw, 10px) solid transparent;
  border-bottom: min(0.52vw, 10px) solid transparent;
  position: absolute;
  top: 40.3%;
  right: 0;
}
.culture .culture__career-item:nth-of-type(1):before {
  transform: translateX(3.8vw);
}
.culture .culture__career-item:nth-of-type(2):before {
  transform: translateX(3.6vw);
}
.culture .culture__career-item:nth-of-type(3):before {
  transform: translateX(3.2vw);
}
.culture .culture__career-title {
  text-align: center;
  font-size: 1.375rem;
  font-weight: 500;
  margin-top: min(0.72vw, 14px);
}
.culture .culture__career-description {
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin-top: min(0.36vw, 7px);
}
.culture .culture__carrer-chart {
  display: flex;
  flex-direction: column;
}
.culture .culture__career-year {
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
  background-color: #005787;
  display: block;
  text-align: center;
  width: auto;
  margin: auto;
  padding-left: 1.125rem;
  padding-right: 1.125rem;
  position: relative;
}
.culture .culture__career-year::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 8px solid #1F286F;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
}
.culture .culture__career-icon {
  margin: auto;
  margin-top: min(0.78vw, 15px);
  width: min(9.37vw, 180px);
}
.culture .culture__feature-label {
  color: #fff;
  font-size: 1.25rem;
  background-color: #005787;
  line-height: 2rem;
  height: 2rem;
  display: inline-block;
  padding-left: 1.375rem;
  padding-right: 1.375rem;
}
.culture .culture__gallery-list {
  margin-top: min(6.25vw, 120px);
  margin-bottom: min(7.65vw, 147px);
  margin-left: calc(50% - 50vw);
  height: min(21.87vw, 420px);
  display: flex;
  width: -moz-max-content;
  width: max-content;
}
.culture .culture__gallery-item {
  margin-right: 20px;
  height: min(21.87vw, 420px);
}
.culture .culture__gallery-item img {
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .culture {
    padding-bottom: min(14.56vw, 60px);
  }
  .culture .culture__lead {
    font-size: 1.6rem;
  }
  .culture .culture__feature-list {
    flex-direction: column;
    gap: 2rem;
    margin-top: min(9.7vw, 40px);
  }
  .culture .culture__feature-list::before {
    display: none;
  }
  .culture .culture__feature-item {
    width: 100%;
    flex-direction: column;
  }
  .culture .culture__feature-icon {
    margin: auto;
    width: 30%;
  }
  .culture .culture__feature-title {
    text-align: center;
  }
  .culture .culture__feature-text {
    font-size: 1rem;
    margin-top: min(3.64vw, 15px);
  }
  .culture .pc_allow {
	display:none;
  }
  .culture .culture__career-list {
    flex-direction: column;
    border-radius: 40px 0 40px 0/40px 0 40px 0;
    gap: 4rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .culture .culture__career-item:nth-of-type(2),
  .culture .culture__career-item:nth-of-type(4) {
    transform: none;
  }
  .culture .culture__career-item:not(:last-of-type):before {
    border-bottom: none;
    border-left: min(2.18vw, 9px) solid transparent;
    border-right: min(2.18vw, 9px) solid transparent;
    border-top: min(2.91vw, 12px) solid #005787;
    bottom: -1rem;
    top: auto;
    right: auto;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
  }
  .culture .culture__career-title {
    margin-top: 1rem;
  }
  .culture .culture__career-icon {
    width: 70%;
    margin-top: 0.625rem;
    display: flex;
    justify-content: center;
  }
  .culture .culture__gallery-list {
    margin-top: min(12.13vw, 50px);
    margin-bottom: min(12.13vw, 50px);
    height: 50vw;
  }
  .culture .culture__gallery-item {
    height: 100%;
  }
  .culture .slick-track {
    height: 100%;
  }
}
.data {
  background-image: url(../img/data_bg.jpg);
  background-size: cover;
  padding-top: min(6.25vw, 120px);
  padding-bottom: min(7.81vw, 150px);
}
.data .data__section-title {
  width: 34.125rem;
}
.data .section-title__eng {
  margin-bottom: min(1.09vw, 21px);
}
.data .data__list {
  margin-top: min(3.12vw, 60px);
  display: flex;
  flex-wrap: wrap;
  gap: min(2.08vw, 40px);
}
.data .data__item {
  width: calc((100% - min(4.16vw, 80px)) / 3);
  background-color: #fff;
  border-radius: 8px;
  padding-top: min(2.23vw, 43px);
  padding-bottom: min(0.62vw, 12px);
}
.data .data__title {
  font-size: 1.625rem;
  font-weight: 500;
  text-align: center;
}
.data .data__icon {
  width: 62.22%;
  margin: auto;
  margin-top: min(1.25vw, 24px);
}
.data .data__text {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-top: max(-0.37vw, -7px);
}
.data .data__emphasis {
  font-family: "Jost", sans-serif;
  font-size: 5.375rem;
  font-weight: 500;
  margin-left: 0.4rem;
}
.data .data__emphasis--small {
  font-size: 4.5rem;
  transform: translateY(-0.5rem);
  display: inline-block;
  margin-left: 0.6rem;
  margin-right: 0.3rem;
}
.data .data__unit {
  margin-left: 0.4rem;
  transform: translateY(-0.5rem);
  display: inline-block;
}
.data .data__school-list {
  width: 71.11%;
  margin: auto;
  margin-top: min(2.08vw, 40px);
}
.data .data__school-item {
  font-size: 1.625rem;
  font-weight: bold;
  border-bottom: 1px solid #005787;
  line-height: 1.4;
  padding-bottom: 0.26rem;
}
.data .data__school-item + .data__school-item {
  margin-top: 1.3rem;
}

@media screen and (max-width: 1024px) {
  .data {
    padding-top: min(14.56vw, 60px);
    padding-bottom: min(14.56vw, 60px);
  }
  .data .data__list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: min(9.7vw, 40px);
  }
  .data .data__item {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-bottom: 0.75rem;
    width: calc(50% - 8px);
  }
  .data .data__text {
    font-size: 1.5rem;
    margin-top: 0.75rem;
  }
  .data .data__emphasis {
    font-size: 4.125rem;
    line-height: 1;
  }
  .data .data__school-list {
    width: 100%;
  }
  .data .data__school-item {
    font-size: 1rem;
  }
}
@media screen and (max-width: 640px) {
  .data .data__section-title {
    width: 100%;
  }
  .data .data__list {
    gap: 0.75rem;
  }
  .data .data__item {
    width:100%;
	display:flex;
	flex-wrap: wrap;
	justify-content:space-between;
  }
  .data .data__item .data__title{
    width:100%;
  }
  .data .data__item .data__icon{
    width:45%;
  }
  .data .data__item .data__text{
	  width:48%;
	  position:relative;
  }
  .data .data__item .data__text span.spcen{
    width:100%;
	position:absolute;
	top:50%;
	left:0;
	transform:translateY(-50%);
  }
}
.recruitment {
  padding-top: min(15.57vw, 299px);
  padding-bottom: min(3.54vw, 68px);
  position: relative;
}
.recruitment::before {
  content: "";
  display: block;
  position: absolute;
  top: min(2.08vw, 40px);
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../img/recruit_bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 100vw;
  max-width: 1920px;
  height: min(7.7vw, 148px);
}
.recruitment .section-title__eng {
  margin-bottom: min(1.04vw, 20px);
}
.recruitment .recruitment__info {
  margin-top: min(1.82vw, 35px);
  padding-left: 115px;
  padding-right: 115px;
  display: grid;
  grid-template-columns: 15% 1fr;
}
.recruitment .recruitment__term {
  grid-column: 1;
  border-bottom: 1px solid #1F286F;
  font-size: 1.375rem;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.recruitment .recruitment__description {
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  grid-column: 2;
  border-bottom: 1px solid #1F286F;
  line-height: 1.7;
  padding-top: min(1.82vw, 35px);
  padding-bottom: min(1.82vw, 35px);
  display: block;
}
.recruitment .recruitment__description:nth-of-type(4) {
  padding-top: min(1.35vw, 26px);
  padding-bottom: min(1.19vw, 23px);
}
.recruitment .recruitment__description:nth-of-type(5), .recruitment .recruitment__description:nth-of-type(6), .recruitment .recruitment__description:nth-of-type(7) {
  padding-top: min(1.35vw, 26px);
  padding-bottom: min(1.4vw, 27px);
}
.recruitment .recruitment__description:nth-of-type(8) {
  padding-top: min(1.35vw, 26px);
  padding-bottom: min(1.35vw, 26px);
}

@media screen and (max-width: 1024px) {
  .recruitment .recruitment__info {
    padding-left: 0;
    padding-right: 0;
    grid-template-columns: 20% 1fr;
	display:block;
  }
  .recruitment .recruitment__term {
    font-size: 1.125rem;
	border:none;
  }
  .recruitment .recruitment__description {
    font-size: 1rem;
	padding:6px 0 14px 0;
	margin-bottom:20px;
  }
  /*
  .recruitment .recruitment__description:nth-of-type(4) {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .recruitment .recruitment__description:nth-of-type(5), .recruitment .recruitment__description:nth-of-type(6), .recruitment .recruitment__description:nth-of-type(7) {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .recruitment .recruitment__description:nth-of-type(8) {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  */
}
.application {
  background-image: url(../img/application_bg.jpg);
  background-size: cover;
  background-position: center top;
  padding-top: min(4.58vw, 88px);
  padding-bottom: min(9.37vw, 180px);
  /* 確認モード */
}
.application .application__section-title {
  width: 15.0625rem;
}
.application .section-title__eng {
  margin-bottom: min(1.09vw, 21px);
}
.application .application__form {
  margin-top: min(2.39vw, 46px);
  padding-left: 115px;
  padding-right: 115px;
}
.application .application__group + .application__group {
  margin-top: min(1.35vw, 26px);
}
.application .application__label {
  font-size: 1.375rem;
  font-weight: 500;
  display: block;
}
.application .application__input {
  font-size: 1.25rem;
  width: 100%;
  height: 81px;
  padding-left: 0.75rem;
  margin-top: min(0.52vw, 10px);
  border-radius: 10px;
  border: none;
}
.application .application__button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: min(4.16vw, 80px);
}
.application .application__confirm {
  display: none;
}
.application .application__confirm-buttons {
  display: none;
}
.application #entry_form.is-confirm .application__input {
  display: none;
}
.application #entry_form.is-confirm .application__confirm {
  display: block;
}
.application #entry_form.is-confirm .application__submit-button {
  display: none;
}
.application #entry_form.is-confirm .application__confirm-buttons {
  display: flex;
  gap: 16px;
}
.application .application__complete-message {
  display: none;
  margin: 24px 0;
  padding: 12px;
  text-align: center;
  color: #2b7a2b;
  font-weight: bold;
  border: 1px solid #2b7a2b;
  border-radius: 4px;
  background: #f3fff3;
}
.application .application__complete-message.is-visible {
  display: block;
}

@media screen and (max-width: 1024px) {
  .application {
    padding-top: min(14.56vw, 60px);
    padding-bottom: min(19.41vw, 80px);
    /* 確認モード */
  }
  .application .application__form {
    padding-left: 0;
    padding-right: 0;
    margin-top: min(9.7vw, 40px);
  }
  .application .application__button-wrapper {
    margin-top: min(7.28vw, 30px);
  }
  .application #entry_form.is-confirm .application__confirm-buttons {
    flex-direction: column;
  }
}
.header {
  background-color: transparent;
  height: 4.375rem;
}

.header__inner {
  height: inherit;
  display: flex;
  justify-content: space-between;
  padding: 0 3.125rem;
  padding-top: 0.8125rem;
}

.header__logo {
  width: 187px;
  height: inherit;
}

.header__logo a {
  height: auto;
  display: flex;
  align-items: center;
}

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

.header__nav {
  display: block;
  height: inherit;
}

.header__nav-list {
  display: flex;
  height: inherit;
}

.header__nav-item {
  height: inherit;
}

.header__nav-item.header__nav-item--entry {
  margin-left: 1.375rem;
  display: flex;
  align-items: center;
}

.header__nav-item a {
  padding: 0 1.3125rem;
  height: inherit;
  display: flex;
  align-items: center;
  font-size: clamp(0.75rem, 1.04vw, 1.25rem);
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.header__nav-item.header__nav-item--entry a {
  padding: 0.9375rem 2.0625rem;
  position: relative;
  height: initial;
  background-color: #1F286F;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: clamp(0.875rem, 0.93vw, 1.125rem);
  border-radius: 5px;
  letter-spacing: 0.11em;
}

.header__hamburger {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 3.75rem;
  height: 3.75rem;
  background-color: #1F286F;
  cursor: pointer;
  transition: 0.3s;
  display: none;
  border-radius: 50%;
}

.header__hamburger span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 2rem;
  height: 2px;
  background-color: #fff;
  transition: 0.5s;
  border-radius: 1px;
}

.header__hamburger span:nth-of-type(1) {
  top: -0.5rem;
}

.header__hamburger span:nth-of-type(2) {
  top: 0;
}

.header__hamburger span:nth-of-type(3) {
  top: 0.5rem;
}

.header__hamburger.is-open span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.header__hamburger.is-open span:nth-of-type(3) {
  top: -0.25rem;
  transform: translateX(-50%) rotate(-45deg);
}

.header__drawer {
  padding: 14.25rem 0;
  position: absolute;
  z-index: 900;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: #EDF0F5;
  overflow-y: scroll;
  scrollbar-width: none;
  transition: 0.6s;
  display: none;
}

.header__drawer.is-open {
  right: 0;
}

.header__drawer::-webkit-scrollbar {
  display: none;
}

.header__drawer-item a {
  padding: 0.9375rem 0;
  display: block;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #1F286F;
  text-align: center;
  text-transform: uppercase;
}

.header__drawer-item.header__drawer-item--entry a {
  color: #fff;
  background-color: #1F286F;
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 3rem;
  display: block;
  width: 8.25rem;
  height: 3rem;
  border-radius: 5px;
  margin: auto;
  padding: inherit;
}

@media screen and (max-width: 1024px) {
  .header {
    height: 2.5rem;
  }
  .header__inner {
    padding: 1.5rem 1.25rem;
  }
  .header__logo {
    width: 9.6875rem;
  }
  .header__nav {
    display: none;
  }
  .header__hamburger {
    position: fixed;
    display: block;
    right: 1.25rem;
    top: 1rem;
  }
  .header__drawer {
    position: fixed;
    display: block;
  }
}
.footer {
  background-color: #1F286F;
  padding-top: min(3.12vw, 60px);
  padding-bottom: min(2.86vw, 55px);
}
.footer__inner {
  margin: auto;
  width: min(74.47vw, 1430px);
  padding-right: min(4.01vw, 77px);
  display: flex;
  justify-content: space-between;
}

.footer__company {
  width: auto;
  margin: initial;
}
.footer__logo {
  padding-bottom: min(0.78vw, 15px);
  display: block;
  width: min(12.65vw, 243px);
}

.footer__nav {
  margin-top: min(0.78vw, 15px);
  width: min(37.5vw, 720px);
}

.footer__site-link {
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 500;
  padding-top: 0.25rem;
  padding-left: min(2.13vw, 41px);
  letter-spacing: 0.04em;
  position: relative;
  display: block;
}
.footer__site-link::after {
  content: url(../img/to_corpolate_site.png);
  display: inline-block;
  transform: scale(0.5);
  transform: translateY(0.5rem) scale(0.5);
}

.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
}

.footer__nav-item {
  padding: 0 20px;
  margin-bottom: 12px;
}

.footer__nav-item a {
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  color: #fff;
  padding: 0.9375rem 0;
  position: relative;
  display: block;
  line-height: 1;
  text-align: center;
}

.footer__nav-item--small a {
  font-size: 0.9375rem;
}

.footer__copyright {
  margin-top: 3.125rem;
  display: block;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
}

.footer__copyright span {
  text-transform: uppercase;
}

@media screen and (max-width: 640px) {
  .sp_mb{
	  margin-bottom:35px !important;
  }
  .footer {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 1.625rem;
  }
  .footer__inner {
    flex-direction: column;
    width: 100%;
  }
  .footer__company img {
    width: 10.625rem;
  }
  .footer__logo {
    width: 10.625rem;
  }
  .footer__nav {
    width: auto;
    margin-top: 2.1875rem;
  }
  .footer__site-link {
    padding-left: 0.625rem;
    font-size: 0.875rem;
  }
  .footer__nav-list {
    flex-direction: column;
  }
  .footer__nav-item {
    padding: 0;
  }
  .footer__nav-item a {
    text-align: left;
    display: inline-block;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 16px;
    padding-right: 16px;
  }
}/*# sourceMappingURL=style.css.map */