@charset "UTF-8";
/* CSS Document */
/*======================================
swich
/*======================================*/
body.locked::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgb(var(--white-rgb) / .25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
}
/*======================================
menu-btn
/*======================================*/
.menu-btn, .menu-btn span {
  display: inline-block;
  position: fixed;
  transition: all .4s;
  box-sizing: border-box;
}
.menu-btn {
  position: fixed;
  top: calc(2em - 4px);
  right: 2em;
  width: 28px;
  height: 28px;
  z-index: 10002;
  border-radius: 50%;
}
.menu-btn .btn-open {
  display: block;
  position: absolute;
  inset: 0;
  width: 28px;
  height: 28px;
  z-index: 9999;
}
.menu-bg {
  position: fixed;
  top: 0;
  right: 0;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: var(--orange);
  z-index: 10000;
  transform: scale(0);
  transition: transform .6s ease-in-out, background .6s ease-in-out;
  pointer-events: none;
  will-change: transform;
}
.active .menu-bg {
  transform: scale(80);
  background: rgb(var(--navy-rgb) / .95);
}
.menu-btn .btn-open span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--orange);
  border-radius: 2px;
  transition: all .2s ease-in-out;
}
.menu-btn:hover .btn-open span:nth-of-type(1), .menu-btn:hover .btn-open span:nth-of-type(3) {
  transition: all .2s ease-in-out;
}
.menu-btn .btn-open span:nth-of-type(1) {
  top: 5px;
}
.menu-btn .btn-open span:nth-of-type(2) {
  top: calc(50% - 1px);
}
.menu-btn .btn-open span:nth-of-type(3) {
  bottom: 5px;
}
.menu-btn:hover .btn-open span:nth-of-type(1) {
  transform: translateY(2px);
}
.menu-btn:hover .btn-open span:nth-of-type(3) {
  transform: translateY(-2px);
}
.active .menu-btn {
  transition: all .4s ease-in-out;
}
.menu-btn.active .btn-open span {
  background: var(--orange);
}
.menu-btn.active .btn-open span:nth-of-type(1) {
  transform: translate(-50%, -50%) rotate(-45deg);
  top: 50%;
  left: 50%;
}
.menu-btn.active .btn-open span:nth-of-type(2) {
  opacity: 0;
}
.menu-btn.active .btn-open span:nth-of-type(3) {
  transform: translate(-50%, -50%) rotate(45deg);
  top: 50%;
  left: 50%;
}
.menu-btn.active .btn-open:hover {
  transform: rotate(180deg);
  transition: all .4s ease-in-out;
}
/*======================================
drawer-overlay
/*======================================*/
@keyframes drawerFadeIn {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}
@keyframes drawerFadeOut {
  0% {
    visibility: visible;
    opacity: 1;
  }
  100% {
    visibility: hidden;
    opacity: 0;
  }
}
/*======================================
overlay-menu
/*======================================*/
.overlay {
  position: fixed;
  inset: 0;
  z-index: 10001;
  top: 0;
  bottom: 0;
  left: 0;
  text-align: left;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: rgb(var(--orange-rgb) / .5) rgb(var(--white-rgb) / .9);
  scrollbar-width: thin;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease-in-out, visibility .4s ease-in-out;
  color: var(--white);
}
.active .overlay {
  opacity: 1;
  visibility: visible;
  transition-delay: .5s;
}
.overlay .overlay-contents {
  position: relative;
  width: 100%;
}
.overlay .overlay-contents .block-R {
  max-width: 550px;
}
.overlay .overlay-contents .wrap {
  max-width: 800px;
}
@media screen and (min-width:769px) {
  /*overlay-menu*/
  .overlay {
    font-size: 90%;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .overlay .overlay-contents {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + 20px));
    opacity: 0;
    transition: opacity .4s ease, transform .4s ease;
  }
  .active .overlay .overlay-contents {
    opacity: 1;
    transform: translate(-50%, -50%);
    transition-delay: .6s;
  }
} /*END query*/
/*======================================
overlay-SP
/*======================================*/
.overlay-SP {
  position: relative;
}
.overlay-SP .logo-R {
  width: 35%;
  max-width: 150px;
  margin: 0 auto;
  padding: 2em 0;
}
.overlay-SP .logo-R a {
  background-image: url(../img/logo-R-W.png);
}
.overlay-SP .contents-wrap {
  position: relative;
  width: calc(100% - 1.5em*2 - 10% - 5%);
  margin-left: calc(1.5em*2 + 10%);
  margin-right: 5%;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease-out .5s, transform .5s ease-out;
  will-change: opacity, transform;
}
.active .overlay-SP .contents-wrap {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .6s;
}
.overlay-SP .snsNav {
  position: fixed;
  left: 1.5em;
  top: 27.5%;
  transform: translateY(-50%);
  z-index: 10002;
  text-align: center;
  width: 10%;
  opacity: 0;
  transition: opacity .35s ease;
}
.active .overlay-SP .snsNav {
  opacity: 1;
  transition-delay: .85s;
  pointer-events: auto;
}
.overlay-SP .snsNav :not(:last-of-type) {
  margin-bottom: 1em;
}
.overlay-SP .snsNav li {
  display: block;
  margin: 0 auto;
  width: fit-content;
}
.overlay-SP .snsNav a {
  width: 28px;
  height: 28px;
}
.overlay-SP .inner {
  text-align: center;
  margin: 0 auto;
}
.overlay-SP .inner .subNav {
  margin-top: 2em;
}
.overlay-SP .inner .subNav li:not(:last-of-type) {
  margin-bottom: 1em;
}
.overlay-SP-nav {
  font-size: 120%;
}
.overlay-SP-nav > li {
  border-bottom: 1px solid rgb(var(--orange-rgb) / .5);
}
.overlay-SP #footerNav2 > li {
  padding-bottom: 1em;
}
.overlay-SP #footerNav3 > li {
  padding: 1em 0;
}
.overlay-SP #footerNav2 > li a, .overlay-SP #footerNav3 > li a {
  display: inline-block;
}
.overlay-SP .menu-desc {
  opacity: .8;
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 120%;
  letter-spacing: 2px;
  margin-right: 1em;
  color: var(--orange);
}
.overlay-SP-nav .sub-menu {
  margin-left: 1.5em;
  margin-top: .8em;
}
.overlay-SP-nav .sub-menu li {
  position: relative;
  display: inline-block;
  font-size: 90%;
  margin-right: 2em;
  line-height: 1.5em;
  font-weight: 300;
}
.overlay-SP-nav .sub-menu li:not(:last-of-type) {
  margin-bottom: .7em;
}
.overlay-SP-nav .sub-menu a::before {
  position: absolute;
  content: "";
  margin-left: -.9em;
  width: .6em;
  height: .6em;
  background: var(--orange);
  border-radius: 100%;
  top: .4em;
}
.overlay-SP #footerNav1 li:first-of-type {
  display: none;
}
.overlay-SP #footerNav1 > li {
  position: relative;
  font-size: 90%;
  padding: 1em 0;
}
.overlay-SP #footerNav1 li:nth-last-child(-n+2) {
  display: inline-block;
  width: 48%;
}
#footerNav1 li:nth-last-child(2) {
  margin-right: 2%;
}
.overlay-SP #footerNav1 > li::after {
  position: absolute;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f054";
  right: 0;
  top: 50%;
  width: 1.5em;
  line-height: 0;
  font-size: .7em;
  opacity: .7;
  transition: all .3s ease;
  color: var(--orange);
}
@media screen and (min-width:768px) {
  .overlay-SP #footerNav1 li:nth-last-child(-n+2) {
    display: block;
    width: 100%;
  }
  #footerNav1 li:nth-last-child(2) {
    margin-right: 0;
  }
} /*END query*/
/*======================================
siteMap / overlay-contents
/*======================================*/
.siteMap .block-R .pageTop-wrap {
  align-self: flex-end;
}
.siteMap .logo-S {
  width: 60%;
  max-width: 150px;
}
/* snsNav ==============*/
.siteMap .snsNav {
  margin: 1.5em auto;
}
/* subNav ==============*/
.siteMap .subNav {
  display: inline-block;
  margin: 1.5em auto 2em;
}
.siteMap .subNav li {
  text-align: center;
  font-size: 80%;
  margin: 1em auto 0;
}
.siteMap .subNav li:first-of-type {
  margin-top: 0;
}
.copyright {
  text-align: center;
  font-size: 11px;
}
@media screen and (min-width:769px) {
  /*======================================
siteMap / overlay-contents
/*======================================*/
  .siteMap .block-L {
    text-align: center;
    width: 20%;
    margin-right: 5%;
  }
  .overlay .siteMap .block-L {
    width: 30%;
  }
  .siteMap .block-R {
    flex: 1;
    gap: 0 5%;
    max-width: 900px;
  }
  /* .siteMap ==============*/
  .siteMapNav a span {
    display: block;
  }
  .siteMapNav > li {
    text-align: left;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 1.5em;
  }
  .siteMapNav > li:last-of-type {
    margin-bottom: 0;
  }
  /* sub-menu ==============*/
  .siteMap .sub-menu {
    margin-top: 1em;
    padding-left: .6em;
  }
  .siteMap .sub-menu li {
    position: relative;
    font-size: 80%;
    font-weight: 300;
    margin-bottom: 1em;
    line-height: 1.5em;
  }
  .siteMap .sub-menu li:last-of-type {
    margin-bottom: 0;
  }
  .siteMap .siteMapNav .sub-menu a::after {
    content: none;
  }
  .siteMap .siteMapNav .sub-menu a:hover {
    transform: translate(5px, 0);
    opacity: .7;
  }
  .siteMap .siteMapNav .sub-menu a::before {
    position: absolute;
    content: "";
    margin-left: -.9em;
    width: .6em;
    height: .6em;
    background: var(--orange);
    border-radius: 100%;
    top: .6em;
  }
  /* hover animation ==============*/
  .siteMap .siteMapNav a {
    position: relative;
    display: inline-block;
  }
  .siteMap .siteMapNav a:hover {
    opacity: 1;
  }
  .siteMap .siteMapNav a::after {
    content: "";
    position: absolute;
    left: -5%;
    bottom: -5px;
    width: 110%;
    height: 1px;
    background: rgba(240, 110, 0, 1);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform .7s ease;
    pointer-events: none;
  }
  .siteMap .siteMapNav a:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
    transition-duration: .3s;
  }
  /* snsNav ==============*/
  .siteMap .snsNav {
    margin: 1.5em auto;
  }
} /*END query*/