@charset "UTF-8";
/* font-family */
/* フォントサイズ */
/* 右回転 */
@-webkit-keyframes rotate_right {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate_right {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* 左回転 */
@-webkit-keyframes rotate_left {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
@keyframes rotate_left {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
/* X軸回転 */
@-webkit-keyframes rotate_x {
  0% {
    -webkit-transform: rotateX(0);
            transform: rotateX(0);
  }
  100% {
    -webkit-transform: rotateX(360deg);
            transform: rotateX(360deg);
  }
}
@keyframes rotate_x {
  0% {
    -webkit-transform: rotateX(0);
            transform: rotateX(0);
  }
  100% {
    -webkit-transform: rotateX(360deg);
            transform: rotateX(360deg);
  }
}
/* Y軸回転 */
@-webkit-keyframes rotate_y {
  0% {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
  }
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}
@keyframes rotate_y {
  0% {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
  }
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}
/* 上に上がりながら消える */
@-webkit-keyframes float_out_up {
  from {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
}
@keyframes float_out_up {
  from {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
}
/* 下に下がりながら表示 */
@-webkit-keyframes float_in_down {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@keyframes float_in_down {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
.theme-bg {
  background-color: #F6F7EB !important;
}

.theme-text {
  color: #333 !important;
}

.theme-border {
  border: 1px solid #357886 !important;
}

#header {
  background-color: #FFF;
  color: #333;
}

.main {
  background-color: #FFF;
  color: #333;
}

.theme-tokyo .theme-bg {
  background-color: #333;
  color: #F6F7EB !important;
}

.theme-tokyo .theme-text {
  color: #CCC !important;
}

.theme-tokyo .theme-border {
  border: 1px solid #666 !important;
}

.theme-tokyo #header {
  background-color: #000 !important;
  color: #CCC !important;
}

.theme-tokyo .main {
  background-color: #333 !important;
  color: #FFF !important;
}

/* 基本文字色 */
html {
  color: #333;
}

/* フォント */
body {
  font-family: "Noto Sans Japanese", Verdana, Roboto, "Droid Sans", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", sans-serif;
}

.font-noto {
  font-family: "Noto Sans Japanese", Verdana, Roboto, "Droid Sans", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", sans-serif;
}

.font-meiryo {
  font-family: "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.font-mono {
  font-family: Consolas, "Courier New", Courier, Monaco, "Osaka－等幅", Osaka-mono, "ＭＳ ゴシック", "MS Gothic", monospace;
}

.font-msgo {
  font-family: "Osaka－等幅", Osaka-mono, "ＭＳ ゴシック", "MS Gothic", Consolas, "Courier New", Courier, Monaco, monospace;
}

.font-btn {
  font-family: "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", sans-serif;
}

/*
================= 目次 =================

// 
// 
// 

========================================
*/
/*-------------------------------------
// 
-------------------------------------*/
/*
================= 目次 =================

// 
// 
// 

========================================
*/
/*-------------------------------------
// お知らせティッカー
//                      .news-ticker
-------------------------------------*/
.news-ticker {
  background: #585858;
  height: 50px;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.news-ticker__title {
  color: #FFF500;
  display: inline-block;
  height: 50px;
  line-height: 48px;
  font-size: 2.4rem;
  font-weight: 500;
  padding: 0px 15px;
  position: absolute;
  background: #238ad0;
  z-index: 3;
}
.news-ticker__ticker .ticker-content {
  display: inline-block;
  position: relative;
  white-space: nowrap;
  -webkit-transform: translateX(9999px);
          transform: translateX(9999px);
}
.news-ticker__ticker .ticker-content__item {
  color: #FFF;
  padding: 12px 0 13px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .news-ticker {
    height: 30px;
  }
  .news-ticker__title {
    height: 30px;
    line-height: 28px;
    font-size: 2rem;
    padding: 0px 5px;
  }
  .news-ticker__ticker .ticker-content__item {
    padding: 0;
    line-height: 1.4;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 428px) {
  .news-ticker__ticker .ticker-content__item {
    line-height: 1.6;
  }
}

/*
================= 目次 =================

// 
// 
// 

========================================
*/
/*-------------------------------------
// 会員ショートカットボタン（スマホのみ）
//                    .member-shortcut 
-------------------------------------*/
.member-shortcut {
  display: none;
}
@media screen and (max-width: 767px) {
  .member-shortcut {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    margin: 0.5em 0 1em;
  }
  .member-shortcut__item {
    width: 36%;
  }
  .member-shortcut__item .btn {
    width: 100%;
    font-size: 1.8rem;
    -webkit-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
            box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
  }
}
@media screen and (max-width: 767px) and (max-width: 575px) {
  .member-shortcut__item {
    width: 43%;
  }
}
@media screen and (max-width: 767px) and (max-width: 428px) {
  .member-shortcut__item {
    width: 45%;
  }
}
@media screen and (max-width: 767px) and (max-width: 375px) {
  .member-shortcut__item {
    width: 47%;
  }
  .member-shortcut__item .btn {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .member-shortcut__item.regist .btn {
    background-color: #0071C0;
    border-color: #005997;
    color: #FFF;
    text-shadow: 0 1px rgba(0, 0, 0, 0.1);
  }
  .member-shortcut__item.regist .btn:hover, .member-shortcut__item.regist .btn:focus {
    background-color: #0080da;
    border-color: #00538d;
    color: #FFF;
  }
  .member-shortcut__item.regist .btn .icon {
    font-size: 1.4em;
    top: 2px;
  }
}
@media screen and (max-width: 767px) {
  .member-shortcut__item.login .btn {
    background-color: #FFF500;
    border-color: #d6ce00;
    text-shadow: 0 1px rgba(0, 0, 0, 0.1);
    color: #333;
  }
  .member-shortcut__item.login .btn:hover, .member-shortcut__item.login .btn:focus {
    background-color: #fff966;
    border-color: #ccc400;
  }
  .member-shortcut__item.login .btn .icon {
    font-size: 1.4em;
    top: 3px;
  }
}

/*-------------------------------------
// TOPページ業種一覧
//                        .gyosyu_menu 
-------------------------------------*/
/* 業種アイコンフォント */
.icon-gyosyu::before {
  font-size: 4.5rem;
  margin-right: 5px;
}

/* 業種メニューレイアウト */
.gyosyu-menu__title {
  text-align: center;
  margin: 0.5em 0 0.5em;
}
.gyosyu-menu__title--icon {
  display: block;
  font-size: 22rem;
  position: relative;
  height: 75px;
}
.gyosyu-menu__title--icon::before {
  position: absolute;
  top: -6rem;
  left: 50%;
  margin-left: -0.65em;
}
.gyosyu-menu__title--text {
  font-size: 3rem;
  font-weight: 600;
  font-style: italic;
  color: #46A2E0;
}
.gyosyu-menu__body {
  width: 94%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .gyosyu-menu__title--icon {
    font-size: 12rem;
    height: 45px;
  }
  .gyosyu-menu__title--icon::before {
    top: -3rem;
  }
  .gyosyu-menu__title--text {
    font-size: 1.8rem;
  }
  .gyosyu-menu__body {
    width: 100%;
  }
}

/* 業種リスト部 */
.gyosyu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
.gyosyu-list__item {
  width: 23%;
  padding-left: 10px;
  margin: 0.3em 0 0.3em 1%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1.2;
}
.gyosyu-list__item a {
  font-size: 1.05em;
  text-decoration: underline;
  font-weight: 600;
}
.gyosyu-list__item a:not(:hover) {
  color: #585858;
}
@media screen and (max-width: 767px) {
  .gyosyu-list__item {
    width: 47%;
    margin-left: 3%;
    line-height: 1.1;
  }
  .gyosyu-list__item a {
    font-size: 1em;
  }
  .gyosyu-list .icon-gyosyu::before {
    font-size: 4rem;
  }
}
@media screen and (max-width: 575px) {
  .gyosyu-list__item {
    width: 48%;
    margin-left: 2%;
  }
  .gyosyu-list__item a {
    font-size: 0.9em;
  }
  .gyosyu-list .icon-gyosyu::before {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 428px) {
  .gyosyu-list__item {
    width: 49%;
    margin-left: 1%;
  }
  .gyosyu-list__item a {
    font-size: 0.88em;
  }
  .gyosyu-list .icon-gyosyu::before {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 375px) {
  .gyosyu-list__item a {
    font-size: 0.8em;
  }
  .gyosyu-list .icon-gyosyu::before {
    font-size: 3rem;
  }
}

/*-------------------------------------
// TOPページ コンテンツ
//                       .top-contents 
-------------------------------------*/
/* レイアウト */
.top-contents {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: stretch;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /* TOPのpanelは余白狭め */
}
.top-contents__item {
  width: 48%; /* [MEMO:2022/05/31]事務局以外が公開されたらこっちに戻す */
  /*	width: 100%;*/ /* [MEMO:2022/07/05]企業の新年度メニュー開放まではこっち */
  position: relative;
  padding-bottom: 4em;
}
.top-contents__item--wide {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .top-contents__item {
    width: 100%;
  }
}
.top-contents .panel {
  padding-left: 0.5em;
  padding-right: 0.5em;
}

/* 共通パーツ */
.to-all-list {
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: 0;
}

/*-------------------------------------
// トップページ　各一覧調整
-------------------------------------*/
.top-contents {
  /* Slick 調整 */
  /* レスポンシブ */
}
.top-contents__item .h2 {
  font-size: 2.4rem;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border-radius: 3px;
  /* 富士山アイコン */
  padding-left: 12.5rem;
}
.top-contents__item .h2 .icon {
  position: absolute;
  left: 10px;
  top: -0.7rem;
}
.top-contents__item .h2 .icon::before {
  color: #FFF;
  font-size: 9rem;
}
.top-contents__item .h2 .title-biko {
  position: absolute;
  bottom: -1.5em;
  right: 0;
  font-size: 1.4rem;
  color: #333;
}
@media screen and (max-width: 575px) {
  .top-contents__item .h2 {
    font-size: 2rem;
    height: 55px;
  }
  .top-contents__item .h2 .icon {
    top: -1.5rem;
  }
}
@media screen and (max-width: 428px) {
  .top-contents__item .h2 {
    padding-left: 10rem;
  }
  .top-contents__item .h2 .icon {
    top: -0.3rem;
  }
  .top-contents__item .h2 .icon::before {
    font-size: 7rem;
  }
}
.top-contents .list-item {
  border-width: 1px;
  margin-top: 15px;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.top-contents .list-item__item {
  position: relative;
}
.top-contents .list-item__title {
  font-size: 1.1em;
}
.top-contents .list-item__title a {
  font-weight: 600;
}
.top-contents .list-item__title a.new {
  font-weight: 700;
}
.top-contents .list-item__info {
  padding: 0;
  line-height: 1.4;
}
.top-contents__item.movie-naitei {
  padding-bottom: 0;
}
.top-contents__item.movie-naitei .movie-box {
  width: 98%;
}
.top-contents__item.movie-naitei .movie_list .panel-inner {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: stretch;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.top-contents__item.movie-naitei .movie_list .panel-inner .list-item {
  width: 45%;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .top-contents__item.movie-naitei .movie_list .panel-inner .list-item {
    width: 100%;
    margin: 5px 5px 2em;
  }
}
.top-contents__item.movie-naitei .movie_list .panel-inner .list-item__image {
  height: 192px;
}
@media screen and (max-width: 575px) {
  .top-contents__item.movie-naitei .movie_list .panel-inner .list-item__image {
    height: 192px;
  }
}
@media screen and (max-width: 428px) {
  .top-contents__item.movie-naitei .movie_list .panel-inner .list-item__image {
    height: 145px;
  }
}
@media screen and (max-width: 375px) {
  .top-contents__item.movie-naitei .movie_list .panel-inner .list-item__image {
    height: 120px;
  }
}
.top-contents__item.pickup .h2 {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.top-contents__item.pickup .h2 .cnt-company {
  text-align: right;
}
.top-contents__item.pickup .h2 .cnt-company__body {
  font-size: 0.8em;
}
.top-contents__item.pickup .h2 .cnt-company__num {
  font-size: 1.7em;
  font-weight: 500;
  color: #FFF500;
}
.top-contents__item.pickup .h2 .cnt-company__sign {
  font-size: 0.7em;
}
.top-contents__item.pickup .h2 .cnt-company__biko {
  font-size: 0.5em;
  font-weight: 200;
  padding-top: 0.3em;
}
.top-contents .pickup-box .list-item {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.top-contents .pickup-box .list-item__left {
  width: 45%;
}
.top-contents .pickup-box .list-item__right {
  width: 55%;
}
.top-contents .pickup-box .list-item__inner {
  padding-bottom: 0;
}
.top-contents .pickup-box .list-item__right {
  padding-left: 0;
  padding-bottom: 3.5em;
}
.top-contents .pickup-box .list-item__right .detail_gyosyu {
  margin-left: 0;
}
.top-contents .pickup-box .list-item__right .detail_button {
  bottom: 0;
  padding-left: 0;
  width: 100%;
  text-align: center;
}
.top-contents .pickup-box .list-item__right .detail_button .kigyo_btn {
  width: 100%;
}
.top-contents .pickup-box .list-item__right .detail_button .kigyo_btn .btn {
  width: 88%;
}
.top-contents .pickup-box .list-item__title {
  margin-bottom: 0.3em;
}
.top-contents .event-box .event-list {
  /* レイアウト */
  /* 項目別 */
  /* レスポンシブ */
}
.top-contents .event-box .event-list__item:first-child td {
  border-top: none;
}
.top-contents .event-box .event-list__head {
  font-size: 1em;
  border-color: #CCC;
}
.top-contents .event-box .event-list .attr-date {
  font-weight: 500;
  padding-left: 0.5em;
  width: auto;
}
.top-contents .event-box .event-list .attr-date__main {
  font-size: 1em;
  word-break: keep-all;
}
.top-contents .event-box .event-list .attr-date__sub {
  font-size: 0.8em;
  font-weight: 300;
}
.top-contents .event-box .event-list .attr-title__name {
  font-size: 1.1em;
}
.top-contents .event-box .event-list .attr-title__title {
  font-size: 0.9em;
}
.top-contents .event-box .event-list .attr-title__detail {
  text-align: right;
}
.top-contents .info-box .list-item__left {
  width: 33%;
}
.top-contents .info-box .list-item__right {
  width: 66%;
}
.top-contents .info-box .list-item__left .comimg {
  max-width: 90%;
  max-height: 160px;
}
@media screen and (max-width: 767px) {
  .top-contents .info-box .list-item__left .comimg {
    max-height: 180px;
  }
}
@media screen and (max-width: 575px) {
  .top-contents .info-box .list-item__left .comimg {
    max-height: 140px;
  }
}
@media screen and (max-width: 428px) {
  .top-contents .info-box .list-item__left .comimg {
    max-height: 110px;
  }
}
@media screen and (max-width: 375px) {
  .top-contents .info-box .list-item__left .comimg {
    max-height: 90px;
  }
}
.top-contents .info-box .list-item__head__date {
  position: relative !important;
  top: 0 !important;
  right: 0 !important;
  margin-right: 0.5em;
}
.top-contents .info-box .list-item__title {
  margin-top: 0.5em;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .top-contents .info-box .list-item__title {
    font-size: 1.2em;
  }
}
.top-contents .info-box .list-item__cat {
  font-size: 0.9em;
}
.top-contents .info-box .list-item__info {
  font-size: 1.5rem;
}
.top-contents .news-box .list-item__left .comimg {
  max-width: 90%;
  max-height: 140px;
}
@media screen and (max-width: 767px) {
  .top-contents .news-box .list-item__left .comimg {
    max-height: 160px;
  }
}
@media screen and (max-width: 575px) {
  .top-contents .news-box .list-item__left .comimg {
    max-height: 120px;
  }
}
@media screen and (max-width: 428px) {
  .top-contents .news-box .list-item__left .comimg {
    max-height: 90px;
  }
}
@media screen and (max-width: 375px) {
  .top-contents .news-box .list-item__left .comimg {
    max-height: 80px;
  }
}
.top-contents .news-box .list-item__title {
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .top-contents .news-box .list-item__title {
    font-size: 1.2em;
  }
}
.top-contents .news-box .list-item__info {
  font-size: 1.5rem;
}
.top-contents__item.senior_list {
  padding-bottom: 3em;
}
.top-contents .senior-box {
  color: #585858;
  width: 94%;
  margin: 0 auto;
  /* レスポンシブ */
}
.top-contents .senior-box .list-item {
  border: none;
  margin-left: 15px;
  margin-right: 15px;
  padding-bottom: 0;
}
.top-contents .senior-box .list-item__image {
  height: 200px;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.top-contents .senior-box .list-item__image:hover {
  opacity: 0.8;
}
.top-contents .senior-box .list-item__image img {
  max-width: 100%;
  max-height: 94%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.top-contents .senior-box .list-item__date {
  font-size: 0.9em;
}
.top-contents .senior-box .list-item__title {
  line-height: 1.3;
  margin: 0.2em 0;
}
.top-contents .senior-box .list-item__profile .senior-about {
  font-size: 0.85em;
  line-height: 1.2;
}
.top-contents .senior-box .list-item__profile .senior-name {
  margin-top: 0.5em;
}
.top-contents .senior-box .list-item__profile .senior-name__title {
  font-weight: 600;
}
.top-contents .senior-box .list-item__profile .senior-name__year {
  font-size: 0.9em;
  padding-left: 0.5em;
}
@media screen and (max-width: 767px) {
  .top-contents .senior-box .list-item__image {
    height: 240px;
  }
}
@media screen and (max-width: 575px) {
  .top-contents .senior-box .list-item__image {
    height: 175px;
  }
}
@media screen and (max-width: 428px) {
  .top-contents .senior-box .list-item__image {
    height: 145px;
  }
}
@media screen and (max-width: 375px) {
  .top-contents .senior-box .list-item__image {
    height: 120px;
  }
}
.top-contents__item.movie_list {
  padding-bottom: 3em;
}
.top-contents .movie-box {
  color: #585858;
  width: 94%;
  margin: 0 auto;
  /* レスポンシブ */
}
.top-contents .movie-box .list-item {
  border: none;
  margin-left: 15px;
  margin-right: 15px;
  padding-bottom: 0;
}
.top-contents .movie-box .list-item__image {
  height: 135px;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.top-contents .movie-box .list-item__image:hover {
  opacity: 0.8;
}
.top-contents .movie-box .list-item__image img {
  max-width: 100%;
  max-height: 94%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.top-contents .movie-box .list-item__date {
  font-size: 0.9em;
}
.top-contents .movie-box .list-item__title {
  line-height: 1.3;
  margin: 0.2em 0;
}
.top-contents .slick-prev::before {
  content: "D";
}
.top-contents .slick-next::before {
  content: "E";
}
.top-contents .slick-prev::before, .top-contents .slick-next::before {
  font-family: "ElegantIcons";
  font-size: 70px;
  opacity: 1;
  color: #46A2E0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .top-contents .list-item__image {
    height: 240px;
  }
}
@media screen and (max-width: 575px) {
  .top-contents {
    width: 98%;
  }
  .top-contents .list-item {
    margin-left: 12px;
    margin-right: 12px;
  }
  .top-contents .list-item__image {
    height: 175px;
  }
  .top-contents .slick-prev::before, .top-contents .slick-next::before {
    font-size: 50px;
  }
}
@media screen and (max-width: 428px) {
  .top-contents {
    width: 100%;
  }
  .top-contents .list-item {
    margin-left: 8px;
    margin-right: 8px;
  }
  .top-contents .list-item__image {
    height: 145px;
  }
  .top-contents .list-item__title {
    font-size: 1.05em;
  }
  .top-contents .slick-prev {
    left: -15px;
  }
  .top-contents .slick-next {
    right: -15px;
  }
}
@media screen and (max-width: 375px) {
  .top-contents .list-item__image {
    height: 120px;
  }
  .top-contents .list-item__title {
    letter-spacing: -1px;
  }
}/*# sourceMappingURL=index.css.map */