@charset "UTF-8";
/* ---------- setting ---------- ---------- */
body {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

main {
  color: #212121;
  display: block;
}
@media screen and (min-width: 768px) {
  main {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  main {
    font-size: 12px;
  }
  main img {
    max-width: 100%;
    height: auto;
  }
}

/* ----------------------------------------------------------
.btn-pagetop
---------------------------------------------------------- */
.btn-pagetop {
  position: fixed;
  display: block;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #72C9F3;
  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
  ---------------------------------------------------------- */
  footer {
    position: relative;
  }
  .area-footer {
    background: #1E1E1E;
    color: #fff;
    font-size: 15px;
    padding: 0px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .area-footer a {
    color: #fff;
  }
  .area-footer ._fopoter-link {
    padding: 60px 0 30px 0;
  }
  .area-footer ._fopoter-link .mod-site-links {
    color: #fff;
  }
  .area-footer ._fopoter-link .mod-site-links ._cols + ._cols {
    border-top: 1px solid #fff;
  }
  .area-footer ._fopoter-link .mod-site-links ._links a:before {
    background: #fff;
  }
  .area-footer .is-hide-footer {
    display: none !important;
  }
  .area-footer ._banner-link {
    padding: 30px 0 30px 0;
    border-top: 1px solid #fff;
    display: flex;
    justify-content: center;
    gap: 40px;
  }
  .area-footer ._banner-link img {
    display: block;
    width: 400px;
  }
  .area-footer ._banner-link a {
    display: block;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .area-footer ._banner-link a:hover {
    opacity: 0.8;
  }
  .area-footer ._copys {
    border-top: 1px solid #fff;
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
  }
  .area-footer ._copys ._left {
    display: flex;
    align-items: center;
  }
  .area-footer ._copys ._link a {
    display: block;
    position: relative;
  }
  .area-footer ._copys ._link a:after {
    margin-left: 5px;
    content: "";
    display: inline-block;
    background: url(/corporate/job/recruit/common/images/icon/arrow_blank_wh.png) left top no-repeat;
    background-size: contain;
    width: 11px;
    height: 11px;
  }
  .area-footer ._copys ._right {
    text-align: right;
  }
  .area-footer ._copys ._right small {
    font-size: 15px;
  }
  /* ----------------------------------------------------------
  .area-header
  ---------------------------------------------------------- */
  /* ----------------------------------------------------------
  area-mega-menu
  ---------------------------------------------------------- */
  /* ----------------------------------------------------------
  .area-wrapper
  ---------------------------------------------------------- */
  /* ----------------------------------------------------------
  .area-inner
  ---------------------------------------------------------- */
  /* ----------------------------------------------------------
  .block-inner
  ---------------------------------------------------------- */
}
@media print, screen and (min-width: 768px) and (min-width: 1251px) {
  .area-header-wap {
    height: 120px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1250px) {
  .area-header-wap {
    height: 80px;
  }
}
@media print, screen and (min-width: 768px) {
  .area-header {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 100;
    transition-duration: 0.2s;
  }
}
@media print, screen and (min-width: 768px) and (min-width: 1251px) {
  .area-header {
    height: 120px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1250px) {
  .area-header {
    height: 80px;
  }
}
@media print, screen and (min-width: 768px) {
  body.page-index.js-scrolled .area-header {
    background: #72C9F3;
    color: #222;
  }
  body.page-index .area-header ._btns ._btn.is-entry {
    background: #72C9F3;
    color: #fff;
  }
  body.page-special .area-header {
    background: #72C9F3;
  }
  body.page-special .area-header ._btns ._btn.is-entry {
    background: #CEECFB;
    color: #72C9F3;
  }
  body.page-work .area-header {
    background: #BDAF7B;
  }
  body.page-work .area-header ._btns ._btn.is-entry {
    background: #E8E3D1;
    color: #BDAF7B;
  }
  body.page-career .area-header {
    background: #6AA0DB;
  }
  body.page-career .area-header ._btns ._btn.is-entry {
    background: #CBDEF2;
    color: #6AA0DB;
  }
  body.page-info .area-header {
    background: #72C9F3;
  }
  body.page-info .area-header ._btns ._btn.is-entry {
    background: #CEECFB;
    color: #72C9F3;
  }
  body.js-gmenu-active .area-header {
    box-shadow: none;
  }
  .area-header img {
    width: 100%;
  }
  .area-header ._logo {
    position: absolute;
  }
}
@media print, screen and (min-width: 768px) and (min-width: 1251px) {
  .area-header ._logo {
    width: 100px;
    top: 14px;
    left: 14px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1250px) {
  .area-header ._logo {
    width: 65px;
    top: 10px;
    left: 10px;
  }
}
@media print, screen and (min-width: 768px) {
  .area-header ._sitemenu {
    position: absolute;
    top: 35px;
  }
}
@media print, screen and (min-width: 768px) and (min-width: 1251px) {
  .area-header ._sitemenu {
    top: 35px;
    right: 420px;
    right: 530px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1250px) {
  .area-header ._sitemenu {
    top: 12px;
    right: 300px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1250px) and (max-width: 990px) {
  .area-header ._sitemenu {
    display: none;
  }
}
@media print, screen and (min-width: 768px) {
  .area-header ._sitemenu > ul {
    display: flex;
    justify-content: center;
  }
  .area-header ._sitemenu > ul > li {
    position: relative;
  }
}
@media print, screen and (min-width: 768px) and (min-width: 1251px) {
  .area-header ._sitemenu > ul > li {
    margin: 0 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1250px) {
  .area-header ._sitemenu > ul > li {
    margin: 0 10px;
  }
}
@media print, screen and (min-width: 768px) {
  .area-header ._sitemenu > ul > li .mod-head-menu {
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    transition-duration: 0.4s;
    transform: translate(0, 10px);
  }
  .area-header ._sitemenu > ul > li:hover .mod-head-menu {
    visibility: visible;
    opacity: 1;
    display: block;
    z-index: 40;
    transform: translate(0, 0);
  }
  .area-header ._sitemenu > ul > li > a {
    display: block;
    text-align: center;
    color: #fff;
    transition-duration: 0.2s;
  }
  .area-header ._sitemenu > ul > li > a:hover {
    opacity: 0.8;
  }
  .area-header ._sitemenu > ul > li > a span {
    display: block;
  }
  .area-header ._sitemenu > ul > li > a span:nth-child(1) {
    font-size: 20px;
    padding: 5px 0;
    border-bottom: 1px solid #fff;
  }
  .area-header ._sitemenu > ul > li > a span:nth-child(2) {
    padding: 5px 0;
  }
}
@media print, screen and (min-width: 768px) and (min-width: 1251px) {
  .area-header ._sitemenu > ul > li > a span:nth-child(2) {
    font-size: 13px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1250px) {
  .area-header ._sitemenu > ul > li > a span:nth-child(2) {
    font-size: 12px;
  }
}
@media print, screen and (min-width: 768px) {
  .area-header ._btns {
    position: absolute;
    display: flex;
  }
}
@media print, screen and (min-width: 768px) and (min-width: 1251px) {
  .area-header ._btns {
    top: 35px;
    right: 160px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1250px) {
  .area-header ._btns {
    top: 15px;
    right: 100px;
  }
}
@media print, screen and (min-width: 768px) {
  .area-header ._btns ._btn {
    background: #ef8200;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition-duration: 0.2s;
  }
}
@media print, screen and (min-width: 768px) and (min-width: 1251px) {
  .area-header ._btns ._btn {
    width: 120px;
    height: 50px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1250px) {
  .area-header ._btns ._btn {
    width: 65px;
    height: 50px;
    font-size: 11px;
    line-height: 1.4;
  }
}
@media print, screen and (min-width: 768px) {
  .area-header ._btns ._btn.is-entry {
    background: #cbdef2;
    color: #6AA0DB;
  }
  .area-header ._btns ._btn.is-entry2 {
    background: #3f77b3;
    color: #fff;
  }
  .area-header ._btns ._btn.is-mypage {
    background: #F5F5F5;
    color: #212121;
  }
  .area-header ._btns ._btn:hover {
    opacity: 0.8;
  }
  .area-header ._menu-btn {
    position: absolute;
    top: 0px;
    right: 0px;
    background: #fff;
    transition-duration: 0.2s;
  }
}
@media print, screen and (min-width: 768px) and (min-width: 1251px) {
  .area-header ._menu-btn {
    width: 120px;
    height: 120px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1250px) {
  .area-header ._menu-btn {
    width: 80px;
    height: 80px;
  }
}
@media print, screen and (min-width: 768px) {
  .area-header ._menu-btn:hover {
    opacity: 0.8;
  }
  .area-header ._menu-btn span {
    transition-duration: 0.2s;
    position: absolute;
    background: #000;
    height: 2px;
    left: 35px;
    right: 35px;
  }
  .area-header ._menu-btn span:nth-child(1) {
    top: 35px;
  }
  .area-header ._menu-btn span:nth-child(2) {
    top: 50%;
  }
  .area-header ._menu-btn span:nth-child(3) {
    bottom: 32px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1250px) {
  .area-header ._menu-btn span:nth-child(1) {
    top: 28px;
  }
  .area-header ._menu-btn span:nth-child(2) {
    top: 50%;
  }
  .area-header ._menu-btn span:nth-child(3) {
    bottom: 25px;
  }
  .area-header ._menu-btn span {
    left: 25px;
    right: 25px;
  }
}
@media print, screen and (min-width: 768px) {
  body.js-gmenu-active .area-header ._menu-btn span:nth-child(1) {
    position: absolute;
    top: 50%;
    transform: rotate(45deg);
  }
  body.js-gmenu-active .area-header ._menu-btn span:nth-child(2) {
    display: none;
  }
  body.js-gmenu-active .area-header ._menu-btn span:nth-child(3) {
    position: absolute;
    top: 50%;
    transform: rotate(-45deg);
  }
  .mod-head-menu {
    position: absolute;
    top: 85px;
    left: 0;
    background: #fff;
    padding: 10px;
    display: flex;
    flex-direction: column;
    width: 250px;
    background: #72C9F3;
    overflow: hidden;
  }
  body.page-special .mod-head-menu {
    background: #72C9F3;
  }
  body.page-work .mod-head-menu {
    background: #BDAF7B;
  }
  body.page-career .mod-head-menu {
    background: #6AA0DB;
  }
  body.page-info .mod-head-menu {
    background: #72C9F3;
  }
  .mod-head-menu.is-wide {
    width: 350px;
  }
  .mod-head-menu > li > a {
    display: block;
    padding: 12px 15px;
    transition-duration: 0.2s;
  }
  .mod-head-menu > li > a:hover {
    opacity: 0.8;
  }
  .mod-head-menu > li > a > span {
    color: #fff;
    font-size: 14px !important;
    text-align: left;
    line-height: 1.4;
  }
  .area-modal-menu {
    position: fixed;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition-duration: 0.4s;
    transform: translate(0, -200px);
    left: 0px;
    right: 0px;
    min-height: 140px;
    background: #fff;
    padding: 70px 0 40px 0;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
  }
  body.js-gmenu-active .area-modal-menu {
    visibility: visible;
    z-index: 50;
    opacity: 1;
    transform: translate(0, 0);
  }
}
@media print, screen and (min-width: 768px) and (min-width: 1251px) {
  .area-modal-menu {
    top: 120px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1250px) {
  .area-modal-menu {
    top: 80px;
  }
}
@media print, screen and (min-width: 768px) {
  .area-modal-menu a {
    color: #333;
    transition-duration: 0.4s;
  }
  .area-modal-menu a:hover {
    color: #ef8200;
  }
  .area-modal-menu a.is-under {
    color: #ccc;
  }
  .area-modal-menu a.is-under:before {
    background: #ccc;
  }
  .area-modal-menu .mod-site-links {
    opacity: 0;
    transition-duration: 0.4s;
    transition-delay: 0.4s;
  }
  body.js-gmenu-active .area-modal-menu .mod-site-links {
    opacity: 1;
  }
  .area-modal-menu .mod-site-links ._title {
    color: #3f77b3;
  }
  .area-modal-menu .mod-site-links ._title a {
    color: #3f77b3;
  }
  .mod-site-links {
    color: #333;
  }
  .mod-site-links ._cols {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
  .mod-site-links ._cols + ._cols {
    border-top: 1px solid #000;
    padding-top: 30px;
  }
  .mod-site-links ._cols ._col {
    flex: 1;
  }
  .mod-site-links ._title {
    font-weight: bold;
  }
  .mod-site-links ._title div,
  .mod-site-links ._title a {
    display: flex;
    gap: 20px;
  }
  .mod-site-links ._title div span,
  .mod-site-links ._title a span {
    display: block;
  }
  .mod-site-links ._title div span:nth-child(1),
  .mod-site-links ._title a span:nth-child(1) {
    letter-spacing: 0.2em;
    font-size: 18px;
  }
  .mod-site-links ._title div span:nth-child(2),
  .mod-site-links ._title a span:nth-child(2) {
    padding: 5px 0 0 0;
    font-size: 14px;
  }
  .mod-site-links ._sub {
    display: block;
    font-size: 14px;
    margin-top: -10px;
    margin-bottom: -10px;
  }
  .mod-site-links ._links {
    margin: 20px 0 20px 0;
  }
  .mod-site-links ._links li {
    line-height: 1.4;
  }
  .mod-site-links ._links a {
    display: block;
    position: relative;
    padding: 5px 0 5px 15px;
    font-size: 14px;
  }
  .mod-site-links ._links a:before {
    position: absolute;
    top: 50%;
    left: 0px;
    display: block;
    content: "";
    height: 1px;
    width: 10px;
    background: #000;
  }
  .area-wrapper {
    position: relative;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1250px) {
  .area-wrapper {
    min-width: 1250px;
  }
}
@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: 1250px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1250px) {
  .area-inner {
    margin: 0 20px;
  }
}
@media print, screen and (min-width: 768px) and (min-width: 768px) {
  .block-inner {
    margin: 0 auto;
    width: 1250px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1250px) {
  .block-inner {
    margin: 0 20px;
  }
}
@media print, screen and (min-width: 768px) and (min-width: 768px) {
  .block-inner1160 {
    margin: 0 auto;
    width: 1160px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1250px) {
  .block-inner1160 {
    margin: 0 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .block-inner2 {
    outline: 4px solid blue;
  }
}
@media print, screen and (min-width: 768px) and (min-width: 768px) {
  .block-inner2,
  .block-inner1100 {
    margin: 0 auto;
    width: 1100px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1250px) {
  .block-inner2,
  .block-inner1100 {
    margin: 0 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .block-inner3 {
    outline: 4px solid red;
  }
}
@media print, screen and (min-width: 768px) and (min-width: 768px) {
  .block-inner3,
  .block-inner1000 {
    margin: 0 auto;
    width: 1000px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1250px) {
  .block-inner3,
  .block-inner1000 {
    margin: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  /* ----------------------------------------------------------
  .area-footer
  ---------------------------------------------------------- */
  footer {
    position: relative;
  }
  .area-footer {
    background: #1E1E1E;
    color: #fff;
    font-size: 12px;
    padding: 40px 20px;
  }
  .area-footer a {
    color: #fff;
  }
  .area-footer ._fopoter-link .mod-site-links ._cols ._col {
    border-top: 1px solid #fff;
    padding-bottom: 20px;
  }
  .area-footer ._fopoter-link .mod-site-links ._title span:nth-child(1) {
    font-size: 14px;
  }
  .area-footer ._fopoter-link .mod-site-links ._title span:nth-child(2) {
    font-size: 12px;
  }
  .area-footer ._fopoter-link .mod-site-links ._links a {
    font-size: 12px;
  }
  .area-footer ._fopoter-link .mod-site-links ._links a:before {
    background: #fff;
  }
  .area-footer .is-hide-footer {
    display: none !important;
  }
  .area-footer ._banner-link {
    padding: 30px 0 30px 0;
    border-top: 1px solid #fff;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-direction: column;
  }
  .area-footer ._banner-link img {
    display: block;
    width: 100%;
  }
  .area-footer ._banner-link a {
    display: block;
    cursor: pointer;
  }
  .area-footer ._copys {
    border-top: 1px solid #fff;
    padding: 20px 0 0 0;
  }
  .area-footer ._copys ._left {
    text-align: center;
  }
  .area-footer ._copys ._link {
    margin-right: 20px;
  }
  .area-footer ._copys ._link a {
    display: block;
    position: relative;
  }
  .area-footer ._copys ._link a:after {
    margin-left: 5px;
    content: "";
    display: inline-block;
    background: url(/corporate/job/recruit/common/images/icon/arrow_blank_wh.png) left top no-repeat;
    background-size: contain;
    width: 11px;
    height: 11px;
  }
  .area-footer ._copys ._right {
    margin-top: 20px;
    text-align: center;
  }
  /* ----------------------------------------------------------
  .area-header
  ---------------------------------------------------------- */
  .area-header-wap {
    height: 60px;
  }
  .area-header {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 100;
    height: 60px;
    background: #fff;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
  }
  body.js-gmenu-active .area-header {
    box-shadow: none;
  }
  .area-header img {
    width: 100%;
  }
  .area-header ._logo {
    position: absolute;
    top: 0px;
    left: 20px;
    width: 60px;
  }
  .area-header ._sitemenu {
    display: none;
  }
  .area-header ._btns {
    position: absolute;
    top: 15px;
    right: 60px;
    display: flex;
  }
  .area-header ._btns ._btn {
    height: 30px;
    background: #ef8200;
    padding: 0 10px;
    font-size: 11px;
    line-height: 1.2;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .area-header ._btns ._btn.is-entry {
    background: #cbdef2;
    color: #6AA0DB;
  }
  .area-header ._btns ._btn.is-entry2 {
    background: #3f77b3;
    color: #fff;
  }
  .area-header ._btns ._btn.is-mypage {
    background: #F5F5F5;
    color: #212121;
  }
  .area-header ._menu-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 50px;
    height: 50px;
  }
  .area-header ._menu-btn span {
    transition-duration: 0.2s;
    position: absolute;
    background: #000;
    height: 2px;
    left: 10px;
    right: 10px;
  }
  .area-header ._menu-btn span:nth-child(1) {
    top: 15px;
  }
  .area-header ._menu-btn span:nth-child(2) {
    top: 24px;
  }
  .area-header ._menu-btn span:nth-child(3) {
    bottom: 15px;
  }
  body.js-gmenu-active .area-header ._menu-btn span:nth-child(1) {
    position: absolute;
    top: 25px;
    transform: rotate(45deg);
  }
  body.js-gmenu-active .area-header ._menu-btn span:nth-child(2) {
    display: none;
  }
  body.js-gmenu-active .area-header ._menu-btn span:nth-child(3) {
    position: absolute;
    top: 25px;
    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: 60px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    min-height: 140px;
    background: #fff;
    padding: 30px 20px 40px 20px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
  body.js-gmenu-active .area-modal-menu {
    visibility: visible;
    z-index: 50;
    opacity: 1;
    transform: translate(0, 0);
  }
  .area-modal-menu a {
    color: #333;
  }
  .area-modal-menu a.is-under {
    color: #ccc;
  }
  .area-modal-menu a.is-under:before {
    background: #ccc;
  }
  .area-modal-menu .mod-site-links ._title {
    color: #3f77b3;
  }
  .area-modal-menu .mod-site-links ._title a {
    color: #3f77b3;
  }
  .mod-site-links ._cols ._col {
    border-top: 1px solid #000;
  }
  .mod-site-links ._title {
    letter-spacing: 0.2em;
    font-weight: bold;
    padding: 20px 0 5px 0;
  }
  .mod-site-links ._title div,
  .mod-site-links ._title a {
    display: flex;
    gap: 10px;
  }
  .mod-site-links ._title span {
    display: block;
  }
  .mod-site-links ._title span:nth-child(1) {
    font-size: 18px;
  }
  .mod-site-links ._title span:nth-child(2) {
    padding: 5px 0 0 0;
    font-size: 12px;
  }
  .mod-site-links ._links {
    margin: 10px 0 20px 0;
  }
  .mod-site-links ._links li {
    line-height: 1.4;
  }
  .mod-site-links ._links p {
    padding: 0 0 10px 15px;
    line-height: 1.6;
  }
  .mod-site-links ._links .under {
    color: #ccc;
  }
  .mod-site-links ._links a {
    display: block;
    position: relative;
    padding: 5px 0 5px 5px;
    font-size: 14px;
  }
  .mod-site-links ._links a.under {
    color: #ccc;
  }
  .mod-site-links ._links a.under:before {
    background: #ccc;
  }
  /* ----------------------------------------------------------
  .area-wrapper
  ---------------------------------------------------------- */
  .area-wrapper {
    position: relative;
  }
  /* ----------------------------------------------------------
  .area-inner
  ---------------------------------------------------------- */
  .area-inner {
    position: relative;
  }
  /* ----------------------------------------------------------
  .block-inner
  ---------------------------------------------------------- */
  .block-inner-sp {
    padding-right: 15px;
    padding-left: 15px;
  }
}