/* PC、スマホ共通スタイル */
body {
  font-family: "Source Sans Pro", "Hiragino Kaku Gothic ProN", Meiryo, Arial,
    sans-serif;
  margin: 0;
}

p {
  font-size: 15px;
}

#main-visual>img {
  width: 100%;
}

/*================
PC用のスタイル 
=================*/
@media screen and (min-width: 768px) {

  /* 横幅設定 */
  body {
    max-width: 1080px;
    min-width: 960px;
    margin: 0 auto;
  }

  /* ヘッダー */
  header {
    display: flex;
    justify-content: space-between;
  }

  /* ナビゲーションのレイアウト */
  #nav-pc {
    text-align: right;
    font-size: 14px;
    padding-top: 15px;
    display: flex;
  }

  #nav-pc ul {
    display: flex;
    list-style-type: none;
  }

  #nav-pc ul li {
    margin-right: 20px;
  }

  #nav-pc ul li :last-of-type {
    margin-right: 0;
  }


/* ナビゲーションのリンクの装飾設定 */
#nav-pc a {
  text-decoration: none;
  margin-left: 20px;
}

#nav-pca:link {
  color: #0d0d0d;
}

#nav-pc>a:visited {
  color: #0d0d0d;
}

#nav-pc>a:hover {
  color: #0d0d0d;
  text-decoration: underline;
}

#nav-pc>a:active {
  color: #0d0d0d;
}

/*SPのナビゲーションを非表示に*/
#menu-sp,
#nav-sp {
  display: none;
}

}

/*================
SP用のスタイル 
=================*/
@media not screen and (min-width: 768px) {

  /* 横幅設定 */
  body {
    min-width: 375px;
    margin: 0;

  }

  header {
    display: flex;
    justify-content: space-between;
  }

  header h1{
   margin: 10px; 
  }

  /*PCのナビゲーションを非表示に*/
  #nav-pc {
    display: none;
  }

  /*ハンバーガーメニュー*/
  #menu-sp {
    padding: 0;
  }

  /*スマホ用ナビゲーション*/
  #nav-sp {
    background-color: #ce933e;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: none;
    z-index: 100;
  }

  /*xボタン*/
  #close {
    position: absolute;
    top: 20px;
    right: 20px;
  }

  /*ナビゲーションメニュー用ロゴ*/
  #logo-sp {
    margin: 80px 0 30px 20px;
  }

  #nav-sp>a {
    display: block;
  }

  #nav-sp>a:link {
    color: #ffffff;
  }

  #nav-sp>a:visited {
    color: #ffffff;
  }

  #nav-sp>a:hover {
    color: #ffffff;
    text-decoration: underline;
  }

  #nav-sp>a:active {
    color: #ffffff;
  }

  #nav-sp>.menu {
    text-decoration: none;
    display: block;
    margin: 0 20px;
    height: 44px;
    font-size: 16px;
    background-image: url("images/arrow.png");
    background-position: right-top;
  }

}