<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">header{
  position: fixed !important;
  z-index: 999999;
}

@media (max-width: 768px) {
  .none-mobile {
    display: none !important;
  }
}

.main_box {
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  position: relative;
}
.nav_container{
  max-width: 100%;
  margin: 0 auto;
}

.bl_logo{
  width: 6.5rem;
}

.bl_logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.top_nav {
  padding: .8rem 4rem .8rem 7rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fafafa;
}

.top_nav a:hover{
  opacity: .8;
}
.top_nav .main_logo {
  width: 6.5rem;
}
.top_nav .dropdown{
  transition: all .3s ease;
  display: none;
}
.top_ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4rem;
  margin: 0;
}

.top_ul li a {
  text-decoration: none;
  color: #000;
  font-size: 1.2rem;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
}
.top_ul li img {
  width: 1.6rem;
}
.top_ul li a .left_inside_img {
  margin-right: 1rem;
}

.btn-trigger{
  display: none;
}

.mobile-menu{
  display: none;
}

{# ãƒãƒ³ãƒãƒ¼ã‚¬ãƒ¼ #}
@media(max-width: 768px){
  .top_nav {
    padding: 1rem 2rem;
  }

  .top_ul .pc-menu{
    display: none;
  }

  .top_ul{
    position: fixed;
    top: 0;
    left: 1000px;
    flex-direction: column;
    width: 100%;
    background: #FAFAFA;
    gap: 0 !important;
    padding: 2.4rem;
    padding-top: 4rem;
    z-index: 1;
    transition: all 0.2s;
    overflow-y: scroll;
    height: 100%;
  }

  .top_nav .top_ul.active{
    left: 0;
  }


  .top_ul li{
    width: 100%;
  }

  .top_ul li a{
    width: 100%;
    padding: 1.6rem;
  }

  .top_ul li a:hover{
    background: #fff;
  }

  .humbarger-menuButton{
    padding: 1.6rem;
    border-bottom: solid 1px #cdcdcd;
    text-align: center;
    font-weight: bold;
    background: #F0F0FA;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .humbarger-menuButton:hover{
    cursor: pointer;
  }

  .humbarger-menu{
    list-style: none;
    padding-left: 0;
  }

  .is_single li{
    border-bottom: solid 1px #cdcdcd;
  }

  .mobile-menu{
    display: block;
    width: 100%;
  }

  /*=============================
  .btn-trigger
  =============================*/
  .btn-trigger {
    display: block !important;
    position: relative;
    width: 25px;
    height: 20px;
    cursor: pointer;
    z-index: 2;
  }
  .btn-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
    border-radius: 4px;
  }
  .btn-trigger, .btn-trigger span {
    display: inline-block;
    transition: all .5s;
    box-sizing: border-box;
  }
  .btn-trigger span:nth-of-type(1) {
    top: 0;
  }
  .btn-trigger span:nth-of-type(2) {
    top: 8px;
  }
  .btn-trigger span:nth-of-type(3) {
    bottom: 0;
  }

  /*=============================
  #btn18
  =============================*/
  #btn18 span:nth-of-type(1) {
    -webkit-animation: btn18-bar01 .5s forwards;
    animation: btn18-bar01 .5s forwards;
  }
  @-webkit-keyframes btn18-bar01 {
    0% {
      -webkit-transform: translateY(9px) rotate(-45deg);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
    }
  }
  @keyframes btn18-bar01 {
    0% {

      transform: translateY(9px) rotate(-45deg);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  #btn18 span:nth-of-type(2) {
    -webkit-animation: btn18-bar02 .5s forwards;
    animation: btn18-bar02 .5s forwards;
  }
  @-webkit-keyframes btn18-bar02 {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes btn18-bar02 {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  #btn18 span:nth-of-type(3) {
    -webkit-animation: btn18-bar03 .5s forwards;
    animation: btn18-bar03 .5s forwards;
  }
  @-webkit-keyframes btn18-bar03 {
    0% {
      -webkit-transform: translateY(-9px) rotate(45deg);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
    }
  }
  @keyframes btn18-bar03 {
    0% {
      transform: translateY(-9px) rotate(45deg);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  #btn18::after {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: '';
    width: 30px;
    height: 30px;
    margin: -16px 0 0 -16px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,.3);
    transition: all .1s;
    opacity: 0;
  }
  #btn18.active::after {
    -webkit-animation: circle .5s;
    animation: circle .5s;
  }
  @-webkit-keyframes circle {
    0% {
      -webkit-transform: scale(.1);
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      -webkit-transform: scale(2.5);
      opacity: 0;
    }
  }
  @keyframes circle {
    0% {
      transform: scale(.1);
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      transform: scale(2.5);
      opacity: 0;
    }
  }
  #btn18.active span:nth-of-type(1) {
    -webkit-animation: active-btn18-bar01 .5s .5s forwards;
    animation: active-btn18-bar01 .5s .5s forwards;
  }
  @-webkit-keyframes active-btn18-bar01 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
    }
    100% {
      -webkit-transform: translateY(9px) rotate(-45deg);
    }
  }
  @keyframes active-btn18-bar01 {
    0% {
      transform: translateY(0) rotate(0);
    }
    100% {
      transform: translateY(9px) rotate(-45deg);
    }
  }
  #btn18.active span:nth-of-type(2) {
    -webkit-animation: active-btn18-bar02 .5s .5s forwards;
    animation: active-btn18-bar02 .5s .5s forwards;
  }
  @-webkit-keyframes active-btn18-bar02 {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  @keyframes active-btn18-bar02 {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  #btn18.active span:nth-of-type(3) {
    -webkit-animation: active-btn18-bar03 .5s .5s forwards;
    animation: active-btn18-bar03 .5s .5s forwards;
  }
  @-webkit-keyframes active-btn18-bar03 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
    }
    100% {
      -webkit-transform: translateY(-9px) rotate(45deg);
    }
  }
  @keyframes active-btn18-bar03 {
    0% {
      transform: translateY(0) rotate(0);
    }
    100% {
      transform: translateY(-9px) rotate(45deg);
    }
  }

}




@media(max-width: 110rem){

}

@media(max-width: 92.5rem){
  .bottom_nav{

  }
}

@media(max-width: 78rem){
  .top_nav .dropdown{

  }
  .top_nav .top_ul{

  }

  .top_nav ul li{

  }
}


/* bl_memberSiteMenuButton */
.bl_memberSiteMenuButton{
  position: absolute;
  left: 1.4rem;
  font-size: 2.8rem;
  color: var(--main-dark);
}

.bl_memberSiteMenuButton:hover{
  background: var(--bg); 
}</pre></body></html>