@charset "UTF-8";
/*
    Makoto Nakagiri Portfolio
    ------------------------
    ----- SCSS変数 ---------
    ------------------------
*/
/*
    Makoto Nakagiri Portfolio
    ---------------------
    ----- Mixins --------
    ---------------------
*/
/*
    -------------------
    ----- 共通 --------
    -------------------
*/
/*  -------------------------------------------
    ----- リセット（リセットCSS不使用版） -----
    ---------------------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #374054;
}

/*  ------------------------------------------------
    ----- Linkは色のみ、クリック後の色変更無し -----
    --------------------------------------------- */
a {
  text-decoration: none;
  color: #3498db;
}
a:visited {
  text-decoration-color: #3498db;
}

/*  --------------------------------
    ----- font-awesomeアイコン -----
    ----------------------------- */
i {
  font-size: 0.6em;
}

/*  ------------------------------
    ----- セクションブロック -----
    --------------------------- */
section {
  margin-inline: auto;
  max-width: 1024px;
}

.section-container {
  margin-inline: auto;
  max-width: calc(100% - 2em);
}

/*  ------------------
    ----- 見出し -----
    --------------- */
h2 {
  margin: 96px auto 48px;
  width: 100%;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
  border-left: 16px solid #48f;
  border-bottom: 2px solid #48f;
}

h3 {
  margin-block: 18px 0;
  font-size: 1.5rem;
  font-weight: bold;
  color: #374054;
}

h4 {
  margin-block: 0.75em 0;
  font-size: 1.1rem;
  font-weight: bold;
}

/*  --------------------------
    ----- アコーディオン -----
    ----------------------- */
summary {
  cursor: pointer;
}

/*
    Makoto Nakagiri Portfolio
    -----------------------
    ----- 自己紹介 --------
    -----------------------
*/
.motto {
  margin: 12px auto 12px;
  text-align: center;
  list-style-type: none;
}
.motto + .motto {
  margin-top: 24px;
}
.motto__text {
  margin-block: 0.25em;
  font-size: 1.25rem;
  font-weight: bold;
}
.motto__text + .motto__text {
  margin-block-start: 12px;
}

/*
    Makoto Nakagiri Portfolio
    --------------------
    ----- ヘッダー -----
    --------------------
*/
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 64px;
  text-align: center;
  background-color: #48f;
}

/*
    ----------------
    ----- ロゴ -----
    ----------------
*/
.logo {
  display: block;
  margin: 0 1rem;
  padding-top: 8px;
  font-size: 2rem;
  font-weight: bold;
}
.logo a {
  display: inline-block;
  width: 48px;
  color: #fff;
}
.logo a img {
  width: 100%;
}

/*
    --------------------
    ----- タイトル -----
    --------------------
*/
.title {
  display: inline-block;
  padding-top: 12px;
  padding-left: 1rem;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
}

/*
    --------------------
    ----- メニュー -----
    --------------------
*/
#menu.active {
  display: block;
}

.menu {
  position: relative;
  display: inline-block;
  text-align: center;
  padding: 10px 2em;
  text-align: right;
  border-radius: 4px;
  /* ------------------------------
   * ----- モバイル用メニュー ----- 
   * --------------------------- */
}
@media only screen and (max-width: 768px) {
  .menu__list {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .menu__list[active] {
    position: absolute;
    top: 64px;
    right: 32px;
    display: inline-block;
    text-align: center;
    background-color: #48f;
  }
}
.menu__list li {
  display: inline-block;
  font-size: 1rem;
  font-weight: bold;
}
.menu__list li a {
  display: inline-block;
  color: #fff;
  padding: 10px;
}
.menu__list li a:hover {
  color: rgb(17, 103.5454545455, 255);
  text-decoration: none;
  background: #ffffff;
  border-radius: 4px;
}
.menu__mobile {
  display: none;
  padding-inline: 0.25em;
  font-size: 2rem;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .menu__mobile {
    display: inline-block;
  }
}
.menu__mobile:hover {
  color: rgb(17, 103.5454545455, 255);
  background: #ffffff;
  border-radius: 4px;
  cursor: pointer;
}
.menu__mobile--open, .menu__mobile--close {
  display: none;
}
.menu__mobile--open[active], .menu__mobile--close[active] {
  display: inline-block;
}

/*
    --------------------------
    ----- ボックス型情報 -----
    --------------------------
*/
.certifications,
.skills {
  margin: 30px auto 0;
  line-height: 1.4em;
}
.certifications a,
.skills a {
  color: #374054;
}
.certifications + .certifications,
.certifications + .skills,
.skills + .certifications,
.skills + .skills {
  margin-block-start: 16px;
}
.certifications + .certifications::before,
.certifications + .skills::before,
.skills + .certifications::before,
.skills + .skills::before {
  content: "";
  display: block;
  margin: 0 auto 16px;
  width: 75%;
  height: 1px;
  background-color: rgb(0, 80.3636363636, 221);
}

/*
    --------------------
    ----- ボックス -----
    --------------------
*/
.property-list {
  display: block;
  margin-inline: auto;
  width: fit-content;
  text-align: center;
}
.property-card {
  display: inline-block;
  margin: 7px;
  padding: 0.5em 1em;
  color: #374054;
  font-size: 1.2em;
  background-color: rgb(221, 233.3636363636, 255);
  list-style: none;
  border-radius: 4px;
  box-shadow: 3px 3px 6px black;
}
.certifications .property-card {
  cursor: pointer;
}

/*
    ---------------------------------------------------
    ----- 時系列情報 - プロジェクト、経歴、教育歴 -----
    ---------------------------------------------------
*/
.project,
.experience,
.education {
  display: flex;
  margin-inline: auto;
  overflow: hidden;
  text-align: center;
  border-radius: 4px;
}

/*
    --------------------
    ----- 期間部分 -----
    --------------------
*/
.period {
  width: 160px;
  margin-block: 18px 0;
  padding-top: 6px;
  text-align: center;
}
.period--from {
  text-align: left;
}
.period--to {
  text-align: right;
}

/*
    --------------------
    ----- 情報部分 -----
    --------------------
*/
.information {
  margin: 0 16px 16px;
  padding: 0 2em 1em;
  width: 100%;
  background-color: rgb(221, 233.3636363636, 255);
  box-shadow: 3px 3px 6px black;
}
.information__period {
  text-align: right;
  color: #374054;
}
.information__list {
  margin-inline: auto;
  width: fit-content;
  list-style-type: none;
  text-align: left;
}
.information__list--about {
  font-size: 1.25rem;
}
.information__link {
  margin-block: 10px;
  color: #3498db;
}
.information__link:visited {
  color: #3498db;
}

/*
    Makoto Nakagiri Portfolio
    ------------------------
    ----- SCSS変数 ---------
    ------------------------
*/
/*
    Makoto Nakagiri Portfolio
    --------------------
    ----- フッター -----
    --------------------
*/
footer {
  margin-top: 64px;
  padding-block: 8px;
  vertical-align: bottom;
  color: #fff;
  background-color: rgb(0, 52.5454545455, 144.5);
}
footer .footer-container {
  display: flex;
  justify-content: space-around;
  margin-inline: auto;
  padding-top: 8px;
  max-width: 900px;
}
footer .footer-container a {
  color: #fff;
}

/*
    ------------------------------
    ----- スクロールアイコン -----
    ------------------------------
*/
.scroll {
  cursor: pointer;
  position: relative;
  display: block;
  margin-inline: auto;
  width: 35px;
  height: 35px;
  color: #fff;
  border-radius: 50%;
  border: 3px solid #dcd9d9;
  text-align: center;
}
.scroll i {
  position: absolute;
  top: 5px;
  left: 0;
  right: 0;
}

@keyframes pulsate {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.2, 1.2);
  }
  100% {
    transform: scale(1, 1);
  }
}/*# sourceMappingURL=styles.css.map */