* {
  box-sizing: border-box;
}

body {
  padding: 0px;
  margin: 0px;
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
}

p {
  margin: 0;
}

/* ヘッダー */
.header-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 20px auto;
  max-width: 960px;
}

.header-inner a {
  color: black;
  font-weight: bold;
  text-decoration: none;
}

/* MyProfileの見出し部分 */
h1 {
  margin: 0 0 0 20px;
  font-size: 34px;
  border: 1px solid black;
  padding: 0px 20px;
}

.home {
  text-decoration: none;
}

/* ナビゲーションメニュー */
nav .menu {
  display: flex;
  padding-left: 0;
}

nav li {
  margin: 0 20px;
  list-style: none;
}

nav a {
  font-size: 34px;
}

h2 {
  margin: 0;
  padding: 60px 0 40px;
  text-align: center;
  font-size: 34px;
}


/* 画像 */
img {
  margin: 0 auto;
  width: 100%;
}

/* About */
.about-inner {
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 20px auto;
  max-width: 960px;
}

/* 名前 */
.name {
  font-size: 24px;
  font-weight: bold;
}

/* 丸く切り取る画像 */
.circle {
  border-radius: 50%;
  width: 280px;
  height: 280px;
}

/* プロフィールの説明部分 */
.content {
  margin: 0 auto;
  padding: 0 20px;
}

/* Works */
.works-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  max-width: 960px;
}

/* Worksの画像と説明部分 */
.item {
  margin: 0 10px;
  padding-bottom: 60px;
  width: 25%;
}

/* フッター */
footer p {
  text-align: center;
  padding-bottom: 20px;
}

/* 横幅が767pxまでの場合 */
@media (max-width: 767px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    padding: 30px 0 20px;
    font-size: 28px;
  }

  nav li {
    margin: 0 10px;
  }

  nav a {
    font-size: 21px;
  }

  .item {
    width: 100%;
    text-align: center;
    padding-bottom: 40px;
  }
}

/*======== jQuery発展編ここから ========*/

/* slick */
.slider {
  /* ul要素の不要なパディングを削除する */
  padding: 0;
}

/* TOPに戻るボタン */
#page-top {    
  position: fixed;
  bottom: 38px;
  right: 20px;
  background-color: black;
  color: white;
  text-align: center;
  text-decoration: none;
  padding: 28px 24px;  
  border-radius: 50%;
  display: none;
}

/* スクロール時のフェードイン */
section {
  opacity: 0;
  transition: 1s;
}

.fade-in {
  opacity: 1;
}

/* Worksの画像部分 */
.item img {
  cursor: pointer;
}

/* モーダル */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
}

.big-img {
  position: absolute;  
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;  
  width: 80%;
  max-width: 800px;  
  margin: auto;  
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;  
  color: white;
  font-size: 40px;
  text-decoration: none;
  cursor: pointer;
}

/*======== jQuery発展編ここまで ========*/