@charset "UTF-8";
/*-- settingフォルダまとめ用 --*/
:root {
  --color-primary: #488ACE;
  --color-accent: #dd0000;
  --color-white: #ffffff;
  --color-white-rgb: 255,255,255;
  --color-black: #000000;
  --color-black-rgb: 0,0,0;
  --color-black-2: #111111;
  --color-gray-1: #252525;
  --color-gray-2: #525252;
  --color-gray-3: #cccccc;
  --color-gray-4: #f6f6f6;
  --color-blue: #4285f4;
  --color-blue-2: #E8F3FF;
  --color-background: var(--color-white);
  --color-text: var(--color-gray-2);
  --color-link: var(--color-blue);
  --color-btn: var(--color-primary);
  --color-tit: var(--color-gray-1);
  --color-assort: var(--color-primary);
  --color-table: var(--color-primary);
  --color-tableline: var(--color-gray-3);
  --color-footer: var(--color-primary);
  --color-list: var(--color-primary);
  --color-bg: var(--color-gray-4);
  --margin-40: min(40px,4vw);
  --section-padding-sp: 64px 15px;
  --section-padding-pc: 120px 30px;
  --section-padding: var(--section-padding-sp);
  --border-radius-sp: 4px;
  --border-radius-pc: 4px;
  --border-radius: var(--border-radius-sp);
}

/*-- settingフォルダまとめ用 --*/
/* ブレイクポイント設定
--------------------------*/
/*==========================
 mixin設定
==========================*/
/*==========================
common - 共通
==========================*/
*, *:before, *:after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  outline: 0;
}

html {
  font-size: 62.5%;
  font-weight: normal;
}

body {
  width: 100%;
  min-width: 300px;
  background-color: var(--color-background);
  color: var(--color-text);
  font-size: 1.4rem;
  line-height: 1.75;
  letter-spacing: 1px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt" 1;
  font-kerning: auto;
}
@media (min-width: 768px) {
  body {
    --border-radius: var(--border-radius-pc);
    --section-padding: var(--section-padding-pc);
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  body.open {
    overflow: hidden;
    height: 100%;
  }
}

a {
  color: var(--color-link);
  transition: 0.4s;
}
@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    color: var(--color-text);
  }
  a:hover {
    opacity: 0.6;
  }
}

img {
  width: 100%;
}

.font-bold {
  font-weight: bold;
}

.text-center {
  text-align: center;
}

.mb-5 {
  margin-bottom: 3rem;
}

@media (max-width: 767px) {
  .spHdn {
    display: none;
  }
}

@media (min-width: 768px) {
  .pcHdn {
    display: none;
  }
}

.btn {
  text-align: center;
}
.btn a {
  display: inline-block;
  background: var(--color-btn);
  color: var(--color-white);
  padding: 16px;
  width: 100%;
  font-size: 1.8rem;
  line-height: 1.4;
  border-radius: var(--border-radius);
}
@media (min-width: 768px) {
  .btn a {
    padding: 24px 16px;
    width: 60%;
  }
}

.btn-map {
  background: var(--color-black);
  color: var(--color-white);
  font-size: 0.85em;
  font-weight: bold;
  padding: 0.6em 0.8em;
  display: inline-block;
  line-height: 1;
  border-radius: 5px;
  margin: 0.5em 0 0 0;
}
.btn-map span {
  position: relative;
  display: inline-block;
  padding: 0 1em 0 0;
}
.btn-map span::before, .btn-map span::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.3s ease-out;
}
.btn-map span::after {
  content: "";
  right: 0;
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  transform: rotate(-45deg);
}

/* keyv - キーヴィジュアル
--------------------------*/
#keyv {
  padding-top: 54px;
}

/* main - メインコンテンツ
--------------------------*/
.contents {
  position: relative;
  width: 100%;
}

.contents-inn {
  padding: var(--section-padding);
}
@media (min-width: 768px) {
  .contents-inn {
    max-width: 1200px;
    margin: 0 auto;
  }
}

.inner {
  padding: 40px 8px;
  background: rgba(var(--color-white-rgb), 0.8);
}
@media (min-width: 768px) {
  .inner {
    margin: 0 auto;
    padding: 80px 30px;
  }
}

.contents-ttl {
  margin-bottom: 32px;
  text-align: center;
}
@media (min-width: 768px) {
  .contents-ttl {
    margin-bottom: 80px;
  }
}
.contents-ttl img {
  width: auto;
  height: 75px;
}
@media (min-width: 768px) {
  .contents-ttl img {
    height: 114px;
  }
}
.contents-ttl::after {
  content: "";
  display: block;
  background: var(--color-assort);
  margin: 12px auto 0;
  width: 60px;
  height: 6px;
  border-radius: 3px;
}

.contents-subttl {
  margin-bottom: 16px;
  font-size: 1.8rem;
  color: var(--color-tit);
  font-weight: bold;
  letter-spacing: 0.2em;
  border-bottom: 1px solid var(--color-assort);
}
@media (min-width: 768px) {
  .contents-subttl {
    margin-bottom: 28px;
    font-size: 2.4rem;
  }
}

.d-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.d-flex li {
  width: 100%;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .d-flex li {
    margin-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .d-flex.flex-2-sp-item li {
    width: calc(50% - 8px);
  }
}
@media (min-width: 768px) {
  .d-flex.flex-2-item li {
    width: calc(50% - 16px);
  }
  .d-flex.flex-3-item li {
    width: calc(33.3333333333% - 21px);
  }
  .d-flex.flex-4-item li {
    width: calc(25% - 24px);
  }
}

.layout-table-normal dl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 6px;
  width: 100%;
}
.layout-table-normal dt {
  background-color: var(--color-table);
  padding: 12px 8px;
  width: 100%;
  color: var(--color-white);
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .layout-table-normal dt {
    padding: 24px;
    width: 180px;
  }
}
.layout-table-normal dd {
  background-color: var(--color-background);
  border: solid 1px var(--color-table);
  margin-left: 0;
  padding: 12px 8px;
  vertical-align: top;
  width: 100%;
}
@media (min-width: 768px) {
  .layout-table-normal dd {
    margin-left: 6px;
    padding: 24px;
    flex: 1;
  }
}
.layout-table-line dl {
  display: flex;
  border-bottom: solid 1px var(--color-table);
  width: 100%;
}
.layout-table-line dl:last-child {
  border-bottom: none;
}
.layout-table-line dt {
  padding: 16px 8px;
  width: 100px;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .layout-table-line dt {
    padding: 24px;
    width: 180px;
  }
}
.layout-table-line dd {
  border-left: solid 1px var(--color-table);
  padding: 16px 8px;
  vertical-align: middle;
  flex: 1;
}
@media (min-width: 768px) {
  .layout-table-line dd {
    padding: 24px;
  }
}
.layout-table-column {
  border: 1px solid var(--color-tableline);
  border-collapse: collapse;
  background: var(--color-background);
  width: 100%;
}
.layout-table-column th, .layout-table-column td {
  padding: 12px 8px;
  border: 1px solid var(--color-tableline);
  border-collapse: collapse;
}
@media (min-width: 768px) {
  .layout-table-column th, .layout-table-column td {
    padding: 12px;
  }
}
.layout-table-column thead {
  background: var(--color-table);
  color: var(--color-white);
}
/*==========================
image-box - パララックス
==========================*/
.image-box .image-box-area {
  width: 100%;
  height: 200px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: scroll;
  background-color: rgba(0, 0, 0, 0);
}
@media (min-width: 768px) {
  .image-box .image-box-area {
    height: 330px;
    background-attachment: fixed;
  }
}
.image-box .image-box-area.n-01 {
  background-image: url(../img/top/parallax-ph-001.jpg);
}

/*==========================
sliding - スライド
==========================*/
.sliding {
  overflow: hidden;
}
.sliding .sliding-area {
  height: 200px;
  animation: slide 80s linear infinite;
  -webkit-animation: slide 80s linear infinite;
  -moz-animation: slide 80s linear infinite;
  background-repeat: repeat-x;
  background-size: cover;
}
@media (min-width: 768px) {
  .sliding .sliding-area {
    height: 328px;
  }
}
.sliding .sliding-area.n-01 {
  background-image: url(../img/top/sliding-ph-001.jpg);
}

@keyframes slide {
  0% {
    background-position: 0px 0;
  }
  100% {
    background-position: 2970px 0;
  }
}
/*==========================
header - ヘッダー
==========================*/
#header {
  position: fixed;
  background: var(--color-background);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 10000;
}
#header .header-logo {
  height: 54px;
  padding: 8px;
}
#header .header-logo img {
  width: auto;
  height: 100%;
}
#header nav {
  display: flex;
}
@media (min-width: 768px) {
  #header nav {
    flex-direction: row-reverse;
    font-weight: bold;
    font-size: 1.1rem;
  }
}
@media (min-width: 992px) {
  #header nav {
    font-size: 1.7rem;
  }
}
#header nav a {
  display: block;
  height: 54px;
  line-height: 1.5;
  color: var(--color-text);
}
@media (min-width: 768px) {
  #header nav a {
    padding: 20px 0;
  }
}
@media (min-width: 992px) {
  #header nav a {
    padding: 15px 0;
  }
}
#header .header-btn {
  margin-right: 60px;
  white-space: nowrap;
}
@media (min-width: 768px) {
  #header .header-btn {
    margin-right: 0;
  }
}
#header .header-btn a {
  background: var(--color-btn);
  color: var(--color-white);
  padding: 11px 16px;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.2em;
}
@media (min-width: 768px) {
  #header .header-btn a {
    padding: 20px 12px;
    font-size: 1.1rem;
    line-height: 1.75;
  }
}
@media (min-width: 992px) {
  #header .header-btn a {
    padding: 15px 20px;
    font-size: 1.6rem;
  }
}
#header .header-nav ul {
  display: flex;
}
#header .header-nav ul li {
  width: 100%;
  display: none;
}
@media (min-width: 768px) {
  #header .header-nav ul li {
    margin-right: 10px;
    white-space: nowrap;
    display: block;
    width: auto;
  }
}
@media (min-width: 992px) {
  #header .header-nav ul li {
    margin-right: 16px;
  }
}
#header .menu-btn {
  position: fixed;
  display: block;
  background-color: var(--color-black-2);
  width: 60px;
  height: 54px;
  top: 0;
  right: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  z-index: 9;
}
#header .menu-btn::before, #header .menu-btn::after {
  position: absolute;
  display: block;
  width: 28px;
  transition: all 0.3s ease;
}
#header .menu-btn::before {
  content: "";
  background-color: var(--color-background);
  border: none;
  height: 2px;
  top: 17px;
  left: 16px;
}
#header .menu-btn::after {
  content: "";
  border-top: solid 2px var(--color-white);
  border-bottom: solid 2px var(--color-white);
  height: 10px;
  top: 26px;
  left: 16px;
}
@media (min-width: 768px) {
  #header .menu-btn {
    display: none;
  }
}
@media (max-width: 767px) {
  .open #header .menu-btn {
    transition: all 0.3s ease;
  }
  .open #header .menu-btn::before, .open #header .menu-btn::after {
    background-color: var(--color-background);
    border: none;
    height: 2px;
    top: 25px;
    transform: translateX(-75%);
  }
  .open #header .menu-btn::before {
    content: "";
    transform: rotate(-45deg);
  }
  .open #header .menu-btn::after {
    content: "";
    transform: rotate(45deg);
  }
  .open #header .menu-box {
    position: fixed;
    top: 54px;
    left: 0;
    flex-wrap: wrap;
    align-content: flex-start;
    width: 100%;
    height: 100%;
    background: rgba(var(--color-black-rgb), 0.8);
    padding: 20px;
    overflow: scroll;
  }
  .open #header .menu-box li {
    display: block;
    width: 100%;
    border-bottom: 1px dotted var(--color-white);
  }
  .open #header .menu-box li a {
    position: relative;
    height: auto;
    padding: 16px 20px 16px 10px;
    color: var(--color-white);
  }
  .open #header .menu-box li a::after {
    position: absolute;
    top: 50%;
    right: 5px;
    content: "";
    width: 8px;
    height: 8px;
    border-top: 1px solid var(--color-white);
    border-right: 1px solid var(--color-white);
    transform: rotate(45deg) translateX(-50%);
  }
}

/*==========================
footer - フッター
==========================*/
#footer {
  background-color: var(--color-footer);
  padding: 10px 60px;
  text-align: center;
}
@media (max-width: 767px) {
  #footer {
    padding: 10px 10px 60px 10px;
  }
}
#footer .copyright {
  line-height: 1;
}
#footer small {
  color: var(--color-white);
  font-size: 1rem;
}
#footer .ga-pdf a {
  color: var(--color-white);
  text-decoration: none;
}
#footer .ga-pdf a:hover {
  text-decoration: underline;
}

#page-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 300;
}
#page-top a {
  position: relative;
  display: block;
  background-color: var(--color-footer);
  border: solid 4px var(--color-white);
  border-radius: var(--border-radius);
  width: 52px;
  height: 52px;
  overflow: hidden;
}
#page-top a::before {
  content: "";
  position: absolute;
  border: 0;
  border-top: solid 2px var(--color-white);
  border-right: solid 2px var(--color-white);
  width: 20px;
  height: 20px;
  transform: rotate(315deg);
  top: calc(50% - 5px);
  left: calc(50% - 10px);
}

/*==========================
list - 求人一覧
==========================*/
#list .list-box > li {
  background: var(--color-background);
  border: 2px solid var(--color-list);
  padding: 8px;
}
@media (min-width: 768px) {
  #list .list-box > li {
    padding: 16px;
  }
}
#list .list-box .icon-koyo {
  justify-content: flex-start;
}
#list .list-box .icon-koyo span {
  border: 1px solid var(--color-list);
  padding: 0 8px;
  color: var(--color-list);
  font-size: 1.2rem;
  margin: 0 8px 8px 0;
  white-space: nowrap;
}
@media (min-width: 768px) {
  #list .list-box .icon-koyo span {
    padding: 6px 16px;
  }
}
#list .list-box .list-ttl {
  margin: 8px 0 16px;
}
#list .list-box dl {
  border-collapse: collapse;
  margin-bottom: 24px;
  width: 100%;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  #list .list-box dl {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    border-top: 1px solid var(--color-list);
  }
}
#list .list-box dl dt, #list .list-box dl dd {
  padding: 4px 8px;
}
@media (min-width: 768px) {
  #list .list-box dl dt, #list .list-box dl dd {
    padding: 16px;
  }
}
#list .list-box dl dt {
  width: 100%;
  background: var(--color-list);
  color: var(--color-white);
}
@media (min-width: 768px) {
  #list .list-box dl dt {
    width: 114px;
    background: var(--color-background);
    color: var(--color-list);
    border-bottom: 1px solid var(--color-list);
  }
}
#list .list-box dl dd {
  width: 100%;
}
@media (min-width: 768px) {
  #list .list-box dl dd {
    width: calc(100% - 114px);
    border-bottom: 1px solid var(--color-list);
  }
}
#list .list-box .list-btn {
  justify-content: center;
}
#list .list-box .list-btn li {
  border: 2px solid var(--color-list);
  text-align: center;
  width: 100%;
  margin: 0 12px 8px;
}
@media (min-width: 768px) {
  #list .list-box .list-btn li {
    width: calc(50% - 24px);
  }
}
#list .list-box .list-btn li a {
  display: block;
  padding: 8px;
  color: var(--color-list);
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  #list .list-box .list-btn li a {
    padding: 16px;
  }
}

/*==========================
 案件別スタイル
==========================*/
#contents1 {
  background: url("../img/top/contents1-data-bg.jpg") no-repeat bottom;
  background-color: white;
}

#contents2 {
  background-color: #E8F3FF;
}

#contents3 {
  background: url("../img/top/contents3-bg-left.png") left top no-repeat, url("../img/top/contents3-bg-right.png") right bottom no-repeat, var(--color-background);
  background-size: 50% auto, 50% auto;
}
@media (min-width: 768px) {
  #contents3 {
    background-size: 620px 420px, 693px 400px;
  }
}

#mensetsu {
  background: var(--color-bg);
}

#list {
  background: var(--color-bg);
}

#contact {
  background: url("../img/top/contact-bg.jpg") center/cover no-repeat;
}
#contact .tel {
  font-size: 1.2rem;
  line-height: 1.3;
  margin-top: 24px;
}
#contact .tel a {
  color: var(--color-text);
  font-size: 2rem;
}
@media (min-width: 768px) {
  #contact .tel a {
    font-size: 3.2rem;
  }
}

/**************共通**************/
/* 画像アスペクト比
------------------------------*/
.aspect-ratio-kv {
  --aspect-ratio-sp: 5 / 6;
  --aspect-ratio-pc: 192 / 85;
}
.aspect-ratio-1x1 {
  --aspect-ratio-sp: 1/1;
  --aspect-ratio-pc: 1/1;
}
.aspect-ratio-3x2 {
  --aspect-ratio-sp: 3 / 2;
  --aspect-ratio-pc: 3 / 2;
}
.aspect-ratio-data {
  --aspect-ratio-sp: 50 / 103;
  --aspect-ratio-pc: 55 / 31;
}
.aspect-ratio img {
  aspect-ratio: var(--aspect-ratio-sp);
}
@media (min-width: 768px) {
  .aspect-ratio img {
    aspect-ratio: var(--aspect-ratio-pc);
  }
}

/* 余白
--------------------------*/
.mb-0 {
  margin-bottom: 0 !important;
}

@media (min-width: 768px) {
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
}

/* 改行
--------------------------*/
@media (max-width: 767px) {
  .spHdn {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .pcHdn {
    display: none !important;
  }
}
/* データで知るエリア
--------------------------*/
#contents1 .contents-inn .text {
  margin-bottom: 32px;
  color: #333333;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.075em;
  text-align: center;
}
@media (min-width: 768px) {
  #contents1 .contents-inn .text {
    margin-bottom: 80px;
  }
}

#contents1 .contents-inn .list li figure img {
  border-radius: 24px;
}
@media (min-width: 768px) {
  #contents1 .contents-inn .list li figure img {
    border-radius: 50px;
  }
}

/* 写真で知るエリア
--------------------------*/
#contents2 .contents-inn {
  padding-top: 40px;
}
@media (min-width: 768px) {
  #contents2 .contents-inn {
    padding-top: 80px;
  }
}

#contents2 .company-box {
  display: grid;
  grid-template-columns: 3.8fr 1fr 1fr 3.8fr;
  grid-template-rows: 1.2fr 1fr 1fr 1.2fr 1fr;
  gap: var(--margin-40);
}
@media (max-width: 767px) {
  #contents2 .company-box {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.2fr 1fr 1fr 1.2fr 1fr;
    --margin-40: 15px;
  }
}

#contents2 .company-item {
  position: relative;
  container-type: inline-size;
  border-radius: 24px;
  overflow: hidden;
}
#contents2 .company-item:nth-child(1) {
  grid-column: 1/5;
  grid-row: 1/5;
  aspect-ratio: 110/43;
}
@media (max-width: 767px) {
  #contents2 .company-item:nth-child(1) {
    grid-column: 1/3;
    grid-row: 1/2;
  }
}
#contents2 .company-item:nth-child(2) {
  grid-column: 1/3;
  grid-row: 2/3;
  aspect-ratio: 53/35;
}
@media (max-width: 767px) {
  #contents2 .company-item:nth-child(2) {
    grid-column: 1/2;
  }
}
#contents2 .company-item:nth-child(3) {
  grid-column: 1/3;
  grid-row: 3/4;
}
@media (max-width: 767px) {
  #contents2 .company-item:nth-child(3) {
    grid-column: 1/2;
  }
}
#contents2 .company-item:nth-child(4) {
  grid-column: 3/5;
  grid-row: 2/4;
}
@media (max-width: 767px) {
  #contents2 .company-item:nth-child(4) {
    grid-column: 2/3;
  }
}
#contents2 .company-item:nth-child(5) {
  grid-column: 1/5;
  grid-row: 4/5;
}
@media (max-width: 767px) {
  #contents2 .company-item:nth-child(5) {
    grid-column: 1/3;
  }
}
#contents2 .company-item:nth-child(6) {
  grid-column: 1/3;
  grid-row: 5/6;
}
@media (max-width: 767px) {
  #contents2 .company-item:nth-child(6) {
    grid-column: 1/2;
  }
}
#contents2 .company-item:nth-child(7) {
  grid-column: 3/5;
  grid-row: 5/6;
}
@media (max-width: 767px) {
  #contents2 .company-item:nth-child(7) {
    grid-column: 2/3;
    grid-row: 5/6;
  }
}
#contents2 .company-item:nth-child(8) {
  grid-column: 1/3;
  grid-row: 6/6;
}
@media (max-width: 767px) {
  #contents2 .company-item:nth-child(8) {
    grid-column: 1/3;
    grid-row: 7/7;
  }
}
#contents2 .company-item:nth-child(9) {
  grid-column: 3/5;
  grid-row: 6/6;
}
@media (max-width: 767px) {
  #contents2 .company-item:nth-child(9) {
    grid-column: 1/3;
    grid-row: 6/7;
  }
}
#contents2 .company-item:nth-child(1)::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/top/contents2-company-ph-001.jpg) center center;
  background-size: cover;
  transition: all 0.3s ease-out;
}
#contents2 .company-item:nth-child(2)::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/top/contents2-company-ph-002.jpg) center center;
  background-size: cover;
  transition: all 0.3s ease-out;
}
#contents2 .company-item:nth-child(3)::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/top/contents2-company-ph-003.jpg) center center;
  background-size: cover;
  transition: all 0.3s ease-out;
}
#contents2 .company-item:nth-child(4)::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/top/contents2-company-ph-004.jpg) center center;
  background-size: cover;
  transition: all 0.3s ease-out;
}
#contents2 .company-item:nth-child(5)::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/top/contents2-company-ph-005.jpg) center center;
  background-size: cover;
  transition: all 0.3s ease-out;
}
#contents2 .company-item:nth-child(6)::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/top/contents2-company-ph-006.jpg) center center;
  background-size: cover;
  transition: all 0.3s ease-out;
}
#contents2 .company-item:nth-child(7)::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/top/contents2-company-ph-007.jpg) center center;
  background-size: cover;
  transition: all 0.3s ease-out;
}
#contents2 .company-item:nth-child(8)::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/top/contents2-company-ph-008.jpg) center center;
  background-size: cover;
  transition: all 0.3s ease-out;
}
#contents2 .company-item:nth-child(9)::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/top/contents2-company-ph-009.jpg) center center;
  background-size: cover;
  transition: all 0.3s ease-out;
}
@media (min-width: 768px) {
  #contents2 .company-item {
    border-radius: 50px;
  }
  #contents2 .company-item:hover::before {
    transform: scale(1.05);
  }
  #contents2 .company-item:hover .company-tit {
    background-color: #ffffff;
    color: #111111;
  }
}
@media (max-width: 767px) {
  #contents2 .company-item:nth-child(-n+2) .company-tit {
    font-size: min(1.4rem, 8cqw);
  }
  #contents2 .company-item:nth-child(8)::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../img/top/contents2-company-ph-008.jpg) center top;
    background-repeat: no-repeat;
    background-size: 65%;
    background-color: #fff;
    transition: all 0.3s ease-out;
  }
  #contents2 .company-item:nth-child(9)::before {
    background-position: top;
  }
}
#contents2 .company-item a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
  cursor: pointer;
}
#contents2 .company-item a:hover {
  opacity: 1;
}

#contents2 .company-tit {
  position: absolute;
  top: 0;
  left: 0;
  margin-bottom: 0;
  padding: min(22px, 1.2vw) min(48px, 2.5vw);
  background-color: #111111;
  color: #ffffff;
  font-weight: bold;
  font-size: 2rem;
  border-right: solid 1px #111111;
  border-bottom: solid 1px #111111;
  transition: all 0.3s ease-out;
}
@media (max-width: 767px) {
  #contents2 .company-tit {
    padding: 6px 16px;
    font-size: 1.4rem;
    line-height: 1.2;
    text-align: right;
  }
}

#contents2 .company-box .company-item:nth-child(1) .company-tit {
  left: unset;
  right: 0;
  border-radius: 0 50px 0 24px;
  border-right: unset;
  border-left: solid 1px #111111;
}
@media (max-width: 767px) {
  #contents2 .company-box .company-item:nth-child(1) .company-tit {
    border-radius: 0 24px 0 10px;
  }
}

#contents2 .company-box .company-item:nth-child(2) .company-tit {
  border-radius: 50px 0 24px 0;
}
@media (max-width: 767px) {
  #contents2 .company-box .company-item:nth-child(2) .company-tit {
    border-radius: 24px 0 10px 0;
  }
}

#contents2 .company-box .company-item:nth-child(3) .company-tit {
  border-radius: 50px 0 24px 0;
}
@media (max-width: 767px) {
  #contents2 .company-box .company-item:nth-child(3) .company-tit {
    border-radius: 24px 0 10px 0;
  }
}

#contents2 .company-box .company-item:nth-child(4) .company-tit {
  left: unset;
  right: 0;
  border-radius: 0 50px 0 24px;
  border-right: unset;
  border-left: solid 1px #111111;
}
@media (max-width: 767px) {
  #contents2 .company-box .company-item:nth-child(4) .company-tit {
    border-radius: 0 24px 0 10px;
  }
}

#contents2 .company-box .company-item:nth-child(5) .company-tit {
  border-radius: 50px 0 24px 0;
}
@media (max-width: 767px) {
  #contents2 .company-box .company-item:nth-child(5) .company-tit {
    border-radius: 24px 0 10px 0;
  }
}

#contents2 .company-box .company-item:nth-child(6) .company-tit {
  border-radius: 50px 0 24px 0;
}
@media (max-width: 767px) {
  #contents2 .company-box .company-item:nth-child(6) .company-tit {
    border-radius: 24px 0 10px 0;
  }
}

#contents2 .company-box .company-item:nth-child(7) .company-tit {
  left: unset;
  right: 0;
  border-radius: 0 50px 0 24px;
  border-right: unset;
  border-left: solid 1px #111111;
}
@media (max-width: 767px) {
  #contents2 .company-box .company-item:nth-child(7) .company-tit {
    border-radius: 0 24px 0 10px;
  }
}

#contents2 .company-box .company-item:nth-child(8) .company-tit {
  border-radius: 50px 0 24px 0;
}
@media (max-width: 767px) {
  #contents2 .company-box .company-item:nth-child(8) .company-tit {
    border-radius: 24px 0 10px 0;
  }
}

#contents2 .company-box .company-item:nth-child(9) .company-tit {
  left: unset;
  right: 0;
  border-radius: 0 50px 0 24px;
  border-right: unset;
  border-left: solid 1px #111111;
}
@media (max-width: 767px) {
  #contents2 .company-box .company-item:nth-child(9) .company-tit {
    border-radius: 0 24px 0 10px;
  }
}

/* モーダル
--------------------------*/
#contents2 .modal-company {
  display: none;
  position: fixed;
  top: 72px;
  left: 50%;
  z-index: 1000;
  width: min(calc(100% - 32px), 735px);
  height: auto;
  margin: 0 auto;
  transform: translateX(-50%);
  border-radius: 24px;
  background-color: #fff;
  transform: translateX(-50%) translateY(-50px); /* 初期位置を上にずらす */
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
@media (min-width: 768px) {
  #contents2 .modal-company {
    top: 112px;
    width: min(calc(100% - 60px), 1080px);
    border-radius: 50px;
  }
}
@media (min-width: 992px) {
  #contents2 .modal-company {
    top: 185px;
  }
}

#contents2 .modal-company.is-show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.modal-overlay {
  width: 100vw;
  height: 100vh;
  background-color: #111111;
  opacity: 0.7;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

#contents2 .modal-wrapper {
  position: relative;
  padding: 52px 24px 32px;
}
@media (min-width: 768px) {
  #contents2 .modal-wrapper {
    padding: 48px;
  }
}
#contents2 .modal-wrapper .modal-box {
  display: flex;
}
#contents2 .modal-wrapper .modal-box .modal-image img {
  border-radius: 5px;
}
#contents2 .modal-wrapper .modal-box .modal-title {
  margin-bottom: 16px;
  color: #333333;
  font-size: 2.4rem;
  line-height: 1.167;
  font-weight: bold;
  letter-spacing: 0.075em;
}
@media (min-width: 768px) {
  #contents2 .modal-wrapper .modal-box .modal-title {
    margin-bottom: 24px;
    font-size: 2rem;
  }
}
@media (min-width: 992px) {
  #contents2 .modal-wrapper .modal-box .modal-title {
    margin-bottom: 24px;
    font-size: 2.4rem;
  }
}
#contents2 .modal-wrapper .modal-box .modal-text {
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.75;
  font-weight: bold;
  letter-spacing: 0.075em;
}
@media (min-width: 768px) {
  #contents2 .modal-wrapper .modal-box .modal-text {
    font-size: 1.6rem;
    line-height: 1.75;
  }
}

#contents2 .modal-close-btn {
  position: absolute;
  top: 14px;
  right: 24px;
  width: 24px;
  aspect-ratio: 1/1;
}
@media (min-width: 768px) {
  #contents2 .modal-close-btn {
    top: 20px;
    right: 40px;
    width: 40px;
  }
}
@media (min-width: 992px) {
  #contents2 .modal-close-btn {
    top: 40px;
  }
}
#contents2 .modal-close-btn:before, #contents2 .modal-close-btn:after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% - 12px);
  width: 24px;
  height: 2px;
  background-color: #000000;
}
@media (min-width: 768px) {
  #contents2 .modal-close-btn:before, #contents2 .modal-close-btn:after {
    left: calc(50% - 24px);
    width: 40px;
  }
}
#contents2 .modal-close-btn:before {
  transform: rotate(45deg);
}
#contents2 .modal-close-btn:after {
  transform: rotate(-45deg);
}

#contents2 .d-flex.flex-2-item li {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  #contents2 .d-flex.flex-2-item li:nth-child(1) {
    margin-bottom: 24px;
  }
}
#contents2 .d-flex.flex-2-item li:nth-child(2) {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  #contents2 .d-flex.flex-2-item li:nth-child(2) {
    display: block;
  }
}

/* 求人一覧を見る
--------------------------*/
#contents2 .button {
  width: 100%;
  max-width: 328px;
  margin: 0 auto;
}
#contents2 .button a {
  display: block;
  width: 100%;
  margin: 64px 0 0;
  padding: 20px 0;
  border-radius: 3px;
  background: var(--color-btn);
  box-shadow: 0 1px 0 1px #ccc;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.75;
  letter-spacing: 0.2em;
  text-align: center;
}
@media (min-width: 768px) {
  #contents2 .button a {
    margin-top: 80px;
  }
}/*# sourceMappingURL=style.css.map */