@charset "UTF-8";
/*------------------------------------------------------------
共通
------------------------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Sans Japanese", Verdana, Roboto, "Droid Sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.6;
}

img {
  vertical-align: bottom;
  border: none;
}

a {
  text-decoration: underline;
  color: #fff;
}
a:hover {
  text-decoration: none;
}

li {
  list-style: none;
}

.montserrat {
  font-family: "Montserrat", sans-serif;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}
/*------------------------------------------------------------
NAV
------------------------------------------------------------*/
.headerNav {
  width: 100%;
  background: #e3dcdc;
  display: flex;
  justify-content: space-between;
}
.headerNav a {
  color: #666;
  text-decoration: none;
}
.headerNav h1 {
  padding: 0.5% 1%;
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: 1px;
}
.headerNav ul {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  font-size: 1.2rem;
}
.headerNav ul i {
  margin-right: 2%;
}
.headerNav ul li {
  margin-left: 1px;
  width: 33%;
}
.headerNav ul li:nth-of-type(1) {
  background: #76a1b8;
}
.headerNav ul li:nth-of-type(2) {
  background: #4b7a7c;
}
.headerNav ul li:nth-of-type(3) {
  background: #f5b5a7;
}
.headerNav ul li:nth-of-type(4) {
  background: #CFC2D9;
}
.headerNav ul li:nth-of-type(5) {
  background: #8596c9;
}
.headerNav ul li:nth-of-type(6) {
  background: #464646;
}
.headerNav ul li a {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10%;
  text-align: center;
  height: 100%;
  width: 100%;
  color: #fff;
}
.headerNav ul li a:hover {
  background: #8e8e8e;
}

/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}

@media screen and (max-width: 768px) {
  /* ここから下がハンバーガーメニューに関するCSS */
  /* ハンバーガーアイコンの設置スペース */
  .drawer_open {
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;
    /* 重なり順を一番上にする */
    cursor: pointer;
  }

  /* ハンバーガーメニューのアイコン */
  .drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
    content: "";
    display: block;
    height: 1px;
    width: 25px;
    border-radius: 3px;
    background: #333;
    transition: 0.5s;
    position: absolute;
  }

  /* 三本線の一番上の棒の位置調整 */
  .drawer_open span:before {
    bottom: 8px;
  }

  /* 三本線の一番下の棒の位置調整 */
  .drawer_open span:after {
    top: 8px;
  }

  /* アイコンがクリックされたら真ん中の線を透明にする */
  #drawer_input:checked ~ .drawer_open span {
    background: rgba(255, 255, 255, 0);
  }

  /* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
  #drawer_input:checked ~ .drawer_open span::before {
    bottom: 0;
    transform: rotate(45deg);
  }

  #drawer_input:checked ~ .drawer_open span::after {
    top: 0;
    transform: rotate(-45deg);
  }

  /* メニューのデザイン*/
  .headerNav ul {
    width: 80%;
    height: 100%;
    position: fixed;
    top: 7%;
    left: 100%;
    /* メニューを画面の外に飛ばす */
    z-index: 99;
    background: #fff;
    transition: 0.5s;
  }

  /* メニュー黒ポチを消す */
  .nav_list {
    list-style: none;
  }

  /* アイコンがクリックされたらメニューを表示 */
  #drawer_input:checked ~ ul {
    left: 20%;
    /* メニューを画面に入れる */
  }

  .headerNav h1 {
    display: flex;
    align-items: center;
    padding-left: 2%;
  }
  .headerNav ul {
    background: none;
    display: block;
  }
  .headerNav ul li {
    width: 100%;
  }
  .headerNav ul li a {
    padding: 5%;
  }
}
/*=======================================================
amazonリンク
=======================================================*/
.amzon_link {
  width: 80%;
  max-width: 1000px;
  border: 2px solid #056571;
  background: #fff;
  padding: 1%;
  margin: 3% auto 0;
  box-sizing: border-box;
}
.amzon_link h3 {
  text-align: center;
  margin-bottom: 3%;
  font-size: 2.4rem;
  letter-spacing: 1px;
  font-weight: normal;
}
.amzon_link img {
  max-width: 100%;
  max-height: 90px;
}
.amzon_link a {
  color: #000;
  text-decoration: none;
  display: block;
  padding: 3%;
  height: 100%;
}
.amzon_link a:hover {
  background: #fff;
}
.amzon_link ul {
  display: flex;
  max-width: 100%;
  justify-content: space-between;
  align-items: stretch;
  margin: 0;
}
.amzon_link ul li {
  width: 25%;
  text-align: center;
}
.amzon_link ul li dl dt {
  margin-bottom: 5%;
}
.amzon_link ul li p {
  background: #e2833d;
  padding: 2%;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  width: 50%;
  margin: 5% auto 0;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .amzon_link {
    width: 90%;
    padding: 5%;
  }
  .amzon_link h3 {
    font-size: 2rem;
  }
  .amzon_link img {
    max-width: 100%;
    max-height: 130px;
  }
  .amzon_link a {
    color: #000;
    text-decoration: none;
    display: block;
    padding: 3%;
    height: 100%;
  }
  .amzon_link a:hover {
    background: #fff;
  }
  .amzon_link ul {
    display: block;
    max-width: 100%;
  }
  .amzon_link ul li {
    width: 100%;
    text-align: left;
    margin-bottom: 5%;
  }
  .amzon_link ul li dl {
    display: flex;
    justify-content: space-between;
  }
  .amzon_link ul li dl dt {
    width: 30%;
    margin-bottom: 0%;
  }
  .amzon_link ul li dl dd {
    width: 65%;
  }
  .amzon_link ul li p {
    text-align: center;
    width: 90%;
    margin: 5% auto 0;
  }
}

/*# sourceMappingURL=common.css.map */
