@charset "UTF-8";
/* ---------- setting ---------- ---------- */
:root {
  --col1:#b8183e;
  --col2:#1D7E24;
  --col3:#023A7F;
  --col4:#000000;
  --mc:#b8183e;
}

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 (max-width: 767px) {
  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 {
    margin-top: 100px;
  }
  .mod-footer-brand-items {
    display: flex;
    gap: 1px;
  }
  .mod-footer-brand-items > li {
    flex: 1;
  }
  .mod-footer-brand-item {
    display: block;
    position: relative;
    padding: 25px 0;
    background-color: #F9ECEF;
    height: 100%;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .mod-footer-brand-item.is-2 {
    background-color: #EAF3EB;
  }
  .mod-footer-brand-item.is-3 {
    background-color: #EDF1F7;
  }
  .mod-footer-brand-item.is-4 {
    background-color: #EDEDED;
  }
  .mod-footer-brand-item:hover {
    text-decoration: none;
    filter: brightness(1.02);
  }
  .mod-footer-brand-item ._inner {
    position: relative;
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }
  .mod-footer-brand-item ._item-image {
    text-align: center;
  }
  .mod-footer-brand-item ._item-image img {
    width: 80px;
  }
  .mod-footer-brand-item ._item-texts {
    display: flex;
    gap: 10px;
    flex-direction: column;
  }
  .mod-footer-brand-item ._item-texts ._label {
    font-size: 15px;
    line-height: 1.66;
    letter-spacing: 0.2em;
    color: #b8183e;
    position: relative;
    font-weight: bold;
    padding: 0 0 0 40px;
  }
  .mod-footer-brand-item ._item-texts ._label:after {
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    background: url(/group_recruiting_assets/images/comeback/common/images/icon/arrow-a.svg) left top no-repeat;
    background-size: contain;
    width: 29px;
    height: 29px;
  }
  .mod-footer-brand-item ._item-texts ._name {
    display: none;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.13;
    letter-spacing: 0.2em;
    color: #000;
  }
  .mod-footerlink-list {
    display: flex;
    gap: 10px;
    flex-direction: column;
  }
  .mod-footerlink-list.is-2 a {
    color: var(--col2);
  }
  .mod-footerlink-list.is-3 a {
    color: var(--col3);
  }
  .mod-footerlink-list.is-4 a {
    color: var(--col4);
  }
  .mod-footerlink-list li a {
    font-size: 12px;
    line-height: 1.66;
    color: #b8183e;
    position: relative;
    font-weight: bold;
    padding: 0 0 0 27px;
  }
  .mod-footerlink-list li a:after {
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    background: url(/group_recruiting_assets/images/comeback/common/images/icon/arrow-a.svg) left top no-repeat;
    background-size: contain;
    width: 19px;
    height: 19px;
  }
  .area-copy {
    background-color: #fff;
    padding: 40px 0;
    text-align: center;
  }
  .area-copy small {
    font-size: 12px;
    text-align: center;
    line-height: 2.5;
    letter-spacing: 0.095em;
    color: #000;
  }
  .area-header-wap {
    height: 120px;
  }
  .area-header {
    position: fixed;
    background-color: #fff;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 100;
    height: 120px;
    color: #333;
  }
  .area-header img {
    width: 100%;
  }
  .area-header ._logo {
    position: absolute;
    top: 30px;
    left: 52px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
  }
  .area-header ._btns {
    position: absolute;
    top: 40px;
    right: 190px;
    display: flex;
    gap: 15px;
    transition-duration: 0.2s;
    opacity: 0;
    transform: translate(0, -200px);
  }
  body.js-gmenu-active .area-header ._btns {
    opacity: 1;
    transform: translate(0, 0);
  }
  .area-header ._menu-btn {
    position: absolute;
    top: 30px;
    right: 75px;
  }
  .mod-head-sitename {
    font-size: 15px;
    line-height: 1.26;
    letter-spacing: 0.2em;
    font-weight: bold;
  }
  .mod-head-sitename a {
    color: #333;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .mod-head-sitename a:hover {
    opacity: 0.8;
  }
  .mod-head-extra {
    font-size: 12px;
    line-height: 1.58;
    letter-spacing: 0.2em;
  }
  .mod-head-logo {
    width: 217px;
    display: block;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .mod-head-logo:hover {
    opacity: 0.8;
  }
  .mod-head-btn {
    width: 200px;
    height: 50px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition-duration: 0.2s;
    font-size: 16px;
    text-align: center;
    letter-spacing: 0.1em;
  }
  .mod-head-btn.is-top {
    background: #FF8F86;
  }
  .mod-head-btn.is-top2 {
    background: #33D195;
  }
  .mod-head-btn:hover {
    opacity: 0.8;
  }
  .mod-head-bar {
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .mod-head-bar:hover {
    opacity: 0.8;
  }
  .mod-head-bar span {
    transition-duration: 0.2s;
    position: absolute;
    background: #000;
    height: 1px;
    left: 5px;
    right: 5px;
  }
  .mod-head-bar span:nth-child(1) {
    top: 15px;
  }
  .mod-head-bar span:nth-child(2) {
    top: 30px;
  }
  .mod-head-bar span:nth-child(3) {
    bottom: 15px;
  }
  body.js-gmenu-active .mod-head-bar span:nth-child(1) {
    position: absolute;
    top: 30px;
    transform: rotate(45deg);
  }
  body.js-gmenu-active .mod-head-bar span:nth-child(2) {
    display: none;
  }
  body.js-gmenu-active .mod-head-bar span:nth-child(3) {
    position: absolute;
    top: 30px;
    transform: rotate(-45deg);
  }
  /* ----------------------------------------------------------
  area-mega-menu
  ---------------------------------------------------------- */
  .area-modal-menu {
    position: fixed;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition-duration: 0.4s;
    transform: translate(0, -200px);
    top: 0;
    left: 0px;
    right: 0px;
    bottom: 0;
    background: #F0F3F5;
    padding: 170px 0 40px 0;
  }
  body.js-gmenu-active .area-modal-menu {
    visibility: visible;
    z-index: 50;
    opacity: 1;
    transform: translate(0, 0);
  }
  .area-modal-menu a {
    color: #333;
    transition-duration: 0.4s;
  }
  .area-modal-menu a.is-under {
    color: #ccc;
  }
  .area-modal-menu a.is-under:before {
    background: #ccc;
  }
  ._btns-sp {
    display: none;
  }
  .mod-sitelinks-set {
    opacity: 0;
    transition-duration: 0.4s;
  }
  body.js-gmenu-active .mod-sitelinks-set {
    opacity: 1;
  }
  .mod-sitelinks-set ._cols {
    display: flex;
    justify-content: space-between;
    gap: 50px;
  }
  .mod-sitelinks-set ._cols ._col {
    flex: 1;
  }
  .mod-sitelinks-title {
    text-align: center;
  }
  .mod-sitelinks-title ._more-sp {
    display: none;
  }
  .mod-sitelinks-title img {
    width: 110px;
  }
  .mod-sitelinks-list {
    margin-top: 35px;
    display: flex;
    gap: 22px;
    flex-direction: column;
  }
  .mod-sitelinks-list.is-2 a {
    color: var(--col2);
  }
  .mod-sitelinks-list.is-2 a:hover {
    background-color: var(--col2);
  }
  .mod-sitelinks-list.is-3 a {
    color: var(--col3);
  }
  .mod-sitelinks-list.is-3 a:hover {
    background-color: var(--col3);
  }
  .mod-sitelinks-list.is-4 a {
    color: var(--col4);
  }
  .mod-sitelinks-list.is-4 a:hover {
    background-color: var(--col4);
  }
  .mod-sitelinks-list a {
    height: 53px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.1em;
    background-color: #fff;
    color: var(--col1);
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .mod-sitelinks-list a.is-disable {
    opacity: 0.4;
    pointer-events: none;
    color: #888;
  }
  .mod-sitelinks-list a:hover {
    color: #fff;
    background-color: var(--col1);
  }
  .mod-sitelinks-list a span:nth-child(1) {
    font-size: 15px;
  }
  .mod-sitelinks-list a span:nth-child(2) {
    font-size: 11px;
  }
  /* ----------------------------------------------------------
  .area-wrapper
  ---------------------------------------------------------- */
  .area-wrapper {
    position: relative;
  }
  /* ----------------------------------------------------------
  .area-inner
  ---------------------------------------------------------- */
  /* ----------------------------------------------------------
  .block-inner
  ---------------------------------------------------------- */
}
@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1200px) {
  .area-wrapper {
    min-width: 1200px;
  }
}
@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: 1160px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1200px) {
  .area-inner {
    margin: 0 20px;
  }
}
@media print, screen and (min-width: 768px) and (min-width: 768px) {
  .block-inner {
    margin: 0 auto;
    width: 1160px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1200px) {
  .block-inner {
    margin: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .area-footer {
    margin-top: 50px;
  }
  body:not(.page-index) .mod-footer-brand-items {
    display: none;
  }
  .mod-footer-brand-items {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .mod-footer-brand-item {
    display: block;
    position: relative;
    padding: 20px 0 20px 0;
    background-color: #F9ECEF;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .mod-footer-brand-item.is-2 {
    background-color: #EAF3EB;
  }
  .mod-footer-brand-item.is-3 {
    background-color: #EDF1F7;
  }
  .mod-footer-brand-item.is-4 {
    background-color: #EDEDED;
  }
  .mod-footer-brand-item:hover {
    text-decoration: none;
    filter: brightness(1.02);
  }
  .mod-footer-brand-item ._inner {
    margin: 0 20px;
    position: relative;
  }
  .mod-footer-brand-item ._item-image {
    position: absolute;
    top: calc(50% - 40px);
    right: 0px;
  }
  .mod-footer-brand-item ._item-image img {
    width: 80px;
  }
  .mod-footer-brand-item ._item-texts {
    display: flex;
    gap: 10px;
    flex-direction: column;
  }
  .mod-footer-brand-item ._item-texts ._label {
    font-size: 13px;
    line-height: 1.66;
    letter-spacing: 0.2em;
    color: #b8183e;
    position: relative;
    font-weight: bold;
    padding: 0 0 0 32px;
  }
  .mod-footer-brand-item ._item-texts ._label:after {
    content: "";
    display: block;
    position: absolute;
    top: -2px;
    left: 0px;
    background: url(/group_recruiting_assets/images/comeback/common/images/icon/arrow-a.svg) left top no-repeat;
    background-size: contain;
    width: 23px;
    height: 23px;
  }
  .mod-footer-brand-item ._item-texts ._name {
    display: none;
    margin-top: 10px;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.13;
    letter-spacing: 0.2em;
    color: #000;
  }
  .mod-footerlink-list {
    display: flex;
    gap: 10px;
    flex-direction: column;
  }
  .mod-footerlink-list.is-2 a {
    color: var(--col2);
  }
  .mod-footerlink-list.is-3 a {
    color: var(--col3);
  }
  .mod-footerlink-list.is-4 a {
    color: var(--col4);
  }
  .mod-footerlink-list li a {
    font-size: 12px;
    line-height: 1.66;
    color: #b8183e;
    position: relative;
    font-weight: bold;
    padding: 0 0 0 27px;
  }
  .mod-footerlink-list li a:after {
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    background: url(/group_recruiting_assets/images/comeback/common/images/icon/arrow-a.svg) left top no-repeat;
    background-size: contain;
    width: 19px;
    height: 19px;
  }
  .area-copy {
    background-color: #fff;
    padding: 30px 0;
    text-align: center;
  }
  .area-copy small {
    font-size: 11px;
    text-align: center;
    line-height: 2fr;
    letter-spacing: 0.095em;
    color: #000;
  }
  .area-copy {
    padding-bottom: 140px;
  }
  .area-header-wap {
    height: 110px;
  }
  .area-header {
    position: fixed;
    background-color: #fff;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 100;
    height: 110px;
    color: #333;
  }
  .area-header img {
    width: 100%;
  }
  body.js-gmenu-active .area-header {
    background: #F0F3F5;
  }
  .area-header ._logo {
    position: absolute;
    top: 10px;
    left: 13px;
    display: flex;
    gap: 2px;
    flex-direction: column;
    align-items: center;
  }
  .area-header ._btns {
    display: none;
  }
  .area-header ._menu-btn {
    position: absolute;
    top: 22px;
    right: 20px;
  }
  .mod-head-sitename {
    font-size: 12px;
    line-height: 1.26;
    letter-spacing: 0.1em;
    font-weight: bold;
  }
  .mod-head-extra {
    font-size: 10px;
    line-height: 1.58;
    letter-spacing: 0.1em;
  }
  .mod-head-logo {
    width: 165px;
    display: block;
  }
  a.mod-head-btn {
    height: 50px;
    color: #fff !important;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition-duration: 0.2s;
    font-size: 16px;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.1em;
  }
  a.mod-head-btn.is-top {
    background: #FF8F86;
  }
  a.mod-head-btn.is-top2 {
    background: #33D195;
  }
  a.mod-head-btn:hover {
    opacity: 0.8;
  }
  .mod-head-bar {
    width: 60px;
    height: 60px;
  }
  .mod-head-bar span {
    transition-duration: 0.2s;
    position: absolute;
    background: #000;
    height: 1px;
    left: 8px;
    right: 8px;
  }
  .mod-head-bar span:nth-child(1) {
    top: 17px;
  }
  .mod-head-bar span:nth-child(2) {
    top: 30px;
  }
  .mod-head-bar span:nth-child(3) {
    bottom: 17px;
  }
  body.js-gmenu-active .mod-head-bar span:nth-child(1) {
    position: absolute;
    top: 30px;
    transform: rotate(45deg);
  }
  body.js-gmenu-active .mod-head-bar span:nth-child(2) {
    display: none;
  }
  body.js-gmenu-active .mod-head-bar span:nth-child(3) {
    position: absolute;
    top: 30px;
    transform: rotate(-45deg);
  }
  /* ----------------------------------------------------------
  area-mega-menu
  ---------------------------------------------------------- */
  .area-modal-menu {
    position: fixed;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition-duration: 0.4s;
    transform: translate(0, -200px);
    top: 0;
    left: 0px;
    right: 0px;
    bottom: 0;
    background: #F0F3F5;
    padding: 170px 0 40px 0;
    overflow: scroll;
    overscroll-behavior: contain;
  }
  body.js-gmenu-active .area-modal-menu {
    visibility: visible;
    z-index: 50;
    opacity: 1;
    transform: translate(0, 0);
  }
  .area-modal-menu a {
    color: #333;
    transition-duration: 0.4s;
  }
  .area-modal-menu a.is-under {
    color: #ccc;
  }
  .area-modal-menu a.is-under:before {
    background: #ccc;
  }
  .area-modal-menu ._btns-sp {
    display: flex;
    gap: 30px;
    flex-direction: column;
    margin: 0 auto;
    margin-bottom: 50px;
    width: 280px;
  }
  .mod-sitelinks-set {
    opacity: 0;
    transition-duration: 0.4s;
  }
  body.js-gmenu-active .mod-sitelinks-set {
    opacity: 1;
  }
  .mod-sitelinks-set ._cols {
    display: flex;
    gap: 20px;
    flex-direction: column;
  }
  .mod-sitelinks-title {
    text-align: center;
    position: relative;
  }
  .mod-sitelinks-title img {
    width: 110px;
  }
  .mod-sitelinks-title.js-toggle-open ._more-sp:before {
    transform: rotate(-90deg);
  }
  .mod-sitelinks-title ._more-sp {
    position: relative;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
    margin: 10px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .mod-sitelinks-title ._more-sp:before {
    content: "";
    display: inline-block;
    background: url(/group_recruiting_assets/images/comeback/common/images/icon/arrow-a.svg) left top no-repeat;
    background-size: contain;
    width: 29px;
    height: 29px;
    transform: rotate(90deg);
  }
  .mod-sitelinks-title.is-2:after {
    background-image: url(/group_recruiting_assets/images/comeback/common/images/icon/arrow-a2.svg);
  }
  .mod-sitelinks-title.is-3:after {
    background-image: url(/group_recruiting_assets/images/comeback/common/images/icon/arrow-a3.svg);
  }
  .mod-sitelinks-title.is-4:after {
    background-image: url(/group_recruiting_assets/images/comeback/common/images/icon/arrow-a4.svg);
  }
  .mod-sitelinks-title.js-toggle-open:after {
    transform: rotate(90deg);
  }
  .mod-sitelinks-list {
    display: none;
    margin: 0 20px;
    margin-top: 35px;
  }
  .mod-sitelinks-list li {
    margin-bottom: 20px;
  }
  .mod-sitelinks-list.is-2 a {
    color: var(--col2);
  }
  .mod-sitelinks-list.is-2 a:hover {
    background-color: var(--col2);
  }
  .mod-sitelinks-list.is-3 a {
    color: var(--col3);
  }
  .mod-sitelinks-list.is-3 a:hover {
    background-color: var(--col3);
  }
  .mod-sitelinks-list.is-4 a {
    color: var(--col4);
  }
  .mod-sitelinks-list.is-4 a:hover {
    background-color: var(--col4);
  }
  .mod-sitelinks-list a {
    height: 53px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.1em;
    background-color: #fff;
    color: var(--col1);
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .mod-sitelinks-list a.is-disable {
    opacity: 0.4;
    pointer-events: none;
    color: #888;
  }
  .mod-sitelinks-list a:hover {
    color: #fff;
    background-color: var(--col1);
  }
  .mod-sitelinks-list a span:nth-child(1) {
    font-size: 15px;
  }
  .mod-sitelinks-list a span:nth-child(2) {
    font-size: 11px;
  }
  /* ----------------------------------------------------------
  .area-wrapper
  ---------------------------------------------------------- */
  .area-wrapper {
    overflow: hidden;
    position: relative;
  }
  /* ----------------------------------------------------------
  .area-inner
  ---------------------------------------------------------- */
  .area-inner {
    position: relative;
  }
  /* ----------------------------------------------------------
  .block-inner
  ---------------------------------------------------------- */
  .block-inner-sp {
    padding-right: 15px;
    padding-left: 15px;
  }
}