@charset "UTF-8";
:root {
  --fontfamily-sansserif:"Noto Sans JP","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro", 游ゴシック体, YuGothic, "游ゴシック Medium", "Yu Gothic Medium", 游ゴシック, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  --fontfamily-en:'Helvetica','Arial', sans-serif;

  --fontsize-13:calc(1.3rem * 1);
  --fontsize-15:calc(1.5rem * 0.85);
  --fontsize-18:calc(1.8rem * 0.85);
  --fontsize-20:calc(2.0rem * 0.85);
  --fontsize-22:calc(2.2rem * 0.85);
  --fontsize-24:calc(2.4rem * 0.85);
  --fontsize-26:calc(2.6rem * 0.85);
  --fontsize-27:calc(2.7rem * 0.85);
  --fontsize-31:calc(3.1rem * 0.85);
  --fontsize-38:calc(3.8rem * 0.85);
  --fontsize-43:calc(4.3rem * 0.85);
  --fontsize-45:calc(4.5rem * 0.85);
  --fontsize-51:calc(5.1rem * 0.85);
  --fontsize-61:calc(6.1rem * 0.8);

  --color-navy:#3e4c60;
  --color-navy50:rgba(62, 76, 96, 0.5);
  --color-navy60:rgba(62, 76, 96, 0.6);
  --color-navy80:rgba(62, 76, 96, 0.8);
  --color-navy10:rgba(62, 76, 96, 0.1);
  --color-mint120:#b3ddd8;
  --color-mint:#c0dcd7;
  --color-mint10:rgba(192, 220, 215, 0.1);
  --color-mint50:rgba(192, 220, 215, 0.5);
  --color-mint30:rgba(192, 220, 215, 0.3);
  --color-orange:#f8b62f;
  --color-orange10:rgba(230, 180, 62, 0.1);
  --color-orange50:rgba(230, 180, 62, 0.5);
  --color-orange60:rgba(230, 180, 62, 0.5);
  --color-red:#be160d;
  --color-black:#251e1c;
  --color-white:#fff;
}

@media (max-width:767px) {
  :root {
    --fontsize-13:calc(1.3rem * 1);
    --fontsize-15:calc(1.5rem * 0.65);
    --fontsize-18:calc(1.8rem * 0.65);
    --fontsize-20:calc(2.0rem * 0.65);
    --fontsize-22:calc(2.2rem * 0.65);
    --fontsize-24:calc(2.4rem * 0.65);
    --fontsize-26:calc(2.6rem * 0.65);
    --fontsize-27:calc(2.7rem * 0.65);
    --fontsize-31:calc(3.1rem * 0.65);
    --fontsize-38:calc(3.8rem * 0.65);
    --fontsize-43:calc(4.3rem * 0.65);
    --fontsize-45:calc(4.5rem * 0.65);
    --fontsize-51:calc(5.1rem * 0.65);
    --fontsize-61:calc(6.1rem * 0.8);
    }
}

/*==============================================
global
==============================================*/
html {
  font-size: 62.5%;
  position: relative;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1.8;
  color: var(--color-navy);
  font-size: var(--fontsize-18);
  font-family: var(--fontfamily-sansserif);
  font-weight: 400;
  position: relative;
  -webkit-font-smoothing: antialiased;
  min-width: 1200px;
  font-feature-settings: "palt";
}

body.fixed {
  overflow: hidden;
}

* {
  box-sizing: border-box;
}

*:last-child {
  margin-bottom:0;
}

*:focus {
  outline: none;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, dl, dd, form, button, figure, figcaption {
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

li {
  list-style-type: none;
}

img {
  border: none;
  vertical-align: middle!important;
  max-width: 100%;
  -ms-interpolation-mode: bicubic;
  height: auto;
  image-rendering: -webkit-optimize-contrast; /*Chromeぼけ対策*/
  image-rendering: auto;
}

@media (max-width:767px) {
  body {
    min-width: initial;
  }
}

/*==============================================
common
==============================================*/
.main {
  position: relative;
  display: block;
  padding-top: 75px;
  overflow: hidden;
}

._pc {
  display: inline-block;
}

._sp {
  display: none;
}

._anime {
  opacity: 0;
  transform: translateX(-100px);
}

._tit {
  display: grid;
  grid-template-columns:repeat(3,auto);
  justify-content: start;
  align-items: center;
  margin-bottom: 2em;
}

._tit-line {
  content: '';
  width: 1px;
  height:70px;
  background: var(--color-navy);
  transform: skew(-20deg);
  position: relative;
  transition: all .3s .1s;
  left:0;
  display: inline-block;
  opacity: 0;
  left:-50px;
}

._tit-en {
  font-family: var(--fontfamily-en);
  font-size: var(--fontsize-51);
  font-style: italic;
  letter-spacing: 0.08em;
  position: relative;
  transition: all .3s .1s;
  left:0;
  padding: 0 20px 0 0;
  opacity: 0;
  transform: translateX(-50px);
  line-height: 1.3;
}

._tit-ja {
  font-size: var(--fontsize-26);
  letter-spacing: 0.08em;
  font-weight: 700;
  position: relative;
  transition: all .3s .1s;
  left:0;
  padding-left: 20px;
  opacity: 0;
  transform: translateX(-50px);
}

@media (max-width:767px) {
  .main {
    padding-top: 60px;
  }
  ._pc {
    display: none;
  }

  ._sp {
    display: inline-block;
  }

  ._tit {
    margin-bottom: 1em;
  }

  ._tit-line {
    height:40px;
  }

  ._tit-en {
    padding: 0 10px 0 0;
    word-break: break-all;
    font-size: var(--fontsize-27);
  }

  ._tit-ja {
    padding-left: 15px;
    font-size: var(--fontsize-18);
  }
}

/*==============================================
link
==============================================*/
a, a:visited, a img, a:visited img, button {
  transition: all .3s ease-in;
}

a:not([class]), a:not([class]):visited {
  color: var(--color-grey40);
  text-decoration: none;
}

a:not([class]):hover {
  text-decoration: none;
  opacity: 0.8;
}


/*==============================================
top
==============================================*/
/*kv*/
.top-kv {
  position: relative;
}

.top-kv__tit {
  position: absolute;
  bottom:3vw;
  z-index: 5;
}

.top-kv__tit01 {
  width: 40vw;
  display: block;
  padding: 20px 20px 10px 7.2vw;
  position: relative;
}

.top-kv__tit02 {
  width: 56vw;
  display: block;
  padding: 10px 20px 20px 7.2vw;
  position: relative;
}

.top-kv__tit-marker {
  position: absolute;
  width: 0%;
  height: 100%;
  background: rgba(14, 148, 124, 0.336);
  top:0;
  left:0;
  content: '';
}

.top-kv__tit01 img,
.top-kv__tit02 img {
  position: relative;
  z-index: 2;
  transform: translateX(-100%);
  opacity: 0;
}

.top-kv__slider {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  aspect-ratio: 1920/1000;
  position: relative;
  z-index: 5;
}

.top-kv__slider-pc {
  display: block;
}

.top-kv__slider-sp {
  display: none;
}

.top-kv__sliderA,
.top-kv__sliderB {
  position: relative;
}

.top-kv__sliderA-item,
.top-kv__sliderB-item {
  position: absolute;
  top:0;
  left:0;
  width: 100%;
}

.top-kv__sliderA-item,
.top-kv__sliderB-item {
  transform: translateX(0) translateY(0);
}

.top-kv__sliderA-item img,
.top-kv__sliderB-item img {
  width: 100%;
}

.top-kv__sliderA-item01,
.top-kv__sliderB-item01 {
  z-index: 4;
}

.top-kv__sliderA-item02,
.top-kv__sliderB-item02 {
  z-index: 3;
}

.top-kv__sliderA-item03,
.top-kv__sliderB-item03 {
  z-index: 2;
}

.top-kv__sliderA-item04,
.top-kv__sliderB-item04 {
  z-index: 1;
}

.top-kv__scroll {
  position: absolute;
  right:3vw;
  bottom:0;
}

.top-kv__scroll-txt {
  writing-mode: vertical-rl;
  font-family: var(--fontfamily-en);
  font-style: italic;
  letter-spacing: 0.12em;
  position: absolute;
  top:-220px;
  left:-15px;
  font-size: var(--fontsize-20);
  color: var(--color-white);
  z-index: 9;
}

.top-kv__scroll-line {
  width: 1px;
  height: 100px;
  margin:0 auto;
  background-color: transparent;
  position: relative;
  overflow: hidden;
  z-index: 9;
}

.top-kv__scroll-line::before {
  content: '';
  width: 1px;
  height: 0;
  margin: 0 auto 0;
  background-color: var(--color-white);
  position: absolute;
  top: -100px;
  left: 0;
  animation: top-kv__scroll-line 2s 2s infinite normal;
}

.top-kv__scroll-line2 {
  width: 1px;
  height: 100px;
  margin:0 auto;
  background-color: transparent;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.top-kv__scroll-line2::before {
  content: '';
  width: 1px;
  height: 0px;
  margin: 0 auto 0;
  background-color: var(--color-black);
  position: absolute;
  top: 0px;
  left: 0;
  animation: top-kv__scroll-line2 2s 2s infinite normal;
}

@keyframes top-kv__scroll-line {
  0% {height: 0px;}
  60% {height: 100px;}
  100% {height: 100px;}
}

@keyframes top-kv__scroll-line2 {
  0% {height: 0px;}
  40% {height: 0px;}
  100% {height: 100px;}
}


/*top (common)*/
.top-tit {
  margin-bottom: 2em;
}

.top-tit a, .top-tit a:visited {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 30px;
}

.top-tit__ja {
  font-size: var(--fontsize-31);
  font-weight: 700;
  letter-spacing: 0.124em;
  opacity: 0;
  transform: translateX(-100px);
}

.top-tit__en {
  font-family: var(--fontfamily-en);
  color: var(--color-white);
  font-size: var(--fontsize-61);
  line-height: 1;
  font-style: italic;
  padding: .25em .75em .25em 1.25em;
  margin-left: -30px;
  letter-spacing: 0.09em;
  position: relative;
  z-index: 5;
  opacity: 1;
}

.top-tit__en-txt {
  opacity: 0;
  transform: translateX(-100%);
  display: block;
}

.top-tit__en-marker {
  position: absolute;
  top:0;
  left:0;
  width:0;
  height: 100%;
  content: '';
  background: var(--color-navy);
  z-index: -1;
  transform: skewX(-25deg);
}

.top__links {
  padding-left: 9.7vw;
  display: grid;
  gap: 30px;
}

.top__links-item a, .top__links-item a:visited {
  display: grid;
  grid-template-columns: auto 1fr;
  font-size: var(--fontsize-24);
  font-weight: 700;
  letter-spacing: 0.08em;
  align-items: center;
  gap: 35px;
}

.top__links-item-icon {
  border: 1.5px solid var(--color-navy);
  border-radius: 100px;
  width: 50px;
  height: 50px;
  display: block;
  position: relative;
}

.top__links-item-arrow {
  display: inline-block;
  vertical-align: middle;
  color: var(--color-navy);
  line-height: 1;
  position: relative;
  width: 35px;
  height: 1.5px;
  background: currentColor;
  left:30px;
  top:2px;
  transition: all .3s;
}

@media (min-width:1800px) {
  .top__links-item-arrow {
    top:0;
  }
}

.top__links-item-arrow::after {
  content: '';
  width: 12px;
  height: 12px;
  border: 1.5px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  top: 1px;
  right: -1px;
}

.top__links-item-txt {
  position: relative;
  transition: all .3s .1s;
  left:0;
}

.top__links-item a:hover .top__links-item-arrow {
  width: 45px;
}

.top__links-item a:hover .top__links-item-txt {
  left:5px;
}

/*top-about*/
.top-about {
  background: url(/assets/img/common_pattern_mint.png);
  padding: 70px 20px 70px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9vw;
}

.top-tit--about {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 30px;
}

.top-tit--about .top-tit__en {
  padding: .25em .75em .25em 3em;
}

.top-about__txt {
  font-size: var(--fontsize-24);
  line-height: 2.5;
  letter-spacing: 0.04em;
  font-weight: 500;
}

/*top-business*/
.top-business {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  grid-template-areas:
  "top-business__img top-business__txt"
  ;
}

.top-business__txt {
  background: var(--color-navy10);
  padding: 50px 0 70px;
  grid-area: top-business__txt;
}

.top-business__img {
  position: relative;
  z-index: 8;
  grid-area:top-business__img;
  background: url(/assets/img/top_business_img.jpg) no-repeat center center;
  background-size: cover;
}

/*top-company*/
.top-company {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  grid-template-areas:
  "top-company__txt top-company__img"
  ;
  background: var(--color-mint10);
}

.top-company__txt {
  grid-area: top-company__txt;
  padding: 50px 0 70px;
}

.top-company__img {
  grid-area:top-company__img;
  position: relative;
  z-index: 8;
  background: url(/assets/img/top_company_img.jpg) no-repeat center center;
  background-size: cover;
}

.top-tit--company .top-tit__en-marker {
  background: var(--color-mint);
}

/*top-recruit*/
.top-recruit {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  grid-template-areas:
  "top-recruit__img top-recruit__txt"
  ;
}

.top-recruit__txt {
  background: var(--color-orange10);
  padding: 50px 0 70px;
  grid-area: top-recruit__txt;
}

.top-recruit__img {
  position: relative;
  z-index: 8;
  grid-area:top-recruit__img;
  background: url(/assets/img/top_recruit_img.jpg) no-repeat center center;
  background-size: cover;
}

.top-tit--recruit .top-tit__en-marker {
  background: var(--color-orange);
}

@media (max-width:767px) {
  /*kv*/
  .top-kv__tit {
    top:42%;
    bottom:auto;
    font-size: 1px;
  }

  .top-kv__tit01 {
    width: 100%;
    padding: 10px 10px 10px 10px;
  }

  .top-kv__tit02 {
    width: 100%;
    padding: 5px 10px 10px 10px;
  }

  .top-kv__tit01 img {
    width: 50%;
    left: 12%;
    /* left:12%;
    transform: translateX(-12%); */
  }

  .top-kv__tit02 img {
    width: 75%;
    left:12%;
    /* left:50%;
    transform: translateX(-50%); */
  }

  .top-kv__slider {
    grid-template-columns: 1fr;
    aspect-ratio:unset;
    aspect-ratio: 1500/2466;
  }

  .top-kv__slider-pc {
    display: none;
  }

  .top-kv__slider-sp {
    display: block;
  }

  .top-kv__sliderA,
  .top-kv__sliderB {
    aspect-ratio:1233/1500;
    overflow: hidden;
  }

  .top-kv__scroll {
    right:20px;
  }

  .top-kv__scroll-txt {
    top:-200px;
    left: -10px;
  }

  /*top (common)*/
  .top-tit a, .top-tit a:visited {
    gap: 15px;
  }

  .top-tit__ja {
    font-size: var(--fontsize-24);
  }

  .top-tit__en {
    padding: .25em .75em .25em 1.5em;
    font-size: var(--fontsize-43);
  }

  .top__links {
    gap: 20px;
  }

  .top__links-item-icon {
    width: 40px;
    height: 40px;
  }

  .top__links-item-arrow {
    left:25px;
    top:4px;
  }

  /*top-about*/
  .top-about {
    padding: 35px 0;
    grid-template-columns: auto;
    gap: 0;
  }

  .top-tit--about {
    grid-template-columns: auto 1fr;
    gap: 15px;
  }

  .top-tit--about .top-tit__en {
    padding: .25em .75em .25em 2em;
  }

  .top-about__txt {
    padding: 0 20px;
  }

  /*top-business*/
  .top-business {
    grid-template-columns: auto;
    grid-template-areas:
    "top-business__txt"
    "top-business__img"
    ;
  }

  .top-business__txt {
    padding: 25px 0 35px;
  }

  /*top-company*/
  .top-company {
    grid-template-columns: auto;
    grid-template-areas:
    "top-company__txt"
    "top-company__img"
    ;
  }

  .top-company__txt {
    grid-area: top-company__txt;
    padding: 25px 0 35px;
  }

  /*top-recruit*/
  .top-recruit {
    grid-template-columns: auto;
    grid-template-areas:
    "top-recruit__txt"
    "top-recruit__img"
    ;
  }

  .top-recruit__txt {
    background: var(--color-orange10);
    padding: 50px 0;
    grid-area: top-recruit__txt;
  }
}


/*==============================================
business
==============================================*/
/*lead*/
.business__lead {
  background: url(/assets/img/common_pattern_mint.png) fixed;
}

.business__lead-inner {
  width: 58.3vw;
  min-width: 1000px;
  margin: 0 auto;
  padding: 100px 0;
}

.business__lead-tit {
  font-weight: 700;
  font-size: var(--fontsize-43);
  line-height: 1.5;
  margin-bottom: 1em;
  letter-spacing: 0.08em;
}

.business__lead-copy {
  font-size: var(--fontsize-24);
}

/*list*/
.business__list {
  background: var(--color-mint30);
  padding: 80px 0 100px;
  position: relative;
}

.business__list-links {
  width: 58.3vw;
  min-width: 1000px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 1px;
}

.business__list-links-item-txt {
  font-size: var(--fontsize-15);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.business__list-links-item {
  background: var(--color-white);
}

.business__list-links-item a, .business__list-links-item:visited {
  background: var(--color-mint120);
  display:grid;
  gap: 10px;
  padding: 15px 20px;
  text-align: center;
}

.business__list-links-item a:hover {
  background: var(--color-mint30);
}

.business__list-detail-inner {
  width: 68.75vw;
  min-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 4.6vw;
}

.business__list-detail-item {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 20px;
}

.business__list-detail-item-tit {
  background: var(--color-mint120);
  border-bottom: 2px solid var(--color-navy);
  font-size: var(--fontsize-31);
  font-weight: 500;
  padding: 0.35em .5em;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.business__list-detail-item-copy {
  font-size: var(--fontsize-22);
  letter-spacing: 0.025em;
}

.business__pagetop {
  position: fixed;
  bottom:0;
  right:0;
  z-index: 15;
}

.business__pagetop--isactive {
  position: absolute;
}

.business__pagetop a, .business__pagetop a:visited {
  background: var(--color-mint);
  color: var(--color-navy);
  display: grid;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
}

@media (max-width:767px) {
  /*lead*/
  .business__lead {
    background-size: 100px;
  }

  .business__lead-inner {
    width: 100%;
    min-width: unset;
    padding:40px 30px 40px 20px;
  }

  .business__lead-tit {
    font-weight: 700;
    font-size: var(--fontsize-31);
    line-height: 1.5;
    margin-bottom: 1em;
    letter-spacing: 0.08em;
  }

  /*list*/
  .business__list {
    padding: 40px 20px 100px;
    background: none;
    background: url(/assets/img/common_pattern_mint.png) fixed;
    background-size: 100px;
  }

  .business__list-links {
    width: 100%;
    min-width: unset;
    margin: 0 auto 40px;
    grid-template-columns: repeat(4,1fr);
  }

  .business__list-links-item a, .business__list-links-item:visited {
    padding: 7px;
    gap: 3px;
  }

  .business__list-links-item-txt {
    font-size: 0.8rem;
    letter-spacing: 0;
  }

  .business__list-detail-inner {
    width: 100%;
    min-width: unset;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .business__list-detail-item {
    gap: 12px;
  }

}


/*==============================================
company
==============================================*/
/*profile*/
.company__profile {
  background: url(/assets/img/common_pattern_mint.png);
  padding: 60px 0;
}

.company__profile-inner {
  width: 58.3vw;
  min-width: 1000px;
  margin: 0 auto;
}

.company__profile-contents {
  padding-left: 5.7vw;
}

.company__profile-contents-copy {
  margin-bottom: 3em;
  font-size: var(--fontsize-24);
  color: var(--color-black);
}

.company__profile-contents-table {
  border-spacing: 0;
  margin: 0 auto;
  width: 100%;
  font-size: var(--fontsize-24);
  color: var(--color-black);
  letter-spacing: 0.04em;
}

.company__profile-contents-table th {
  border-bottom: 1px solid var(--color-navy);
  padding: .5em 1em;
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
  width: 7em;
  font-weight: normal;
}

.company__profile-contents-table td {
	border-bottom: 1px solid  var(--color-navy);
  padding: .5em 1em;
  vertical-align: top;
	text-align: left;
	word-break: break-all;
}

.company__profile-contents-table tr:last-child th,
.company__profile-contents-table tr:last-child td
{
  border-bottom: none;
}

/*group*/
.company__group {
  background: #0c276a;
  color: var(--color-white);
  padding: 80px 0;
}

.company__group-inner {
  width: 68.75vw;
  min-width: 1100px;
  margin: 0 auto;
}

._tit--company-group {
  justify-content: center;
}

._tit--company-group ._tit-line {
  background: var(--color-white);
}

.company__group-tit {
  text-align: center;
  font-weight: 700;
  font-size: var(--fontsize-38);
  margin-bottom: 1.5em;
  letter-spacing: 0.08em;
}

.company__group-tit-inner {
  border: 3px solid var(--color-red);
  border-radius: 100px;
  padding: .3em 2em;
  display: inline-block;
  line-height: 1.5;
}

.company__group-copy {
  margin-bottom: 3em;
  font-size: var(--fontsize-22);
  letter-spacing: -0.01em;
}

.company__group-fig {
  /* clip-path:inset(0 70% 0 0); */
  clip-path: circle(0);
}

/*overview*/
.company__overview {
  background: url(/assets/img/common_pattern_mint.png);
  padding: 60px 0;
}

.company__overview-inner {
  width: 58.3vw;
  min-width: 1000px;
  margin: 0 auto;
}

.company__overview-table {
  border-spacing: 0;
  margin: 0 auto;
  width: 100%;
  color: var(--color-black);
  background: var(--color-white);
  font-size: var(--fontsize-20);
}

.company__overview-table th {
  padding: .5em 1em .5em 7em;
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
  width: 15em;
  font-weight: normal;
  background: var(--color-mint30);
}

.company__overview-table td {
  padding: .5em 1em;
  vertical-align: top;
	text-align: left;
	word-break: break-all;
  background: var(--color-mint30);
}

.company__overview-table tr:nth-of-type(even) th,
.company__overview-table tr:nth-of-type(even) td {
  background: var(--color-white);
}

/*offce*/
.company__office {
  margin: 120px 0 60px;
}

.company__office-list {
  display: grid;
  grid-template-columns: 10em 1fr;
  gap: 2px 2vw;
  align-items: center;
  padding-left: 5.7vw;
  font-size: var(--fontsize-24);
  color: var(--color-black);
}

.company__office-list-name {
  text-align: center;
  background: var(--color-mint);
  padding: .75em;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.company__office-list-address {
  border-bottom: 1px solid var(--color-black);
  padding: .75em;
  letter-spacing: 0.04em;
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: 7em 1fr;
}

.company__office-list-address:last-child {
  border-bottom: none;
}


@media (max-width:767px) {
/*profile*/
.company__profile {
  padding: 30px 0;
  background-size: 100px;
}

.company__profile-inner {
  width: 100%;
  min-width: unset;
  padding: 0 20px;
}

.company__profile-contents-copy {
  margin-bottom: 1.5em;
  padding-right: 20px;
}

.company__profile-contents {
  padding-left: 0;
}

/*group*/
.company__group {
  padding: 40px 0;
}

.company__group-inner {
  width: 100%;
  min-width: unset;
  padding: 0 20px;
}

._tit--company-group ._tit-en {
  line-height: 1.3;
  font-size: var(--fontsize-24);
  display: block;
  text-align: center;
  padding: 0;
  margin-bottom: .25em;
}

._tit--company-group ._tit-line {
  display: none;
}

._tit--company-group ._tit-ja {
  display: block;
  text-align: center;
  padding: 0;
}

._tit--company-group {
  display: block;
}

.company__group-tit {
  font-size: var(--fontsize-27);
  margin-bottom: 1em;
}

.company__group-tit-inner {
  border: 2px solid var(--color-red);
  padding: .75em 1em;
  display: block;
}

.company__group-copy {
  margin-bottom: 2em;
}

.company__group-fig-sp {
  clip-path:inset(0px 0px 1200px 0px);
  will-change: clip-path;
}


/*overview*/
.company__overview {
  padding: 30px 0;
  background-size: 100px;
}

.company__overview-inner {
  width: 100%;
  min-width: unset;
  padding: 0 20px;
}

.company__overview-table {
  line-height: 1.4;
}

.company__overview-table th {
  padding: .5em 1em;
  width: auto;
}

/*offce*/
.company__office {
  margin: 50px 0 0;
}

.company__office-list {
  gap: 0px 2vw;
  padding-left: 0;
  line-height: 1.4;
  grid-template-columns: auto 1fr;
}

.company__office-list-name {
  padding: .5em;
  font-size: var(--fontsize-15);
}

.company__office-list-address {
  padding: .5em 0 .5em .5em;
  display: inline;
  font-size: var(--fontsize-15);
}

}


/*==============================================
recruit
==============================================*/
/*candidate*/
.recruit__candidate {
  background: var(--color-orange10);
  padding: 80px 0 0;
}

.recruit__candidate-inner {
  width: 68.75vw;
  min-width: 1100px;
  margin: 0 auto;
}

.recruit__candidate-conetents {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 6.7vw;
  align-items: center;
  position: relative;
  top:-4vw;
}

.recruit__candidate-fig {
  position: relative;
}

/*求める人材*/
.recruit__candidate-fig-00 {
  border: 2px solid var(--color-orange);
  color: var(--color-orange);
  background: var(--color-white);
  display: grid;
  border-radius: 100%;
  width: 18vw;
  height: 18vw;
  max-width: 320px;
  max-height: 320px;
  min-width: 260px;
  min-height: 260px;
  justify-content: center;
  align-items: center;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  font-size: 3rem;

  position: absolute;
  top:50%;
  left:50%;
  transform: translateX(-50%) translateY(-50%) scale(0);
  opacity: 0;
}


.recruit__candidate-fig--parts {
  color: var(--color-white);
  background: var(--color-orange);
  display: grid;
  border-radius: 100%;
  width: 9.63vw;
  height: 9.63vw;
  max-width: 160px;
  max-height: 160px;
  min-width: 130px;
  min-height: 130px;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  text-align: center;
  font-size: 2rem;

  position: absolute;
  top:50%;
  left:50%;
  /* transform: translateX(-50%) translateY(-50%); */
  opacity: 0;
}

/*健康・快活*/
.recruit__candidate-fig-01 {
  transform: translateX(-50%) translateY(-100%);
  /* transform: translateX(-50%) translateY(-150%); */
}

/*協調性*/
.recruit__candidate-fig-02 {
  transform: translateX(0%) translateY(-50%);
  /* transform: translateX(50%) translateY(-50%); */
}

/*誠実*/
.recruit__candidate-fig-03 {
  transform: translateX(-50%) translateY(0%);
  /* transform: translateX(-50%) translateY(50%); */
}

/*向上心*/
.recruit__candidate-fig-04 {
  transform: translateX(-100%) translateY(-50%);
  /* transform: translateX(-150%) translateY(-50%); */
}

.recruit__candidate-txt {
  position: relative;
  top:-2vw
}

.recruit__candidate-txt-il {
  text-align: right;
}

.recruit__candidate-txt-il img {
  width: 170px;
}

.recruit__candidate-txt-list {
  display: grid;
  gap: 40px;
}

.recruit__candidate-txt-list-item {
  color: var(--color-black);
}

.recruit__candidate-txt-list-item-tit {
  font-size: var(--fontsize-31);
  font-weight: 500;
  border-top:1px solid var(--color-black);
  border-bottom:1px solid var(--color-black);
  margin-bottom: .5em;
  letter-spacing: 0.02em;
}

.recruit__candidate-txt-list-item-copy {
  line-height: 2;
  font-size: var(--fontsize-22);
}

/*people*/
.recruit__people {
  background: var(--color-orange10);
}

.recruit__people-inner {
  width: 68.75vw;
  min-width: 1100px;
  margin: 0 auto;
}

.recruit__people-list {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  justify-content: space-between;
}

.recruit__people-list-item {
  opacity: 0;
  filter: blur(10px);
}

.recruit__people-list-item a, .recruit__people-list-item a:visited {
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: end;
  position: relative;
  aspect-ratio: 640/690;
  overflow: hidden;
  color: var(--color-white);
  grid-template-areas:
  "recruit__people-list-item-img"
  "recruit__people-list-item-info"
  ;
}

.recruit__people-list-item-img-copy {
  position: relative;
  z-index: 2;
  padding: 30px;
  font-weight: 700;
  font-size: var(--fontsize-24);
}

.recruit__people-list-item-info {
  position: relative;
  z-index: 2;
  background: var(--color-navy60);
  padding: 20px 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  transition: all .2s;
  grid-area: recruit__people-list-item-info;
}

.recruit__people-list-item-info-txt-name {
  font-weight: 700;
  font-size: var(--fontsize-26);
  letter-spacing: 0.02em;
}

.recruit__people-list-item-info-txt-data {
  line-height: 1.6;
  font-size: var(--fontsize-22);
  letter-spacing: 0.02em;
}

.recruit__people-list-item-info-r {
  padding-right: 20px;
}

.recruit__people-list-item-info-icon {
  border: 1.5px solid var(--color-white);
  border-radius: 100px;
  width: 40px;
  height: 40px;
  display: block;
  position: relative;
}

.recruit__people-list-item-info--icon-arrow {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  position: relative;
  width: 30px;
  height: 1.5px;
  background: var(--color-white);
  left:25px;
  top:2px;
  transition: all .3s;
}

.recruit__people-list-item-info--icon-arrow::after {
  content: '';
  width: 12px;
  height: 12px;
  border: 1.5px solid var(--color-white);
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  top: 1px;
  right: -1px;
}

.recruit__people-list-item a:hover {
  opacity: 1;
}

.recruit__people-list-item a:hover .recruit__people-list-item-info--icon-arrow {
  width: 40px;
}

.recruit__people-list-item a:hover .recruit__people-list-item-info {
  background: var(--color-orange60);
}

.recruit__people-list-item-img {
  position: absolute;
  top:0;
  left:0;
  grid-area: recruit__people-list-item-img;
}

.recruit__people-list-item-img-a {
  transition: all .2s;
}

/*マウスオーバーで2枚目(.recruit__people-list-item-img-b)に切り替わる*/
/* .recruit__people-list-item a:hover .recruit__people-list-item-img-a {
  display: none;
} */


/*env*/
.recruit__env {
  padding: 80px 0 0 8.8vw;
}

._tit--recruit-env {
  color: var(--color-orange);
  padding-left: 7vw;
}

._tit--recruit-env ._tit-line {
  background: var(--color-orange);
}

.recruit__env-box01 {
  display: grid;
  grid-template-columns: auto 33vw;
  padding:0 9.6vw 0 7vw;
  gap: 5vw;
  position: relative;
  margin-bottom: -20vw;
  z-index: 2;
}

.recruit__env-box01-txt-copy {
  font-size: var(--fontsize-22);
  letter-spacing: 0.04em;
}

.recruit__env-box01-img {
  display: grid;
  gap: 5px;
}

.recruit__env-box02 {
  background: var(--color-orange);
  color: var(--color-white);
  display: grid;
  grid-template-columns: 28vw 1fr;
  grid-template-areas: "recruit__env-box02-img recruit__env-box02-txt";
  align-items: center;
  gap: 6vw;
  padding: 5vw 7vw;
  position: relative;
}

.recruit__env-box02-txt {
  grid-area: recruit__env-box02-txt;
}

.recruit__env-box02-txt-tit {
  font-weight: 700;
  font-size: var(--fontsize-26);
  margin-bottom: .5em;
  letter-spacing: 0.05em;
}

.recruit__env-box02-txt-copy {
  font-size: var(--fontsize-22);
  letter-spacing: 0.04em;
}

.recruit__env-box02-img {
  display: grid;
  gap: 5px;
  grid-area: recruit__env-box02-img;
}

.recruit__env-il01 {
  padding-left: 5vw;
}

.recruit__env-il01 img {
  width: 10vw;
}

.recruit__env-il01-sp {
  display: none;
}

.recruit__env-il02 {
  position: absolute;
  bottom:0;
  right:3vw;
  width: 100%;
  text-align: right;
}

.recruit__env-il02 img {
  width: 25vw;
}

/*rec*/
.recruit__rec {
  background: var(--color-orange10);
  padding: 20vw 0 80px 0;
  margin-top: -15vw;
}

.recruit__rec-inner {
  width: 68.75vw;
  min-width: 1100px;
  margin: 0 auto;
}

.recruit__rec-table {
  border-spacing: 0;
  margin: 0 auto;
  width: 100%;
  color: var(--color-black);
  background: var(--color-white);
  border: 1px solid var(--color-navy);
  border-bottom: none;
  color: var(--color-black);
  font-size: var(--fontsize-24);
  letter-spacing: 0.04em;
}

.recruit__rec-table th {
  padding: 1em 3em;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  font-weight: normal;
  border-right: 1px solid var(--color-navy);
  border-bottom: 1px solid var(--color-navy);
}

.recruit__rec-table td {
  padding: 1em 3em;
  vertical-align: top;
	text-align: left;
	word-break: break-all;
  border-bottom: 1px solid var(--color-navy);
  display: grid;
  gap: 1em;
}


@media (max-width:767px) {
  /*candidate*/
  .recruit__candidate {
    background: var(--color-orange10);
    padding: 40px 20px 40px;
  }

  .recruit__candidate-inner {
    width: 100%;
    min-width: unset;
  }

  .recruit__candidate-conetents {
    grid-template-columns: auto;
    gap: 0;
    top:auto;
  }

  .recruit__candidate-fig {
    aspect-ratio: 5/4;
  }

  /*求める人材*/
  .recruit__candidate-fig-00 {
    width: 40vw;
    height: 40vw;
    max-width: unset;
    max-height: unset;
    min-width: unset;
    min-height: unset;
    font-size: 2.1rem;
  }

  .recruit__candidate-fig--parts {
    width: 20vw;
    height: 20vw;
    max-width: unset;
    max-height: unset;
    min-width: unset;
    min-height: unset;
    font-size: 1.5rem;
  }

  .recruit__candidate-txt-il img {
    width: 30%;
  }

  .recruit__candidate-txt-list {
    gap: 20px;
  }

  /*people*/
  .recruit__people-inner {
    width: 100%;
    min-width: unset;
    padding: 0 20px;
  }

  .recruit__people-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .recruit__people-list-item a, .recruit__people-list-item a:visited {
    grid-template-columns: 1.15fr 1fr;
    grid-template-rows: auto;
    aspect-ratio:unset;
    background: var(--color-navy);
    grid-template-areas:
    "recruit__people-list-item-img recruit__people-list-item-info"
    ;
  }

  .recruit__people-list-item a:hover .recruit__people-list-item-info {
    background: var(--color-navy);
  }

  .recruit__people-list-item:nth-of-type(2n) a {
    grid-template-columns: 1fr 1.15fr;
    grid-template-areas:
    "recruit__people-list-item-info recruit__people-list-item-img"
    ;
  }

  .recruit__people-list-item-img {
    position: relative;
    top:auto;
    left:auto;
  }

  .recruit__people-list-item-img-copy {
    padding: 20px;
  }

  .recruit__people-list-item-info {
    padding: 15px 20px;
  }

  .recruit__people-list-item-info-txt-data {
    font-size: var(--fontsize-18);
  }

  .recruit__people-list-item-info-r {
    display: none;
  }

  /*env*/
  .recruit__env {
    padding: 40px 0 0;
  }

  ._tit--recruit-env {
    padding-left: 20px;
  }

  .recruit__env-box01 {
    grid-template-columns: 1fr;
    padding:0 20px;
    gap: 20px;
    /* margin-bottom: 0; */
  }

  .recruit__env-box01-img {
    gap: 5px;
  }

  .recruit__env-box02 {
    grid-template-columns:1fr;
    grid-template-areas:
    "recruit__env-box02-txt"
    "recruit__env-box02-img"
    ;
    gap: 25px;
    padding: calc(20vw + 40px) 20px 0;
  }

  .recruit__env-box02-img {
    gap: 5px;
  }

  .recruit__env-il01 {
    display: none;
  }

  .recruit__env-il01-sp {
    width: 100%;
    text-align: right;
    position: relative;
    transform: translateX(-25%) translateY(-100%);
    margin-bottom: -60px;
  }

  .recruit__env-il01-sp img {
    width: 70px;
  }

  .recruit__env-il02 {
    position: relative;
    bottom:auto;
    right: auto;
    width: 250px;
    margin: 0 auto;
  }

  .recruit__env-il02 img {
    width: 100%;
  }

  /*rec*/
  .recruit__rec {
    padding:40px 20px;
    margin-top: 0;
  }

  .recruit__rec-inner {
    width: 100%;
    min-width: unset;
  }

  .recruit__rec-table {
    font-size: var(--fontsize-18);
  }

  .recruit__rec-table th {
    padding: 1em;
    width: auto;
  }

  .recruit__rec-table td {
    padding: 1em;
  }
}


/*==============================================
people
==============================================*/
/*header*/
.people__header {
  background: var(--color-orange10);
  padding: 30px 0;
}

.people__header-inner {
  padding: 0 8vw;
}

._tit--people {
  margin-bottom: 0;
}

/*box*/
.people__box {
  background: var(--color-orange);
  padding-top: 80px;
}

.people__box-inner {
  padding: 0 8vw;
}

.people__box-layout {
  display: grid;
  grid-template-columns: 350px 1fr;
  grid-template-areas: "people__box-img people__box-txt";
  padding-bottom: 60px;
}

.people__box-img {
  grid-area: people__box-img;
  position: relative;
  top:-10px;
  z-index: 2;
  transform: translateX(-100px);
  opacity: 0;
}

.people__box-img-sp {
  display: none;
}

.people__box-img-list {
  display: grid;
  box-shadow: -7px 7px 0 var(--color-navy);
  margin-bottom: 7px;
}

.people__box-txt {
  grid-area: people__box-txt;
  color: var(--color-white);
}

.people__box-txt-header {
  display: grid;
  grid-template-columns: auto auto;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--color-white);
}

.people__box-txt-header-tit {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateX(-100px);
}

.people__box-txt-header-tit-copy {
  font-weight: 800;
  color: var(--color-navy);
  font-size: var(--fontsize-45);
  line-height: 1.3;
  position: relative;
  z-index: 2;
  padding: 15px 80px 15px 60px;
  display: inline-block;
  letter-spacing: 0.05em;
}

.people__box-txt-header-tit-marker {
  position: absolute;
  top:0;
  left:-55px;
  width:110%;
  height: 100%;
  content: '';
  background: var(--color-white);
  transform: skewX(-25deg);
}

.people__box-txt-header-info-name {
  font-weight: 700;
  font-size: var(--fontsize-38);
  line-height: 1;
  margin-bottom: .25em;
}

.people__box-txt-header-info-job {
  font-size: var(--fontsize-20);
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.people__box-txt-copy {
  padding-left: 60px;
  column-count: 2;
  column-gap: 2em;
  font-size: var(--fontsize-22);
  position: relative;
}

.people__box-txt-copy-q {
  border-top:2px solid var(--color-white) ;
  position: relative;
  margin-top: 1.5em;
  padding-top: 1.5em;
}

.people__box-txt-copy-q::before {
  content: '';
  position: absolute;
  border-top: solid 2px var(--color-white);
  width: 100%;
  top:3px;
  left:0;
}

.people__box-txt-copy-q-tit {
  font-weight: 700;
  font-size: var(--fontsize-24);
  margin-bottom: .5em;
}

.people__box-txt-copy-q-a {
  display: grid;
  grid-template-columns: 0.3fr 1fr;
  gap: 1vw;
  font-size: var(--fontsize-22);
}

/*02*/
.people__box--02 {
  background: url(/assets/img/common_pattern_mint.png);
}

.people__box--02 .people__box-inner {
  padding-left: 0;
}

.people__box--02 .people__box-txt-copy {
  color: var(--color-black);
  padding-left: 8vw;
}

.people__box--02 .people__box-layout {
  grid-template-columns: 1fr 350px;
  grid-template-areas: "people__box-txt people__box-img";
  gap: 5vw;
}

.people__box--02 .people__box-txt {
  color: var(--color-navy);
}

.people__box--02 .people__box-txt-header-tit-copy {
  padding: 15px 60px 15px 8vw;
}

.people__box--02 .people__box-txt-header-tit-marker {
  background: var(--color-orange);
}

.people__box--02 .people__box-txt-header {
  border-bottom: 1px solid var(--color-navy);
}

.people__box--02 .people__box-txt-copy-q {
  border-top:2px solid var(--color-black) ;
}

.people__box--02 .people__box-txt-copy-q::before {
  border-top: solid 2px var(--color-black);
}


/*il*/
.people__box-il {
  background: url(/assets/img/people_il.png) repeat-x center bottom;
  background-size: 1450px;
  height: 130px;
  width: 100%;
  animation: backgroundScroll 130s linear infinite;
}

@keyframes backgroundScroll {
  from {
    background-position: 0 bottom;
  }
  to {
    background-position: 1450px bottom;
  }
}

@media (max-width:1350px) {
  .people__box-txt-header-tit-copy {
    font-size: var(--fontsize-38);
  }
}

@media (max-width:767px) {
  .people__header {
    padding: 15px 20px;
  }

  .people__header-inner {
    padding: 0;
  }

  .recruit__people-list--people {
    padding:0 30px 30px 30px;
  }

  /*box*/
  .people__box {
    padding-top: 40px;
  }

  .people__box-inner {
    padding: 0;
  }

  .people__box-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
    "people__box-txt"
    "people__box-img"
    ;
    padding-bottom: 30px;
    gap: 5vw;
  }

  .people__box-img {
    display: none;
  }

  .people__box-img-sp {
    top:-25px;
    left: -20px;
    position: relative;
    width: calc(100% + 40px);
    margin: 0 auto;
    display: block;
    margin-bottom: -30px;
  }

  .people__box-img-list {
    grid-template-columns: 1fr 1fr;
    left: 0;
    position: relative;
    box-shadow: none;
  }

  .people__box-txt {
    margin-bottom: 0px;
  }

  .people__box-txt-header {
    grid-template-columns: auto;
    gap: 15px;
    padding-bottom: 0;
    margin-bottom: 15px;
    border-bottom: none;
  }

  .people__box-txt-header-tit-copy {
    padding: 15px 80px 15px 20px;
    font-size: var(--fontsize-38);
  }

  .people__box-txt-header-tit-marker {
    left:-45px;
    width: 90%;
  }

  .people__box-txt-header-info {
    display: grid;
    grid-template-columns: auto auto;
    align-items: start;
    padding: 0 20px;
  }

  .people__box-txt-header-info-name {
    font-size: var(--fontsize-31);
  }

  .people__box-txt-copy {
    padding-left: 0;
    column-count: 1;
    padding:20px 20px 0 20px;
  }

  .people__box-txt-copy::before {
    content: '';
    width: calc(100% - 20px);
    height: 1px;
    background: var(--color-white);
    position: absolute;
    top:0;
    left:0;
  }

  .people__box-txt-copy-q {
    border-top-width:1px;
  }

  .people__box-txt-copy-q::before {
    border-top-width:1px;
  }

  .people__box-txt-copy-q-a {
    gap: 20px;
  }

  /*02*/
  .people__box--02 {
    background-size: 100px;
  }

  .people__box--02 .people__box-inner {
    padding-left: 0;
  }

  .people__box--02 .people__box-txt-header {
    border-bottom: none;
  }

  .people__box--02 .people__box-layout {
    grid-template-columns: 1fr;
    grid-template-areas: 
    "people__box-txt"
    "people__box-img";
  }

  .people__box--02 .people__box-txt-header-tit-copy {
    padding: 15px 80px 15px 20px;
  }

  .people__box--02 .people__box-txt-copy::before {
    background: var(--color-navy);
  }

  .people__box--02 .people__box-txt-copy-q {
    border-top-width:1px;
  }

  .people__box--02 .people__box-txt-copy-q::before {
    border-top-width:1px;
  }

  /*il*/
  .people__box-il {
    background-size: 725px;
    height: 65px;
  }

  @keyframes backgroundScroll {
    from {
      background-position: 0 bottom;
    }
    to {
      background-position: 725px bottom;
    }
  }
}


/*==============================================
header
==============================================*/
.header {
  display: grid;
  grid-template-columns: 312px 1fr;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  width: 100%;
  position: fixed;
  z-index: 10;
  background: var(--color-white);
  height: 75px;
}

.header__nav-list {
  display: grid;
  grid-auto-flow: column;
  justify-content: flex-end;
  gap: 40px;
  font-weight: bold;
}

.header__nav-list-item a, .header__nav-list-item a:visited {
  position: relative;
  display: block;
  letter-spacing: 0.08em;
}

.header__nav-list-item a::before {
  position: absolute;
  content: '';
  width: 0;
  height: 3px;
  background: var(--color-mint);
  bottom: -7px;
  left:50%;
  transform: translateX(-50%);
  transition: all .3s;
}

.header__nav-list-item a:hover::before {
  width: 100%;
}

.header__nav-list-item.is-active a::before {
  width: 100%;
}

@media (max-width:767px) {
  .header {
    grid-template-columns: 200px auto;
    padding:10px 15px;
    height: 60px;
    justify-content: space-between;
  }

  .header__nav {
    display: none;
  }
}


/*==============================================
footer
==============================================*/
.footer {
  background: var(--color-navy10);
  padding: 5.2vw 7vw 3vw;
}

.footer__inner {
  display: grid;
  grid-template-columns: 43% 57%;
  grid-template-areas: "footer__info footer__sitemap";
  margin-bottom: 70px;
}

.footer__info {
  border-right:1.5px solid var(--color-navy);
  color: var(--color-black);
  grid-area: footer__info;
}

.footer__info-logo {
  width: 25vw;
  margin-bottom: 40px;
}

.footer__info-data {
  font-size: var(--fontsize-18);
  letter-spacing: 0.04em;
  padding-left: 5vw;
}

.footer__sitemap {
  grid-area: footer__sitemap;
}

.footer__sitemap-list {
  display: grid;
  grid-template-columns: repeat(3,auto);
  padding-left: 3vw;
  gap: 15px;
}

.footer__sitemap-list-item-tit {
  font-size: var(--fontsize-24);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: .35em;
}

.footer__sitemap-list-item-links {
  display: grid;
  gap: 7px;
}

.footer__sitemap-list-item-links-item {
  font-size: var(--fontsize-18);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.footer__sitemap-list-item-links-item a, .footer__sitemap-list-item-links-item a:visited {
  position: relative;
  text-indent:1em;
}

.footer__sitemap-list a::before {
  position: absolute;
  content: '';
  left:0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: var(--color-navy);
  transition: all .3s;
}

.footer__sitemap-list a:hover::before {
  width: 100%;
}

.footer__sitemap-list-item-links-item::before {
  content: '-';
  transition: all .3s ease-in;
}


.footer__copyright {
  text-align: center;
  font-size: var(--fontsize-13);
  font-family: var(--fontfamily-en);
  letter-spacing: 0.12em;
}

@media (max-width:767px) {
  .footer {
    padding: 40px;
  }

  .footer__inner {
    display: grid;
    grid-template-columns: auto;
    grid-template-areas:
    "footer__sitemap"
    "footer__info"
    ;
    margin-bottom: 20px;
    gap: 25px;
  }

  .footer__info {
    border-top:1px solid var(--color-navy);
    border-right:none;
    padding-top: 25px;
    text-align: center;
  }

  .footer__info-logo {
    width: 80%;
    margin:0 auto 20px;
  }

  .footer__sitemap-list {
    display: grid;
    grid-template-columns: auto;
    padding-left: 0;
    gap: 20px;
  }

  .footer__sitemap-list-item-links {
    display: inline-block;
  }

  .footer__sitemap-list-item-links-item {
    display: inline-block;
    padding-right: 1em;
  }
}


/*==============================================
nav-sp
==============================================*/
.nav-sp-btn,
.nav-sp {
  display: none;
}

@media (max-width:767px) {
  .nav-sp {
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    z-index: 15;
    transform: translateX(100%);
    transition: .3s;
    display: block;
  }

  .nav-sp--ison {
    transform: translateX(0);
  }

  .nav-sp__inner {
    display: grid;
    width: 100%;
    height: 100%;
    background: var(--color-navy80);
    top:0;
    left:0;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .nav-sp__list {
    display: grid;
    width: 100%;
    gap: 30px;
  }

  .nav-sp a, .nav-sp a:visited {
    color: var(--color-white);
    font-weight: 700;
    letter-spacing: 0.08em;
  }

  .nav-sp__item-tit {
    font-size: var(--fontsize-38);
    margin-bottom: .5rem;
  }

  .nav-sp__links {
    display: grid;
    gap: 10px;
  }

  .nav-sp__links-item {
    font-size: var(--fontsize-27);
  }

  .nav-sp-btn {
    display: block;
    position: fixed;
    top:10px;
    right: 20px;
    z-index: 20;
  }

  .nav-sp-btn a, .nav-sp-btn a:visited {
    display: block;
    transition: transform .2s;
    width: 50px;
    height: 40px;
  }

  .nav-sp-btn a span {
    position: absolute;
    left:0;
    width: 100%;
    height: 1px;
    background: var(--color-black);
    transition: transform .2s;
    width: 50px;
  }

  .nav-sp-btn a span:nth-of-type(1) {
    top: 15px;
  }
  .nav-sp-btn a span:nth-of-type(2) {
    top: 25px;
  }

  .nav-sp-btn--ison span:nth-of-type(1) {
    transform: translateY(5px) rotate(-15deg);
    background: var(--color-white);
  }
  .nav-sp-btn--ison span:nth-of-type(2) {
    transform: translateY(-4.5px) rotate(15deg);
    background: var(--color-white);
  }
}

/*==============================================
cover
==============================================*/
.cover {
  position: relative;
  aspect-ratio: 1384/373;
}

.cover__img {
  position: absolute;
  top:0;
  left:0;
}

.cover__txt {
  z-index: 2;
  position: absolute;
  top:50%;
  left:50%;
  transform: translateX(-50%) translateY(-50%);
  padding: 10px 30px;
}

.cover__txt-tit {
  position: relative;
  font-size: 1px;
  display: block;
  overflow: hidden;
}

.cover__txt-marker {
  position: absolute;
  top:0;
  left:0;
  width:0%;
  height: 100%;
  opacity: 0;
  content: '';
  background: var(--color-mint);
  z-index: -1;
  transform: skewX(-20deg);
}

.cover__txt-tit img {
  opacity: 0;
  width: 18.125vw;
  transform: translateX(-50px);
}

.cover__txt-marker--business {
  background: var(--color-mint50);
}

.cover__txt-marker--company {
  background: var(--color-navy50);
}

.cover__txt-marker--recruit {
  background: var(--color-orange50);
}



@media (max-width:767px) {
  .cover {
    position: relative;
    aspect-ratio: 750/300;
  }

  .cover__txt {
    padding: 5px 10px;
  }

  .cover__txt-tit img {
    width: 25vw;
  }
}


/*==============================================
bnr
==============================================*/
.bnr__list {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1px;
}

.bnr__list--wide {
  grid-template-columns: repeat(3,1fr);
}

.bnr__list-item a, .bnr__list-item a:visited {
  display: block;
  position: relative;
}

.bnr__list-item-img {
  position: relative;
  overflow: hidden;
}

.bnr__list-item-img::after {
  content:'';
  width: 100%;
  height: 100%;
  background: url(/assets/img/bnr_bg.png) no-repeat;
  background-size: cover;
  top:0;
  left:0;
  position: absolute;
  transform: translate(0);
  transition: all .3s ease-in-out;
}

.bnr__list-item a:hover {
  opacity: 1;
}

.bnr__list-item a:hover .bnr__list-item-img::after {
  transform: translate(100%);
}

.bnr__list-item-img img {
  width: 100%;
}

.bnr__list-item-txt {
  position: absolute;
  z-index: 5;
  width: 100%;
  top:50%;
  left:50%;
  transform: translateX(-50%) translateY(-50%);
  color: var(--color-white);
  display: grid;
  grid-template-columns:repeat(3,auto);
  justify-content: center;
  align-items: center;
}

.bnr__list-item-txt-line {
  content: '';
  width: 1px;
  height:70px;
  background: var(--color-white);
  transform: skew(-20deg);
  position: relative;
  transition: all .3s .1s;
  left:0;
}

.bnr__list--wide .bnr__list-item-txt-line {
  height:50px;
}

.bnr__list-item-txt-en {
  font-family: var(--fontfamily-en);
  font-size: var(--fontsize-61);
  font-style: italic;
  letter-spacing: 0.09em;
  position: relative;
  transition: all .3s .1s;
  left:0;
  padding: 0 20px 0 0;
}

.bnr__list--wide .bnr__list-item-txt-en {
  font-size: 3rem;
}

.bnr__list-item-txt-ja {
  font-size: var(--fontsize-31);
  font-weight: 500;
  position: relative;
  transition: all .3s .1s;
  left:0;
  padding-left: 20px;
  letter-spacing: 0.178em;
}

.bnr__list--wide .bnr__list-item-txt-ja {
  font-size: 1.8rem;
}

/* .bnr__list-item-txt-icon {
  border: 1.5px solid var(--color-white);
  border-radius: 100px;
  width: 40px;
  height: 40px;
  display: block;
  position: relative;
}

.bnr__list-item-txt-icon-arrow {
  display: inline-block;
  vertical-align: middle;
  color: var(--color-white);
  line-height: 1;
  position: relative;
  width: 35px;
  height: 1.5px;
  background: currentColor;
  left:30px;
  top:2px;
  transition: all .3s;
}

.bnr__list-item-txt-icon-arrow::after {
  content: '';
  width: 12px;
  height: 12px;
  border: 1.5px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  top: 1px;
  right: -1px;
}

.bnr__list-item a:hover .bnr__list-item-txt-icon-arrow {
  width: 45px;
}
 */

/* .bnr__list-item a:hover .bnr__list-item-txt-line {
  left:5px;
}

.bnr__list-item a:hover .bnr__list-item-txt-en {
  left:5px;
}

.bnr__list-item a:hover .bnr__list-item-txt-ja {
  left:5px;
} */


@media (max-width:767px) {
  .bnr__list {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .bnr__list-item-txt-line {
    height:40px;
  }

  .bnr__list-item-txt-en {
    padding: 0 15px 0 0;
    font-size: var(--fontsize-43);
  }

  .bnr__list-item-txt-ja {
    padding-left: 15px;
    font-size: var(--fontsize-20);
  }

  .bnr__list-item-txt-icon {
    width: 30px;
    height: 30px;
  }

  .bnr__list-item-txt-icon-arrow {
    position: relative;
    width: 35px;
    left:20px;
  }
}


/*==============================================
scroll
==============================================*/
.scroll {
  position: absolute;
  right:3vw;
  top:90vh;
}

.scroll--people {
  top:120vh;
}

.scroll-txt {
  writing-mode: vertical-rl;
  font-family: var(--fontfamily-en);
  font-style: italic;
  letter-spacing: 0.12em;
  position: absolute;
  top:-220px;
  left:-12px;
  font-size: var(--fontsize-18);
  color: var(--color-black);
  z-index: 9;
}

.scroll-line {
  width: 1px;
  height: 150px;
  margin:0 auto;
  background-color: transparent;
  position: relative;
  overflow: hidden;
  z-index: 9;
}

.scroll-line::before {
  content: '';
  width: 1px;
  height: 0;
  margin: 0 auto 0;
  background-color: var(--color-black);
  position: absolute;
  top: -100px;
  left: 0;
  animation: scroll-line 2s infinite normal;
}

@keyframes scroll-line {
  0% {height: 0px;}
  60% {height: 150px;}
  100% {height: 150px;}
}

@media (max-width:767px) {
  .scroll {
    right:15px;
    top:50vh;
  }

  .scroll-txt {
    writing-mode: vertical-rl;
    top:-190px;
    left:-8px;
  }

  .scroll-line {
    height: 75px;
  }

  @keyframes scroll-line {
    0% {height: 0px;}
    60% {height: 75px;}
    100% {height: 75px;}
  }

}