@charset "UTF-8";
/*
  ---------------------------------
  ----- リセット / グローバル -----
  ---------------------------------
*/
/* -------------------
* ----- リセット -----
------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ---------------------
* ----- グローバル -----
--------------------- */
a {
  text-decoration: none;
}
a:active, a:visited {
  color: inherit;
}
a:hover {
  cursor: pointer;
}

ol,
ul {
  list-style-position: outside;
}

/*
    Makoto Nakagiri's Portfolio
    ------------------------
    ----- Variables --------
    ------------------------
*/
/*
    Makoto Nakagiri's Portfolio
    ------------------------
    ----- Variables --------
    ------------------------
*/
/*
    Makoto Nakagiri's Portfolio
    -------------------------------
    ---------- Mixins -------------
    -------------------------------
*/
/* -------------------------------------------- *
 * ----- ブレイクポイント（PCファースト） ----- *
 * -------------------------------------------- */
/* --------------------------------- *
 * --------- 検索ボックス ---------- *
 * --------------------------------- */
/*
    ------------------------------------
    ---------- 本サイトの技術 ----------
    ------------------------------------
*/
/* ---------------------------------- *
 * ----- 使用技術ナビゲーション ----- *
 * ---------------------------------- */
.nav-techs {
  position: fixed;
  top: calc(50vh - 8em);
  right: 0;
  list-style: none;
  text-orientation: upright;
}
.nav-techs__tag {
  writing-mode: vertical-rl;
  display: inline-block;
  padding: 0.5em 0.25em;
  font-size: 0.75rem;
  color: #fff;
  background-color: #000;
}
@media screen and (max-width: 1199px) {
  .nav-techs__tag {
    display: none;
  }
}
.nav-techs__tag:hover {
  cursor: pointer;
  color: #000;
  text-decoration: none;
  background: hsl(207, 79%, 97%);
  border-radius: 4px;
  transition: all 0.3s;
}
.nav-techs__tag a {
  display: inline-block;
  color: inherit;
}
.nav-techs__overlay-screen {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}
.nav-techs__overlay-screen.visible {
  display: block;
}
.nav-techs__container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  overflow: hidden;
  text-align: center;
  color: #fff;
  border-radius: 20px;
  background-color: hsl(207, 79%, 57%);
}
.nav-techs__title {
  margin: 0 auto;
  line-height: 1.75;
}
.nav-techs__iframe {
  width: 100%;
  border-radius: 8px;
}/*# sourceMappingURL=style-technologies.css.map */