@charset "UTF-8";
/*--◇全体--*/
/*色指定*/
:root {
  --main-color1:#ffffff;
  --main-color2:#202C30;
  --main-color3:#1f6fb8;
  --main-color4:#414141;
  --main-color5:#a7a7a7;
  --main-color6:#4a8dcc;
  --main-color7:#e4c413;
  --main-color8:#e4eff8;
  --main-color9:#0ea050;
  --main-color10:#ebebeb;
  --main-color11:#0d4579;
  --main-color12:#dce1e4;
}

/*--変数設定--*/
/*横幅*/
/*ブレイクポイント設定*/
/*--mixin設定--*/
/*レスポンシブル*/
/*フォントサイズを調整*/
/*説明文などで汎用的に使用する*/
.normal-text {
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: var(--main-color2);
}
@media screen and (max-width: 576px) {
  .normal-text {
    font-size: 0.9em;
  }
}
.normal-text > div ul {
  padding: 0.2em 0.2em 0.2em 2em;
  position: relative;
}
.normal-text > div ul li {
  line-height: 1.3;
  padding: 0.5em 0;
  list-style-type: none !important;
}
.normal-text > div ul li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c"; /*アイコンの種類*/
  font-weight: 900;
  position: absolute;
  left: 0.6em; /*左端からのアイコンまでの距離*/
  color: var(--main-color6); /*アイコン色*/
}
.normal-text > div strong {
  font-weight: 700;
}

table.black-grid {
  border: 1px solid var(--main-color4);
}
@media screen and (max-width: 576px) {
  table.black-grid {
    border-bottom: 1px solid transparent;
  }
}
table.black-grid tbody tr th {
  width: 200px;
  border: 1px solid var(--main-color4);
  padding: 0.3em 0.5em;
}
@media screen and (max-width: 576px) {
  table.black-grid tbody tr th {
    display: block;
    width: 100%;
    border: 1px solid transparent;
    border-bottom: 1px solid var(--main-color4);
  }
}
table.black-grid tbody tr td {
  border: 1px solid var(--main-color4);
  padding: 0.3em 0.5em;
}
@media screen and (max-width: 576px) {
  table.black-grid tbody tr td {
    display: block;
    width: 100%;
    border: 1px solid transparent;
    border-bottom: 1px solid var(--main-color4);
  }
}

ul.color_ul {
  list-style: none;
  padding-left: 0.2em;
}
ul.color_ul li {
  position: relative;
  padding-left: 1.1em;
}
ul.color_ul li::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0.52em;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--main-color6);
  border-radius: 4px;
}

ol.num_ol {
  counter-reset: item;
  list-style-type: none;
  padding-left: 0;
}
ol.num_ol li {
  text-indent: -1.3em;
  padding-left: 1.4em;
}
ol.num_ol li::before {
  counter-increment: item;
  content: counter(item) ".";
  padding-right: 0.35em;
  font-weight: bold;
  color: var(--main-color3);
}

/*影*/
/*ストライプの背景*/
/*--その他--*/
/*文字の色デフォルト*/
main div, main p {
  color: var(--main-color2);
  letter-spacing: 0.05em;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
}

.ccm-page > div.container {
  margin-top: 20px;
  margin-bottom: 20px;
}

.view-none {
  display: none;
}

/*スマホのみ表示するクラス*/
.phone-only {
  display: none;
}
@media screen and (max-width: 576px) {
  .phone-only {
    display: block;
  }
}

/*スマホのみ非表示のクラス*/
@media screen and (max-width: 576px) {
  .pc-only {
    display: none;
  }
}

/*tb1以下のみ表示するクラス*/
.tb1-only {
  display: none;
}
@media screen and (max-width: 1025px) {
  .tb1-only {
    display: block;
  }
}

/*tb1以下のみ非表示のクラス*/
@media screen and (max-width: 1025px) {
  .pc-tb1-only {
    display: none;
  }
}

/*フォント調整用クラス*/
.size-spacing {
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media screen and (max-width: 576px) {
  .size-spacing {
    font-size: 0.9em;
  }
}

/*GoogleFont 日本語ゴシック NotoSansJapanese*/
.google-font-gothicJP {
  font-family: "Noto Sans JP", sans-serif;
}

.container-width {
  max-width: 1150px;
  margin: 0 auto;
}

.container-width-s {
  max-width: 1025px;
  margin: 0 auto;
}

/*色の囲み*/
span.color-border-block {
  display: inline-block;
  padding: 0 0.2em 0.05em 0.3em;
  margin-right: 0.3em;
  color: var(--main-color3);
  border: 1px solid var(--main-color3);
}

span.color-block {
  display: inline-block;
  padding: 0.5em 0.75em;
  background-color: var(--main-color3);
  color: var(--main-color1);
  font-weight: 500;
  margin-right: 0.5em;
  border-radius: 5px;
}

/*黄色マーカー*/
.yellow_marker {
  background: linear-gradient(transparent 60%, #fae6a0 60%);
}

.img-center {
  text-align: center;
}

/*見出し*/
.ccm-page h1 {
  text-align: center;
  font-size: 1.7em;
  font-weight: 700;
  line-height: 1;
  padding: 0.65em 0.2em;
  letter-spacing: 0.06em;
  background-color: var(--main-color8);
  margin-bottom: 1em;
  color: var(--main-color2);
  border-top: 2px solid var(--main-color3);
  border-bottom: 2px solid var(--main-color3);
}
@media screen and (max-width: 800px) {
  .ccm-page h1 {
    font-size: 1.5em;
  }
}
@media screen and (max-width: 576px) {
  .ccm-page h1 {
    font-size: 1.3em;
  }
}
.ccm-page #worker > h1 {
  background-color: transparent;
  text-align: left;
  border-color: var(--main-color2);
}
.ccm-page h2 {
  position: relative;
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--main-color2);
  padding-bottom: 0.35em;
  margin-bottom: 0.8em;
  border-bottom: 3px solid var(--main-color5);
}
.ccm-page h2::after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px var(--main-color2);
  bottom: -3px;
  left: 0;
  width: 25%;
}
@media screen and (max-width: 1025px) {
  .ccm-page h2 {
    font-size: 1.4em;
  }
}
@media screen and (max-width: 576px) {
  .ccm-page h2 {
    font-size: 1.3em;
  }
}
.ccm-page h3 {
  font-size: 1.3em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
  border-left: 7px solid var(--main-color3);
  padding-left: 0.4em;
  color: var(--main-color2);
}
@media screen and (max-width: 800px) {
  .ccm-page h3 {
    font-size: 1.1em;
  }
}
.ccm-page h4 {
  position: relative;
  font-size: 1.3em;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.25em 0.25em 0.25em 0.9em; /*丸分のスペース*/
  color: var(--main-color3);
}
.ccm-page h4::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 11px;
  height: 11px;
  background-color: var(--main-color3);
  border-radius: 6px;
}
@media screen and (max-width: 576px) {
  .ccm-page h4 {
    font-size: 1.1em;
  }
}
.ccm-page h5 {
  display: inline-block;
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--main-color1);
  background-color: var(--main-color3);
  padding: 0.3em 1em;
}
@media screen and (max-width: 800px) {
  .ccm-page h5 {
    font-size: 1.05em;
  }
}
.ccm-page h6 {
  display: inline-block;
  font-size: 1.1em;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--main-color3);
  background-color: #f0f8ff;
  border: 2px solid var(--main-color3);
  padding: 0.5em 1.2em;
}
@media screen and (max-width: 800px) {
  .ccm-page h6 {
    font-size: 1.05em;
  }
}

/*ヘッター*/
/*header*/
header#org {
  position: relative;
}
header#org #header-box {
  position: absolute;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 70px;
  z-index: 99;
  padding: 0 2%;
  border-bottom: 1px solid var(--main-color5);
}
@media screen and (max-width: 1025px) {
  header#org #header-box {
    padding: 0 0;
  }
}
header#org #header-box .header-logo {
  max-width: -moz-fit-content;
  max-width: fit-content;
  height: inherit;
  padding: 5px 10px;
}
header#org #header-box .header-logo img {
  width: 230px !important;
}
header#org #header-box .header-navi {
  width: 100%;
}

/*ハンバーガーメニュー（jsにて切り替え）*/
#hamburger-btn {
  display: none;
}
@media screen and (max-width: 1025px) {
  #hamburger-btn {
    display: block;
  }
}
#hamburger-btn {
  position: fixed;
  width: 58px;
  height: 58px;
  top: 7px;
  right: 7px;
  caret-color: transparent;
  cursor: pointer;
  border: 2px solid var(--main-color3);
  border-radius: 50%;
  background-color: var(--main-color1);
  z-index: 100;
}
#hamburger-btn .box {
  position: relative;
  padding: 0 10px;
}
#hamburger-btn .box span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 50%;
  height: 2px;
  transform: translateX(-50%);
  background-color: var(--main-color2);
  width: 55%;
}
#hamburger-btn .box span:nth-child(1) {
  top: 17px;
}
#hamburger-btn .box span:nth-child(2) {
  top: 25px;
}
#hamburger-btn .box span:nth-child(3) {
  top: 33px;
}
#hamburger-btn.active .box span:nth-of-type(1) {
  top: 20px;
  transform: translateX(-50%) translateY(6px) rotate(-45deg);
  width: 30%;
}
#hamburger-btn.active .box span:nth-of-type(2) {
  opacity: 0;
}
#hamburger-btn.active .box span:nth-child(3) {
  top: 32px;
  transform: translateX(-50%) translateY(-6px) rotate(45deg);
  width: 30%;
}

#global-nav-area { /*グローバルナビ*/ }
@media screen and (max-width: 1025px) {
  #global-nav-area {
    display: flex;
    justify-content: flex-end;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    transition: all 0.2s;
    opacity: 0;
    pointer-events: none;
    z-index: 99;
    padding: 0 0;
    overflow-x: hidden;
  }
}
#global-nav-area.view {
  opacity: 1;
  pointer-events: all;
}
#global-nav-area.view .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--main-color3);
  opacity: 0.4;
  z-index: 0;
}
#global-nav-area.view .global-nav {
  transform: translateX(0);
}
@media screen and (max-width: 1025px) {
  #global-nav-area .global-nav {
    position: relative;
    z-index: 1;
    padding: 3%;
    padding-top: 100px;
    padding-bottom: 50px;
    min-width: 25%;
    background-color: var(--main-color1);
    transform: translateX(100%);
    transition: all 0.25s ease-out;
    overflow-y: scroll;
  }
}
@media screen and (max-width: 800px) {
  #global-nav-area .global-nav {
    padding-top: 80px;
  }
}
@media screen and (max-width: 576px) {
  #global-nav-area .global-nav {
    padding-right: 3%;
    padding-left: 3%;
    width: 100%;
    border-left: 5px solid var(--main-color3);
  }
}
#global-nav-area .global-nav > ul {
  display: flex;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  justify-content: flex-end;
}
@media screen and (max-width: 1025px) {
  #global-nav-area .global-nav > ul {
    display: block;
    font-size: 1.1em;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1.6;
    margin-bottom: 10px;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 576px) {
  #global-nav-area .global-nav > ul {
    font-size: 1em;
  }
}
#global-nav-area .global-nav > ul > li {
  text-align: center;
}
@media screen and (max-width: 1025px) {
  #global-nav-area .global-nav > ul > li {
    text-align: left;
    margin-bottom: 1em;
  }
}
#global-nav-area .global-nav > ul > li a {
  display: inline-block;
  text-decoration: none;
  color: var(--main-color2);
  font-weight: 700;
  padding: 0.5em 1em 0.5em 1em;
  transition: all 0.3s;
  z-index: 2;
  font-weight: 600;
}
@media screen and (max-width: 1025px) {
  #global-nav-area .global-nav > ul > li a {
    display: block;
    min-width: 250px;
    padding: 0.5em 0.5em 0.5em 0.5em;
  }
}
#global-nav-area .global-nav > ul > li a:hover {
  color: var(--main-color1);
  background-color: var(--main-color3);
}

/*フッター*/
.footer-info-area {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 3%;
  -moz-column-gap: 2%;
       column-gap: 2%;
  row-gap: 10px;
}
@media screen and (max-width: 800px) {
  .footer-info-area {
    padding: 0 0;
    flex-direction: column;
    align-items: start;
  }
}
.footer-info-area .item.left {
  max-width: 300px;
}
@media screen and (max-width: 800px) {
  .footer-navi {
    margin-bottom: 1.5em;
  }
}
.footer-navi ul {
  display: flex;
  -moz-column-gap: 0.5em;
       column-gap: 0.5em;
  row-gap: 0.2em;
}
@media screen and (max-width: 800px) {
  .footer-navi ul {
    flex-direction: column;
    -moz-column-gap: 0.85em;
         column-gap: 0.85em;
  }
}
.footer-navi ul li a {
  text-decoration: none;
  color: var(--main-color1);
  padding: 0.25em 0.5em;
  transition: all 0.2s;
}
.footer-navi ul li a:hover {
  background-color: var(--main-color3);
  color: var(--main-color1);
}
@media screen and (max-width: 800px) {
  .footer-navi ul li {
    margin-bottom: 1em;
  }
}

/*webボタン*/
a.webbtn01 {
  display: inline-block;
  width: auto;
  padding: 0.8em 1em 0.7em 1em;
  color: var(--main-color1);
  background-color: var(--main-color3);
  transition: all 0.1s;
  text-decoration: none;
  border-bottom: 4px solid var(--main-color11);
  border-radius: 5px;
}
a.webbtn01:hover {
  color: var(--main-color1);
  margin-top: 3px;
  border-bottom: 1px solid var(--main-color11);
}

a.webbtn02 {
  display: inline-block;
  text-decoration: none;
  width: auto;
  padding: 1em 1.2em;
  font-weight: 500;
  letter-spacing: 0.06em;
  border: 1px solid var(--main-color1);
  color: var(--main-color1);
  transition: 0.2s all;
}
a.webbtn02:hover {
  color: var(--main-color11);
  background: var(--main-color1);
}

a.webbtn05 {
  display: inline-block;
  color: var(--main-color1);
  padding: 0.4em 1.4em;
  background: var(--main-color3);
  text-decoration: none;
  border: 3px solid transparent;
  border-radius: 10px;
  font-size: 0.9em;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.5;
  transition: all 0.2s;
}
a.webbtn05:hover { /*hoverした際の、ボタンの背景とテキスト色の変更*/
  background: transparent;
  color: var(--main-color3);
  border: 3px solid var(--main-color3);
}

.ccm-page button.btn-primary, input.btn-primary {
  display: inline-block;
  width: auto;
  padding: 0.7em 1em 0.6em 1em;
  color: var(--main-color1) !important;
  font-weight: 500;
  background-color: var(--main-color3) !important;
  transition: all 0.1s;
  text-decoration: none;
  border-bottom: 4px solid var(--main-color11);
  border-radius: 5px;
}
.ccm-page button.btn-primary:hover, input.btn-primary:hover {
  color: var(--main-color1);
  margin-top: 3px;
  border-bottom: 1px solid var(--main-color11);
}

/*◇トップページ*/
/*mv*/
#mv {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: var(--main-color8);
}
#mv .main-img {
  text-align: center;
}

section#mv-navi {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  padding-top: 20px;
}
section#mv-navi .link-box {
  position: relative;
  z-index: 10;
}
section#mv-navi .link-box .grid-box {
  display: none;
}
@media screen and (max-width: 1025px) {
  section#mv-navi .link-box .grid-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
  }
}
section#mv-navi .link-box .grid-box .item {
  padding: 0 0 0 0;
}
section#mv-navi .link-box .grid-box .item .link-btn {
  text-align: center;
}
section#mv-navi .link-box .grid-box .item .link-btn a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 1.1em 0.1em 1em 0.1em;
  color: var(--main-color1);
  background-color: var(--main-color3);
  transition: all 0.1s;
  text-decoration: none;
  border-bottom: 4px solid var(--main-color11);
  border-radius: 5px;
}
section#mv-navi .link-box .grid-box .item .link-btn a:hover {
  margin-top: 3px;
  border-bottom: 1px solid var(--main-color11);
}

/*トップページのお知らせ*/
#top-oshirase-border {
  border: 1px solid var(--main-color1);
  padding: 1em;
}
@media screen and (max-width: 576px) {
  #top-oshirase-border {
    padding: 0.25em;
  }
}

#top-oshirase .item {
  padding-left: 0;
}
#top-oshirase .ccm-block-page-list-title {
  padding-top: 5px;
  padding-bottom: 5px;
}
#top-oshirase .ccm-block-page-list-title a {
  padding: 10px;
  display: grid;
  grid-template-columns: 8em 1fr;
  -moz-column-gap: 1em;
       column-gap: 1em;
  row-gap: 0.25em;
  text-decoration: none;
  transition: all 0.2s;
  border: 3px solid transparent;
  border-bottom: 3px solid var(--main-color10);
}
#top-oshirase .ccm-block-page-list-title a:hover {
  background-color: var(--main-color8);
  padding-left: 20px;
  border: 3px solid var(--main-color3);
}
#top-oshirase .ccm-block-page-list-title a .date {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
#top-oshirase .ccm-block-page-list-title a .topic span {
  padding: 0.15em 1em;
  border-radius: 5px;
  border: 1px solid var(--main-color5);
  background-color: var(--main-color10);
  font-weight: 500;
  white-space: nowrap;
}
#top-oshirase .ccm-block-page-list-title a .name {
  grid-column: 1/3;
}
#top-oshirase .ccm-block-page-list-title a.is_image {
  grid-template-columns: 125px 7em 1fr;
  grid-template-rows: 0.45fr 1fr;
}
@media screen and (max-width: 800px) {
  #top-oshirase .ccm-block-page-list-title a.is_image {
    grid-template-columns: 100px 7em 1fr;
  }
}
#top-oshirase .ccm-block-page-list-title a.is_image .ccm-block-page-list-page-entry-thumbnail {
  grid-row: 1/3;
}
#top-oshirase .ccm-block-page-list-title a.is_image .ccm-block-page-list-page-entry-thumbnail .thumbnail {
  width: 125px;
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 800px) {
  #top-oshirase .ccm-block-page-list-title a.is_image .ccm-block-page-list-page-entry-thumbnail .thumbnail {
    width: 100px;
  }
}
#top-oshirase .ccm-block-page-list-title a.is_image .name {
  grid-column: 2/4;
}

.topic-style ul.ccm-block-topic-list-list {
  padding-left: 0em;
}
.topic-style ul.ccm-block-topic-list-list li {
  display: inline-block;
  margin-right: 0.5em;
}
.topic-style ul.ccm-block-topic-list-list li a {
  position: relative;
  top: 0;
  display: inline-block;
  width: auto;
  padding: 0.25em 0.5em;
  color: var(--main-color1);
  background-color: var(--main-color3);
  transition: all 0.1s;
  text-decoration: none;
  border-bottom: 4px solid var(--main-color11);
  border-radius: 5px;
}
.topic-style ul.ccm-block-topic-list-list li a:hover {
  color: var(--main-color1);
  top: 3px;
  border-bottom: 1px solid var(--main-color11);
}

/*トップページのサイト説明*/
.top-description {
  font-size: 1.1em;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.8;
}

/*トップページの働く人の声*/
#top-woker-list {
  max-width: 1025px;
  margin: 0 auto;
}
#top-woker-list .ccm-block-page-list-pages a.item {
  display: block;
  text-decoration: none;
  box-sizing: border-box;
  border: 1px solid var(--main-color5);
  padding: 10px;
  margin-bottom: 15px;
  transition: all 0.2s;
  outline: 2px solid transparent;
}
#top-woker-list .ccm-block-page-list-pages a.item:hover {
  background-color: var(--main-color8);
  border: 1px solid var(--main-color3);
  outline: 2px solid var(--main-color3);
  padding-left: 20px;
  padding-right: 5px;
}
#top-woker-list .ccm-block-page-list-pages a.item .ccm-block-page-list-page-entry-horizontal {
  display: flex;
}
#top-woker-list .ccm-block-page-list-pages a.item .ccm-block-page-list-page-entry-horizontal .ccm-block-page-list-page-entry-thumbnail {
  width: auto;
}
#top-woker-list .ccm-block-page-list-pages a.item .ccm-block-page-list-page-entry-horizontal .ccm-block-page-list-page-entry-thumbnail .thumbnail {
  width: 150px;
  aspect-ratio: 1.1/1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 576px) {
  #top-woker-list .ccm-block-page-list-pages a.item .ccm-block-page-list-page-entry-horizontal .ccm-block-page-list-page-entry-thumbnail .thumbnail {
    aspect-ratio: 1/1.1;
    width: 120px;
  }
}
#top-woker-list .ccm-block-page-list-pages a.item .ccm-block-page-list-page-entry-horizontal .ccm-block-page-list-page-entry-text {
  display: grid;
  align-content: start;
  width: 100%;
  padding-left: 10px;
}
@media screen and (max-width: 576px) {
  #top-woker-list .ccm-block-page-list-pages a.item .ccm-block-page-list-page-entry-horizontal .ccm-block-page-list-page-entry-text {
    padding-left: 5px;
  }
}
#top-woker-list .ccm-block-page-list-pages a.item .ccm-block-page-list-page-entry-horizontal .ccm-block-page-list-page-entry-text .profile {
  color: var(--main-color3);
  font-weight: 600;
  overflow: hidden;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
}
#top-woker-list .ccm-block-page-list-pages a.item .ccm-block-page-list-page-entry-horizontal .ccm-block-page-list-page-entry-text .ccm-block-page-list-description {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 576px) {
  #top-woker-list .ccm-block-page-list-pages a.item .ccm-block-page-list-page-entry-horizontal .ccm-block-page-list-page-entry-text .ccm-block-page-list-description {
    -webkit-line-clamp: 3;
  }
}

/*企業のトピック*/
.industry-topic ol li {
  display: inline-block;
  border-radius: 10px;
  font-size: 1.1em;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.6;
  background-color: var(--main-color3);
  margin-right: 10px;
  margin-bottom: 15px;
  transition: all 0.2s;
}
@media screen and (max-width: 576px) {
  .industry-topic ol li {
    font-size: 1em;
  }
}
@media screen and (max-width: 576px) {
  .industry-topic ol li {
    font-size: 0.9em;
    margin-right: 5px;
    margin-bottom: 10px;
  }
}
.industry-topic ol li a {
  display: block;
  padding: 10px 20px;
  color: var(--main-color1);
}
@media screen and (max-width: 576px) {
  .industry-topic ol li a {
    padding: 5px 10px;
  }
}
.industry-topic ol li:hover {
  opacity: 0.7;
}
.industry-topic ol li:nth-child(1) {
  background-color: #e4c413;
}

.topic-seminar-add.industry-topic ol li:last-child {
  display: none;
}

/*企業紹介一覧、セミナー・講演情報、イベントのページリストブロック*/
.company-list .inner-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .company-list .inner-list {
    justify-content: space-around;
  }
}
@media screen and (max-width: 576px) {
  .company-list .inner-list {
    padding: 0 10px;
  }
}
.company-list .inner-list .company-item {
  width: calc(33.3333333333% - 30px);
  border-radius: 5px;
  background-color: var(--main-color1);
  margin-bottom: 40px;
  overflow: hidden;
  filter: drop-shadow(rgba(99, 99, 99, 0.2) 0px 2px 8px);
}
@media screen and (max-width: 1025px) {
  .company-list .inner-list .company-item {
    width: calc(33.3333333333% - 15px);
  }
}
@media screen and (max-width: 800px) {
  .company-list .inner-list .company-item {
    width: calc(50% - 30px);
  }
}
@media screen and (max-width: 576px) {
  .company-list .inner-list .company-item {
    width: 100%;
  }
}
.company-list .inner-list .company-item a .inner-item {
  min-height: 450px;
  transition: all 0.2s;
}
@media screen and (max-width: 800px) {
  .company-list .inner-list .company-item a .inner-item {
    min-height: 430px;
  }
}
.company-list .inner-list .company-item a .inner-item .thumbnail {
  position: relative;
  width: 100%;
  height: 250px;
  background-color: var(--main-color1);
  border-bottom: 2px dashed #bdbdbd;
  overflow: hidden;
  transition: all 0.2s;
}
.company-list .inner-list .company-item a .inner-item .thumbnail .compant-img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: auto;
  pointer-events: none;
  opacity: 1;
  transition: all 0.2s;
}
.company-list .inner-list .company-item a .inner-item .text {
  padding: 15px 10px 20px 10px;
}
.company-list .inner-list .company-item a .inner-item .text .topic {
  margin-bottom: 5px;
}
.company-list .inner-list .company-item a .inner-item .text .topic span {
  display: inline-block;
  font-size: 0.8em;
  padding: 3px 8px;
  margin-right: 5px;
  margin-bottom: 5px;
  border-radius: 10px;
  color: var(--main-color3);
  border: 1px solid var(--main-color3);
}
.company-list .inner-list .company-item a .inner-item .text p.name {
  font-size: 1.15em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: var(--main-color2);
  transition: all 0.2s;
  margin-bottom: 0.2em;
}
@media screen and (max-width: 800px) {
  .company-list .inner-list .company-item a .inner-item .text p.name {
    font-size: 1em;
  }
}
.company-list .inner-list .company-item a .inner-item .text .description {
  font-size: 0.8em;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: var(--main-color4);
  transition: all 0.2s;
}
.company-list .inner-list .company-item a .inner-item .year {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  color: var(--main-color3);
  font-size: 0.95em;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1;
  padding: 0 10px;
}
.company-list .inner-list .company-item a:hover .thumbnail {
  background-color: var(--main-color3);
}
.company-list .inner-list .company-item a:hover .thumbnail .compant-img {
  opacity: 0.75;
}
.company-list .inner-list .company-item a:hover .inner-item {
  background-color: #f5f5f5;
}
.company-list .inner-list .company-item a:hover .inner-item .text .name {
  color: var(--main-color3);
}
.company-list .inner-list .company-item a:hover .inner-item .text .description {
  color: var(--main-color3);
}

.one-page .company-list .inner-list {
  justify-content: flex-start;
}
.one-page .company-list .inner-list .company-item {
  width: 100%;
  max-width: 340px;
}

/*◇サブページ、子ページ*/
/*大見出し後ろのイラスト*/
.subpage-top-img {
  position: relative;
  width: 100%;
  height: 100px;
}
.subpage-top-img .box {
  position: absolute;
  overflow-x: hidden;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  pointer-events: none;
}
.subpage-top-img .box .bg #maru {
  width: 400px;
  aspect-ratio: 1/1;
  position: absolute;
  top: -50%;
  right: -50%;
  opacity: 0.5;
  animation: moveInAnime 2s 0s forwards cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (max-width: 800px) {
  .subpage-top-img .box .bg #maru {
    margin-top: 30px;
    width: 200px;
  }
}
.subpage-top-img .box .bg #ami {
  width: 350px;
  aspect-ratio: 1/1;
  position: absolute;
  top: -50%;
  right: -50%;
  opacity: 0.5;
  animation: moveInAnime2 2s 0.2s forwards cubic-bezier(0, 0.55, 0.45, 1);
}
@media screen and (max-width: 800px) {
  .subpage-top-img .box .bg #ami {
    margin-top: 30px;
    width: 175px;
  }
}
.subpage-top-img .box .img {
  position: absolute;
  top: 100px;
  right: 10%;
  width: 300px;
  opacity: 0;
  animation: popupAnime 0.5s 0.1s forwards cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media screen and (max-width: 800px) {
  .subpage-top-img .box .img {
    width: 150px;
    margin-top: -30px;
  }
}

@keyframes moveInAnime {
  0% {
    opacity: 0.5;
    top: -50%;
    right: -50%;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    top: -5%;
    right: -5%;
    transform: scale(1);
  }
}
@keyframes moveInAnime2 {
  0% {
    opacity: 0.5;
    top: -50%;
    right: -50%;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    top: 0%;
    right: -5%;
    transform: scale(1);
  }
}
@keyframes popupAnime {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/*大見出し*/
#sub-page-h {
  position: relative;
  margin-bottom: 30px;
}
#sub-page-h .box {
  padding: 1em 0;
}
#sub-page-h .box .sub {
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
  color: var(--main-color3);
  font-family: "Montserrat", sans-serif;
  margin-bottom: 0.6em;
}
#sub-page-h .box .sub span {
  color: var(--main-color6);
}
@media screen and (max-width: 576px) {
  #sub-page-h .box .sub {
    font-size: 1em;
  }
}
#sub-page-h .box h1 {
  font-size: 2.5em;
  font-size: 2.5em;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.3;
  border-top: none;
  border-bottom: none;
  text-align: left;
  padding: 0 0;
  background-color: transparent;
  margin-bottom: 0;
}
@media screen and (max-width: 576px) {
  #sub-page-h .box h1 {
    font-size: 1.8em;
  }
}

/*パンくずリスト*/
.bread-list nav ol li {
  font-size: 0.85em !important;
}
@media screen and (max-width: 576px) {
  .bread-list nav ol li {
    font-size: 0.8em !important;
  }
}
.bread-list nav ol li a {
  text-decoration: none;
}

/*◇企業情報一覧*/
section.sub-page-top-area {
  background-color: #e5f4ff;
}
section.sub-page-top-area .sub-page-h {
  position: relative;
  width: 100%;
  height: 380px;
  background-image: url("/application/files/5116/7420/5787/sub-page-bg.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 800px) {
  section.sub-page-top-area .sub-page-h {
    height: 300px;
    background-image: url("/application/files/2716/7443/7207/sub-page-bg-tb.png");
  }
}
@media screen and (max-width: 576px) {
  section.sub-page-top-area .sub-page-h {
    height: 230px;
  }
}
section.sub-page-top-area .sub-page-h .box {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  text-align: center;
  transform: translateY(-50%);
}
section.sub-page-top-area .sub-page-h .box .jp {
  font-size: 3em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: var(--main-color2);
}
@media screen and (max-width: 576px) {
  section.sub-page-top-area .sub-page-h .box .jp {
    font-size: 2em;
  }
}
section.sub-page-top-area .sub-page-h .box .eng {
  font-size: 1.4em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
  font-family: "Lato", sans-serif;
  color: var(--main-color2);
}
@media screen and (max-width: 576px) {
  section.sub-page-top-area .sub-page-h .box .eng {
    font-size: 1.1em;
  }
}

/*◇ブログ記事（セミナー、講演情報、イベント）*/
/*大見出し*/
#blog-h h6 {
  display: block;
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-size: 1.5em !important;
  border-bottom: 1px solid var(--main-color2);
  color: var(--main-color2);
  background-color: transparent;
  border-top: 1px solid transparent;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  padding: 0.25em 0.5em !important;
}
@media screen and (max-width: 800px) {
  #blog-h h6 {
    font-size: 1.2em !important;
  }
}

/*新着のお知らせ(ページリストブロック)*/
.page-list-new .list-item {
  margin-bottom: 15px;
}
.page-list-new .list-item a .item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.page-list-new .list-item a .item .thumbnail-box {
  width: 40%;
  background-color: transparent;
}
@media screen and (max-width: 800px) {
  .page-list-new .list-item a .item .thumbnail-box {
    width: 70%;
  }
}
@media screen and (max-width: 576px) {
  .page-list-new .list-item a .item .thumbnail-box {
    width: 40%;
  }
}
.page-list-new .list-item a .item .thumbnail-box .list-new-img {
  max-width: 100%;
  opacity: 1;
  transition: all 0.2s;
}
.page-list-new .list-item a .item .text {
  width: 60%;
  padding: 5px 5px 5px 10px;
}
@media screen and (max-width: 800px) {
  .page-list-new .list-item a .item .text {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .page-list-new .list-item a .item .text {
    width: 60%;
  }
}
.page-list-new .list-item a .item .text .name {
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: var(--main-color2);
  margin-bottom: 0.2rem;
  transition: all 0.2s;
}
.page-list-new .list-item a .item .text .date {
  display: inline-block;
  font-size: 0.85em;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: var(--main-color4);
  transition: all 0.2s;
}
.page-list-new .list-item a:hover .item .thumbnail-box .list-new-img {
  opacity: 0.8;
}
.page-list-new .list-item a:hover .item .text .date {
  color: var(--main-color3);
}
.page-list-new .list-item a:hover .item .text .name {
  color: var(--main-color3);
}

/*◇各企業情報ページ*/
#company-page-center h2 {
  background-color: var(--main-color3);
  color: var(--main-color1);
  padding: 0.25em 0.75em;
  font-weight: 500 !important;
  border: none;
  border-radius: 1em;
}
#company-page-center h2::after {
  top: 50%;
  right: 0;
  left: auto;
  transform: translate(-50%, -50%);
  width: 0.6em;
  height: 0.6em;
  border-radius: 0.6em;
  background-color: var(--main-color8);
  border: none;
}

.company-catch-copy {
  text-align: center;
  font-size: 1.2em;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 2em;
}
@media screen and (max-width: 576px) {
  .company-catch-copy {
    text-align: left;
    font-size: 1.05em;
  }
}
.company-catch-copy p, .company-catch-copy div {
  color: var(--main-color3);
}

/*画像スライダー*/
.slider-center .rslides {
  background-color: rgba(45, 122, 192, 0.1);
  background-image: repeating-linear-gradient(-45deg, rgba(134, 188, 238, 0.1) 0px, rgba(134, 188, 238, 0.1) 5px, rgba(45, 122, 192, 0.1) 5px, rgba(45, 122, 192, 0.1) 10px);
}
.slider-center .rslides > li {
  width: 100%;
  height: 530px;
  overflow: hidden;
}
@media screen and (max-width: 1025px) {
  .slider-center .rslides > li {
    height: 450px;
  }
}
@media screen and (max-width: 800px) {
  .slider-center .rslides > li {
    height: 400px;
  }
}
@media screen and (max-width: 576px) {
  .slider-center .rslides > li {
    height: 280px;
  }
}
.slider-center .rslides > li img {
  float: none;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  max-height: 540px;
}
@media screen and (max-width: 1025px) {
  .slider-center .rslides > li img {
    max-height: 450px;
  }
}
@media screen and (max-width: 800px) {
  .slider-center .rslides > li img {
    max-height: 400px;
  }
}
@media screen and (max-width: 576px) {
  .slider-center .rslides > li img {
    max-height: 280px;
  }
}
.slider-center .rslides > li .ccm-image-slider-text {
  background-color: rgba(58, 58, 58, 0.5);
}

/*各企業情報ページの働く人の声*/
#subpage-woker-list .ccm-block-page-list-pages a.item {
  display: block;
  text-decoration: none;
  box-sizing: border-box;
  border: 1px solid var(--main-color5);
  border-top-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
  padding: 10px;
  margin-bottom: 15px;
  transition: all 0.2s;
  outline: 2px solid transparent;
}
#subpage-woker-list .ccm-block-page-list-pages a.item:hover {
  background-color: var(--main-color8);
  border: 1px solid var(--main-color3);
  outline: 2px solid var(--main-color3);
  padding-left: 20px;
  padding-right: 5px;
}
#subpage-woker-list .ccm-block-page-list-pages a.item .ccm-block-page-list-page-entry-horizontal {
  display: flex;
}
@media screen and (max-width: 800px) {
  #subpage-woker-list .ccm-block-page-list-pages a.item .ccm-block-page-list-page-entry-horizontal {
    flex-direction: column;
  }
}
#subpage-woker-list .ccm-block-page-list-pages a.item .ccm-block-page-list-page-entry-horizontal .ccm-block-page-list-page-entry-thumbnail {
  width: auto;
}
#subpage-woker-list .ccm-block-page-list-pages a.item .ccm-block-page-list-page-entry-horizontal .ccm-block-page-list-page-entry-thumbnail .thumbnail {
  width: 150px;
  aspect-ratio: 1.1/1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 800px) {
  #subpage-woker-list .ccm-block-page-list-pages a.item .ccm-block-page-list-page-entry-horizontal .ccm-block-page-list-page-entry-thumbnail .thumbnail {
    margin-bottom: 10px;
  }
}
#subpage-woker-list .ccm-block-page-list-pages a.item .ccm-block-page-list-page-entry-horizontal .ccm-block-page-list-page-entry-text {
  display: grid;
  align-content: start;
  width: 100%;
  padding-left: 10px;
}
@media screen and (max-width: 800px) {
  #subpage-woker-list .ccm-block-page-list-pages a.item .ccm-block-page-list-page-entry-horizontal .ccm-block-page-list-page-entry-text {
    padding-left: 0;
    row-gap: 5px;
  }
}
#subpage-woker-list .ccm-block-page-list-pages a.item .ccm-block-page-list-page-entry-horizontal .ccm-block-page-list-page-entry-text h3.companypage {
  font-size: 1.1em;
  margin-bottom: 5px;
}
@media screen and (max-width: 576px) {
  #subpage-woker-list .ccm-block-page-list-pages a.item .ccm-block-page-list-page-entry-horizontal .ccm-block-page-list-page-entry-text h3.companypage {
    font-size: 1.05em;
  }
}
#subpage-woker-list .ccm-block-page-list-pages a.item .ccm-block-page-list-page-entry-horizontal .ccm-block-page-list-page-entry-text .profile {
  color: var(--main-color3);
  font-size: 1.05em;
  margin-bottom: 5px;
  overflow: hidden;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
}
@media screen and (max-width: 800px) {
  #subpage-woker-list .ccm-block-page-list-pages a.item .ccm-block-page-list-page-entry-horizontal .ccm-block-page-list-page-entry-text .profile {
    white-space: normal !important;
  }
}

/*採用情報、企業情報の表:記事ブロックのスタイルシートに追加*/
table.color-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: auto;
}
table.color-table tr th, table.color-table tr td {
  padding: 10px;
}
@media screen and (max-width: 576px) {
  table.color-table tr th, table.color-table tr td {
    display: block;
  }
}
table.color-table tr th {
  width: 150px;
  color: var(--main-color3);
  font-size: 1.05em;
}
@media screen and (max-width: 576px) {
  table.color-table tr th {
    width: 100%;
    padding: 6px 0.5em 3px 0.5em;
    font-size: 0.95em;
  }
}
table.color-table tr td {
  padding-left: 1em;
  word-break: break-word;
}
@media screen and (max-width: 576px) {
  table.color-table tr td {
    width: 100%;
    padding: 3px 0.5em 6px 0.5em;
    font-size: 0.9em;
  }
}

/*緑の表*/
table.color-table2 {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border-bottom: 2px solid var(--main-color9);
  border-top: 2px solid var(--main-color9);
  background-color: #c9f0db;
  table-layout: auto;
}
table.color-table2 tr th, table.color-table2 tr td {
  padding: 10px;
}
@media screen and (max-width: 576px) {
  table.color-table2 tr th, table.color-table2 tr td {
    display: block;
  }
}
table.color-table2 tr th {
  min-width: 40%;
}
@media screen and (max-width: 576px) {
  table.color-table2 tr th {
    width: 100%;
    padding: 6px 0.5em 3px 0.5em;
    font-size: 0.9em;
  }
}
@media screen and (max-width: 576px) {
  table.color-table2 tr td {
    width: 100%;
    padding: 3px 0.5em 6px 0.5em;
    font-size: 0.9em;
  }
}
table.color-table2 tr:nth-child(even) {
  background-color: #e7f7ee;
}

/*お問い合せ*/
.inquiry-box {
  border: 2px solid var(--main-color5);
  padding: 0.5em;
}
.inquiry-box hr {
  border-color: var(--main-color5) !important;
  margin-block-start: 0.5em !important;
  margin-block-end: 1em !important;
}

.sticky-top-margin {
  height: 50px;
}
@media screen and (max-width: 800px) {
  .sticky-top-margin {
    height: 25px;
  }
}

.sticky-container .main-header {
  position: sticky;
  top: 15%;
}
@media screen and (max-width: 800px) {
  .sticky-container .main-header {
    top: 50px;
  }
}
.sticky-container .main-content {
  padding-left: 5%;
}
@media screen and (max-width: 800px) {
  .sticky-container .main-content {
    padding-left: 0;
  }
}

.tel-frame {
  border: 2px solid var(--main-color4);
}

.workerpage-name b {
  color: var(--main-color3);
  font-size: 1.1em;
  font-weight: 600;
}
@media screen and (max-width: 576px) {
  .workerpage-name b {
    font-size: 1.05em;
  }
}

.wokerpage-space {
  height: 30px;
}

.accessibility-box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2.5em;
}
.accessibility-box .item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.accessibility-box .item p {
  margin-bottom: 0.5em;
}
.accessibility-box .item button {
  width: 3.2em;
  height: 3.2em;
  border-radius: 3.2em;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid var(--main-color2);
  transition: all 0.2s;
  background-color: var(--main-color10);
}
.accessibility-box .item button i {
  font-size: 1.6em;
  color: var(--main-color2);
  transition: all 0.2s;
}
.accessibility-box .item button:hover {
  border-color: var(--main-color3);
  background-color: var(--main-color8);
}
.accessibility-box .item button:hover i {
  color: var(--main-color3);
}/*# sourceMappingURL=satsumakoku_r8.css.map */