@charset "UTF-8";
/******************************************************************
カスタム　○○○○用レイアウト
*****************************************************************/
/******************************************************************
  1■body
*****************************************************************/
*, *:before, *:after {
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  color: #202020;
  font-size: 1.6rem;
  line-height: 1;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt" 1;
  font-kerning: auto;
}

.data-for-aidemlog { /* 独自ログ計測用 */ }

/* フォント */
.font-min {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.font-bold {
  font-weight: bold;
}

.small {
  font-size: 80%;
}

.big {
  font-size: 140%;
}

/* 画像 */
img {
  max-width: 100%;
}

.cent-img {
  height: 200px;
  text-align: center;
  margin: 0 0 20px;
}
.cent-img img {
  position: relative;
  top: 50%;
  max-width: 100%;
  max-height: 100%;
  transform: translateY(-50%);
}

.img-hover {
  overflow: hidden;
}
.img-hover img {
  transition: 1s linear;
}
.img-hover:hover img {
  transform: scale(1.05) rotate(0.1deg);
}

#container {
  padding-top: 50px;
  min-height: 700px;
}

/* = Selected Text
----------------------------------------------- */
::-moz-selection {
  background: rgba(175, 1, 122, 0.1); /* Safari */
}
::selection {
  background: rgba(175, 1, 122, 0.1); /* Safari */
}

::-moz-selection {
  background: rgba(175, 1, 122, 0.1); /* Firefox */
}

/******************************************************************
  2■Common
*****************************************************************/
a {
  color: #202020;
  transition: all 0.3s ease-out;
}
a:hover {
  opacity: 0.7;
}

/*矢印 common*/
.icon {
  position: relative;
}
.icon::before, .icon::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.3s ease-out;
}

/* 矢印1 */
.arrow01::after {
  content: "";
  right: 10px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
}
.arrow01:hover::after {
  right: 5px;
}

/* 矢印2 */
.arrow02::before {
  content: "";
  left: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #d70c19;
}
.arrow02::after {
  content: "";
  left: 4px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
}

/* 矢印3 */
.arrow03::after {
  content: "";
  display: block;
  position: absolute;
  right: 10px;
  width: 24px;
  height: 18px;
  background: url(../img/common/icon-other.svg) no-repeat center center;
  background-size: contain;
}

/* 矢印4 */
.arrow04::after {
  content: "";
  right: 20px;
  width: 20px;
  height: 20px;
  transform: rotate(45deg);
  border-right: 2px solid #cccccc;
  border-bottom: 2px solid #cccccc;
}

/* 矢印5 */
.arrow05::after {
  content: "";
  left: 0;
  width: 6px;
  height: 6px;
  border-right: 2px solid #ab9178;
  border-bottom: 2px solid #ab9178;
  transform: rotate(-45deg);
}

/* ラベル */
.ic {
  font-size: 0;
  letter-spacing: 0;
  margin: 0 -5px;
}
.ic li {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.2rem;
  border: 1px solid #ccc;
  padding: 5px;
  margin: 0 5px 5px;
}

/* 応募ボタン */
.submitBtn {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
  margin: 0 -5px;
}
.submitBtn li {
  width: calc(50% - 10px);
  margin: 0 5px;
}
.submitBtn li a {
  display: block;
  background: #cccccc;
  font-size: 1.8rem;
  padding: 10px;
}

/* Common タイトル */
.first-ttl {
  text-align: center;
  font-size: 2.8rem;
  margin: 0 0 40px;
}

/* お気に入りボタン */
.btn-added {
  fill: #aa187a !important;
}

.btnKeep-ic {
  width: 40px;
  height: 40px;
}

/******************************************************************
  4■breadcrumbs
*****************************************************************/
#breadcrumbs {
  background: #f3f3f3;
  font-size: 14px;
}
#breadcrumbs .inner {
  max-width: 1080px;
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: hidden;
}
#breadcrumbs ul {
  display: table;
  padding: 5px 0;
}
#breadcrumbs ul li {
  display: inline-block;
  vertical-align: middle;
  padding: 5px 10px;
  line-height: 1.2;
  position: relative;
}
#breadcrumbs ul li::after {
  content: "";
  position: absolute;
  display: block;
  width: 10px;
  height: 10px;
  top: 0;
  bottom: 0;
  right: -5px;
  margin: auto;
  border-bottom: 1px solid #cccccc;
  border-left: 1px solid #cccccc;
  -webkit-transform: rotate(-135deg);
  -webkit-transition: all 0.6s ease;
  -moz-transform: rotate(-135deg);
  -moz-transition: all 0.6s ease;
  -ms-transform: rotate(-135deg);
  -ms-transition: all 0.6s ease;
  -o-transform: rotate(-135deg);
  -o-transition: all 0.6s ease;
  transform: rotate(-135deg);
  transition: all 0.6s ease;
}
#breadcrumbs ul li:last-child::after {
  content: none;
}
#breadcrumbs ul li .interview-type {
  margin: 0 10px 0 0;
}
#breadcrumbs ul li a {
  display: block;
}

/******************************************************************
  4■pageNavi
*****************************************************************/
.pageNavi {
  margin: 0 -5px;
  /*    padding: 50px 0 0;*/
  text-align: center;
  overflow: hidden;
  position: relative;
}
.pageNavi .inner {
  display: inline-block;
  overflow: hidden;
}
.pageNavi .inner span {
  text-align: center;
  float: left;
}
.pageNavi .inner span a {
  display: block;
  width: 40px;
  height: 30px;
  line-height: 30px;
  background: yellow;
  margin: 0 5px;
}
.pageNavi .inner span a.current {
  background: #ccc;
}

.prev.first, .prev.page {
  position: absolute;
  bottom: 0;
  left: 0;
}
.prev.page {
  left: 50px;
}

.next.last, .next.page {
  position: absolute;
  bottom: 0;
  right: 0;
}
.next.page {
  right: 50px;
}

.page {
  display: block;
}

/******************************************************************
  ■パーツ設定
*****************************************************************/
/* キービジュアル
------------------------------*/
.mainimg .txt-item {
  width: 300px;
  height: 200px;
  margin: auto;
  padding: 30px;
  font-size: 30px;
  position: absolute;
  z-index: 10;
  background: rgba(255, 255, 255, 0.8);
  top: 0;
  bottom: 0;
}
.mainimg .txt-item.item-l {
  left: 200px;
}
.mainimg .txt-item.item-r {
  right: 200px;
}
.mainimg .slick-slide img {
  width: 100%;
}
.mainimg .slick-prev, .mainimg .slick-next {
  z-index: 1;
  width: 50px;
  height: 50px;
}
@media (max-width: 768px) {
  .mainimg .slick-prev, .mainimg .slick-next {
    width: 30px;
    height: 30px;
  }
}
.mainimg .slick-prev {
  left: 16px;
  background-image: url(../img/top/mainv-btn-prev.png);
  background-size: 100%;
}
.mainimg .slick-prev:hover {
  background-image: url(../img/top/mainv-btn-prev-on.png);
}
.mainimg .slick-next {
  right: 16px;
  background-image: url(../img/top/mainv-btn-next.png);
  background-size: 100%;
}
.mainimg .slick-next:hover {
  background-image: url(../img/top/mainv-btn-next-on.png);
}
.mainimg .slick-dots {
  bottom: -35px;
}
.mainimg .slick-dots li {
  margin: 2px;
  width: auto;
  height: auto;
}
.mainimg .slick-dots li button {
  font-size: inherit;
  list-style: inherit;
  color: inherit;
  background-color: #CCCCCC;
  width: 24px;
  height: 24px;
  border-radius: 24px;
}
.mainimg .slick-dots li button::before {
  display: none;
}
.mainimg .slick-dots li.slick-active button, .mainimg .slick-dots li:hover button {
  background-color: #FFBB66;
  font-weight: bold;
}

/*====================================================================================================================

タブレット用(横サイズ)～PCcss (min-width:769px) /

====================================================================================================================*/
@media (min-width: 769px) {
  /******************************************************************
    0■body
  *****************************************************************/
  .PcHdn {
    display: none;
  }
  /******************************************************************
    1■common
  *****************************************************************/
  .contents {
    position: relative;
  }
  .contents-inn {
    margin: 0 auto;
    padding: 40px 20px;
    max-width: 1240px;
    width: 100%;
  }
  /* main-ttl */
  .main-ttl {
    background: purple;
    color: white;
  }
  .main-ttl .main-ttl-BOX {
    padding: 50px 0;
    width: 1080px;
    margin: 0 auto;
  }
}
/* タブレット用(横サイズ)～PCcss end */
/*====================================================================================================================

スマホ～タブレット用(縦サイズ)用css (max-width:768px) /

====================================================================================================================*/
@media (max-width: 768px) {
  /******************************************************************
    0■body
  *****************************************************************/
  #container {
    padding-top: 52px;
  }
  .SpnHdn {
    display: none;
  }
  /******************************************************************
    1■common
  *****************************************************************/
  .contents-BOX {
    padding: 0 0 25px;
  }
  #index .contents-BOX {
    padding: 0;
  }
  .contents {
    position: relative;
  }
  .contents-inn {
    padding: 25px 20px;
  }
  /* main-ttl */
  .main-ttl {
    background: purple;
    color: white;
  }
  /* pageNavi */
  .pageNavi {
    margin: 0;
  }
  .pagelink {
    display: none;
  }
  /******************************************************************
    4■breadcrumbs
  *****************************************************************/
  #breadcrumbs ul li {
    display: table-cell;
    white-space: nowrap;
    padding: 12px 10px;
  }
  #breadcrumbs ul li:nth-child(n+2) {
    padding: 12px 10px 12px 30px;
  }
  #breadcrumbs ul li::after {
    width: 30px;
    height: 30px;
    right: -10px;
  }
}
/* スマホ～タブレット用(縦サイズ)用css end */
/******************************************************************
  ■header
*****************************************************************/
header {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding-inline: 10px;
  border-bottom: solid 1px #dddddd;
  height: 80px;
}
@media (max-width: 768px) {
  header {
    height: 52px;
    position: fixed;
    z-index: 100;
    width: 100%;
  }
}

/******************************************************************
  5■footer
*****************************************************************/
/* page_top
------------------------------------*/
#page_top {
  position: fixed;
  right: 0;
  bottom: 80px;
  z-index: 1;
}
#page_top a {
  display: block;
  width: 43px;
  height: 0;
  overflow: hidden;
  padding: 43px 0 0;
  opacity: 0.7;
  background-color: #333333;
}
#page_top a:hover {
  transition: all 0.3s ease-out 0s;
  opacity: 1;
}

.scroll {
  background: url(../img/common/icon-top.png) no-repeat center center;
  background-size: 20px;
}

/* footer
------------------------------------*/
footer {
  width: 100%;
  min-height: 60px;
  border-top: 1px solid #bfbfbf;
  border-bottom: 6px solid;
  padding: 20px;
}
@media (min-width: 769px) {
  footer {
    padding-left: 80px;
  }
}
@media (min-width: 769px) {
  footer .footer-inner {
    display: flex;
    justify-content: space-between;
  }
}
@media (max-width: 768px) {
  footer .footer-inner ul {
    margin-bottom: 30px;
  }
}
@media (min-width: 769px) {
  footer .footer-inner ul {
    display: flex;
    align-items: center;
    gap: 1em;
  }
}
footer .footer-inner ul li a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 12px;
  text-decoration: underline;
  line-height: 1.75;
}
footer .footer-inner ul li a::before {
  display: block;
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid;
  border-bottom: 2px solid;
  transform: rotate(-45deg);
}
footer .footer-inner ul li a[target=_blank]::after {
  content: "";
  display: inline-block;
  background: url(../img/common/ic_blank.png) center no-repeat;
  background-size: 100%;
  width: 1em;
  aspect-ratio: 5/4;
}
footer .footer-inner .logo-footer {
  text-align: right;
}
footer .footer-inner .logo-footer a {
  display: inline-block;
  background: url(../img/common/logo-aidem.png) no-repeat top right;
  background-size: 124px auto;
  height: 0;
  padding-top: 18px;
  overflow: hidden;
  width: 124px;
}/*# sourceMappingURL=common_company.css.map */