@charset "UTF-8";

body {
  font-size: 16px;
  line-height: 1.5;
  font-family: "M PLUS 1 Code", monospace;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background-color: #e5f5f5;
  background-image: url(../img/top-bg-choco-afeeee.png);
  background-repeat: repeat-x;
  color: #500000;
}

.header {
  width: 100%;
}

ul {
  list-style: none;
}

.logo {
  width: 200px;
  margin: 15px auto 0;
  background-color: #afeeee;
}

.index{
  background-image: url(../img/bg-1choco-afeeee.png)
}

/* ナビゲーション用チェックボックス */
/* --------------------
  チェックボックスでメニュー項目の表示／非表示を切り替える。
  ブラウザ上にはチェックボックスを表示したくないため、
  「display: none;」で非表示にしている。
  -------------------- */
#menu-btn-check {
  display: none;
}

/* ハンバーガーボタン */
.burger {
  position: relative;
}

.menu-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  display: flex;
  height: 65px;
  width: 65px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #afeeee;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #500000;
  position: absolute;
}

.menu-btn span:before {
  bottom: 8px;
}

.menu-btn span:after {
  top: 8px;
}

#menu-btn-check:checked~.menu-btn span {
  background-color: #ffffff00;
}

#menu-btn-check:checked~.menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#menu-btn-check:checked~.menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

.gnav {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  background-color: #afeeee;
}

.gnav ul {
  padding: 70px 10px 0;
}

.gnav ul li {
  border-bottom: solid 1px #e5f5f5;
}

.gnav ul li a {
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  color: #500000;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
}

.gnav ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #500000;
  border-right: solid 2px #500000;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}

.gnav {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 80;
  background-color: #afeeeee6;
  transition: all 0.5s;
  /*アニメーション設定*/
}

#menu-btn-check:checked~.gnav {
  left: 30%;
}


/* コピーライトロゴ */
.smile-ice {
  width: 30px;
  height: 20px;
}

.footer {
  background-image: url(../img/foot-bg-choco-afeeee.png);
  background-repeat: repeat-x;
  background-position: left bottom;
}

.f-nav {
  display: block;
  margin: 20px;
}

.f-nav li {
  padding: 5px 0;
}

.copy {
  display: flex;
  justify-content: center;
  padding: 10px 0;
}

/* フッターキープ */
html,
body {
  height: 100%;
}

body>footer {
  position: sticky;
  top: 100vh;
}


/* sns */
.sns {
  text-align: center;
  margin-bottom: 10px;
}

.sns li {
  display: inline-block;
}

.sns a {
  padding: 10px 20px;
  background: #fff;
  color: #3cc;
  border-radius: 5px;
  text-decoration: none;
  font-size: 20px;
}

.icon-twitter::before {
  content: "\e61b";
  font-family: "Font Awesome 6 Brands";
  /* ブランド → Brands */
  font-weight: 400;
}

.icon-instagram::before {
  content: "\f16d";
  font-family: "Font Awesome 6 Brands";
  /* ブランド → Brands */
  font-weight: 400;
}

.icon-line::before {
  content: "\f3c0";
  font-family: "Font Awesome 6 Brands";
  /* ブランド → Brands */
  font-weight: 400;
}

.icon-pinterest::before {
  content: "\f231";
  font-family: "Font Awesome 6 Brands";
  /* ブランド → Brands */
  font-weight: 400;
}