/* PC、スマホ共通スタイル */
body {
  font-family: "Source Sans Pro", "Hiragino Kaku Gothic ProN", Meiryo, Arial, sans-serif;
}

p {
  font-size: 15px;
}

/*================
 PC用のスタイル 
=================*/
  /* 横幅設定 */
  body {
    max-width: 1080px;
    min-width: 960px;
    margin: 0 auto 0 auto;
  }
  
  /* ヘッダー */
  header {
    display: flex;
    justify-content: space-between;
  }

    /* ナビゲーションのレイアウト */
    #nav-pc {
      font-size: 14px;
      padding-top: 15px;
    }
    
    /* ナビゲーションのリンクの装飾設定 */
    #nav-pc > a {
      text-decoration: none;
      margin-left: 20px;
    }
    #nav-pc > a:link {
      color: #0d0d0d;
    }
    #nav-pc > a:visited {
      color: #0d0d0d;
    }
    #nav-pc > a:hover {
      color: #0d0d0d;
      text-decoration: underline;
    }
    #nav-pc > a:active {
      color: #0d0d0d;
    }

    /* メインビジュアル*/
    #main-visual {
      position: relative;
      height: 400px;
    }
  
    #main-message {
      position: absolute;
      top: 0;
      left: 0;
      background-color: #FFCC99;
      color: #A0522D;
      border-radius: 0 0 476px 0;
      max-width: 620px;
      height: 100%;
      width: 100%;
      z-index: 11;
    }

    #main-message > h1 {
      font-size: 60px;
      font-weight: bold;
      margin: 100px 0 0 50px;
    }
    #main-message > p { 
      font-size: 17px;
      margin: 0 0 0 50px;
    }

    #main-visual > img {
      max-width: 620px;
      border-radius: 476px 0 0 0;
      position: absolute;
      top: 0;
      right: 0;
      z-index: 10;
    }

    #aboutus {
      margin: 80px 0 80px 0;
      padding: 10px 40px 0px 40px;
    }

    #aboutus > div {
      margin-top: 40px;
      display: flex;
    }
    
    #aboutus > h3 {
      color: #A0522D;
    }

    #anoutus-left {
      width: 50%;
    }


    #aboutus > div {
      display: flex;
      justify-content: space-around;
    }
     /* 画像 */
  .info-img {
    width: 40%;
    align-self: flex-start;
    border-radius: 50px;
  }


    /* プロダクト */
  #menu {
    background-color: rgba(255,204,153,0.2);
    border-radius: 30px;
    margin: 80px 0 80px 0;
    padding: 10px 40px 0px 40px;
  }
  
  /* 外枠 */
  #menu > div {
    margin-top: 40px;
    display: flex;
  }
  
  /* 左のカラム */
  #menu-left {
    width: 50%;
    margin-right: 20px;
  }
  
  /* 右のカラム */
  #menu-right {
    width: 50%;
    margin-left: 20px;
    margin-top: 80px;
  }
  
  /* 画像＋説明の枠 */
  #menu-left > div {
    position: relative;
    height: 480px;
    margin-right: 20px;
  }
  #menu-right > div {
    position: relative;
    height: 480px;
    margin-left: 20px;
  }

  /* 画像 */
  .product-photo {
    border-radius: 40px;
    width: 100%;
  }

   /* 説明文の枠 */
   .product-explain {
    background-color: #ffffff;
    position: absolute;
    left: 0;
    top: 280px;
    margin: 0 40px 0 40px;
    padding: 20px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.05);
  }
  
  /* 説明文の英語 */
  .product-explain > span {
    color: #A0522D;
    font-weight: bold;
    font-size: 16px;
    margin: 0;
  }
  
  /* 説明文の見出し */
  .product-explain > h3 {
    font-size: 20px;
    margin: 5px 0 5px 0;
  }
  
  /* 説明文 */
  .product-explain > p {
    font-size: 14px;
    margin: 0;
  }

   /* 会社概要 */
   #company {
    margin: 80px auto 80px auto;
  }

  #company-table {
    width: 100%;
  }
 
  .tableheader {
    text-align: left;
    padding: 20px;
    border-bottom-color: #A0522D;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    width: 100px;
  }
 
  .tableheader-first {
    text-align: left;
    padding: 20px;
    border-bottom-color: #A0522D;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-top-color: #A0522D;
    border-top-width: 1px;
    border-top-style: solid;
    width: 100px;
  }
 
  .cell {
    padding: 30px;
    border-bottom-color:  rgba(255,204,153,0.6);
    border-bottom-width: 1px;
    border-bottom-style: solid;
  }
 
  .cell-first {
    padding: 30px;
    border-bottom-color: rgba(255,204,153,0.6);
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-top-color: rgba(255,204,153,0.6);
    border-top-width: 1px;
    border-top-style: solid;
  }

  #company > iframe {
    width: 100%;
    height: 368px;
    margin-top: 40px;
  }

  .theme {
    color: #A0522D;
  }

 /* お問い合わせ */
  #contact {
    margin: 80px auto 80px auto;
  }
  
  /* 外枠 */
  #contact > form > div {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding-bottom: 30px;
  }

  /* 左列の見出し */
  .contact-heading {
    width: 240px;
    align-self: center;
  }
  /* 見出しのラベル */
  .contact-label {
    font-weight: bold;
  }
  /* 必須 */
  .contact-span {
    color: #ce2222;
    margin: 0 0 0 20px;
    font-weight: bold;
  }
  /* テキストボックス */
  .contact-textbox {
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    border-bottom-width: 1px;
    border-bottom-color: #A0522D;
    border-style: solid;
    background-color: rgba(255,204,153,0.1);
    width: 400px;
    height: 56px;
  }
  
  /* お問い合わせ内容のテキストエリア */
  .contact-textarea {
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    border-bottom-width: 1px;
    border-bottom-color: #A0522D;
    background-color: rgba(255,204,153,0.1);
    width: 400px;
    height: 200px;
}

 /* フッター */
 footer {
  background-color:#FFCC99;
  /* background-color:#b6653f; */
  /* background-color:#9b5e47; */
  /* background-color:#A0522D; */

  text-align: center;
  padding: 80px 80px 30px 80px;
}

#footer-logo {
  margin-bottom: 30px;
}

#footer-link {
  margin-bottom: 50px;
}

#footer-link > a {
  text-decoration: none;
  margin: 10px;
  color: #A0522D;
}

#footer-link > a:hover {
  text-decoration: underline;
}

/* #sns-footer {
  display: flex;
  justify-content: space-between;
  text-align: left;
}

#sns-footer a {
  margin-right: 30px;
} */

#copyright {
  color: #0d0d0d;
  margin: 0;
}