  /*=============================
  #nav-toggle
  =============================*/
  #nav-toggle::after {
      position: absolute;
      top: 50%;
      left: 50%;
      display: block;
      content: '';
      width: 66px;
      height: 66px;
      margin: -34px 0 0 -34px;
      border-radius: 50%;
      border: 2px solid transparent;
      transition: all .75s;
  }

  @-webkit-keyframes active-btn19-bar02 {
      100% {
          height: 0;
      }
  }

  @keyframes active-btn19-bar02 {
      100% {
          height: 0;
      }
  }

  .open #nav-toggle::after {
      -webkit-animation: active-btn19 1s .6s forwards;
      animation: active-btn19 1s .6s forwards;
  }

  @-webkit-keyframes active-btn19 {
      0% {
          border-color: transparent;
          -webkit-transform: rotate(0);
      }

      25% {
          border-color: transparent #fff transparent transparent;
      }

      50% {
          border-color: transparent #fff #fff transparent;
      }

      75% {
          border-color: transparent #fff #fff #fff;
      }

      100% {
          border-color: #fff;
          -webkit-transform: rotate(-680deg);
      }
  }

  @keyframes active-btn19 {
      0% {
          border-color: transparent;
          transform: rotate(0);
      }

      25% {
          border-color: transparent #fff transparent transparent;
      }

      50% {
          border-color: transparent #fff #fff transparent;
      }

      75% {
          border-color: transparent #fff #fff #fff;
      }

      100% {
          border-color: #fff;
          transform: rotate(-680deg);
      }
  }

  #nav-toggle {
      position: fixed;
      top: 20px;
      right: 20px;
      height: 60px;
      width: 60px;
      cursor: pointer;
      z-index: 10000;
      text-align: center;
      background: #fff;
      transition: 0.6s ease;
      border-radius: 50%;
  }

  #nav-toggle div::after {
      content: "OPEN";
      opacity: 1;
      color: #222;
      font-family: 'FunctionsPro', sans-serif;
      font-size: 10px;
      /* font-style: italic; */
      position: absolute;
      top: 20px;
      left: 50%;
      transform: translate(-50%, 0);
  }

  #nav-toggle div::before {
      content: "CLOSE";
      opacity: 0;
      color: #fff;
      font-family: 'FunctionsPro', sans-serif;
      font-size: 10px;
      /* font-style: italic; */
      position: absolute;
      top: 20px;
      left: 50%;
      transform: translate(-50%, 0);
  }

  #nav-toggle>div {
      position: relative;
      width: 20px;
      margin: 18px auto 0 auto;
  }

  #nav-toggle span {
      width: 100%;
      height: 2px;
      left: 0;
      display: block;
      background: #222;
      position: absolute;
      transition: transform 0.5s ease-in-out, top 0.5s ease;
      border-radius: 2px;
      overflow: hidden;
  }

  #nav-toggle span:nth-child(1) {
      top: 0;
      width: 100%;
  }

  #nav-toggle span:nth-child(2) {
      top: 5px;
      width: 80%;
  }

  #nav-toggle span:nth-child(3) {
      top: 10px;
      width: 60%;
  }

  #nav-toggle:hover span:nth-child(1) {
      top: -2px;
  }

  #nav-toggle:hover span:nth-child(3) {
      top: 12px;
  }

  .open #nav-toggle {
      background: none;
  }

  .open #nav-toggle div::after {
      content: "OPEN";
      opacity: 0;
  }

  .open #nav-toggle div::before {
      content: "CLOSE";
      opacity: 1;
  }

  .open #nav-toggle span {
      background: #fff;
      width: 100%;
  }

  .open #nav-toggle span:nth-child(1) {
      top: 5px;
      transform: rotate(45deg);
      height: 2px;
      width: 100%;
  }

  .open #nav-toggle span:nth-child(2) {
      top: 5px;
      width: 0;
      left: 50%;
  }

  .open #nav-toggle span:nth-child(3) {
      top: 5px;
      transform: rotate(-45deg);
      height: 2px;
      width: 100%;
  }

  #gloval-nav ul.menu {}

  #gloval-nav ul.menu li {}

  #gloval-nav ul.menu li:hover {
      color: #EEE;
      cursor: pointer;
  }

  /*****fade****/
  /*
  #gloval-nav {
      background: #000;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      text-align: center;
      visibility: hidden;
      opacity: 0;
      transition: all 400ms ease-in-out;
      z-index: 9999;
      width: 100%;
      height: 100%;
      overflow-x: hidden;
      overflow-y: auto;
      min-width: 800px;
  }
  */

  /****slide****/

  #gloval-nav {
      background: #000;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      visibility: hidden;
      text-align: center;
      opacity: 1;
      transition-delay: 0;
      transition-duration: 0.8s;
      transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
      transform: translate3d(0, 100vh, 0) skewY(-8deg);
      transform-origin: bottom right;
      /* transition: opacity 0.6s ease, visibility 0.6s ease; */
      z-index: 9999;
      width: 100%;
      height: 100dvh;
      overflow-x: hidden;
      overflow-y: auto;
      min-width: 800px;
  }

  .close-menu#gloval-nav .menu-out {
      transition-delay: 0s;
      transition-duration: 0.4s;
      transition-timing-function: ease-in-out;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 1);
  }

  #nav-img {
      background-image: url(/pc/img/menu_img.jpg);
      background-position: 30% 50%;
      background-repeat: none;
      background-size: cover;
      width: 46%;
      height: 100%;
      position: fixed;
      top: 0;
      left: 0;
      opacity: 0;
      transition-delay: 0.6s;
      transition-duration: 0.6s;
      transition-timing-function: ease-in-out;
  }

  .open #nav-img::after {
      content: "";
      position: absolute;
      background-image: url(/pc/img/pattern.png);
      background-repeat: repeat;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
  }

  .open #nav-img {
      opacity: 1;
  }

  .nav-shadow {
      position: absolute;
      right: -1px;
      left: auto;
      top: 0;
      width: 100px;
      height: 100%;
      background: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
      background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
      background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=1);
  }

  #nav-img2 {
      background-image: url(/pc/img/menu_bg_flare.png);
      background-position: 30% 50%;
      background-repeat: none;
      background-size: cover;
      width: 46%;
      height: 100%;
      position: absolute;
      top: 0;
      right: 0;
      opacity: 1;
      transition-delay: 0.6s;
      transition-duration: 0.6s;
      transition-timing-function: ease-in-out;
  }


  #gloval-nav #nav-in {
      position: relative;
      height: 100%;
      max-width: 900px;
      margin: 0 auto;
      height: 100%;
      overflow: auto;
  }

  @media only screen and (max-width:1400px) {
      #gloval-nav #nav-in {
          position: relative;
          height: 100%;
          max-width: 900px;
          margin: 0 auto 0 31%;
          overflow: auto;
          padding: 0 0 80px 0;
      }
  }

  @media all and (-ms-high-contrast: none) {
      #gloval-nav #nav-in {
          position: relative;
          width: 100%;
          height: 100%;
          overflow-x: hidden;
          overflow-y: hidden;
          /* overflow-y: auto; */
      }
  }

  #gloval-nav #nav-in #nav {
      position: relative;
      overflow-x: hidden;
      overflow-y: auto;
      /* overflow-y: auto; */
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      top: 50%;
      left: 50%;
      width: 100%;
      height: auto;
      transform: translate(-50%, -50%);
  }

  #gloval-nav ul.menuL {
      position: relative;
      width: 50%;
      overflow: hidden;
  }

  #gloval-nav ul.menuR {
      position: relative;
      width: 50%;
      overflow: hidden;
  }

  @media only screen and (max-width:1400px) {
      #gloval-nav ul li.menu-logo {
          width: 300px;
          margin: 0 auto 20px auto;
      }

      #gloval-nav ul li.menu-logo svg {
          width: 100%;
          max-width: 100%;
          height: auto;
      }

      #gloval-nav ul li.menu-logo img {
          width: 100%;
          max-width: 100%;
          height: auto;
      }

      #gloval-nav #nav-in #nav {
          position: relative;
          top: 20px;
          left: 50%;
          width: 100%;
          transform: translate(-50%, 0%);
          overflow-x: hidden;
          overflow-y: auto;
      }

      #gloval-nav ul.menuL {
          width: 100%;
      }

      #gloval-nav ul.menuR {
          width: 100%;
      }
  }

  #gloval-nav ul {
      position: relative;
      padding: 10px 0;
      height: 100%;
  }

  #gloval-nav a {
      display: block;
      position: relative;
      padding: 10px 0;
      transition: color 0.6s ease;
  }

  #gloval-nav ul li {
      opacity: 0;
      transform: translateY(20px);
  }

  .is-active#gloval-nav ul {
      opacity: 1;
      transition: 0.6s ease;
  }

  .close-menu#gloval-nav ul {
      opacity: 0;
  }

  .is-active#gloval-nav ul li:nth-child(1) {
      transition-delay: 0.6s;
  }

  .is-active#gloval-nav ul li:nth-child(2) {
      transition-delay: 0.7s;
  }

  .is-active#gloval-nav ul li:nth-child(3) {
      transition-delay: 0.8s;
  }

  .is-active#gloval-nav ul li:nth-child(4) {
      transition-delay: 0.9s;
  }

  .is-active#gloval-nav ul li:nth-child(5) {
      transition-delay: 1s;
  }

  .is-active#gloval-nav ul li:nth-child(6) {
      transition-delay: 1.1s;
  }

  .is-active#gloval-nav ul li:nth-child(7) {
      transition-delay: 1.2s;
  }

  .is-active#gloval-nav ul li:nth-child(8) {
      transition-delay: 1.3s;
  }

  .is-active#gloval-nav ul li:nth-child(9) {
      transition-delay: 1.4s;
  }

  .is-active#gloval-nav ul li:nth-child(10) {
      transition-delay: 1.5s;
  }

  .is-active#gloval-nav ul li:nth-child(11) {
      transition-delay: 1.6s;
  }

  .is-active#gloval-nav ul li:nth-child(12) {
      transition-delay: 1.7s;
  }

  .is-active#gloval-nav ul li:nth-child(13) {
      transition-delay: 1.8s;
  }

  .is-active#gloval-nav ul li:nth-child(14) {
      transition-delay: 1.9s;
  }

  .is-active#gloval-nav ul li:nth-child(15) {
      transition-delay: 2s;
  }

  .is-active#gloval-nav ul li.menu-list a {
      display: inline-block;
      padding: 10px 40px;
  }

  #gloval-nav ul li.menu-list a span.en {
      display: block;
      font-family: 'Sorts Mill Goudy', sans-serif;
      font-weight: 500;
      font-size: clamp(1.125rem, 0.508rem + 1.45vw, 2.25rem);
      transform: skewX(-8deg);
      /*
    color: rgba(255, 255, 255, 0);
    background: linear-gradient(90deg, #a15d64, #c79896, #a15d64);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
*/
      /* color: #a6898b; */
      color: #d0d0d0;
      transition: 0.3s ease;
      opacity: 1;

  }

  #gloval-nav ul li.menu-list a.active span.en {
      color: #fff;
      text-shadow: 0 0 3px rgba(255, 255, 255, 0.8);
      text-decoration: line-through;
  }

  #gloval-nav ul li.menu-list a:hover span.en {
      opacity: 0;
      transform: skewX(-8deg);
  }

  #gloval-nav ul li.menu-list a b.ja {
      display: inline-block;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) skewX(-8deg);
      width: 100%;
      opacity: 0;
      font-size: 15px;
      transition: 0.3s ease;
      color: #fff;
      z-index: 1;
      text-shadow: 0 0 3px rgba(255, 255, 255, 0.8);
      /* font-family: 'Noto Serif JP', serif; */
  }

  #gloval-nav ul li.menu-list a:hover b.ja {
      opacity: 1;
      transform: translate(-50%, -50%) skewX(-8deg);

  }

  #gloval-nav ul li.menu-list a b.ja::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      transform: skewX(8deg) translate3d(-60%, -50%, 0);
      background-image: url(/pc/img/name_roma_bg2.png);
      background-size: 100% 100%;
      width: 100%;
      background-position: 50% 0;
      height: 14px;
      display: block;
      opacity: 0.9;
      z-index: -1;
      transition-delay: 0.3s;
      transition-duration: 0.3s;
      transition-timing-function: ease;
      visibility: hidden;
  }

  #gloval-nav ul li.menu-list a:hover b.ja::before {
      transform: translate3d(-50%, -50%, 0);
      visibility: visible;
  }

  @media only screen and (min-width:1401px) {
      #gloval-nav ul li.menu-logo {
          width: 380px;
          margin: 0 auto;
      }

      #gloval-nav ul li.menu-logo svg {
          width: 100%;
          max-width: 100%;
          height: auto;
      }

      #gloval-nav ul li.menu-logo img {
          width: 100%;
          max-width: 100%;
          height: auto;
      }
  }

  #gloval-nav ul li.menu-tel {
      max-width: 280px;
      margin: 20px auto;
  }

  #gloval-nav ul li.menu-tel a img {
      width: 100%;
  }

  #gloval-nav ul li.menu-mm {
      text-align: center;
  }

  #gloval-nav ul li.menu-mm span {
      display: inline-block;
  }

  #gloval-nav ul li.menu-mm span a {
      font-size: 12px;
      line-height: 1;
      margin: 0 10px;
      color: #d0d0d0;
      transition: 0.3s ease;
  }

  #gloval-nav ul li.menu-mm span a:hover {
      color: #fff;
      text-shadow: 0 0 3px rgba(255, 255, 255, 0.8);
  }


  #gloval-nav ul li.menu-login {
      position: relative;
      width: 90%;
      max-width: 360px;
      margin: 20px auto 0 auto;
  }

  #loginFormArea dl.loginForm {
      position: relative;
      text-align: center;
      padding: 20px;
      /* border: 1px solid #999999; */
  }

  #loginFormArea dl.loginForm dt {
      font-family: 'Sorts Mill Goudy', sans-serif;
      font-size: 16px;
      line-height: 1;
      margin-bottom: 5px;
      /* border-bottom: 1px dotted #ea9090; */
      color: #d0d0d0;
      letter-spacing: 4px;

  }

  #loginFormArea dl.loginForm dd {
      display: block;
  }

  #loginFormArea dl.loginForm dd:last-child {
      clear: both;
  }

  #loginFormArea dl.loginForm dd.formTxtArea input[type="text"] {
      width: 47%;
      margin: 0 1.5%;
      padding: 12px 20px;
      background: #fff;
      text-align: center;
      font-size: 16px;
      color: #fff;
      transition: 0.3s ease;
      line-height: 1;
      float: left;
      font-style: italic;
      border-radius: 3px;
  }

  #loginFormArea dl.loginForm dd.formTxtArea input[placeholder="ID"],
  #loginFormArea dl.loginForm dd.formTxtArea input[placeholder="PASSWORD"] {
      color: #0d0d0d;
      font-family: 'Roboto', sans-serif;
      font-weight: 500;
  }

  #loginFormArea dl.loginForm dd.formTxtArea input[placeholder="ID"]:focus,
  #loginFormArea dl.loginForm dd.formTxtArea input[placeholder="PASSWORD"]:focus {
      box-shadow: 0 0 8px rgba(255, 255, 255, 1);
  }

  #loginFormArea dl.loginForm span.formBtnArea {
      display: block;
      margin-top: 58px;
  }

  #loginFormArea dl.loginForm span.formBtnArea input.button {
      background: #000;
      width: 100px;
      padding: 13px 16px;
      line-height: 1;
      cursor: pointer;
      color: #d0d0d0;
      font-family: 'Roboto', sans-serif;
      font-style: italic;
      letter-spacing: 2px;
      transition: 0.3s ease;
      font-size: 16px;
      margin: 0 1% 0 auto;
      display: block;
      border: 1px solid #d0d0d0;
      font-weight: 500;
      border-radius: 22px;

  }

  #loginFormArea dl.loginForm span.formBtnArea input.button:hover {
      background: #9a8a65;
      color: #fff;
      border-radius: 22px;
  }

  #loginFormArea dl.loginForm dd.formNotice {
      position: relative;
      display: block;
      font-weight: normal;
      font-size: 10px;
      margin-top: 20px;
  }

  #returnPublic {
      position: relative;
      text-align: center;
  }

  #returnPublic form .p_button {
      padding: 10px 20px;
      cursor: pointer;
      color: #001818;
      font-family: 'Roboto', sans-serif;
      transition: 0.3s ease;
      letter-spacing: 2px;
      display: inline-block;
      font-weight: 700;
      font-style: italic;
      background: #fff;
  }

  #returnPublic form .p_button:hover {
      color: #000;
      text-decoration: underline;
  }

  .loginNow {
      position: fixed;
      bottom: 10px;
      left: 10px;
  }

  .loginNow span {
      display: inline-block;
      font-size: 12px;
      line-height: 24px;
      padding: 0 20px;
      border-radius: 12px;
      color: #fff;
      background: rgb(255, 139, 193);
      background: -moz-linear-gradient(90deg, rgba(255, 139, 193, 1) 0%, rgba(255, 167, 132, 1) 100%);
      background: -webkit-linear-gradient(90deg, rgba(255, 139, 193, 1) 0%, rgba(255, 167, 132, 1) 100%);
      background: linear-gradient(90deg, rgba(255, 139, 193, 1) 0%, rgba(255, 167, 132, 1) 100%);
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff8bc1", endColorstr="#ffa784", GradientType=1);
      font-family: "Roboto", sans-serif;
      font-style: italic;
      transition: 0.3s ease;
      letter-spacing: 2px;
      font-weight: 700;
  }


  /* open */
  .open {
      overflow: hidden !important;
  }

  /*****fade****/
  /*
  .open #gloval-nav {
      visibility: visible;
      opacity: 1;
      overflow: auto;
  }
  */

  /***slide***/
  .open #gloval-nav {
      visibility: visible;
      opacity: 1;
      overflow: auto;
      /* top: 0; */
      transform: translate3d(0, 0, 0) skewY(0deg);
  }

  .open #gloval-nav li {
      opacity: 1;
      transform: translateX(0);
      transition: transform 0.3s ease, opacity 0.9s ease;
  }