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

main {
  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%;
  }
}

/* ----------------------------------------------------------
.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 {
    position: relative;
    background: #fff;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 14px;
    color: #837f7f;
  }
  .area-footer img {
    width: 100%;
  }
  .area-footer ._left {
    display: flex;
    align-items: center;
  }
  .area-footer ._logo {
    width: 240px;
  }
  .area-footer ._link {
    margin-left: 80px;
    display: flex;
  }
  .area-footer ._link li + li {
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid #888;
  }
  .area-footer ._btn {
    font-weight: bold;
    font-size: 14px;
    color: #837f7f;
  }
  .area-header-sp {
    display: none;
  }
  .area-menu-sp {
    display: none;
  }
  /* ----------------------------------------------------------
  .area-header
  ---------------------------------------------------------- */
  header {
    height: 90px;
  }
  .area-header {
    background: #fff;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 90px;
    z-index: 100;
  }
  .area-header img {
    width: 100%;
  }
  .area-header ._logo {
    position: absolute;
    top: 25px;
    left: 45px;
    width: 250px;
  }
  .area-header ._name {
    position: absolute;
    top: 40px;
    left: 315px;
  }
  .area-header ._name a {
    display: block;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 0.1em;
    color: #ad0c18;
  }
  .area-header ._gmenu {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translate(-50%, 0);
  }
  /* ----------------------------------------------------------
  area-modal-menu
  ---------------------------------------------------------- */
  /* ----------------------------------------------------------
  area-mega-menu
  ---------------------------------------------------------- */
  /* ----------------------------------------------------------
  .area-wrapper
  ---------------------------------------------------------- */
  /* ----------------------------------------------------------
  .area-inner
  ---------------------------------------------------------- */
  /* ----------------------------------------------------------
  .block-inner
  ---------------------------------------------------------- */
  /* ----------------------------------------------------------
  .area-modal
  ---------------------------------------------------------- */
}
@media screen and (min-width: 768px) and (max-width: 1180px) {
  .area-header ._gmenu {
    display: none;
  }
}
@media print, screen and (min-width: 768px) {
  .area-header ._gmenu ul {
    display: flex;
  }
  .area-header ._gmenu li {
    display: block;
    margin-right: 25px;
  }
  .area-header ._gmenu li:last-child {
    margin-right: 0px;
  }
  .area-header ._gmenu ._btn {
    display: block;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.2em;
    text-align: center;
    color: #3c3c3c;
    text-decoration: none;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .area-header ._gmenu ._btn:hover {
    color: #AD0C18;
  }
  .area-header ._gmenu ._btn:hover:after {
    opacity: 1;
  }
  .area-header ._gmenu ._btn:after {
    content: "";
    display: block;
    position: absolute;
    transition-duration: 0.2s;
    left: 50%;
    bottom: 0px;
    height: 30px;
    width: 1px;
    background: #AD0C18;
    opacity: 0;
  }
  .area-header ._btns {
    position: absolute;
    top: 28px;
    right: 140px;
    display: flex;
  }
  .area-header ._btns ._btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-align: center;
    width: 95px;
    height: 40px;
    color: #AD0C18;
    transition-duration: 0.2s;
  }
  .area-header ._btns ._btn:hover {
    opacity: 0.8;
  }
  .area-header ._btns ._btn.is-line:after {
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 0px;
    width: 1px;
    background: #AD0C18;
  }
  .area-modal-btn {
    position: absolute;
    top: 18px;
    right: 46px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .area-modal-btn:hover {
    opacity: 0.8;
  }
  .area-modal-btn:after {
    content: "menu";
    display: block;
    position: absolute;
    bottom: 10px;
    left: 0px;
    right: 0px;
    color: #AD0C18;
    font-weight: bold;
    font-size: 12px;
    text-align: center;
  }
  .area-modal-btn span {
    transition-duration: 0.2s;
    position: absolute;
    background: #AD0C18;
    height: 2px;
    left: 4px;
    right: 4px;
    border-radius: 5px;
  }
  .area-modal-btn span:nth-child(1) {
    top: 10px;
  }
  .area-modal-btn span:nth-child(2) {
    top: 19px;
  }
  .area-modal-btn span:nth-child(3) {
    top: 28px;
  }
  body.js-gmenu-active .area-modal-btn span:nth-child(1) {
    position: absolute;
    top: 19px;
    transform: rotate(30deg);
  }
  body.js-gmenu-active .area-modal-btn span:nth-child(2) {
    display: none;
  }
  body.js-gmenu-active .area-modal-btn span:nth-child(3) {
    position: absolute;
    top: 19px;
    transform: rotate(-30deg);
  }
  .area-modal-menu {
    position: fixed;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition-duration: 0.4s;
    transform: translate(0, -200px);
    top: 90px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: #3C3C3C;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
  }
  body.js-gmenu-active .area-modal-menu {
    visibility: visible;
    z-index: 50;
    opacity: 1;
    transform: translate(0, 0);
  }
  .area-modal-menu:before {
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    background: url(/recruit/common/images/gmenu/deco1.png) left top no-repeat;
    background-size: contain;
    width: 277px;
    height: 387px;
  }
  .area-modal-menu:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0px;
    right: 0px;
    background: url(/recruit/common/images/gmenu/deco2.png) left top no-repeat;
    background-size: contain;
    width: 309px;
    height: 446px;
  }
  .area-modal-menu .site-links {
    opacity: 0;
    transition-duration: 0.4s;
    transition-delay: 0.4s;
  }
  body.js-gmenu-active .area-modal-menu .site-links {
    opacity: 1;
  }
  .area-modal-menu .site-links ._cols {
    width: 920px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
  .area-modal-menu .site-links ._cols ._col {
    max-width: 220px;
  }
  .area-modal-menu .site-links ._sub {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.12em;
    color: #837f7f;
  }
  .area-modal-menu .site-links ._title {
    padding-bottom: 20px;
  }
  .area-modal-menu .site-links ._title span {
    display: block;
  }
  .area-modal-menu .site-links ._title span:nth-child(1) {
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.2em;
    line-height: 24px;
    color: #837f7f;
  }
  .area-modal-menu .site-links ._title span:nth-child(2) {
    margin-top: 10px;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.2em;
    color: #fff;
  }
  .area-modal-menu .site-links ._sub-title {
    margin-top: 20px;
    padding: 7px 0;
    color: #fff;
    border-top: 1px solid #fff;
    border-bottom: 1px dashed #fff;
  }
  .area-modal-menu .site-links ._sub-title span {
    display: block;
  }
  .area-modal-menu .site-links ._sub-title span:nth-child(1) {
    font-weight: 500;
    font-size: 10px;
    line-height: 21px;
  }
  .area-modal-menu .site-links ._sub-title span:nth-child(2) {
    font-weight: bold;
    font-size: 14px;
    line-height: 21px;
  }
  .area-modal-menu .site-links ._links {
    margin: 10px 0 20px 0;
  }
  .area-modal-menu .site-links ._links li {
    position: relative;
    line-height: 1.4;
    margin-bottom: 5px;
    position: relative;
    padding-left: 20px;
  }
  .area-modal-menu .site-links ._links li:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0px;
    width: 12px;
    height: 1px;
    background: #fff;
  }
  .area-modal-menu .site-links ._links a {
    display: block;
    position: relative;
    font-weight: bold;
    font-size: 12px;
    line-height: 21px;
    text-align: left;
    color: #fff;
    transition-duration: 0.2s;
  }
  .area-modal-menu .site-links ._links a:hover {
    opacity: 0.8;
  }
  .area-mega-menu {
    position: fixed;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition-duration: 0.2s;
    background: rgba(173, 12, 24, 0.9);
    top: 90px;
    left: 0px;
    right: 0px;
  }
  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 ._inner {
    width: 1080px;
    margin: 0 auto;
    min-height: 140px;
    padding: 60px 0 40px 0;
    border-radius: 0 0 10px 10px;
  }
  .area-mega-menu a {
    color: #000;
  }
  .area-mega-menu ._set-works {
    display: flex;
    justify-content: space-between;
  }
  .area-mega-menu ._set-works > div:nth-child(1) {
    width: 280px;
  }
  .area-mega-menu ._set-works > div:nth-child(2) {
    width: 725px;
  }
  .area-mega-menu ._items {
    width: 980px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .area-mega-menu ._items.is-2col {
    width: 605px;
  }
  .area-mega-menu ._items.is-3col {
    width: 930px;
  }
  .area-mega-menu ._items.is-4col {
    width: 1080px;
  }
  .area-mega-menu ._items.is-4col ._item {
    width: 236px;
  }
  .area-mega-menu ._items.is-4col li {
    width: 236px;
  }
  .area-mega-menu a {
    transition-duration: 0.2s;
  }
  .area-mega-menu a:hover {
    opacity: 0.8;
  }
  .area-mega-menu ._item {
    width: 280px;
    margin-bottom: 40px;
    display: block;
  }
  .area-mega-menu ._item img {
    width: 100%;
  }
  .area-mega-menu ._item ._image {
    border-radius: 10px;
    overflow: hidden;
  }
  .area-mega-menu ._item ._text {
    margin-top: 10px;
    color: #fff;
  }
  .area-mega-menu ._item ._text span {
    font-weight: bold;
    font-size: 16px;
    line-height: 21px;
  }
  .area-mega-menu ._set-works-sub {
    display: flex;
    justify-content: space-between;
  }
  .area-mega-menu ._set-works-sub > div {
    border-top: 1px solid #fff;
  }
  .area-mega-menu ._set-works-sub > div:nth-child(1) {
    width: 220px;
    padding-top: 30px;
  }
  .area-mega-menu ._set-works-sub > div:nth-child(2) {
    width: 445px;
  }
  .area-mega-menu ._title-sub {
    color: #fff;
  }
  .area-mega-menu ._title-sub ._t1 {
    font-weight: 500;
    font-size: 12px;
    line-height: 21px;
  }
  .area-mega-menu ._title-sub ._t2 {
    margin-top: 5px;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 0.2em;
    line-height: 32px;
  }
  .area-mega-menu ._title-sub ._btn {
    margin-top: 30px;
    width: 220px;
    height: 60px;
    border: 1px solid #fff;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 0.4em;
    display: flex;
    justify-content: center;
    align-items: center;
    transition-duration: 0.2s;
    position: relative;
  }
  .area-mega-menu ._title-sub ._btn:hover {
    background: #fff;
    color: #AD0C18;
  }
  .area-mega-menu ._title-sub ._btn:before {
    position: absolute;
    top: 50%;
    right: 20px;
    display: block;
    content: "";
    height: 8px;
    width: 8px;
    border: 1px solid #fff;
    border-left-width: 0;
    border-top-width: 0;
    transform: translate(0, -50%) rotate(-45deg);
  }
  .area-mega-menu ._itemB {
    width: 445px;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px solid #fff;
  }
  .area-mega-menu ._itemB ._image {
    width: 280px;
  }
  .area-mega-menu ._itemB ._text {
    color: #fff;
  }
  .area-mega-menu ._itemB ._text span {
    display: block;
  }
  .area-mega-menu ._itemB ._text span:nth-child(1) {
    font-weight: bold;
    font-size: 16px;
    line-height: 21px;
  }
  .area-mega-menu ._itemB ._text span:nth-child(2) {
    font-weight: normal;
    font-size: 12px;
    line-height: 21px;
  }
  .area-mega-menu ._sub {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0.12em;
    color: #fff;
    border-bottom: 1px solid #fff;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  .area-wrapper {
    overflow: hidden;
    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 print, screen and (min-width: 768px) {
  .area-modal-movie {
    visibility: hidden;
    opacity: 0;
    transition-duration: 0.2s;
    transition-duration: 0.4s;
    transform: scale(0.9);
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1000;
  }
  .area-modal-movie.js-show {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
  }
  .area-modal-movie ._modal-bg {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: rgba(0, 0, 0, 0.85);
  }
  .area-modal-movie ._modal-btn-close {
    position: absolute;
    top: -50px;
    right: 0px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    transition-duration: 0.2s;
  }
  .area-modal-movie ._modal-btn-close:hover {
    opacity: 0.8;
  }
  .area-modal-movie ._modal-btn-close:after, .area-modal-movie ._modal-btn-close:before {
    content: "";
    position: absolute;
    top: 18px;
    left: 8px;
    width: 25px;
    height: 2px;
    transform: rotate(-45deg);
    background: #fff;
  }
  .area-modal-movie ._modal-btn-close:before {
    transform: rotate(45deg);
  }
  .area-modal-movie ._modal-box {
    position: absolute;
    background: #333;
    box-sizing: border-box;
    top: 50%;
    left: 50%;
    width: 1000px;
    height: 562px;
    margin: -281px 0 0 -500px;
  }
  .area-modal-movie ._modal-box ._modal-body {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
  }
  .area-modal-movie iframe {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  /* ----------------------------------------------------------
  .area-footer
  ---------------------------------------------------------- */
  .area-footer {
    border-top: 1px solid #AD0C18;
    text-align: center;
    padding: 40px 15px;
    position: relative;
    background: #fff;
    color: #837F7F;
    font-size: 10px;
  }
  .area-footer img {
    width: 100%;
  }
  .area-footer a {
    color: #837F7F;
  }
  .area-footer ._right {
    margin-top: 20px;
  }
  .area-footer ._logo {
    display: none;
  }
  .area-footer ._link li {
    display: block;
    text-align: center;
  }
  .area-footer ._link li a {
    display: block;
    padding: 5px;
  }
  .area-footer ._btn {
    font-weight: bold;
    font-size: 14px;
    color: #837f7f;
  }
  .area-footer small {
    line-height: 1.6;
  }
  .area-mega-menu {
    display: none;
  }
  header {
    height: 55px;
  }
  .area-header {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: #fff;
    height: 55px;
    z-index: 100;
  }
  .area-header ._logo {
    position: absolute;
    top: 15px;
    left: 15px;
    height: 30px;
    width: 155px;
  }
  .area-header ._logo img {
    width: 100%;
  }
  .area-header ._name {
    position: absolute;
    top: 17px;
    left: 180px;
  }
  .area-header ._name a {
    font-weight: bold;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-align: left;
    color: #ad0c18;
  }
  .area-header ._gmenu {
    display: none;
  }
  .area-header ._btns {
    position: absolute;
    top: 10px;
    right: 70px;
  }
  .area-modal-btn {
    position: absolute;
    top: 4px;
    right: 12px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .area-modal-btn:hover {
    opacity: 0.8;
  }
  .area-modal-btn:after {
    content: "menu";
    display: block;
    position: absolute;
    bottom: 10px;
    left: 0px;
    right: 0px;
    color: #AD0C18;
    font-weight: bold;
    font-size: 10px;
    text-align: center;
  }
  .area-modal-btn span {
    transition-duration: 0.2s;
    position: absolute;
    background: #AD0C18;
    height: 2px;
    left: 4px;
    right: 4px;
    border-radius: 5px;
  }
  .area-modal-btn span:nth-child(1) {
    top: 8px;
  }
  .area-modal-btn span:nth-child(2) {
    top: 16px;
  }
  .area-modal-btn span:nth-child(3) {
    top: 24px;
  }
  body.js-gmenu-active .area-modal-btn span:nth-child(1) {
    position: absolute;
    top: 16px;
    transform: rotate(30deg);
  }
  body.js-gmenu-active .area-modal-btn span:nth-child(2) {
    display: none;
  }
  body.js-gmenu-active .area-modal-btn span:nth-child(3) {
    position: absolute;
    top: 16px;
    transform: rotate(-30deg);
  }
  .area-modal-menu {
    position: fixed;
    top: 50px;
    left: 0px;
    right: 0px;
    bottom: 0;
    z-index: 100;
    color: #fff;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    z-index: -1;
    visibility: hidden;
  }
  .area-modal-menu a {
    color: #fff;
  }
  body.js-gmenu-active .area-modal-menu {
    z-index: 105;
    visibility: visible;
  }
  .area-modal-menu:before {
    content: "";
    display: block;
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    height: 0;
    background: #3C3C3C;
    opacity: 0;
    transition-duration: 0.2s;
  }
  body.js-gmenu-active .area-modal-menu:before {
    opacity: 1;
    transition-duration: 0.2s;
    height: 100%;
  }
  .area-modal-menu .site-links {
    opacity: 0;
    transition-duration: 0.4s;
    transition-delay: 0.4s;
  }
  body.js-gmenu-active .area-modal-menu .site-links {
    opacity: 1;
  }
  .area-modal-menu .site-links ._cols ._col {
    border-top: 1px solid #837F7F;
    padding: 30px 80px 10px 50px;
  }
  .area-modal-menu .site-links ._title {
    padding-bottom: 20px;
    position: relative;
  }
  .area-modal-menu .site-links ._title span {
    display: block;
  }
  .area-modal-menu .site-links ._title span:nth-child(1) {
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.2em;
    line-height: 24px;
    color: #837f7f;
  }
  .area-modal-menu .site-links ._title span:nth-child(2) {
    margin-top: 10px;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.2em;
    color: #fff;
  }
  .area-modal-menu .site-links ._title.js-active > div {
    transform: rotate(45deg);
  }
  .area-modal-menu .site-links ._title > div {
    transition-duration: 0.2s;
    display: block;
    position: absolute;
    top: -10px;
    right: -60px;
    background: url(/common/images/header/toggle.png) center center no-repeat;
    background-size: 30px 30px;
    width: 60px;
    height: 60px;
  }
  .area-modal-menu .site-links .js-sp-menu-body {
    display: none;
  }
  .area-modal-menu .site-links ._sub-title {
    margin-top: 20px;
    padding: 7px 0;
    color: #fff;
    border-top: 1px solid #fff;
    border-bottom: 1px dashed #fff;
  }
  .area-modal-menu .site-links ._sub-title span {
    display: block;
  }
  .area-modal-menu .site-links ._sub-title span:nth-child(1) {
    font-weight: 500;
    font-size: 10px;
    line-height: 21px;
  }
  .area-modal-menu .site-links ._sub-title span:nth-child(2) {
    font-weight: bold;
    font-size: 14px;
    line-height: 21px;
  }
  .area-modal-menu .site-links ._sub {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.12em;
    color: #837f7f;
  }
  .area-modal-menu .site-links ._links {
    margin: 10px 0 20px 0;
  }
  .area-modal-menu .site-links ._links li {
    position: relative;
    line-height: 1.4;
    margin-bottom: 5px;
    position: relative;
    padding-left: 20px;
  }
  .area-modal-menu .site-links ._links li:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0px;
    width: 12px;
    height: 1px;
    background: #fff;
  }
  .area-modal-menu .site-links ._links a {
    display: block;
    position: relative;
    font-weight: bold;
    font-size: 12px;
    line-height: 21px;
    text-align: left;
    color: #fff;
    transition-duration: 0.2s;
  }
  .area-modal-menu .site-links ._links a:hover {
    opacity: 0.8;
  }
  .area-modal-menu ._btns {
    margin-right: -30px;
  }
  .area-modal-menu ._btns ._btn {
    margin: 5px;
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 15px;
    text-align: center;
    background: #666;
  }
  .area-modal-menu ._btns ._insta {
    margin-top: 20px;
    text-align: center;
    display: flex;
    gap: 10px;
    flex-direction: column;
  }
  .area-modal-menu ._btns ._insta span {
    display: block;
    font-size: 12px;
    text-align: center;
    line-height: 2;
    letter-spacing: 0.05em;
    color: #fff;
  }
  /* ----------------------------------------------------------
  .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;
  }
  /* ----------------------------------------------------------
  .area-modal
  ---------------------------------------------------------- */
  .area-modal-movie {
    visibility: hidden;
    opacity: 0;
    transition-duration: 0.2s;
    transition-duration: 0.4s;
    transform: scale(0.9);
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1000;
  }
  .area-modal-movie.js-show {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
  }
  .area-modal-movie ._modal-bg {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: rgba(0, 0, 0, 0.85);
  }
  .area-modal-movie ._modal-btn-close {
    position: absolute;
    top: -40px;
    right: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    z-index: 10;
  }
  .area-modal-movie ._modal-btn-close:after, .area-modal-movie ._modal-btn-close:before {
    content: "";
    position: absolute;
    top: 18px;
    left: 8px;
    width: 25px;
    height: 2px;
    transform: rotate(-45deg);
    background: #fff;
  }
  .area-modal-movie ._modal-btn-close:before {
    transform: rotate(45deg);
  }
  .area-modal-movie ._modal-box {
    position: absolute;
    background: #333;
    box-sizing: border-box;
    top: 50%;
    margin-top: -40vw;
    width: 100%;
    height: 80vw;
  }
  .area-modal-movie ._modal-box ._modal-body {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
  }
  .area-modal-movie iframe {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
  }
}