@charset "utf-8";
/* グリッドレイアウト設定 各コンテンツの大枠 */
.company-info-link {
  grid-column: 2 / 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  row-gap: 56px;
  column-gap: 48px;
  margin-top: 6rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .company-info-link {
    grid-template-columns: minmax(0, auto);
  }
}

/* グリッドレイアウト設定　個々コンテンツの枠 */
.image-link-wrapper {
  display: grid;
  justify-items: center;
  row-gap: 8px;
}

/* 画像 */
.company-info-link img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media screen and (max-width: 575px) {
  .company-info-link img {
    height: 250px;
  }
}

/* ホバーしたときに画像が拡大 */
.company-info-link img:hover {
  transform: scale(1.2);
  transition: all 0.5s;
}

/* ホバーしたときに画像のみを拡大　親要素からはみ出ないようにする*/
.img-wrap-hidden {
  overflow: hidden;
  width: 100%;
}

/* 文言 */
.company-info-link p {
  position: relative;
  display: inline-block;
  font-weight: bold;
  border-bottom: solid 3px #dadada;
  margin: 0 auto;
  padding: 5px 30%;
  width: 100%;
}

.company-info-link p:after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 3px;
  background-color: #77bcff;
}

/* ボタンのデザイン */
.btnlinestretches {
  display: block;
  text-align: center;
  text-decoration: none;
  max-width: 240px;
  padding: 1rem 4rem;
  font-weight: bold;
  color: var(--brand-cyan-link);
  background-color: var(--bg-offwhite);
  border-bottom: 2px solid var(--brand-cyan-link);
  border-radius: 45px;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
  transition: 0.5s;
  margin-top: 4rem;
  z-index: 20;
}

/*hoverした際の背景の形状*/
.btnlinestretches:hover {
  color: #fff;
  background: var(--brand-cyan-link);
  border-bottom: 2px solid #fff;
  transform: translateY(3px);
  text-decoration: none;
}

.description-wrap.character-direction-right.shadow-blue,
.description-wrap.character-direction-left.shadow-blue {
  padding: 10rem 0 0 0;
}

.description-wrap.shadow-blue img {
  box-shadow: 24px 24px 0px -5px var(--brand-blue);
}

/*=================================
　company_profile.htmlのcss
===================================*/
table.company-profile th,
table.company-profile td {
  width: 50%;
}

table.company-profile th {
  background: var(--bg-gray-light);
  vertical-align: middle;
  padding: 20px 8px !important;
}

table.company-profile td {
  text-align: left;
  padding: 20px 48px !important;
}

table.company-profile-detail {
  width: 90%;
  margin: 16px 0;
}

table.company-profile-detail th {
  text-align: center;
}

@media screen and (max-width: 991px) {
  table.company-profile th {
    width: 30%;
  }

  table.company-profile td {
    width: 70%;
  }

  table.company-profile-detail {
    width: 98%;
  }

  table.company-profile-detail th {
    width: 50%;
  }

  table.company-profile-detail td {
    width: 50%;
  }
}

@media screen and (max-width: 575px) {
  .tr-flex {
    display: flex;
    flex-direction: column;
  }

  table.company-profile .tr-flex td {
    padding: 20px 16px !important;
  }

  table.company-profile .tr-flex > th,
  table.company-profile .tr-flex > td {
    width: 100%;
  }
}

/*=================================
　represent_greeting.htmlのcss
===================================*/
.page-hero .img-position {
  object-position: 80% 45%;
  height: 20rem;
}

iframe {
  border: none;
  width: 100%;
  height: 32rem;
}

/*=================================
　recreation.htmlのcss
===================================*/

/*=================================
スライダーのためのcss
===================================*/
.slider {
  /*横幅94%で左右に余白を持たせて中央寄せ*/
  width: 94%;
  margin: 0 auto;
}

.slider img {
  width: 60vw; /*スライダー内の画像を60vwにしてレスポンシブ化*/
  height: auto;
}

.slider .slick-slide {
  transform: scale(0.8); /*左右の画像のサイズを80%に*/
  transition: all 0.5s; /*拡大や透過のアニメーションを0.5秒で行う*/
  opacity: 0.5; /*透過50%*/
}

.slider .slick-slide.slick-center {
  transform: scale(1); /*中央の画像のサイズだけ等倍に*/
  opacity: 1; /*透過なし*/
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute; /*絶対配置にする*/
  top: 42%;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #666; /*矢印の色*/
  border-right: 2px solid #666; /*矢印の色*/
  height: 15px;
  width: 15px;
}

.slick-prev {
  /*戻る矢印の位置と形状*/
  left: -1.5%;
  transform: rotate(-135deg);
}

.slick-next {
  /*次へ矢印の位置と形状*/
  right: -1.5%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px; /*ドットボタンのサイズ*/
  height: 8px; /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: var(--border-light); /*ドットボタンの色*/
}

.slick-dots .slick-active button {
  background: var(--text-black); /*ドットボタンの現在地表示の色*/
}

.slider img {
  width: 40vw;
  max-height: 560px;
  object-fit: cover;
}

@media screen and (max-width: 575px) {
  .responsive-recreation-grid-pos {
    grid-column: 1 / -1;
  }

  .slider img {
    width: 72vw;
  }
}

/*=================================
　rational_consideration.htmlのcss
===================================*/
ol.blue-list {
  counter-reset: number; /*数字をリセット*/
  list-style-type: none !important; /*数字を一旦消す*/
  padding: 0.5em;
  background: #f5faff;
}

ol.blue-list > li {
  position: relative;
  padding-left: 30px;
  line-height: 1.5em;
  padding: 0.5em 0.5em 0.5em 30px;
}

ol.blue-list > li:before {
  /* 以下数字をつける */
  position: absolute;
  counter-increment: number;
  content: counter(number);
  /*以下数字のデザイン変える*/
  display: inline-block;
  background: #5c9ee7;
  color: white;
  font-family: "Avenir", "Arial Black", "Arial", sans-serif;
  font-weight: bold;
  font-size: 0.9375rem;
  border-radius: 50%;
  left: 0;
  width: 1.5625rem;
  height: 1.5625rem;
  line-height: 1.5625rem;
  text-align: center;
  /*以下 上下中央寄せのため*/
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

ol.blue-list p {
  margin-bottom: 0;
  padding-left: 0.8rem;
}

.d-flex-gap64 {
  gap: 64px;
  align-items: center;
}

.rational_consideration-img {
  object-position: 50% 75% !important;
}

/*=================================
　basic_policy.htmlのcss
===================================*/
.basic_policy-img {
  object-position: 50% 30% !important;
}

ol.basic_policy-list {
  counter-reset: list;
  list-style-type: none;
  padding: 0;
}

ol.basic_policy-list > li {
  position: relative;
  color: var(--text-black);
  padding: 0 0 0 23px;
  margin: 7px 0px;
  line-height: 30px;
  border-bottom: dashed 1px var(--border-light);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}

ol.basic_policy-list > li:before {
  counter-increment: list;
  content: counter(list) ".";
  display: block;
  position: absolute;
  left: 0px;
  font-weight: bold;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

ol.basic_policy-list > li.basic_policy-list-top:before {
  top: 9%;
}

ol.basic_policy-list li:hover,
ol.basic_policy-list li:hover:before {
  font-size: 1.2rem;
  color: #ffa79f;
}

/*================================
　プライバシーマーク　20001671(07)号
==================================*/
.privacy-size115 {
  width: 115px;
  margin-left: -1rem;
}

/*================================
　画像の大きさ設定
==================================*/
.description-bbq-img {
  width: 640px;
}

.description-new-employee-welcome-img {
  width: 640px;
  height: 400px;
}

/*=================================
　final_account.htmlのcss
===================================*/
.final_account-img {
  object-position: 50% 25% !important;
}

/*=================================
　access.htmlのcss
===================================*/
.access-img {
  object-position: 50% 30% !important;
}

.text-foleft {
  text-align: left;
}
