<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* ---------- setting ---------- ---------- */
body {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  -webkit-font-smoothing: antialiased;
}

main {
  display: block;
}
@media screen and (min-width: 768px) {
  main {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  main {
    font-size: 14px;
    margin-top: 60px;
  }
  main img {
    max-width: 100%;
  }
}

/* ----------------------------------------------------------
.btn-pagetop
---------------------------------------------------------- */
.btn-pagetop {
  position: fixed;
  display: block;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #000;
  color: #fff;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
  opacity: 0;
  transition-duration: 0.2s;
  transition-property: opacity;
  visibility: hidden;
}
.btn-pagetop:after {
  content: "";
  position: absolute;
  top: 18px;
  left: 10px;
  width: 12px;
  height: 1px;
  background: #fff;
  transform: rotate(-45deg);
}
.btn-pagetop:before {
  content: "";
  position: absolute;
  top: 18px;
  right: 10px;
  width: 12px;
  height: 1px;
  background: #fff;
  transform: rotate(45deg);
}
.btn-pagetop.js-show {
  opacity: 1;
  visibility: visible;
}
.btn-pagetop.js-show:hover {
  opacity: 0.6;
}
.btn-pagetop.js-fixed {
  top: -60px;
  bottom: auto;
  position: absolute;
}

/* ----------------------------------------------------------
.area-modal
---------------------------------------------------------- */
.area-modal {
  visibility: hidden;
  opacity: 0;
  transition-duration: 0.2s;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1000;
}
.area-modal.js-show {
  visibility: visible;
  opacity: 1;
}
.area-modal ._modal-bg {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background: rgba(0, 0, 0, 0.85);
}
.area-modal ._modal-btn-close {
  position: absolute;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  transition-duration: 0.2s;
}
@media print, screen and (min-width: 768px) {
  .area-modal ._modal-btn-close {
    top: -50px;
    right: 0px;
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .area-modal ._modal-btn-close {
    top: 5px;
    right: 5px;
    width: 40px;
    height: 40px;
  }
}
.area-modal ._modal-btn-close:hover {
  opacity: 0.8;
}
.area-modal ._modal-btn-close:after, .area-modal ._modal-btn-close:before {
  content: "";
  position: absolute;
  top: 18px;
  left: 8px;
  width: 25px;
  height: 4px;
  transform: rotate(-45deg);
}
@media print, screen and (min-width: 768px) {
  .area-modal ._modal-btn-close:after, .area-modal ._modal-btn-close:before {
    background: #fff;
  }
}
@media screen and (max-width: 767px) {
  .area-modal ._modal-btn-close:after, .area-modal ._modal-btn-close:before {
    background: #000;
  }
}
.area-modal ._modal-btn-close:before {
  transform: rotate(45deg);
}
.area-modal ._modal-box {
  position: absolute;
  background: #fff;
  box-sizing: border-box;
  border-radius: 5px;
}
@media print, screen and (min-width: 768px) {
  .area-modal ._modal-box {
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    margin: -300px 0 0 -300px;
  }
}
@media screen and (max-width: 767px) {
  .area-modal ._modal-box {
    top: 10px;
    left: 10px;
    bottom: 10px;
    right: 10px;
    width: auto;
    height: auto;
    margin: 0;
  }
}
.area-modal ._modal-box ._modal-head {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  padding: 15px 0 0 20px;
  height: 50px;
  background: #eee;
  box-sizing: border-box;
}
.area-modal ._modal-box ._modal-body {
  position: absolute;
  top: 50px;
  bottom: 50px;
  left: 0px;
  right: 0px;
  padding: 20px;
  background: #ccc;
  box-sizing: border-box;
  overflow-y: scroll;
}
.area-modal ._modal-box ._modal-body ._t1 {
  font-size: 18px;
  line-height: 1.2;
  font-weight: bold;
}
.area-modal ._modal-box ._modal-body ._t2 {
  font-size: 14px;
  line-height: 1.8;
}
.area-modal ._modal-box ._modal-body ._t3 {
  font-size: 12px;
  line-height: 1.8;
}
.area-modal ._modal-box ._modal-foot {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  padding: 7px 0 0 0;
  height: 50px;
  background: #eee;
  box-sizing: border-box;
}
.area-modal ._modal-box ._modal-foot ._btn-do {
  display: block;
  box-sizing: border-box;
  text-align: center;
  cursor: pointer;
  width: 200px;
  margin: 0 auto;
  padding: 5px 0;
  font-size: 14px;
  background: #666;
  color: #fff;
}
.area-modal ._modal-box ._modal-foot ._btn-do:hover {
  background: #333;
}

/* リセットCSS */
html, body {
  width: 100%;
  height: 100%;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul, li, blockquote, pre, a, div {
  margin: 0;
  padding: 0;
  font-size: 100%;
  line-height: inherit;
  box-sizing: border-box;
}

body {
  -webkit-text-size-adjust: 100%;
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th, td {
  vertical-align: top;
  text-align: left;
  font-weight: normal;
}

img {
  border: 0;
  vertical-align: bottom;
}

a {
  text-decoration: none;
}

@media print, screen and (min-width: 768px) {
  /* ----------------------------------------------------------
  .area-footer
  ---------------------------------------------------------- */
  .area-footer {
    margin-top: 100px;
    position: relative;
    background: #434343;
    padding: 60px 0 40px 0;
  }
  .area-footer .mod-sitelinks-title ._en {
    color: #dc1a1a;
  }
  .area-footer .mod-sitelinks-title ._ja {
    color: #fff;
  }
  .area-footer .mod-sitelinks-list ._gradu {
    color: #dc1a1a;
  }
  .area-footer .mod-sitelinks-list ._career {
    color: #4881C4;
  }
  .area-footer .mod-sitelinks-list a {
    color: #fff;
  }
  .area-footer .mod-sitelinks-list a:hover {
    color: #DC1A1A;
  }
  .area-copy {
    background: #212121;
    color: #fff;
    padding: 25px;
    text-align: center;
  }
  .area-copy small {
    font-size: 12px;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.05em;
    color: #efefef;
  }
  .area-header-sp {
    display: none;
  }
  .area-menu-sp {
    display: none;
  }
  /* ----------------------------------------------------------
  .area-header
  ---------------------------------------------------------- */
  .area-header-wrap {
    position: relative;
    height: 90px;
  }
  .area-header {
    position: fixed;
    height: 90px;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 100;
    background: #fff;
  }
  .area-header ._logo {
    position: absolute;
    top: 19px;
    left: 20px;
    font-weight: bold;
    width: 230px;
    height: 50px;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .area-header ._logo img {
    width: 100%;
  }
  .area-header ._logo:hover {
    opacity: 0.8;
  }
  /* ----------------------------------------------------------
  area-mega-menu
  ---------------------------------------------------------- */
  /* ----------------------------------------------------------
  area-mega-menu
  ---------------------------------------------------------- */
  /* ----------------------------------------------------------
  .area-wrapper
  ---------------------------------------------------------- */
  /* ----------------------------------------------------------
  .area-inner
  ---------------------------------------------------------- */
  /* ----------------------------------------------------------
  .block-inner
  ---------------------------------------------------------- */
}
@media print, screen and (min-width: 768px) and (min-width: 1301px) {
  .area-header ._gmenu {
    position: absolute;
    top: 22px;
    left: 302px;
  }
  .area-header ._gmenu ul {
    display: flex;
    gap: 30px;
  }
  .area-header ._gmenu li {
    width: 165px;
  }
  .area-header ._btns {
    position: absolute;
    top: 18px;
    right: 105px;
    display: flex;
  }
  .area-header ._menu-btn {
    position: absolute;
    top: 15px;
    right: 24px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .area-header ._gmenu {
    position: absolute;
    top: 22px;
    left: 270px;
  }
  .area-header ._gmenu ul {
    display: flex;
    gap: 15px;
  }
  .area-header ._btns {
    position: absolute;
    top: 18px;
    right: 80px;
    display: flex;
  }
  .area-header ._menu-btn {
    position: absolute;
    top: 15px;
    right: 10px;
  }
}
@media print, screen and (min-width: 768px) {
  .area-modal-menu {
    position: fixed;
    z-index: -1;
    visibility: hiddearea-modal-menun;
    opacity: 0;
    transition-duration: 0.4s;
    transform: translate(0, -50px);
    top: 90px;
    left: 0px;
    right: 0px;
    min-height: 140px;
    padding: 70px 0 40px 0;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(30px);
  }
  body.js-gmenu-active .area-modal-menu {
    visibility: visible;
    z-index: 50;
    opacity: 1;
    transform: translate(0, 0);
  }
  .mod-sitelinks-set {
    margin: 0 auto;
  }
  .mod-sitelinks-set ._cols {
    display: flex;
    justify-content: center;
    gap: 30px;
  }
  .mod-sitelinks-title {
    border-bottom: 1px solid #DC1A1A;
    padding-bottom: 10px;
  }
  .mod-sitelinks-title ._en {
    display: block;
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #000000;
  }
  .mod-sitelinks-title ._en b {
    color: #dc1a1a;
  }
  .mod-sitelinks-title ._ja {
    margin-top: 5px;
    display: block;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #000000;
  }
  .mod-sitelinks-list {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.5;
    color: #a3a3a3;
  }
  .mod-sitelinks-list li {
    margin: 7px 0;
  }
  .mod-sitelinks-list ._gradu,
  .mod-sitelinks-list ._career {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.05em;
    color: #dc1a1a;
  }
  .mod-sitelinks-list ._career {
    color: #1459AA;
  }
  .mod-sitelinks-list a {
    display: block;
    position: relative;
    font-size: 12px;
    line-height: 1.5;
    color: #a3a3a3;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .mod-sitelinks-list a:hover {
    color: #DC1A1A;
  }
  .mod-modal-menu-btn {
    width: 60px;
    height: 60px;
  }
  .mod-modal-menu-btn span {
    transition-duration: 0.2s;
    position: absolute;
    background: #212121;
    height: 1px;
    left: 8px;
    right: 8px;
  }
  .mod-modal-menu-btn span:nth-child(1) {
    top: 22px;
  }
  .mod-modal-menu-btn span:nth-child(2) {
    top: 30px;
  }
  .mod-modal-menu-btn span:nth-child(3) {
    bottom: 22px;
  }
  body.js-gmenu-active .mod-modal-menu-btn span:nth-child(1) {
    position: absolute;
    top: 30px;
    transform: rotate(45deg);
  }
  body.js-gmenu-active .mod-modal-menu-btn span:nth-child(2) {
    display: none;
  }
  body.js-gmenu-active .mod-modal-menu-btn span:nth-child(3) {
    position: absolute;
    top: 30px;
    transform: rotate(-45deg);
  }
  .mod-head-gmenu-btn {
    position: relative;
    padding: 0 0 10px 0;
    display: block;
    cursor: pointer;
  }
  .mod-head-gmenu-btn:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0;
    height: 1px;
    transition-duration: 0.2s;
    background: #dc1a1a;
  }
  .mod-head-gmenu-btn ._en {
    display: block;
    font-size: 21px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #000000;
    transition-duration: 0.2s;
  }
  .mod-head-gmenu-btn ._en b {
    color: #dc1a1a;
  }
  .mod-head-gmenu-btn ._ja {
    margin-top: 5px;
    display: block;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #000000;
    transition-duration: 0.2s;
  }
  .mod-head-gmenu-btn:hover:after {
    height: 5px;
    bottom: -2px;
  }
  .mod-head-gmenu-btn:hover ._en {
    color: #dc1a1a;
  }
  .mod-head-gmenu-btn:hover ._ja {
    color: #dc1a1a;
  }
  .mod-head-btn-entry {
    background: #DC1A1A;
    padding: 0 10px;
    height: 54px;
    font-size: 15px;
    text-align: center;
    font-weight: 500;
    line-height: 1.53;
    letter-spacing: 0.1em;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition-duration: 0.2s;
  }
}
@media print, screen and (min-width: 768px) and (min-width: 1301px) {
  .mod-head-btn-entry {
    width: 150px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .mod-head-btn-entry {
    font-size: 12px;
  }
}
@media print, screen and (min-width: 768px) {
  .mod-head-btn-entry.is-entry {
    background: #DC1A1A;
  }
  .mod-head-btn-entry.is-mypage {
    background: #212121;
  }
  .mod-head-btn-entry:hover {
    opacity: 0.8;
  }
  .area-mega-menu {
    position: absolute;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition-duration: 0.2s;
    top: 90px;
    left: 0px;
    right: 0px;
    min-height: 140px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(30px);
    padding: 60px 0 60px 0;
  }
  body.js-header-menu-open .area-mega-menu {
    visibility: visible;
    z-index: 50;
    opacity: 1;
  }
  body.js-fixed-menu .area-mega-menu {
    position: fixed;
    top: 50px;
  }
  .area-mega-menu ._set {
    display: none;
  }
  .mod-mega-item-list.is-about {
    width: 896px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
  .mod-mega-item-list.is-about img {
    width: 100%;
  }
  .mod-mega-item-list.is-work {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
  }
  .mod-mega-item-list.is-work img {
    width: 100%;
  }
  .mod-mega-item-list.is-recruit {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
  }
  .mod-mega-item-list.is-recruit img {
    width: 100%;
  }
  .mod-mega-item-list.is-recruit .mod-mega-item-A {
    width: 350px;
  }
  .mod-mega-item-work {
    width: 1027px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
  .mod-mega-item-work img {
    width: 100%;
  }
  .mod-mega-item-work ._left {
    width: 412px;
  }
  .mod-mega-item-work ._right {
    width: 570px;
  }
  .mod-mega-item-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.05em;
    color: #DC1A1A;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #DC1A1A;
  }
  .mod-mega-item-title.is-career {
    color: #1459aa;
    border-bottom: 1px solid #1459aa;
  }
  .mod-mega-item-A {
    display: block;
    width: 412px;
  }
  .mod-mega-item-A.is-disable {
    opacity: 0.5;
    pointer-events: none;
  }
  .mod-mega-item-A ._image {
    overflow: hidden;
  }
  .mod-mega-item-A ._image img {
    transition-duration: 0.2s;
  }
  .mod-mega-item-A ._text {
    display: inline-block;
    margin-top: -20px;
    position: relative;
    padding-left: 12px;
  }
  .mod-mega-item-A ._text:after {
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    width: 10px;
    background: #dc1a1a;
  }
  .mod-mega-item-A ._text span {
    background: #fff;
    padding: 6px 15px;
    display: block;
    font-size: 16px;
    line-height: 1.5;
    color: #212121;
  }
  .mod-mega-item-B {
    display: block;
    width: 180px;
  }
  .mod-mega-item-B ._text {
    position: relative;
    text-align: center;
  }
  .mod-mega-item-B ._text span {
    background: #fff;
    padding: 10px 5px;
    display: block;
    font-size: 12px;
    line-height: 1.5;
    color: #212121;
  }
  .area-wrapper {
    position: relative;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1120px) {
  .area-wrapper {
    min-width: 1120px;
  }
}
@media print, screen and (min-width: 768px) {
  .area-inner {
    position: relative;
  }
}
@media print, screen and (min-width: 768px) and (min-width: 768px) {
  .area-inner {
    margin: 0 auto;
    width: 1080px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1120px) {
  .area-inner {
    margin: 0 20px;
  }
}
@media print, screen and (min-width: 768px) and (min-width: 768px) {
  .block-inner {
    margin: 0 auto;
    width: 1080px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1120px) {
  .block-inner {
    margin: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  /* ----------------------------------------------------------
  .area-footer
  ---------------------------------------------------------- */
  .area-footer {
    margin-top: 60px;
    position: relative;
    background: #434343;
    padding: 30px 30px 40px 30px;
  }
  .area-footer .mod-sitelinks-title ._en {
    color: #dc1a1a;
  }
  .area-footer .mod-sitelinks-title ._ja {
    color: #fff;
  }
  .area-footer .mod-sitelinks-list {
    font-size: 12px;
    line-height: 1.5;
    color: #a3a3a3;
  }
  .area-footer .mod-sitelinks-list ._gradu {
    color: #dc1a1a;
  }
  .area-footer .mod-sitelinks-list ._career {
    color: #4881C4;
  }
  .area-footer .mod-sitelinks-list a {
    color: #fff;
  }
  .area-footer .mod-sitelinks-list a:hover {
    color: #DC1A1A;
  }
  .area-footer .mod-sitelinks-list .is-disable {
    opacity: 0.5;
  }
  .area-copy {
    background: #212121;
    color: #fff;
    padding: 10px 0;
    text-align: center;
  }
  .area-copy small {
    font-size: 10px;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.05em;
    color: #efefef;
  }
  .area-header {
    display: none;
  }
  .area-mega-menu {
    display: none;
  }
  .area-modal-menu {
    display: none;
  }
  /* ----------------------------------------------------------
  .area-header-sp
  ---------------------------------------------------------- */
  .area-header-sp ._header {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 60px;
    background: #fff;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4);
    z-index: 100;
  }
  .area-header-sp ._header ._logo {
    position: absolute;
    top: 12px;
    left: 10px;
    height: 30px;
    width: 155px;
  }
  .area-header-sp ._header ._logo img {
    width: 100%;
  }
  .area-header-sp ._menu-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 50px;
    height: 50px;
  }
  .area-header-sp ._menu-btn span {
    transition-duration: 0.2s;
    position: absolute;
    background: red;
    height: 1px;
    left: 7px;
    right: 7px;
  }
  .area-header-sp ._menu-btn span:nth-child(1) {
    top: 18px;
  }
  .area-header-sp ._menu-btn span:nth-child(2) {
    top: 25px;
  }
  .area-header-sp ._menu-btn span:nth-child(3) {
    bottom: 17px;
  }
  body.js-sp-menu-active .area-header-sp ._menu-btn span:nth-child(1) {
    position: absolute;
    top: 25px;
    transform: rotate(45deg);
  }
  body.js-sp-menu-active .area-header-sp ._menu-btn span:nth-child(2) {
    display: none;
  }
  body.js-sp-menu-active .area-header-sp ._menu-btn span:nth-child(3) {
    position: absolute;
    top: 25px;
    transform: rotate(-45deg);
  }
  /* ----------------------------------------------------------
  .area-menu-sp
  ---------------------------------------------------------- */
  .area-menu-sp {
    position: fixed;
    top: 60px;
    left: 0px;
    right: 0px;
    bottom: 0;
    z-index: 100;
    color: #fff;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    z-index: -1;
    visibility: hidden;
  }
  .area-menu-sp a {
    color: #fff;
  }
  body.js-sp-menu-active .area-menu-sp {
    z-index: 105;
    visibility: visible;
  }
  .area-menu-sp:before {
    content: "";
    display: block;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    height: 0;
    background-color: #fff;
    opacity: 0;
    transition-duration: 0.2s;
  }
  body.js-sp-menu-active .area-menu-sp:before {
    opacity: 1;
    transition-duration: 0.2s;
    height: 100%;
  }
  .area-menu-sp ._inner {
    padding: 30px;
    position: relative;
    padding-bottom: 60px;
    opacity: 0;
    transition-duration: 0s;
    transition-delay: 0;
  }
  body.js-sp-menu-active .area-menu-sp ._inner {
    opacity: 1;
    transition-duration: 0.2s;
    transition-delay: 0.2s;
  }
  .mod-sitelinks-set ._cols {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .mod-sitelinks-title {
    border-bottom: 1px solid #DC1A1A;
    padding-bottom: 10px;
  }
  .mod-sitelinks-title ._en {
    display: block;
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #000000;
  }
  .mod-sitelinks-title ._en b {
    color: #dc1a1a;
  }
  .mod-sitelinks-title ._ja {
    margin-top: 5px;
    display: block;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #000000;
  }
  .mod-sitelinks-list {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.5;
    color: #a3a3a3;
  }
  .mod-sitelinks-list li {
    margin: 7px 0;
  }
  .mod-sitelinks-list ._gradu,
  .mod-sitelinks-list ._career {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.05em;
    color: #dc1a1a;
  }
  .mod-sitelinks-list ._career {
    color: #1459AA;
  }
  .mod-sitelinks-list .is-disable {
    opacity: 0.5;
  }
  .mod-sitelinks-list a {
    display: block;
    position: relative;
    font-size: 12px;
    line-height: 1.5;
    color: #a3a3a3;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .mod-sitelinks-list a:hover {
    color: #DC1A1A;
  }
  /* ----------------------------------------------------------
  .area-wrapper
  ---------------------------------------------------------- */
  .area-wrapper {
    position: relative;
    overflow: hidden;
  }
  /* ----------------------------------------------------------
  .area-inner
  ---------------------------------------------------------- */
  .area-inner {
    position: relative;
  }
  /* ----------------------------------------------------------
  .block-inner
  ---------------------------------------------------------- */
  .block-inner-sp {
    padding-right: 15px;
    padding-left: 15px;
  }
}
._dev {
  background: #888;
}
._dev img {
  max-width: 200px;
}</pre></body></html>