<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* Newsfeed Category */
#div_main_desk {
  display: grid;
  gap: 200px;
}

/*
========== ========== ========== ========== ========== ==========
01 【 ヒーロー 】　セクション
========== ========== ========== ========== ========== ==========
*/
#section_hero {
  width: 100%;
  height: 100vh;
}
#section_hero .cb-slideshow::after {
  content: "";
  background: transparent url(../image/01-front/hero-gridfilter.png) repeat top left;
  z-index: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
#section_hero .cb-slideshow li {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
}
#section_hero .cb-slideshow li span {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  color: transparent;
  background-size: cover;
  background-position: center;
  background-repeat: none;
  opacity: 0;
  z-index: 0;
  animation: imageAnimation 36s linear infinite 0s;
}
#section_hero .cb-slideshow li:nth-child(1) span {
  background-image: url("../image/01-front/hero-background.jpg?20211020");
}
#section_hero .cb-slideshow li:nth-child(2) span {
  background-image: url("../image/01-front/hero-background-06.jpg?20211020");
  animation-delay: 6s;
}
#section_hero .cb-slideshow li:nth-child(3) span {
  background-image: url("../image/01-front/hero-background-05.jpg?20211020");
  animation-delay: 12s;
}
#section_hero .cb-slideshow li:nth-child(4) span {
  background-image: url("../image/01-front/hero-background-02.jpg?20211020");
  animation-delay: 18s;
}
#section_hero .cb-slideshow li:nth-child(5) span {
  background-image: url("../image/01-front/hero-background-03.jpg?20211020");
  animation-delay: 24s;
}
#section_hero .cb-slideshow li:nth-child(6) span {
  background-image: url("../image/01-front/hero-background-04.jpg?20211020");
  animation-delay: 30s;
}
@keyframes imageAnimation {
  /* 2 slides(*6=12s): 0 &gt; 25 &gt; 53 &gt; 78 &gt; 100 */
  /* 3 slides(*6=18s): 0 &gt; 16 &gt; 34 &gt; 50 &gt; 100 */
  /* 6 slides(*6=36s): 0 &gt; 8 &gt; 17 &gt; 25 &gt; 100 */
  0% {
    opacity: 0;
    animation-timing-function: ease-in;
  }
  8% {
    opacity: 1;
    transform: scale(1.05);
    animation-timing-function: ease-out;
  }
  17% {
    opacity: 1;
    transform: scale(1.1);
  }
  25% {
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}
#section_hero #div_heromsg {
  width: 360px;
  height: 360px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  background-image: url(../image/01-front/hero-slogan.png);
  transition: opacity 1s;
}
#section_hero #div_hero_newsbox {
  position: absolute;
  bottom: 10px;
  left: -600px;
  display: grid;
  gap: 10px;
  transition: left 0.5s;
}
#section_hero #div_hero_newsbox.show {
  left: 10px;
}
@media only screen and (max-width: 639px) {
  #section_hero #div_hero_newsbox {
    display: none;
  }
}
#section_hero #div_hero_newsbox &gt; a {
  color: #222222;
  background-color: white;
  width: 600px;
  height: 80px;
  display: grid;
  grid-template-columns: 140px auto 60px;
  align-items: start;
  gap: 15px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3019607843);
}
#section_hero #div_hero_newsbox &gt; a .boxtype {
  font-size: 1.6rem;
  font-weight: 600;
  padding: 18px 0px 0px 18px;
  background-color: whitesmoke;
  height: calc(100% - 18px);
}
#section_hero #div_hero_newsbox &gt; a .content {
  height: 100%;
  display: grid;
  align-items: center;
  align-content: center;
  gap: 10px;
}
#section_hero #div_hero_newsbox &gt; a .content .title {
  font-size: 1.6rem;
  font-weight: 500;
  color: #292E59;
}
#section_hero #div_hero_newsbox &gt; a .content .info {
  display: flex;
  gap: 20px;
  font-size: 1.2rem;
}
#section_hero #div_hero_newsbox &gt; a .content .info .category {
  display: inline-block;
  background-color: #292E59;
  color: white;
  padding: 2px 6px;
  font-size: 1.2rem;
  line-height: 1.1;
}
#section_hero #div_hero_newsbox &gt; a .content .info .category.media {
  background-color: #93385C;
  letter-spacing: 1px;
}
#section_hero #div_hero_newsbox &gt; a .content .info .category.info {
  background-color: #937F28;
  letter-spacing: 1px;
}
#section_hero #div_hero_newsbox &gt; a .content .info .category.event {
  background-color: #0068B6;
  letter-spacing: 1px;
}
#section_hero #div_hero_newsbox &gt; a .arrow {
  height: 100%;
}
#section_hero #div_hero_newsbox &gt; a .arrow img {
  width: 100%;
  height: 100%;
  -o-object-fit: none;
     object-fit: none;
}

/*
========== ========== ========== ========== ========== ==========
02 【 サブヒーロー メッセージ 】　セクション
========== ========== ========== ========== ========== ==========
*/
#section_message {
  width: 100%;
  padding: 120px 0px;
}
#section_message img {
  display: block;
  margin: 0px auto;
}
#section_message img.mobile {
  display: none;
}

/*
========== ========== ========== ========== ========== ==========
03 【 メイン看板 】　セクション
========== ========== ========== ========== ========== ==========
*/
#section_banner .div_billboard_banner {
  max-width: 1306px;
  width: calc(100% - 20px);
  margin-bottom: 80px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(40%, 1fr));
  gap: 10px;
}
#section_banner .div_billboard_banner img {
  display: block;
  width: calc(100% - 2px);
  max-width: 650px;
  border: solid 1px #cccccc;
}
@media screen and (max-width: 1203px) {
  #section_banner .div_billboard_banner {
    grid-template-columns: 1fr 1fr;
    max-width: 1014px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1364px) {
  #section_banner .div_billboard_banner {
    max-width: 1014px;
  }
}
@media screen and (max-width: 599px) {
  #section_banner .div_billboard_banner {
    grid-template-columns: 1fr;
  }
}

#section_billboard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-width: 1306px;
  margin: 0px auto 6px auto;
  color: #ffffff;
}
#section_billboard .billboard {
  height: 300px;
  text-align: center;
  vertical-align: middle;
  position: relative;
  background-size: 100%;
  background-position: center;
  transition: background-size 0.5s;
  overflow: hidden;
}
#section_billboard .billboard.small {
  height: 138px;
}
#section_billboard .billboard:not(.nozoom):hover {
  background-size: 105%;
  opacity: 0.95;
}
#section_billboard .billboard a {
  display: block;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  position: absolute;
  top: 0px;
  left: 0px;
  border: 1px solid #cccccc;
}
#section_billboard .billboard .billboard_name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
#section_billboard .billboard .billboard_name .name_jpn {
  font-size: 1.4rem;
  line-height: 3rem;
  letter-spacing: 0.2rem;
}
#section_billboard .billboard .billboard_name .name_eng {
  font-size: 2.8rem;
  font-weight: 500;
}
@media screen and (min-width: 451px) and (max-width: 1023px) {
  #section_billboard .billboard .div_new {
    width: 160px !important;
    transform-origin: 85px -45px;
    font-size: unset;
  }
}
@media screen and (max-width: 450px) {
  #section_billboard .billboard .div_new {
    display: none;
  }
}

/*
========== ========== ========== ========== ========== ==========
04 【 新着情報 】　セクション
========== ========== ========== ========== ========== ==========
*/
#section_newsfeed {
  margin: 0px auto 0px auto;
  max-width: 1306px;
}
#section_newsfeed #div_category {
  line-height: 40px;
  color: #292E59;
  display: table;
  table-layout: fixed;
  width: 100%;
  border-bottom: 1px solid #cccccc;
  margin-bottom: 20px;
}
#section_newsfeed #div_category div {
  display: table-cell;
  text-align: center;
  cursor: pointer;
}
#section_newsfeed #div_category div:not(.selected):hover {
  background: #f5f5f5;
}
#section_newsfeed #div_category div.selected {
  color: #ffffff;
  background: #292E59;
}
#section_newsfeed .div_list:not(.display) {
  display: none;
}
#section_newsfeed .div_newsfeed {
  display: table;
  table-layout: fixed;
  width: 100%;
  border-bottom: 1px solid #cccccc;
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-weight: 400;
  line-height: 3rem;
  position: relative;
}
#section_newsfeed .div_newsfeed:hover {
  border-color: #8b8b8b;
}
#section_newsfeed .div_newsfeed div {
  display: table-cell;
  font-size: 1.2rem;
}
#section_newsfeed .div_newsfeed div.newsfeed_date {
  width: 70px;
}
#section_newsfeed .div_newsfeed div.newsfeed_category {
  width: 60px;
  padding: 0px 10px;
  text-align: center;
}
#section_newsfeed .div_newsfeed div.newsfeed_category:after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
}
#section_newsfeed .div_newsfeed div.newsfeed_category.category_info {
  color: #937F28;
}
#section_newsfeed .div_newsfeed div.newsfeed_category.category_info:after {
  background: #937F28;
}
#section_newsfeed .div_newsfeed div.newsfeed_category.category_event {
  color: #0068B6;
}
#section_newsfeed .div_newsfeed div.newsfeed_category.category_event:after {
  background: #0068B6;
}
#section_newsfeed .div_newsfeed div.newsfeed_category.category_media {
  color: #93385C;
}
#section_newsfeed .div_newsfeed div.newsfeed_category.category_media:after {
  background: #93385C;
}
#section_newsfeed .div_newsfeed div.newsfeed_text {
  padding-left: 10px;
  position: relative;
}
#section_newsfeed .div_newsfeed div.newsfeed_text p.newsfeed_heading {
  font-size: 1.8rem;
}
#section_newsfeed .div_newsfeed div.newsfeed_text p.newsfeed_caption {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
#section_newsfeed .div_newsfeed div.newsfeed_text a {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
}

/*
========== ========== ========== ========== ========== ==========
【 プロモーション 】　セクション
========== ========== ========== ========== ========== ==========
*/
#section_promotion {
  background-color: #f5f5f5;
  padding: 100px 0px;
}
#section_promotion #div_promotion_desk #div_promotion_frame #div_promotion_film .div_promotion_card {
  margin: 0px 10px;
}
#section_promotion #div_promotion_desk #div_promotion_frame #div_promotion_film .div_promotion_card .div_promotion_card_cover {
  display: grid;
  justify-content: center;
  transition: all 0.2s;
  transform: scale(0.9);
  opacity: 0.8;
  transform-origin: bottom;
}
#section_promotion #div_promotion_desk #div_promotion_frame #div_promotion_film .div_promotion_card .div_promotion_card_cover img {
  max-width: 100%;
}
@media only screen and (max-width: 1366px) {
  #section_promotion #div_promotion_desk #div_promotion_frame #div_promotion_film .div_promotion_card .div_promotion_card_cover img {
    max-height: 300px;
  }
}
#section_promotion #div_promotion_desk #div_promotion_frame #div_promotion_film .div_promotion_card .div_promotion_card_title {
  text-align: center;
  margin-top: 20px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #292E59;
  transform: scale(0.9);
  opacity: 0.8;
}
#section_promotion #div_promotion_desk #div_promotion_frame #div_promotion_film .div_promotion_card .div_promotion_card_title .img_external {
  display: inline-block;
}
#section_promotion #div_promotion_desk #div_promotion_frame #div_promotion_film .div_promotion_card .div_promotion_card_caption {
  text-align: center;
  font-size: 1.4rem;
  margin-top: 10px;
  opacity: 0;
}
#section_promotion #div_promotion_desk #div_promotion_frame #div_promotion_film .div_promotion_card.slick-center .div_promotion_card_cover {
  transform: scale(1);
  opacity: 1;
}
#section_promotion #div_promotion_desk #div_promotion_frame #div_promotion_film .div_promotion_card.slick-center .div_promotion_card_title {
  transform: scale(1);
  opacity: 1;
}
#section_promotion #div_promotion_desk #div_promotion_frame #div_promotion_film .div_promotion_card.slick-center .div_promotion_card_caption {
  opacity: 1;
}
#section_promotion #div_promotion_desk .slider-nav {
  display: flex;
  justify-content: center;
}
#section_promotion #div_promotion_desk .slider-nav .slick-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
#section_promotion #div_promotion_desk .slider-nav .slick-dots &gt; li {
  display: block;
  width: 10px;
  height: 10px;
  background-color: #c1c1c1;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 50%;
}
#section_promotion #div_promotion_desk .slider-nav .slick-dots &gt; li.slick-active {
  background-color: #292E59;
}

/*
========== ========== ========== ========== ========== ==========
05 【 アイキャッチ 】　セクション
========== ========== ========== ========== ========== ==========
*/
#section_eyecatchnews {
  max-width: 1306px;
  margin: 0px auto 0px auto;
}
#section_eyecatchnews #div_eyecatchnews_panel {
  display: table;
  table-layout: fixed;
  width: 100%;
  margin-bottom: 10px;
}
#section_eyecatchnews #div_eyecatchnews_panel .div_eyecatchnews_slot {
  color: #222222;
  display: table-cell;
  width: 430px;
}
#section_eyecatchnews #div_eyecatchnews_panel .div_eyecatchnews_slot .div_lv_img {
  width: 100%;
  height: 260px;
  background-size: 100%;
  background-position: center;
  transition: background-size 0.5s;
  position: relative;
}
#section_eyecatchnews #div_eyecatchnews_panel .div_eyecatchnews_slot .div_lv_img div {
  padding: 5px 20px 5px 10px;
  background-color: #ffffff;
  position: absolute;
  bottom: 10px;
  left: 0px;
  border-radius: 0px 30px 30px 0px;
  line-height: 30px;
  font-size: 1.2rem;
}
#section_eyecatchnews #div_eyecatchnews_panel .div_eyecatchnews_slot .div_lv_content {
  font-size: 1.2rem;
  padding: 20px;
  background: #f5f5f5;
  height: 180px;
}
#section_eyecatchnews #div_eyecatchnews_panel .div_eyecatchnews_slot .div_lv_content p:first-child {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
#section_eyecatchnews #div_eyecatchnews_panel .div_eyecatchnews_slot .div_lv_content p:nth-child(2) {
  line-height: 2.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#section_eyecatchnews #div_eyecatchnews_panel .div_eyecatchnews_slot .div_lv_content .div_lv_date .div_date {
  margin-top: 20px;
}
#section_eyecatchnews #div_eyecatchnews_panel .div_eyecatchnews_slot:hover .div_lv_img {
  background-size: 105%;
}
#section_eyecatchnews #div_eyecatchnews_panel .div_eyecatchnews_slot:nth-child(2) {
  border-width: 0px 8px;
  border-style: solid;
  border-color: #ffffff;
}

/*
========== ========== ========== ========== ========== ==========
06 【 下看板 】　セクション
========== ========== ========== ========== ========== ==========
*/
#section_footbillboard {
  margin: 0px auto 0px auto;
}
#section_footbillboard #div_footbillboard {
  display: table;
  width: 1306px;
  margin: 0px auto;
}
#section_footbillboard #div_footbillboard &gt; div {
  display: table-cell;
  width: 430px;
  height: 138px;
  position: relative;
  text-align: center;
  vertical-align: middle;
  background-position: center;
  background-size: 100%;
  transition: background-size 0.5s;
  -mos-transition: background-size 0.5s;
  -webkit-transition: background-size 0.5s;
}
#section_footbillboard #div_footbillboard &gt; div .billboard_name {
  color: #ffffff;
}
#section_footbillboard #div_footbillboard &gt; div .billboard_name span:first-child {
  font-size: 1.4rem;
  line-height: 3rem;
  letter-spacing: 0.2rem;
}
#section_footbillboard #div_footbillboard &gt; div .billboard_name span:nth-child(3) {
  font-size: 2.8rem;
  font-weight: 500;
}
#section_footbillboard #div_footbillboard &gt; div:not(.nozoom):hover {
  background-size: 105%;
  opacity: 0.95;
}
#section_footbillboard #div_footbillboard &gt; div.footbillboard1 {
  background-image: url("../image/01-front/billboard_5_shoppingcart.jpg");
}
#section_footbillboard #div_footbillboard &gt; div.footbillboard2 {
  background-image: url("../image/01-front/billboard_6_recruit.jpg?version=202105");
}
#section_footbillboard #div_footbillboard &gt; div.footbillboard3 {
  background-image: url("../image/01-front/billboard_7_contact.jpg");
}
#section_footbillboard #div_footbillboard &gt; div:nth-child(2) {
  border-width: 0px 8px;
  border-style: solid;
  border-color: #ffffff;
}
#section_footbillboard #div_footbillboard &gt; div a {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
}/*# sourceMappingURL=front-page.css.map */</pre></body></html>