@charset "UTF-8";
/*--◇全体--*/
/*色指定*/
:root {
  --main-color1:#fdfdfd;
  --main-color2:#202C30;
  --main-color3:#2d7ac0;
  --main-color4:#414141;
  --main-color5:#a7a7a7;
  --main-color6:#4799e6;
  --main-color7:#e4c413;
}

/*--変数設定--*/
/*横幅*/
/*ブレイクポイント設定*/
/*--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: 480px) {
  .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 ol {
  counter-reset: item;
  list-style-type: none;
  padding-left: 0;
}
.normal-text > div ol li {
  text-indent: -1.3em;
  padding-left: 1.4em;
}
.normal-text > div ol li::before {
  counter-increment: item;
  content: counter(item) ".";
  padding-right: 0.35em;
  font-weight: bold;
  color: var(--main-color3);
}
.normal-text > div strong {
  font-weight: 700;
}

table.black-grid {
  border: 1px solid var(--main-color4);
}
@media screen and (max-width: 480px) {
  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: 480px) {
  table.black-grid tbody tr th {
    display: block;
    width: 100%;
    font-size: 0.9em;
    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: 480px) {
  table.black-grid tbody tr td {
    display: block;
    width: 100%;
    font-size: 0.9em;
    border: 1px solid transparent;
    border-bottom: 1px solid var(--main-color4);
  }
}

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

.ccm-page > div.container {
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: "M PLUS 2", sans-serif;
}

.view-none {
  display: none;
}

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

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

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

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

/*GoogleFont 日本語明朝 源ノ明朝*/
/*GoogleFont 日本語ゴシック M PLUS 2*/
.google-font-Kosugi {
  font-family: "M PLUS 2", sans-serif;
}

/*GoogleFont 日本語明朝 源ノ明朝*/
.google-font-Zen {
  font-family: "Zen Old Mincho", serif;
}

/*見出し*/
.ccm-page h1 {
  text-align: center;
  font-family: "Zen Old Mincho", serif !important;
  font-size: 1.7em !important;
  font-weight: 700 !important;
  line-height: 1;
  padding: 0.5em 0.2em;
  letter-spacing: 0.06em;
  background-color: #e5f4ff;
  margin-bottom: 1em;
  color: var(--main-color2);
  border-top: 2px solid var(--main-color6);
  border-bottom: 2px solid var(--main-color6);
}
@media screen and (max-width: 769px) {
  .ccm-page h1 {
    font-size: 1.5em !important;
  }
}
@media screen and (max-width: 480px) {
  .ccm-page h1 {
    font-size: 1.3em !important;
  }
}
.ccm-page h2 {
  position: relative;
  font-size: 1.5em !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em;
  color: var(--main-color2);
  border-bottom: 3px solid var(--main-color5);
}
.ccm-page h2::after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px var(--main-color6);
  bottom: -3px;
  left: 0;
  width: 25%;
}
@media screen and (max-width: 480px) {
  .ccm-page h2 {
    font-size: 1.2em !important;
  }
}
.ccm-page h3 {
  position: relative;
  font-family: "M PLUS 2", sans-serif !important;
  font-size: 1.4em !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em;
  padding: 0.5em 0.5em 0.5em 1.5em; /*アイコン分のスペース*/
  color: var(--main-color3);
}
.ccm-page h3::before {
  font-family: "Font Awesome 5 Free"; /*忘れずに*/
  content: "\f303"; /*アイコンのユニコード*/
  font-weight: 900;
  position: absolute; /*絶対位置*/
  font-size: 1em; /*サイズ*/
  left: 0.25em; /*アイコンの位置*/
  top: 50%; /*アイコンの位置*/
  color: var(--main-color3);
  transform: translateY(-50%);
}
@media screen and (max-width: 480px) {
  .ccm-page h3 {
    font-size: 1.2em !important;
  }
}
.ccm-page h4 {
  font-family: "M PLUS 2", sans-serif !important;
  font-size: 1.3em !important;
  font-weight: 700 !important;
  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: 769px) {
  .ccm-page h4 {
    font-size: 1.1em !important;
  }
}
.ccm-page h5 {
  display: inline-block;
  font-family: "M PLUS 2", sans-serif !important;
  font-size: 1.2em !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em;
  color: var(--main-color1);
  background-color: var(--main-color3);
  padding: 0.3em 1em;
}
@media screen and (max-width: 769px) {
  .ccm-page h5 {
    font-size: 1.1em !important;
  }
}
.ccm-page h6 {
  display: inline-block;
  font-family: "M PLUS 2", sans-serif !important;
  font-size: 1.1em !important;
  font-weight: 700 !important;
  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: 769px) {
  .ccm-page h6 {
    font-size: 0.9em !important;
  }
}

/*ヘッター*/
.theme-atomik.ccm-page.page-template-full .ccm-block-top-navigation-bar .fixed-top {
  filter: drop-shadow(rgba(99, 99, 99, 0.2) 0px 2px 8px);
}

/*フッターの手前*/
.footer-front-deco {
  width: 100%;
  height: 50px;
  background-image: repeating-linear-gradient(-45deg, #86bcee 0px, #86bcee 5px, #aad0f5 5px, #aad0f5 10px);
}

/*フッター*/
footer .concrete-branding {
  display: none;
}

footer {
  font-family: "M PLUS 2", sans-serif;
}
footer .satsumakoku-footer .row {
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 480px) {
  footer .satsumakoku-footer .row {
    flex-direction: column;
  }
}
footer .satsumakoku-footer .row .orijinal-1, footer .satsumakoku-footer .row .orijinal-2 {
  width: calc(50% - 30px);
}
@media screen and (max-width: 480px) {
  footer .satsumakoku-footer .row .orijinal-1, footer .satsumakoku-footer .row .orijinal-2 {
    width: 100%;
  }
}
footer .satsumakoku-footer .row .orijinal-1 .footer-companys .ccm-block-page-list-page-entry, footer .satsumakoku-footer .row .orijinal-2 .footer-companys .ccm-block-page-list-page-entry {
  padding: 0.2em 0;
}
@media screen and (max-width: 480px) {
  footer .satsumakoku-footer .row .orijinal-1 .footer-companys .ccm-block-page-list-page-entry a, footer .satsumakoku-footer .row .orijinal-2 .footer-companys .ccm-block-page-list-page-entry a {
    font-size: 0.9em;
  }
}

/*webボタン*/
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);
}

/*◇トップページ*/
/*mv*/
section#mv {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  padding-top: 20px;
  /*mv下の当サイト説明*/
}
section#mv .box {
  position: static;
  width: 100%;
  height: auto;
  overflow: hidden;
}
section#mv .box .shadow-box {
  display: inline-block;
  position: absolute;
  top: 30%;
  left: 20%;
  width: 224px;
  height: 280px;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1600px) {
  section#mv .box .shadow-box {
    left: 15%;
  }
}
@media screen and (max-width: 1025px) {
  section#mv .box .shadow-box {
    top: 15%;
    width: 192px;
    height: 240px;
  }
}
@media screen and (max-width: 769px) {
  section#mv .box .shadow-box {
    width: 128px;
    height: 160px;
  }
}
@media screen and (max-width: 480px) {
  section#mv .box .shadow-box {
    display: none;
  }
}
section#mv .box .shadow-box.second {
  top: 48%;
  left: 80%;
  width: 192px;
  height: 240px;
}
@media screen and (max-width: 1600px) {
  section#mv .box .shadow-box.second {
    top: 59%;
    left: 85%;
  }
}
@media screen and (max-width: 769px) {
  section#mv .box .shadow-box.second {
    width: 128px;
    height: 160px;
  }
}
section#mv .box .shadow-box.second > div {
  animation: fuwafuwa 3s ease-out infinite alternate-reverse;
}
section#mv .box .shadow-box > div {
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
  background-color: #f0f8ff;
  background-image: url("");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  animation: fuwafuwa 3s ease-in infinite alternate;
}
section#mv .box .shadow-box > div.fadeout {
  opacity: 0;
  transition: 0.85s ease-in-out;
}
section#mv .box .shadow-box > div.fadein {
  opacity: 1;
  transition: 0.85s ease-in-out;
}
section#mv .main-img {
  text-align: center;
  margin-bottom: 30px;
  padding: 0 3%;
}
section#mv .main-img picture img {
  text-align: center;
  filter: drop-shadow(rgba(99, 99, 99, 0.2) 0px 2px 8px);
  z-index: 20;
}
section#mv .link-box {
  position: relative;
  max-width: 1050px;
  margin: 0 auto 50px auto;
  z-index: 10;
}
section#mv .link-box .grid-box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media screen and (max-width: 480px) {
  section#mv .link-box .grid-box {
    grid-template-columns: 1fr 1fr;
  }
}
section#mv .link-box .grid-box .item {
  padding: 10px 7% 10px 7%;
  border-right: 1px dashed var(--main-color5);
}
@media screen and (max-width: 480px) {
  section#mv .link-box .grid-box .item {
    border: none;
    padding: 0 0 0 0;
  }
}
section#mv .link-box .grid-box .item:last-child {
  border-right: none;
}
section#mv .link-box .grid-box .item .num {
  font-family: "Lato", sans-serif;
  color: var(--main-color7);
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  section#mv .link-box .grid-box .item .num {
    display: none;
  }
}
section#mv .link-box .grid-box .item .text {
  padding: 0.8em 0 1.2em 0;
  min-height: 8em;
  font-size: 0.95em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 480px) {
  section#mv .link-box .grid-box .item .text {
    display: none;
  }
}
section#mv .link-box .grid-box .item .text span {
  color: var(--main-color3);
}
section#mv .link-box .grid-box .item .link-btn {
  text-align: center;
}
section#mv .link-box .grid-box .item .link-btn a {
  display: inline-block;
  color: var(--main-color1);
  border-radius: 20px;
  background-color: var(--main-color3);
  padding: 0.4em 0 0.3em 0;
  min-width: 170px;
  text-align: center;
}
@media screen and (max-width: 480px) {
  section#mv .link-box .grid-box .item .link-btn a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 1.1em 0.1em 1em 0.1em;
    border-radius: 0;
  }
}
@media screen and (max-width: 480px) {
  section#mv .link-box .grid-box .item .link-btn a.color {
    background-color: #4799e6;
  }
}
section#mv .top-about-area {
  position: relative;
  width: 100%;
  padding: 0 10px;
  z-index: 10;
}
section#mv .top-about-area .top-about-site {
  width: 100%;
  max-width: 1000px;
  padding: 20px 50px;
  margin: 0 auto;
  margin-bottom: 50px;
  color: var(--main-color2);
  background-color: var(--main-color1);
  font-size: 1.1em;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.6;
  border-radius: 10px;
  font-family: "M PLUS 2", sans-serif;
  filter: drop-shadow(rgba(99, 99, 99, 0.2) 0px 2px 8px);
  border: 4px solid var(--main-color3);
}
@media screen and (max-width: 1025px) {
  section#mv .top-about-area .top-about-site {
    max-width: 900px;
  }
}
@media screen and (max-width: 769px) {
  section#mv .top-about-area .top-about-site {
    padding: 20px 30px;
    font-size: 1em;
  }
}
@media screen and (max-width: 480px) {
  section#mv .top-about-area .top-about-site {
    font-size: 0.9em;
    padding: 20px 10px;
    border: 3px solid var(--main-color3);
  }
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20px);
  }
}
@keyframes catch-move {
  0% {
    transform: translateX(-16em);
  }
  100% {
    transform: translateX(0em);
  }
}
@keyframes colorslide {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
/*装飾用画像の位置調整*/
.mv-img-topleft {
  position: relative;
}
.mv-img-topleft img {
  position: absolute;
  top: 0;
  left: 0;
}

.mv-img-bottomright {
  position: relative;
}
.mv-img-bottomright img {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-50%);
}

.img-pos {
  position: relative;
}
.img-pos img {
  position: absolute;
  top: 40px;
  left: 0;
}

/*インタビュー*/
.interview-city {
  position: relative;
  height: 10px;
}
.interview-city .city {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0.6em 1.2em 0.5em 1.2em;
  z-index: 10;
  transform: translate(-50%, -50%);
  border: 2px solid var(--main-color3);
  font-size: 1.1em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  border-radius: 20px;
  background-color: var(--main-color1);
}

.interview-copy {
  padding: 0.6em 0;
  font-size: 1.25em;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (max-width: 480px) {
  .interview-copy {
    font-size: 1.05em;
  }
}

.interview-text {
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 2em;
}
@media screen and (max-width: 480px) {
  .interview-text {
    font-size: 0.9em;
  }
}

/*人物イラスト、pick-upのエリア*/
.pick-up-area > .bg-light {
  background-color: #f0f8ff !important;
}

/*セミナー、講演情報、イベント、一覧のエリア*/
#top-4list-area {
  background: linear-gradient(0deg, rgb(213, 230, 245) 0%, rgb(213, 230, 245) 70%, rgb(202, 225, 245) 100%);
}
#top-4list-area .bg-light {
  background-color: transparent !important;
  padding-top: 80px;
  padding-bottom: 80px;
}

@keyframes list-BgAnime { /*模様のアニメ*/
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100px 100px;
  }
}
/*セミナー、講演情報、イベント、一覧の各ページリストブロック*/
.top-list-h {
  padding: 0.5em;
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6;
  color: var(--main-color1);
  background-color: var(--main-color3);
  border-radius: 10px 10px 0 0;
}
.top-list-h p {
  text-align: center;
  margin-bottom: 0;
}

.page-list-data {
  padding: 20px;
  background-color: var(--main-color1);
}
@media screen and (max-width: 769px) {
  .page-list-data {
    padding: 20px 15px;
  }
}
.page-list-data .list-item {
  border-bottom: 1px solid var(--main-color5);
  margin-bottom: 12px;
}
.page-list-data .list-item:last-child {
  margin-bottom: 5px;
}
.page-list-data .list-item a .date {
  display: inline-block;
  margin-right: 1em;
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: var(--main-color3);
  transition: all 0.2s;
}
@media screen and (max-width: 769px) {
  .page-list-data .list-item a .date {
    font-size: 0.9em;
  }
}
.page-list-data .list-item a .name {
  font-size: 1em;
  font-weight: 400;
  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: 769px) {
  .page-list-data .list-item a .name {
    font-size: 0.9em;
  }
}
.page-list-data .list-item a:hover .date {
  color: var(--main-color3);
}
.page-list-data .list-item a:hover .name {
  color: var(--main-color3);
}

.list-btn-area {
  text-align: right;
  background-color: var(--main-color1);
  padding: 0px 15px 15px 15px;
  margin-bottom: 50px;
  border-radius: 0 0 10px 10px;
}

/*企業のトピック*/
.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-color6);
  margin-right: 10px;
  margin-bottom: 15px;
  transition: all 0.2s;
}
@media screen and (max-width: 480px) {
  .industry-topic ol li {
    font-size: 1em;
  }
}
@media screen and (max-width: 480px) {
  .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: 480px) {
  .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: 769px) {
  .company-list .inner-list {
    justify-content: space-around;
  }
}
@media screen and (max-width: 480px) {
  .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: 769px) {
  .company-list .inner-list .company-item {
    width: calc(50% - 30px);
  }
}
@media screen and (max-width: 480px) {
  .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: 769px) {
  .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-color6);
  border: 1px solid var(--main-color6);
}
.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: 769px) {
  .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-color6);
}

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

/*◇サブページ、子ページ*/
/*パンくずリスト*/
@media screen and (max-width: 480px) {
  .bread-list li {
    font-size: 0.85em;
  }
}

/*◇企業情報一覧*/
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: 769px) {
  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: 480px) {
  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;
  font-family: "M PLUS 2", sans-serif;
  color: var(--main-color2);
}
@media screen and (max-width: 480px) {
  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: 480px) {
  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);
  font-family: "M PLUS 2", sans-serif;
  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: 769px) {
  #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: 769px) {
  .page-list-new .list-item a .item .thumbnail-box {
    width: 70%;
  }
}
@media screen and (max-width: 480px) {
  .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: 769px) {
  .page-list-new .list-item a .item .text {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .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);
}

/*◇各企業情報ページ*/
/*ページ属性（業種）*/
.page-attribute > div {
  display: inline-block;
  font-size: 0.9em;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: var(--main-color2);
  border: var(--main-color4) 1px solid;
  padding: 0.2em 0.5em;
  border-radius: 5px;
}

/*画像スライダー*/
.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: 769px) {
  .slider-center .rslides > li {
    height: 400px;
  }
}
@media screen and (max-width: 480px) {
  .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: 769px) {
  .slider-center .rslides > li img {
    max-height: 400px;
  }
}
@media screen and (max-width: 480px) {
  .slider-center .rslides > li img {
    max-height: 280px;
  }
}
.slider-center .rslides > li .ccm-image-slider-text {
  background-color: rgba(58, 58, 58, 0.5);
}

/*画像ブロックの画像中央寄せ*/
.img-center {
  text-align: center;
  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);
}

/*会社からのメッセージ*/
.com-message > div {
  text-align: center;
  color: var(--main-color3);
  font-family: "M PLUS 2", sans-serif;
  padding-bottom: 30px;
  font-size: 1.3em;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (max-width: 1025px) {
  .com-message > div {
    font-size: 1.25em;
  }
}
@media screen and (max-width: 480px) {
  .com-message > div {
    font-size: 1.05em;
  }
}

/*企業について*/
.com-about {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  border: solid 2px var(--main-color6);
  background-color: #f0f8ff;
  padding: 1.5em 1em 1em 1em;
}
.com-about h5 {
  margin-bottom: 1em;
}
.com-about p {
  text-align: left;
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.6;
}
@media screen and (max-width: 480px) {
  .com-about p {
    font-size: 0.9em;
  }
}

/*社員の声：記事ブロックのスタイルシートに追加**/
.fukidasi-left {
  position: relative;
  display: inline-block;
  width: 100%;
  padding-left: 125px;
}
@media screen and (max-width: 480px) {
  .fukidasi-left {
    padding-left: 0;
    padding-top: 4.8em;
  }
}
.fukidasi-left::before {
  position: absolute;
  content: "社員の声";
  top: 0;
  left: 0;
  width: 100px;
  color: var(--main-color3);
  color: var(--main-color1);
  text-align: center;
  font-size: 0.9em;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 3px;
  background-color: #f0f8ff;
  background-color: var(--main-color6);
  padding: 1.5em 0.5em;
}
@media screen and (max-width: 480px) {
  .fukidasi-left::before {
    top: 0em;
    padding: 1em 0.5em;
  }
}
.fukidasi-left::after {
  content: "";
  position: absolute;
  top: 32px;
  left: 100px;
  margin-top: -12px;
  border: 12px solid transparent;
  border-left: 12px solid var(--main-color6);
}
@media screen and (max-width: 480px) {
  .fukidasi-left::after {
    top: 3.9em;
    left: 20px;
    border-left: 12px solid transparent;
    border-top: 12px solid var(--main-color6);
  }
}

.blue-color {
  color: var(--main-color3);
  margin-bottom: 0.1em;
}

.staff-name {
  font-family: "M PLUS 2", sans-serif !important;
  font-size: 1.1em;
  font-weight: 700;
}

/*ご連絡先：記事ブロックのスタイルシートに追加*/
.tel-number {
  position: relative;
  font-family: "M PLUS 2", sans-serif !important;
  font-size: 1.65em !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em;
  padding: 0em 0.5em 0em 1.5em; /*アイコン分のスペース*/
}
.tel-number::before {
  font-family: "Font Awesome 5 Free"; /*忘れずに*/
  content: "\f095"; /*アイコンのユニコード*/
  font-weight: 900;
  position: absolute; /*絶対位置*/
  font-size: 0.9em; /*サイズ*/
  left: 0.25em; /*アイコンの位置*/
  top: 50%; /*アイコンの位置*/
  transform: translateY(-50%) scale(-1, 1);
}
@media screen and (max-width: 480px) {
  .tel-number {
    font-size: 1.25em !important;
  }
}

.fax-number {
  position: relative;
  font-family: "M PLUS 2", sans-serif !important;
  font-size: 1.2em !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em;
  padding: 0em 0.5em 0em 1.5em; /*アイコン分のスペース*/
}
.fax-number::before {
  font-family: "Font Awesome 5 Free"; /*忘れずに*/
  content: "\f1ac"; /*アイコンのユニコード*/
  font-weight: 700;
  position: absolute; /*絶対位置*/
  font-size: 0.9em; /*サイズ*/
  left: 0.25em; /*アイコンの位置*/
  top: 50%; /*アイコンの位置*/
  transform: translateY(-50%);
}
@media screen and (max-width: 480px) {
  .fax-number {
    font-size: 1.25em !important;
  }
}

.e-mail {
  position: relative;
  font-family: "M PLUS 2", sans-serif !important;
  font-size: 1.2em !important;
  font-weight: 400 !important;
  letter-spacing: 0.05em;
  text-transform: none;
  padding: 0em 0.5em 0em 1.5em; /*アイコン分のスペース*/
}
.e-mail::before {
  font-family: "Font Awesome 5 Free"; /*忘れずに*/
  content: "\f0e0"; /*アイコンのユニコード*/
  font-weight: 900;
  position: absolute; /*絶対位置*/
  font-size: 1em; /*サイズ*/
  left: 0.25em; /*アイコンの位置*/
  top: 50%; /*アイコンの位置*/
  transform: translateY(-50%);
}
@media screen and (max-width: 480px) {
  .e-mail {
    font-size: 1em !important;
  }
}

.web-site {
  position: relative;
  font-family: "M PLUS 2", sans-serif !important;
  font-size: 1em !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em;
  text-transform: none;
  padding: 0em 0.5em 0em 1.5em; /*アイコン分のスペース*/
}
.web-site::before {
  font-family: "Font Awesome 5 Free"; /*忘れずに*/
  content: "\f0ac"; /*アイコンのユニコード*/
  font-weight: 700;
  position: absolute; /*絶対位置*/
  font-size: 0.9em; /*サイズ*/
  left: 0.25em; /*アイコンの位置*/
  top: 50%; /*アイコンの位置*/
  transform: translateY(-50%);
}
@media screen and (max-width: 480px) {
  .web-site {
    font-size: 0.9em !important;
  }
}

.sns-com {
  position: relative;
  font-family: "M PLUS 2", sans-serif !important;
  font-size: 1em !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em;
  text-transform: none;
  padding: 0em 0.5em 0em 1.5em; /*アイコン分のスペース*/
}
.sns-com::before {
  font-family: "Font Awesome 5 Free"; /*忘れずに*/
  content: "\f292"; /*アイコンのユニコード*/
  font-weight: 700;
  position: absolute; /*絶対位置*/
  font-size: 0.9em; /*サイズ*/
  left: 0.25em; /*アイコンの位置*/
  top: 50%; /*アイコンの位置*/
  transform: translateY(-50%);
}
@media screen and (max-width: 480px) {
  .sns-com {
    font-size: 0.9em !important;
  }
}

/*採用情報、企業情報の表:記事ブロックのスタイルシートに追加*/
table.color-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
table.color-table tr td {
  padding: 10px 10px;
  text-align: left;
}
@media screen and (max-width: 480px) {
  table.color-table tr td {
    display: block;
    width: 100%;
    font-size: 0.9em;
    padding: 5px 5px;
  }
}
table.color-table tr td:first-child {
  width: 30%;
  font-weight: 700;
}
@media screen and (max-width: 480px) {
  table.color-table tr td:first-child {
    width: 100%;
    padding-bottom: 0px;
  }
}
table.color-table tr:nth-child(odd) {
  background-color: #cae1f7;
}

/*インターシップ実施予定内容*/
table#internship-table01 {
  border: 1px solid var(--main-color4);
}
@media screen and (max-width: 480px) {
  table#internship-table01 {
    border-bottom: 1px solid transparent;
  }
}
table#internship-table01 tbody tr th {
  width: 200px;
  border: 1px solid var(--main-color4);
  text-align: center;
  padding: 0.3em 0.5em;
}
@media screen and (max-width: 480px) {
  table#internship-table01 tbody tr th {
    display: block;
    width: 100%;
    font-size: 0.9em;
    border: 1px solid transparent;
    border-bottom: 1px solid var(--main-color4);
  }
}
table#internship-table01 tbody tr td {
  border: 1px solid var(--main-color4);
  padding: 0.3em 0.5em;
}
@media screen and (max-width: 480px) {
  table#internship-table01 tbody tr td {
    display: block;
    width: 100%;
    font-size: 0.9em;
    border: 1px solid transparent;
    border-bottom: 1px solid var(--main-color4);
  }
}
table#internship-table01 tbody tr td ul {
  padding-left: 0;
}
table#internship-table01 tbody tr td ul li {
  position: relative;
  list-style-type: none;
  display: inline-block;
  padding-left: 1.1em;
  margin-right: 1em;
}
table#internship-table01 tbody tr td ul li::before {
  font-family: "Font Awesome 5 Free"; /*忘れずに*/
  content: "\f0c8"; /*アイコンのユニコード*/
  font-weight: 400;
  position: absolute; /*絶対位置*/
  font-size: 0.9em; /*サイズ*/
  left: 0.25em; /*アイコンの位置*/
  top: 50%; /*アイコンの位置*/
  transform: translateY(-50%);
}
table#internship-table01 tbody tr td ul li.checked::before {
  font-family: "Font Awesome 5 Free"; /*忘れずに*/
  content: "\f14a"; /*アイコンのユニコード*/
}

/*インターシッププログラム案*/
div#internship-wrap {
  overflow-x: auto; /* tableタグのはみ出た要素を隠す */
  width: 100%;
  /*インターンシッププログラム案(table)*/
  /*インターシッププログラム案見出し(grid layout)*/
  /*インターシッププログラム案(grid layout)*/
}
div#internship-wrap table {
  width: 100%;
  min-width: 1000px;
  border-top: 1px solid var(--main-color4);
  border-left: 1px solid var(--main-color4);
}
div#internship-wrap table tr th {
  border-right: 1px solid var(--main-color4);
  border-bottom: 1px solid var(--main-color4);
  text-align: center;
  padding: 0.5em 1em;
}
@media screen and (max-width: 480px) {
  div#internship-wrap table tr th {
    font-size: 0.9em;
  }
}
div#internship-wrap table tr td {
  border-right: 1px solid var(--main-color4);
  border-bottom: 1px solid var(--main-color4);
  padding: 0.5em 1em;
}
@media screen and (max-width: 480px) {
  div#internship-wrap table tr td {
    font-size: 0.9em;
  }
}
div#internship-wrap div#internship-grid-head {
  width: 100%;
  min-width: 1000px;
  display: grid;
  grid-template-columns: 0.5fr 0.5fr 2.5fr 1fr;
  border-top: 1px solid var(--main-color4);
  border-left: 1px solid var(--main-color4);
}
div#internship-wrap div#internship-grid-head div {
  text-align: center;
  border-right: 1px solid var(--main-color4);
  padding: 0.5em 1em;
}
@media screen and (max-width: 480px) {
  div#internship-wrap div#internship-grid-head div {
    font-size: 0.9em;
  }
}
div#internship-wrap div#internship-grid {
  width: 100%;
  min-width: 1000px;
  display: grid;
  grid-template-columns: 0.5fr 0.5fr 2.5fr 1fr;
  grid-template-rows: repeat(10, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-top: 1px solid var(--main-color4);
  border-left: 1px solid var(--main-color4);
}
div#internship-wrap div#internship-grid div {
  border-right: 1px solid var(--main-color4);
  border-bottom: 1px solid var(--main-color4);
  padding: 0.5em 1em;
}
@media screen and (max-width: 480px) {
  div#internship-wrap div#internship-grid div {
    font-size: 0.9em;
  }
}
div#internship-wrap div#internship-grid .div1 {
  grid-area: 1/1/3/2;
  text-align: center;
}
div#internship-wrap div#internship-grid .div2 {
  grid-area: 1/2/2/3;
}
div#internship-wrap div#internship-grid .div3 {
  grid-area: 2/2/3/3;
}
div#internship-wrap div#internship-grid .div4 {
  grid-area: 1/3/2/4;
}
div#internship-wrap div#internship-grid .div5 {
  grid-area: 2/3/3/4;
}
div#internship-wrap div#internship-grid .div6 {
  grid-area: 1/4/2/5;
}
div#internship-wrap div#internship-grid .div7 {
  grid-area: 2/4/3/5;
}
div#internship-wrap div#internship-grid .div8 {
  grid-area: 3/1/5/2;
  text-align: center;
}
div#internship-wrap div#internship-grid .div9 {
  grid-area: 3/2/4/3;
}
div#internship-wrap div#internship-grid .div10 {
  grid-area: 4/2/5/3;
}
div#internship-wrap div#internship-grid .div11 {
  grid-area: 3/3/4/4;
}
div#internship-wrap div#internship-grid .div12 {
  grid-area: 4/3/5/4;
}
div#internship-wrap div#internship-grid .div13 {
  grid-area: 3/4/4/5;
}
div#internship-wrap div#internship-grid .div14 {
  grid-area: 4/4/5/5;
}
div#internship-wrap div#internship-grid .div15 {
  grid-area: 5/1/7/2;
  text-align: center;
}
div#internship-wrap div#internship-grid .div16 {
  grid-area: 5/2/6/3;
}
div#internship-wrap div#internship-grid .div17 {
  grid-area: 6/2/7/3;
}
div#internship-wrap div#internship-grid .div18 {
  grid-area: 5/3/6/4;
}
div#internship-wrap div#internship-grid .div19 {
  grid-area: 6/3/7/4;
}
div#internship-wrap div#internship-grid .div20 {
  grid-area: 5/4/6/5;
}
div#internship-wrap div#internship-grid .div21 {
  grid-area: 6/4/7/5;
}
div#internship-wrap div#internship-grid .div22 {
  grid-area: 7/1/9/2;
  text-align: center;
}
div#internship-wrap div#internship-grid .div23 {
  grid-area: 7/2/8/3;
}
div#internship-wrap div#internship-grid .div24 {
  grid-area: 8/2/9/3;
}
div#internship-wrap div#internship-grid .div25 {
  grid-area: 7/3/8/4;
}
div#internship-wrap div#internship-grid .div26 {
  grid-area: 8/3/9/4;
}
div#internship-wrap div#internship-grid .div27 {
  grid-area: 7/4/8/5;
}
div#internship-wrap div#internship-grid .div28 {
  grid-area: 8/4/9/5;
}
div#internship-wrap div#internship-grid .div29 {
  grid-area: 9/1/11/2;
  text-align: center;
}
div#internship-wrap div#internship-grid .div30 {
  grid-area: 9/2/10/3;
}
div#internship-wrap div#internship-grid .div31 {
  grid-area: 10/2/11/3;
}
div#internship-wrap div#internship-grid .div32 {
  grid-area: 9/3/10/4;
}
div#internship-wrap div#internship-grid .div33 {
  grid-area: 10/3/11/4;
}
div#internship-wrap div#internship-grid .div34 {
  grid-area: 9/4/10/5;
}
div#internship-wrap div#internship-grid .div35 {
  grid-area: 10/4/11/5;
}

/*「企業情報一覧」と「インターシップ情報」配下で表示した際の表示の切り替えクラス（URLの判定はjs）*/
body .intern-only {
  opacity: 0;
  overflow: hidden;
  height: 10px;
  padding-top: 20px;
}
body .ccm-block-edit-layout .intern-only {
  opacity: 1;
  height: auto;
}

body#intern-page .company-only {
  display: none;
}
body#intern-page .intern-only {
  opacity: 1;
  height: auto;
}
body#intern-page div.container {
  margin-top: 0;
  margin-bottom: 0;
}
body#intern-page .intern-margin {
  margin-top: 20px;
  margin-bottom: 20px;
}

a.btn_02 {
  display: inline-block;
  text-align: left;
  text-decoration: none;
  width: auto;
  padding: 0.6em 1em;
  font-weight: bold;
  letter-spacing: 0.1em;
  border: 3px solid var(--main-color6);
  border-radius: 10px;
  background: var(--main-color3);
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}
a.btn_02:hover {
  color: var(--main-color3);
  background: #fff;
}/*# sourceMappingURL=satsumakoku_r7.css.map */