@charset "UTF-8";

/* ==========================================================================
   Header
========================================================================== */
#siteHeader {
  max-width: 992px;
  margin-right: auto;
  margin-left: auto;
  height: 60px;
  background-color: var(--color2);
  color: #FFF;
  font-size: 1.125rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  transition: .3s; }

.gNavOpen #siteHeader,
#siteHeader.fixed {
  position: fixed;
  box-shadow: 0px 0px 8px -2px rgb(0,0,0,.2); }

#siteHeader a {
  text-decoration: none;
}

.inner-header {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center; }

#logo {
  margin: 0;
  font-size: 1rem;
  line-height: 52px;
  flex: 0 0 180px;
  max-width: 180px;
  position: relative;
  z-index: 2;
  transition: .3s; }
#logo .logo__inner {
  display: block;
  color: inherit;
  margin: 0 15px;
  position: relative; }
#logo .site-title {
  color: var(--color2);
  user-select: none;
}
#logo .logo__inner img,
#logo .logo__inner svg {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  height: auto; }

.svgWrap__text {
  position: absolute;
  top: 0;
  left: 0;
  fill: #fff;
}
.svgWrap__text:nth-child(2),
.svgWrap__text:nth-child(3) {
 clip: rect(0, 0, 0, 0);
}
.svgWrap__text:nth-child(2) {
  fill: rgb(255,0,255);
  left: -0.5%;
  animation: svg-glitch-effect 2s infinite linear alternate-reverse;
}
.svgWrap__text:nth-child(3) {
  fill: rgb(0,255,255);
  left: 0.5%;
  animation: svg-glitch-effect 3s infinite linear alternate-reverse;
}

@keyframes svg-glitch-effect {
  0%  { clip: rect(51px, 270px, 30px, 0); }
  5%  { clip: rect(27px, 270px, 43px, 0); }
  10% { clip: rect(25px, 270px, 20px, 0); }
  15% { clip: rect(5px,  270px, 40px, 0); }
  20% { clip: rect(42px, 270px, 39px, 0); }
  25% { clip: rect(44px, 270px, 43px, 0); }
  30% { clip: rect(73px, 270px, 29px, 0); }
  35% { clip: rect(7px,  270px, 43px, 0); }
  40% { clip: rect(75px, 270px, 14px, 0); }
  45% { clip: rect(1px,  270px, 46px, 0); }
  50% { clip: rect(43px, 270px, 34px, 0); }
  55% { clip: rect(10px, 270px, 22px, 0); }
  60% { clip: rect(37px, 270px, 43px, 0); }
  65% { clip: rect(58px, 270px, 61px, 0); }
  70% { clip: rect(33px, 270px, 70px, 0); }
  75% { clip: rect(57px, 270px, 66px, 0); }
  80% { clip: rect(19px, 270px, 17px, 0); }
  85% { clip: rect(75px, 270px, 47px, 0); }
  90% { clip: rect(64px, 270px, 29px, 0); }
  95% { clip: rect(20px, 270px, 61px, 0); }
  100%{ clip: rect(21px, 270px, 17px, 0); }
}


@media (min-width: 992px) {
  #siteHeader {
    z-index: 998; }
  #siteHeader .inner-header {
    position: relative; }

  #logo {
    flex: 0 0 200px;
    max-width: 200px; }
  #logo .logo__inner {
    margin: 0 1rem 0 2rem; }

  .svgWrap__text:nth-child(2) {
    left: -0.3%;
  }
  .svgWrap__text:nth-child(3) {
    left: 0.3%;
  }
}



#headerMenu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 70px;
}
#siteHeader #headerMenu a {
  display: flex;
  align-items: center;
  line-height: 1.25;
}
#siteHeader #headerMenu i {
  display: inline-block;
  font-size: 1.75rem;
}

#siteHeader #logged_in em {
  display: inline-block;
  font-size: .75rem;
  font-style: normal;
  margin-right: .5em;
}

#siteHeader #logged_in + #searchBtn {
  padding-left: 20px;
}

@media (max-width: 576px) {
  #siteHeader #logged_in em {
    display: none;
  }
}

@media (min-width: 1180px) {
  #siteHeader #headerMenu {
    padding-right: 30px;
  }
}


/* ==========================================================================
   Navigation
========================================================================== */
nav a {
  display: block;
  text-decoration: none;
}

nav ul {
  border-bottom: 0;
  margin: 0;
  transition: opacity 1s .5s cubic-bezier(0.190, 1.000, 0.220, 1.000);
}
nav ul li a {
  display: block;
  color: inherit;
  text-decoration: none;
  line-height: 1.25;
  padding: .5rem 15px;
}
nav ul li a span em {
  font-style: normal;
  letter-spacing: 0;
}
nav ul li.has-children {
  position: relative;
}
nav > ul > li > a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: .25rem;
  font-weight: 400;
  letter-spacing: .08em;
  position: relative;
}
nav > ul > li > a span {
  display: block;
  font-weight: 500;
  white-space: nowrap; }
nav > ul > li > a em {
  display: block;
  white-space: nowrap;
  font-style: normal;
  font-size: .625rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: .04em;
  color: #a4a6a9; }
nav ul li .sub-menu ul li a > span::before {
  content: '';
  display: inline-block;
  width: .5em;
  height: 1px;
  background: currentColor;
  margin-right: .5em;
  transform: translateY(-.3em);
  opacity: .5; }
nav ul li .sub-menu ul li a:hover > span::before {
  opacity: 1; }

nav ul li .sub-menu ul li ul {
  display: block !important;
  padding-bottom: .5rem; }
nav ul li .sub-menu ul li ul li a {
  opacity: .8; }
nav ul li .sub-menu ul li ul li a > span {
  padding-left: 1em; }
nav ul li .sub-menu ul li ul li a > span::before {
  border-width: 2px 0 2px 3px;
  left: 1.1em; }

nav ul li.has-children > a > span {
  position: relative;
  padding-right: 12px;
}
nav ul li.has-children > a > span::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 3px 0 3px;
  border-color: currentColor transparent transparent transparent;
  position: absolute;
  top: 50%;
  right: 0;
  transition: all .2s ease-in-out;
  transform: translateY(-50%);
}


.gNav div:not(.sub-menu) a:hover {
  opacity: .5;
}


#gNav-close{
  z-index: 900;
}
.gNav {
  width: 250px;
  max-width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
}
.gNav__inner {
  width: 100%;
  height: 100%;
  padding: 60px 0 15px;
  background: var(--color2) url(../img/bg_img.svg) repeat center center / 200px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 998;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 30%), 0 1px 10px 0 rgb(0 0 0 / 15%);
}
.gNav .navBar {
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
.gNav .navBar > ul > li {
  padding: 0 15px;
}
.gNav .navBar ul li a {
  text-decoration: none;
}
.gNav .navBar > ul > li > a {
  margin-top: .25rem;
  font-size: 1.25em;
}
.gNav .navBar .sub-menu {
  display: none;
  background-color: rgba(0,0,0,0.1);
  margin: 0 -15px;
  padding: 20px 15px;
}
.gNav .navBar .sub-menu ul li a {
  font-size: .938rem; }

/* Icon Navigation */
.gNav .navBar .icon-nav {
  display: flex;
  padding: 15px 30px 0;
}
.gNav .navBar ul.icon-nav > li {
  padding: 0;
  flex-basis: 100%;
}
.gNav .navBar ul.icon-nav > li > a {
  padding: .5rem 10px;
  margin: 0;
  text-align: center;
}
.gNav .navBar ul.icon-nav > li > a i {
  font-size: 1.33333em;
}
.gNav .navBar > ul.icon-nav > li > a em {
  color: #FFF;
  margin-top: .2em;
}


/* Sub Navigation */
.gNav .navBar .sub-nav {
  display: flex;
  padding: 15px 30px 0;
}
.gNav .navBar .sub-nav li {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
  padding: 1px;
}
.gNav .navBar .sub-nav li:not(:last-of-type) {
  margin-bottom: 5px;
}
.gNav .navBar .sub-nav li a {
  flex-direction: row;
  align-items: center;
  border-top: 3px double currentColor;
  border-bottom: 3px double currentColor;
  font-size: .75rem;
  font-weight: 700;
  padding: 10px 5px 12px;
  position: relative;
}
.gNav .navBar .sub-nav li a i {
  display: inline-block;
  font-size: 3em;
}
.gNav .navBar .sub-nav li a span {
  display: block;
}
.gNav .navBar .sub-nav li a > span {
  line-height: 1.35;
  margin-left: .5em;
  text-align: left;
}

/* Nav Btn */
.nav-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 999;
  transition: .5s;
}
.nav-btn i{
  display: block;
  background: currentColor;
  width: 50%;
  height: 2px;
  position: absolute;
  right: 0;
  left: 0;
  margin: -1px auto 0;
  transition: top .1s, transform .3s;
}
.nav-btn i:nth-of-type(1){
  top: calc(50% - 4px);
}
.nav-btn i:nth-of-type(2){
  top: calc(50% + 4px);
}
.nav-btn.on {
  position: fixed;
}
.nav-btn.on i:nth-of-type(1){
  width: 40%;
  top: 50% !important;
  transform: rotate(45deg);
}
.nav-btn.on i:nth-of-type(2){
  width: 40%;
  top: 50% !important;
  transform: rotate(-45deg);
}

@media (max-width: 1179px) {
  body.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
  }

  .gNav{
    display: none;
  }
  .gNav__inner {
    right: -100%;
    opacity: 0;
    transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  }
  .gNav .navBar ul {
    opacity: 0;
  }

  /* OPEN */
  .gNav.on .gNav__inner{
    right: 0;
    overflow-y: auto;
    opacity: 1;
  }
  .gNav.on ul {
    opacity: 1;
  }
}


@media (min-width: 1180px) {
  #siteHeader {
    position: absolute !important;
  }
  .gNav {
    display: block !important;
    height: 100%;
    z-index: 100;
  }
  .gNav .gNav__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 0 45px;
  }
  .nav-btn {
    display: none;
  }
}

@media (min-width: 1553px) {
  .gNav {
    right: calc((100vw - 992px)/2 - 280px);
  }
}


/* ==========================================================================
   Search Form
========================================================================== */
.modal-cont#search {
  background: transparent;
}
.modal-cont#search .modal-cont-body {
  width: 90vw;
  max-width: 510px;
  padding: 4rem 0;
}
.modal-cont#search .fancybox-close-small {
  color: #FFF;
  display: none;
}

.searchformBox {
  display: flex;
}
.searchformBox .inputCol {
  flex-basis: 100%;
}
.searchformBox .btnCol {
  flex: 0 0 44px;
}

.searchform .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 .5em;
  min-width: inherit;
  width: 56px;
  height: 56px;
  line-height: 52px;
  border-radius: 0 .25em .25em 0;
  margin-left: -2px;
  box-shadow: none;
}
.searchform .btn:hover {
  transform: translateY(0);
}
.searchform input[type="text"] {
  height: 56px;
  border-color: var(--color2);
}
.searchform .btn i {
  font-size: 1.5rem;
}

/* ==========================================================================
   Lang Switch
========================================================================== */
.lang-switch {
  position: absolute;
  top: 13px;
  right: 60px;
  left: 30px;
  z-index: 99;
}
.lang-switch ul {
  list-style-type: none;
  display: flex;
  height: 100%;
  margin: 0 -1px;
  padding: 1px 0;
}
.lang-switch ul li {
  flex-basis: 100%;
  max-width: 3em;
  padding: 1px;
  text-transform: uppercase;
}
.lang-switch ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: .75rem;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0;
  padding: 0 1em;
  background-color: rgba(0,0,0,0.1);
  color: rgba(255,255,255,0.5);
  position: relative;
}
.lang-switch ul li.no-translation a {
  pointer-events: none;
}
.lang-switch ul li.no-translation:not(.current-lang) a::after {
  content: '';
  width: 1px;
  height: 2em;
  background-color: currentColor;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -1em;
  transform: rotate(45deg);
}
.lang-switch ul li.current-lang a {
  pointer-events: none;
  background-color: #FFF;
  color: var(--black);
}

@media (min-width: 1180px) {
  .lang-switch {
    top: 43px;
    right: 30px;
  }
}

/* ==========================================================================
   Sidebar
========================================================================== */
.sidebar ul {
  padding: 0;
  list-style-type: none;
}
.sidebar ul li a {
  display: inline-block;
}

/* sidebar-arcive */
.sidebar-arcive .side_box:not(:last-of-type) {
  margin-bottom: 3rem;
}
.sidebar-arcive .side_ttl {
  line-height: 1.5;
  margin-bottom: 1rem;
}
.sidebar-arcive ul {
  padding: 0;
  margin-left: 0;
}
.sidebar-arcive ul li a {
  display: block;
  padding-left: 20px;
  text-decoration: none;
  opacity: .5;
  position: relative;
}
.sidebar-arcive ul li a::before {
  content: '';
  display: inline-block;
  width: .5em;
  height: .5em;
  background-color: var(--border1);
  border-radius: 50%;
  position: absolute;
  top: .8em;
  left: 0;
}
.sidebar-arcive ul li a:hover {
  opacity: 1;
}
.sidebar-arcive ul li.current a {
  opacity: 1;
  pointer-events: none;
}
.sidebar-arcive ul li.current a::before {
  background-color: var(--color1);
}

@media (min-width: 768px) {
  .sidebar-arcive ul {
    display: block !important;
  }
}

/* ==========================================================================
   Breadcrumb
========================================================================== */
#breadcrumb {
  background-color: var(--l-gray2);
  padding: .75rem 0;
  overflow-x: auto;
}
#breadcrumb .breadcrumb-list {
  list-style-type: none;
  display: flex;
  align-items: center;
  font-size: .875rem;
  line-height: 1.25rem;
  letter-spacing: 0;
}
#breadcrumb .breadcrumb-list li {
  display: flex;
  align-items: center;
}
#breadcrumb .breadcrumb-list li:not(:last-of-type)::after {
  content: '\f105';
  display: block;
  font-size: 1rem;
  font-family: 'Line Awesome Free';
  font-weight: 900;
  margin: 0 .5em;
  color: var(--gray);
}
#breadcrumb .breadcrumb-list li a {
  text-decoration: none;
  display: block;
}
#breadcrumb .breadcrumb-list li a span {
  display: block;
  white-space: nowrap;
}
#breadcrumb .breadcrumb-list li:last-child a span {
  padding-right: 15px;
}
#breadcrumb .breadcrumb-list li.breadcrumb-home a {
  width: 1.25rem;
  height: 1.25rem;
  font-size: 1px;
  line-height: calc(.875rem * 1.5);
  color: transparent;
  position: relative;
}
#breadcrumb .breadcrumb-list li.breadcrumb-home a::before {
  content: '\f015';
  display: block;
  font-size: 1rem;
  font-family: 'Line Awesome Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--black);
}

@media (min-width: 992px) {
  #breadcrumb .breadcrumb-list {
    padding-right: 30px;
    padding-left: 30px;
  }
}

/* ==========================================================================
   Footer
========================================================================== */
#siteFooter {
  clear: both;
  overflow: hidden;
  background-color: var(--dd-gray);
  color: #FFF; }
#siteFooter a {
  text-decoration: none;
}
#siteFooter #footerLogo {
  margin-bottom: 15px;
}
#siteFooter #footerLogo a {
  display: inline-block;
}
#siteFooter ul.sns-links {
  margin: 0;
  justify-content: center; }

#siteFooter .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  font-size: .75em;
  border-top: 1px solid rgba(255,255,255,0.1);
}
#siteFooter .footer-bottom nav ul {
  display: flex;
}
#siteFooter .footer-bottom nav > ul > li > a {
  font-weight: 400;
}

#siteFooter .copyright {
  text-align: center; }

.fNav nav .sub-menu ul {
  padding-bottom: .25em;
}
.fNav nav .sub-menu ul li a {
  font-size: .75rem; }

/* SNS Links */
#siteFooter .sns-links_ttl {
  font-size: .75em;
  letter-spacing: .2em;
}
ul.sns-links {
  display: flex;
  align-items: center;
  list-style-type: none;
}
ul.sns-links li {
  margin: 0 5px;
}
ul.sns-links li a {
  font-size: 1.313rem;
  padding: 5px;
}
ul.sns-links li a:hover {
  opacity: .5;
}


@media (max-width: 767px) {
  .fNav {
    display: none!important;
  }
  #siteFooter .footer-bottom nav ul {
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
  }
}

@media (min-width: 768px) {
  #siteFooter .inner-footer {
    margin-top: 60px;
    margin-bottom: 45px;
  }
  #siteFooter .footer-bottom__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #siteFooter .sns-links {
    margin-right: -10px;
  }
  #siteFooter nav {
    margin-right: -15px;
    margin-left: -15px;
  }

  .fNav nav {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .fNav nav {
    display: flex;
    flex-wrap: wrap;
  }
  .fNav nav > ul {
    flex: 0 0 25%;
    max-width: 25%;
    margin-bottom: 15px;
    position: relative;
  }
  .fNav nav > ul::before {
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    border-left: 1px solid rgba(255,255,255,.1);
    position: absolute;
    top: 0;
    left: 0;
  }
  .fNav nav ul li.has-children > a {
    opacity: .2;
    pointer-events: none;
  }
  .fNav nav ul li.has-children > a > span::after {
    display: none !important;
  }
  .fNav nav .sub-menu {
    display: block !important;
  }
  .fNav nav .sub-menu li a {
    letter-spacing: 0;
  }
}

@media (max-width: 991px) {
  #siteFooter {
    font-size: 1.143rem;
  }
  #siteFooter .inner-footer {
    margin-top: 60px;
    margin-bottom: 45px;
  }
  #siteFooter .footer-bottom__inner {
    font-size: .75rem;
  }
  #siteFooter .copyright {
    text-align: center;
  }
}

@media (min-width: 992px) {
  #siteFooter .container-fluid {
    padding-right: 30px;
    padding-left: 30px;
  }
  .fNav nav {
    flex-wrap: nowrap;
  }
  .fNav nav > ul {
    flex: 0 1 100%;
    max-width: 100%;
    padding: 0 15px;
  }
  .fNav nav > ul:first-of-type::before {
    display: none;
  }
}

@media (min-width: 1362px) {
  #siteFooter .footer-sns {
    width: auto;
    padding: 0;
    position: fixed;
    bottom: 30px;
    right: 1302px;
  }
  #siteFooter .footer-sns .sns-links {
    flex-direction: column;
    padding: 10px 5px;
    border-radius: 50px;
    background: var(--color2);
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 30%), 0 1px 10px 0 rgb(0 0 0 / 15%);
  }
  #siteFooter .footer-sns .sns-links li {
    margin: 0;
  }
  #siteFooter .footer-sns .sns-links li a {
    display: block;
    width: 40px;
    height: 40px;
    padding: 10px;
  }
  #siteFooter .footer-sns .sns-links li a svg {
    vertical-align: top;
  }
  #siteFooter .footer-sns .sns-links_ttl {
    display: none;
  }
}

@media (min-width: 1553px) {
  #siteFooter .footer-sns {
    right: calc((100vw - 992px)/2 + 992px + 30px);
  }
}