@charset "utf-8";

/*---------------------------------------------
 共通CSS
 * --------------------------------------------- */

html {
  height: 100%;
  font-size: 62.5%;
}
body {
  max-width: 800px;
  line-height: 1.8;
  margin: auto;
  font-family:
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
  font-size: 1.7em;
  letter-spacing: 0.06em;
  color: #333;
}
.content_wrap {
  padding: 60px 0;
}
h1 {
  margin-bottom: 20px;
  padding-bottom: 20px;
  font-size: 36px;
  font-weight: 900;
  border-bottom: solid 1px;
}
h2 {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 30px 0;
  padding: 20px;
  color: #fff;
  background: #7b5544;
  font-size: 30px;
  font-weight: 900;
}
h2:before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 100%;
  left: 10px;
  border: 15px solid transparent;
  border-top: 15px solid #7b5544;
}
h2 a {
  color: #fff;
}
h3 {
  margin-top: 40px;
  margin-bottom: 20px;
  padding-left: 15px;
  font-size: 25px;
  font-weight: 900;
  border-left: solid 5px #7b5544;
}
h3 a {
  color: #333;
}
h4 {
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  font-size: 20px;
  font-weight: 900;
  border-bottom: 3px solid #7b5544;
}
h5 {
  position: relative;
  padding: 20px 20px 20px 40px;
  font-size: 18px;
  font-weight: 900;
}
h5:before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  bottom: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  background: #7b5544;
  border-radius: 50%;
}
p {
  margin-bottom: 20px;
  color: #555;
}
a {
  width: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  color: #1558d6;
  word-break: break-all;
}
a:hover {
  opacity: 0.8;
}

.img_box {
  width: 48%;
}
figure {
  margin-bottom: 20px;
}
figure img {
  width: 100%;
  height: auto;
}
.sub_img {
  width: 50%;
}
figcaption {
  display: block;
  padding: 5px 10px;
  font-size: 14px;
  background: #f4eeeb;
}

.flex_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 20px 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.flex_wrap.right {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.flex_wrap .txt {
  width: 48%;
}

/*目次*/
.mokuji {
  border: solid 1px;
  padding: 40px;
}
.mokuji_ttl {
  font-size: 20px;
  font-weight: 900;
  padding-left: 20px;
}
.midasi {
  font-weight: 900;
  margin-bottom: 20px;
}
.midasi span {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  padding: 4px 8px;
  width: 30px;
  height: 30px;
  color: #fff;
  background: #7b5544;
  font-size: 12px;
  text-align: center;
  border-radius: 50%;
}
.midasi ol {
  font-weight: 100;
  margin-top: 20px;
}
.midasi ol li {
  margin-bottom: 20px;
  padding-left: 1rem;
  font-size: 1.5rem;
}
.midasi ol li:last-child {
  margin-bottom: 25px;
}
.mokuji ul li a {
  color: #333;
}

.conclusion{
	margin:80px 0;
}

/*リストボックス*/
.list_box {
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 20px;
  border: solid 2px #7b5544;
}

/*リニューアルしたコーヒーが飲める店舗はこちらボタン*/
.link_box {
  padding: 20px;
  border-radius: 30px;
}
.link_box p {
  text-align: center;
  background: #7b5544;
  border-radius: 60px;
}
.link_box p a {
  display: inline-block;
  padding: 15px 40px;
  color: #fff;
  border-radius: 30px;
}

/*マーカー*/
.marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(30%, #fae102));
  background: -o-linear-gradient(transparent 80%, #fae102 30%);
  background: linear-gradient(transparent 80%, #fae102 30%);
  font-weight: 900;
}

/*引用*/
.quote p {
  display: inline-block;
  margin-top: 20px;
  padding: 5px 20px;
  font-size: 1.2rem;
  color: #777;
  border: solid 1px #777;
  border-radius: 5px;
}

/*注釈*/
.asterisk {
  border: solid 1px;
  border-radius: 8px;
  padding: 16px;
}


/*=============================================
SP　〜767px
===============================================*/

@media screen and (max-width:767px) {
  .content_wrap {
    padding: 30px 0;
  }
  h1 {
    line-height: 1.5;
    padding: 20px;
    font-size: 2.6rem;
  }
  h2 {
    font-size: 2.4rem;
  }
  h3 {
    padding: 20px;
    font-size: 2.2rem;
  }
  h4 {
    padding: 20px;
    border-bottom: 2px solid #7b5544;
  }
  p {
    font-size: 1.5rem;
  }
  p, .mokuji, .list_box {
    margin-right: 20px;
    margin-left: 20px;
  }
  a:hover {
    opacity: 0.8;
  }
  .img_box {
    width: 100%;
  }
  .sub_img {
    width: 100%;
  }
  figcaption {
    padding: 5px 20px;
    font-size: 1.2rem;
    text-align: center;
  }
  .flex_wrap, .flex_wrap.right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .flex_wrap .txt {
    width: 100%;
  }

  /*目次*/
  .mokuji {
    padding: 20px;
    font-size: 1.5rem;
  }
  .midasi {
    margin-top: 25px;
  }
  .midasi ol li {
    margin-bottom: 10px;
  }

  /*目次ボタン*/
  .mokujibtn {
    cursor: pointer;
    right: 0;
    bottom: 0;
    margin: auto;
    padding: 28px;
    position: fixed;
    z-index: 1000;
    background: rgba(123, 85, 68, .9);
    -webkit-box-shadow: 0 0 10px rgb(0 0 0 / 8%);
            box-shadow: 0 0 10px rgb(0 0 0 / 8%);
    border-radius: 20px 0 0 0;
  }
  .mokujibtn:after {
    position: absolute;
    left: 0;
    bottom: 2px;
    content: "目次";
    width: 100%;
    font-size: 1.4rem;
    text-align: center;
    color: #fff;
  }
  .mokujibtn span {
    display: inline-block;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    position: absolute;
    left: 13px;
    height: 2px;
    background-color: #fff;
  }
  .mokujibtn span:nth-of-type(1) {
    top: 19px;
    width: 50%;
  }
  .mokujibtn span:nth-of-type(2) {
    top: 26px;
    width: 30%;
  }
  /*activeクラスが付与されると線が回転して×に*/
  .mokujibtn.active span:nth-of-type(1) {
    top: 17px;
    left: 16px;
    -webkit-transform: translateY(6px) rotate(-45deg);
        -ms-transform: translateY(6px) rotate(-45deg);
            transform: translateY(6px) rotate(-45deg);
    width: 35%;
  }
  .mokujibtn.active span:nth-of-type(2) {
    top: 29px;
    left: 16px;
    -webkit-transform: translateY(-6px) rotate(45deg);
        -ms-transform: translateY(-6px) rotate(45deg);
            transform: translateY(-6px) rotate(45deg);
    width: 35%;
  }
	
  .gnav {
    display: none;
    width: 100%;
    height: 100%;
    z-index: 900;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.9);
  }
  .global_navi {
    height: 100vh;
    padding: 30px 0;
    overflow: scroll;
  }

  .conclusion{
	margin:60px 0;
  }
	
  /*リニューアルしたコーヒーが飲める店舗はこちらボタン*/
  .link_box p a {
    padding: 10px 40px;
  }

}


/*=============================================
PC 768px～
===============================================*/

@media only screen and (min-width:768px) {
  .gnav, .global_navi {
    display: none;
  }
}