@charset "utf-8";
/* ===================================================================
CSS information

 file name  : sp.css
 style info : スマートフォン用
=================================================================== */

@media screen and (min-width: 1px) and (max-width: 1440px){



}

@media screen and (min-width: 1px) and (max-width: 1280px){



}

@media screen and (min-width: 1px) and (max-width: 1024px){
/* common.jsのメニューボタン03を使う時に使用 */
html.fixed,
html.fixed body {
  overflow: hidden;
  height: 100%;
}

/* -----------------------------------------------------------
    toggle-panel
----------------------------------------------------------- */
#panel-btn {
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 40%;
  right: 5vw;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 1000;
}

#panel-btn:after {
  content: "MENU";
  position: absolute;
  bottom: -1.5em;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9rem;
  font-weight: bolder;
  color: #009a7e;
  letter-spacing: 0.15em;
}

.open #panel-btn:after {
  content: "CLOSE";
  position: absolute;
  bottom: -1.5em;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9rem;
  font-weight: bolder;
  color: #ffffff;
  letter-spacing: 0.15em;
}

#panel-btn-icon {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 30px;
  height: 2px;
  xmargin: -1px 0 0 -7px;
  background: #454545;
  transition: .2s;
}

#panel-btn-icon:before,
#panel-btn-icon:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 30px;
  height: 2px;
  margin-left: 0;
  background: #3f3a39;
  transition: .3s;
}

#panel-btn-icon:before {
  margin-top: -10px;
}

#panel-btn-icon:after {
  margin-top: 8px;
}

#panel-btn .close {
  background: transparent;
}

#panel-btn .close:before,
#panel-btn .close:after {
  margin-top: 0;
  background: #ffffff;
}

#panel-btn .close:before {
  transform: rotate(-45deg);
}

#panel-btn .close:after {
  transform: rotate(-135deg);
}

/* -----------------------------------------------------------
    #g_nav
----------------------------------------------------------- */
#g_nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #ffffff;
  background: rgba(0,0,0,.9);
  transition: all 0.2s ease-in-out 0s;
  visibility: hidden;
  opacity: 0;
  z-index: 999;
  padding: 15%;
}

.open #g_nav {
  transition: all 0.2s ease-in-out 0s;
  visibility: visible;
  opacity: 1;
}

#g_nav a:link,
#g_nav a:visited,
#g_nav a:hover,
#g_nav a:active {
  color: #ffffff;
}

}

@media screen and (min-width: 1px) and (max-width: 768px){



}

@media screen and (min-width: 1px) and (max-width: 520px){



}