/* PC、スマホ共通スタイル */
* {
  box-sizing: border-box;
}

body {
  max-width: 1080px;
  margin: 0 auto 0 auto;
  font-family: "Source Sans Pro", "Hiragino Kaku Gothic ProN", Meiryo, Arial, sans-serif;
  font-size: 15px;
}

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

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

/* ナビゲーションのリンクの装飾設定 */
#nav-pc ul {
  display: flex;
  padding-left: 0;
}

#nav-pc li {
  margin-left: 20px;
  list-style: none;
}

#nav-pc a {
  text-decoration: none;
  color: #04414a;
}

#nav-pc a:hover {
  text-decoration: underline;
}

/* スマホ用ナビを非表示 */
#nav-sp,
#menu-sp {
  display: none;
}

/* メインビジュアル */
#main-visual {
  position: relative;
  height: 400px;
}

#main-message {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #04414a;
  color: #ffffff;
  border-radius: 0 0 160px 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: 28px;
  margin: 0 0 0 50px;
}

#main-visual > img {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 600px;
  /* height: 100%;
  width: auto; */
  z-index: 10; 
}

/* 見出し */
h2 {
  margin: 40px 0 0 0;
}

h2::after {
  content: url("images/line.png");
  margin-left: 10px;
}

h3 {
  font-size: 27px;
}


/* コンセプト */
#concept {
  margin: 80px auto 80px auto;
  padding: 10px 40px 0px 40px;
}

#concept-flex {
  display: flex;
  text-align: center;
}

#concept-flex > div {
  width: 50%;
  margin: 20px;
}

#fair-trade {
  width: 80%;
}

#house-brend {
  width: 80%;
}

/* プロダクト */
#product {
  background-color: #fafafa;
  margin: 20px auto 80px auto;
  padding: 10px 40px 0px 40px;
}

/* 外枠 */
#product .product-flex {
  margin-top: 40px;
  display: flex;
}

/* 左のカラム */
#product-left {
  width: 50%;
  margin-right: 20px;
}

/* 右のカラム */
#product-right {
  width: 50%;
  margin-left: 20px;
  margin-top: 80px;
}

/* 画像+説明の枠 */
#product-left > div {
  position: relative;
  height: 480px;
  margin-right: 20px;
}

#product-right > div {
  position: relative;
  height: 480px;
  margin-left: 20px;
}

/* 画像 */
.product-photo {
  width: 100%;
}

/* 説明文の枠 */
.product-explain {
  background-color: #ffffff;
  position: absolute;
  left: 0;
  bottom: 50px;
  margin: 0 40px 0 40px;
  padding: 20px;
  box-shadow: 5px 5px 10px rbga(0, 0, 0, 0.05);
}

/* 説明文の英語 */
.product-explain > span {
  color: #04414a;
  font-weight: bold;
  font-size: 16px;
  margin: 0;
}

/* 説明文の見出し */
.product-explain > h3 {
  margin: 5px 0 5px 0 ;
}

/* 説明文 */
.product-explain > p {
  font-size: 14px;
  margin: 0;
}

/* 会社概要 */
#company {
  margin: 80px auto 80px auto;
  padding: 10px 40px 0px 40px;
}

#company-table {
  width: 100%;
}

.tableheader {
  text-align: left;
  padding: 20px;
  border-bottom-color: #04414a;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  width: 100px;
}

.tableheader-first {
  border-top-color: #04414a;
  border-top-width: 1px;
  border-top-style: solid;
}

.cell {
  padding: 30px;
  border-bottom-color: #ececec;
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

.cell-first {
  border-top-color: #ececec;
  border-top-width: 1px;
  border-top-style: solid;
}

/* フッター */
footer {
  background-color: #04414a;
  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: #ffffff;
}

#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: #ffffff;
  margin: 0;
}

/*========================
  スマートフォン用のスタイル
=========================*/
@media screen and (max-width: 767px) {
  /* PC用ナビゲーション非表示 */
  #nav-pc {
    display: none;
  }

  /* ハンバーガーメニューボタンのリセットとサイズ調整 */
  #menu-sp {
    display: block;
    background-color: transparent;
    float: right;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }

  /* ハンバーガーアイコン画像のサイズ調整 */
  #menu-sp > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  /* スマホ用ナビゲーションの表示切替 */
  /* 初期状態、レイアウトと非表示設定 */
  #nav-sp {
    background-color: #04414a;
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: none;
    z-index: 100;
  }

  /* ×ボタン */
  #close {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: transparent;
    border: none;
  }

  #nav-sp nav ul {
    padding-left: 0;
  }

  #nav-sp nav li {
    list-style: none;
  }

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

  /* ナビゲーションのリンクの装飾設定 */
  #nav-sp nav a {
    display: block;
    color: #ffffff;
  }

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

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

  #sns {
    position: absolute;
    bottom: 20px;
    left: 20px;
  }

  #sns > a {
    margin-right: 30px;
  }

  /* メインビジュアル */
  #main-visual {
    position: relative;
    height: 470px;
    overflow: hidden;
  }

  #main-visual > div {
    text-align: center;
    max-width: 767px;
    width: 100%;
    height: 260px;
  }

  #main-visual > div > p {
    margin: 0;
    font-size: 16px;
  }

  #main-visual > img {
    position: absolute;
    max-width: 767px;
    width: 100%;
    height: auto;
    border-radius: 160px 0 0 0;
    top: 232px;
    object-fit: contain;
  }

  #main-message > h1 {
    font-size: 40px;
    margin: 50px 0 20px 0;
  }

  /* 見出し */
  h2 {
    margin: 15px 0 15px 0;
  }

  h3 {
    font-size: 24px;
    margin: 10px 0 0 0;
  }

  /* コンセプト */
  #concept {
    margin: 40px 0 20px 0;
    padding: 0 20px 0 20px;
  }

  #concept-flex {
    flex-direction: column;
  }

  #concept-flex > div {
    width: 100%;
    margin: 20px 0 20px 0;
  }

  /* プロダクト */
  #product {
    margin: 20px 0 20px 0;
    padding: 0 20px 0 20px;
  }

  /* 外枠 */
  #product .product-flex {
    flex-direction: column;
    margin-top: 0;
  }

  /* 左右のカラム　スマホでは縦並び */
  #product-left,
  #product-right {
    width: 100%;
    margin: 0;
  }

  /* 画像＋説明の枠 */
  #product-left > div,
  #product-right > div {
    height: auto;
    margin: 0;
  }

  /* 説明文の枠 */
  .product-explain {
    position: relative;
    margin: 0;
  }

  .product-explain > h3 {
    margin: 10px 0 10px 0;
    font-size: 24px;
  }

  /* 会社概要 */
  #company {
    margin: 20px 20px 0 20px;
    padding: 0;
  }

  #company > h3 {
    margin-bottom: 20px;
  }

  .tableheader {
    width: 50px;
  }

  .cell {
    padding: 20px;
  }

  /* フッター */
  footer {
    padding: 30px 20px 50px 20px;
    text-align: left;
  }

  #footer-link > a {
    margin: 0 20px 30px 0;
    display: block;
    background-image: url("images/arrow.png");
    background-repeat: no-repeat;
    background-position: right top;
  }

  #footer-link > a:hover {
    text-decoration: underline;
  }

  #sns-footer {
    flex-direction: column;
    justify-content: flex-start;
  }

  #copyright {
    font-size: 12px;
    margin-top: 30px;
  }

}

