@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #333; /* RGB */
  font-family: 'M PLUS 1p', sans-serif;
  font-family: 'Klee One', cursive;
  font-family: 'Cinzel', serif;
  font-style: normal;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
}
section h2 {
  font-size: 2.4rem;
}
a:hover {
  color: #776650;
  opacity: 0.5;
}
a:link, a:visited {
  color: #776650;
}
/*全て*の要素と:before直前:after直後がborder-box指定という意味*/
*, *:before, *:after {
  box-sizing: border-box;
}
.none {
  display: none;
}
.main {
  background-color: #EDDEC7;
}
/*パンくずリスト*/
.breadcrumb {
  padding: 60px 0 0px 22px;
}
.breadcrumb ol {
  display: flex;
  margin-top: 5px;
  text-line: none;
}
.breadcrumb ol li {
  list-style-type: none;
  font-family: "Mplus 1p";
  color: #776650;
}
.breadcrumb-listgroup-item-link a {
  text-decoration: none;
}
.breadcrumb-listGroup {
  display: flex;
}
.breadcrumb-listGroup-item-link[href]:hover {
  opacity: 0.5;
}
.breadcrumb-listgroup > * + * {
  margin-left: 0.5em;
}
/*パンくずリスト_>*/
.breadcrumb-listgroup > * + *::before {
  content: ">";
  margin-left: 0.5em;
  margin-right: 0.5em;
}
@media(min-width:1300px) {
  .breadcrumb {
    padding: 80px 0 0px 57px;
  }
  .breadcrumb ol {
    display: flex;
    text-line: none;
  }
  .breadcrumb ol li {
    font-size: 1.8rem;
    padding: 15px 0;
  }
  .breadcrumb-listgroup > * + *::before {
    content: ">";
    margin-left: 0.7em;
    margin-right: 0.7em;
  }
}
/*TOP_タイトル*/
.top-title h1 {
  font-family: 'M PLUS 1p', sans-serif;
  font-style: normal;
  font-size: 1.9rem;
  color: #776650;
  background-color: #FEF6D0;
  padding: 5px 0;
}
.top-title span {
  font-size: 1.6rem;
}
@media(min-width:1300px) {
  .top-title h1 {
    font-family: 'M PLUS 1p', sans-serif;
    font-style: normal;
    font-size: 2.4rem;
    padding: 5px 0;
    height: 50px;
    padding-top: 15px;
  }
  .top-title span {
    font-size: 2.0rem;
  }
  .top-description {
    margin: 5px 20%;
  }
}
/*ヘッダー*/
#header__logo img {
  height: 45px;
  position: absolute;
  top: 5px;
  left: 10px;
}
/*ヘッダー_オンラインSHOP*/
#header_onlineshop {
  height: 50px;
  position: absolute;
  top: 5px;
  right: 55px;
  z-index: 99999;
}
/*ハンバーガーアイコン*/
body {
  margin: 0;
  font-family: 'M PLUS 1p', sans-serif;
  font-style: normal;
}
/* Navbar & Navmenu color */
.header {
  background: var(--background-navbar);
  background-color: #F8F2DA;
  position: fixed;
  width: 100%;
  height: 60px;
  z-index: 9999;
}
@media(min-width:1300px) {
  .header {
    height: 90px;
  }
  #header__logo img {
    height: 70px;
    position: absolute;
    top: 5px;
    left: 40px;
  }
  #header_onlineshop {
    height: 70px;
    top: 10px;
    right: 120px;
  }
}
/* Nav items */
.menu {
  list-style: none;
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  margin-top: 60px;
  padding-bottom: 20px;
  clear: both;
  background: var(--background-navbar);
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transform: scale(1, 0);
  transform-origin: top;
}
/* Hamburger menu button */
.menu-btn:checked ~ .menu {
  background-color: #F8F2DA;
  transform: scale(1, 1);
  transform-origin: top;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
/* Hamburger menbu text */
.menu a {
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 1.6rem;
  text-transform: capitalize;
  color: #776650;
  opacity: 0;
  transition: 0.5s;
}
.menu li {
  border-top: 1px solid #776650;
  padding: 15px 0;
  margin: 0 54px;
  opacity: 0;
  transition: 0.5s;
}
@media(min-width:1300px) {
  .menu {
    top: 30px;
  }
  .menu a {
    font-family: 'M PLUS 1p', sans-serif;
    font-style: normal;
    font-size: 2.0rem;
  }
  .menu li {
    padding: 30px 0;
    margin: 0 54px;
  }
}
.menu-btn:checked ~ .menu a, .menu-btn:checked ~ .menu li {
  display: block;
  color: #776650;
  font-family: 'M PLUS 1p', sans-serif;
  font-size: 1.8rem;
  opacity: 1;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}
@media(min-width:1300px) {
  .menu-btn:checked ~ .menu a, .menu-btn:checked ~ .menu li {
    font-family: 'M PLUS 1p', sans-serif;
    font-style: normal;
    font-size: 2.2rem;
  }
}
.menu-btn {
  display: none;
}
.menu-icon {
  position: absolute;
  cursor: pointer;
  right: 2px;
  height: 22px;
  top: 50%;
  transform: translate(-50%);
  width: 25px;
}
.navicon {
  background: #776650;
  display: block;
  height: 3px;
  width: 26px;
  position: absolute;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  top: 0;
  bottom: 0;
  margin: 0 auto;
}
.navicon:before, .navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #776650;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
.navicon:before {
  top: 9px;
}
.navicon:after {
  bottom: 9px;
}
@media(min-width:1300px) {
  .menu-icon {
    position: absolute;
    cursor: pointer;
    right: 46px;
    top: 31%;
    transform: translate(-56%);
    width: 25px;
  }
  .navicon {
    height: 3px;
    width: 45px;
  }
  .navicon:before {
    top: 15px;
  }
  .navicon:after {
    bottom: -30px;
  }
}
/* Hamburger Menu Animation Start */
.menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}
.menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}
.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
  top: 0;
}
.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  bottom: 0;
}
@media(min-width:1300px) {
  .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
    top: 20px;
  }
  .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    top: 20px;
  }
}
.menu-btn:checked ~ .menu-icon .navicon {
  background: rgba(0, 0, 0, 0);
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
/* Hamburger Menu Animation End */
/* Navbar Container */
.navtext-container {
  width: 100%;
  height: 52px;
  position: absolute;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
/* Navbar Text */
.navtext {
  position: absolute;
  text-transform: uppercase;
  letter-spacing: 4px;
}
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 5px;
  width: 30px;
  background-color: #99866D;
  display: block;
  content: "";
  border-radius: 3px;
}
#nav-open span:before {
  bottom: 12px;
}
#nav-open span:after {
  bottom: 24px;
}
#nav-close {
  z-index: 10000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5;
}
.close-button {
  display: block;
  position: absolute;
  top: 0;
  raight: 0;
  color: #99866D;
  font-size: 46rem;
  padding: 20px;
}
#nav-content {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10001;
  width: 80%;
  height: 100%;
  background-color: #EDDEC7;
  text-align-last: left;
  padding: 80px 0 0 45px;
  transform: translateX(-105%);
  transition: 0.3s ease-in-out;
  box-shadow: 5px 0 25px rgb(0, 0, 0, 0.55);
}
.header__navigation ul li {
  font-family: 'M PLUS 1p', sans-serif;
  font-style: normal;
  font-size: 2.0rem;
  font-weight: 500;
  color: #776650;
  line-height: 30px;
  margin-bottom: 40px;
  border-left: solid #776650 4px;
  padding: 0 10px;
}
#nav-content ul li a {
  text-decoration: none;
}
.header__navigation img {
  width: 195px;
}
#nav-input:checked ~ #nav-close {
  display: block;
}
#nav-input:checked ~ #nav-content {
  transform: translateX(0%);
}
/*ナビゲーション*/
.open-button, .close-button {
  display: none;
}
/*slick-slide*/
.slick-track {
  width: 100%;
  overflow: hidden;
}
.slick-track:after, .slick-track:before {
  width: 100%;
  display: table;
  content: '';
  overflow: hidden;
}
/*ドットナビゲーションの設定*/
.slick-dots {
  text-align: center;
  margin: 80px 0 0 0;
  bottom: -40px;
}
.slick-dots li {
  display: inline-block;
  margin: 40px 5px;
}
.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px; /*ドットボタンのサイズ*/
  height: 8px; /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #776650; /*ドットボタンの色*/
}
.slick-dots .slick-active button {
  background: #776650; /*ドットボタンの現在地表示の色*/
  opacity: 0.6;
  border-radius: 50px;
}
/*フッター*/
.footer {
  height: 655px;
  background-image: url("../images/common/footer_bg-image.png");
  padding-top: 35px;
  background-size: cover;
  background-position: center;
}
.footer__container {
  display: flex;
  margin: 0 auto;
  justify-content: center;
}
@media(max-width : 768px) {
  .footer {
    background-image: url(../images/common/footer_bg-image_mobile.png);
    margin: 0 auto;
    box-sizing: border-box;
    height: 700px;
  }
  .footer__container {
    display: flex;
    justify-content: center;
    padding: 20px 5% 0 5%;
  }
}
/*オンラインショップ*/
/*吹き出し*/
.footer__navigation-onlineshop-description img {
  width: 300px;
  margin-top: -40px;
  position: relative
}
@media(min-width : 1024px) {
  .footer__navigation-onlineshop-description img {
    width: 330px;
    margin-bottom: -25px;
  }
}
/*フッター_オンラインSHOP*/
.footer__navigation-onlineshop img {
  height: 90px;
}
@media(min-width : 1024px) {
  .footer__navigation-onlineshop img {
    height: 105px;
  }
}
/*BUTTER_MARCHE*/
@media(min-width : 1024px) {
  .footer__buttermarche {
    display: inline-block;
    margin-top: -30px;
  }
}
.footer__buttermarche h1 {
  font-family: Marcellus, sans-serif;
  color: #776650;
  font-size: 3.0rem;
  font-weight: bold;
  margin: 40px auto 10px;
}
.footer__buttermarche h2 {
  font-family: 'M PLUS 1p', sans-serif;
  font-style: normal;
  color: #776650;
  font-size: 1.8rem;
  font-weight: 300;
}
.footer__butter ul li p {
  font-family: 'M PLUS 1p', sans-serif;
  font-style: normal;
  color: #776650;
  font-size: 1.8rem;
  font-weight: 300;
  list-style: none;
}
.fotter__buttermarche_holiday p {
  font-family: 'M PLUS 1p', sans-serif;
  font-style: normal;
  color: #776650;
  font-size: 1.8rem;
  font-weight: 300;
}
.fotter__buttermarche_time {
  margin-bottom: 5px;
  line-height: 25px;
}
@media(min-width:1024px) {
  .fotter__buttermarche_time {
    margin-bottom: 10px;
  }
}
.fotter__buttermarche_time p {
  font-family: 'M PLUS 1p', sans-serif;
  font-style: normal;
  color: #776650;
  font-size: 1.8rem;
  font-weight: 300;
}
.footer__buttermarche ul li {
  list-style: none;
}
.fotter__buttermarche_holiday {
  line-height: 25px;
}
/*sns*/
.footer__sns_links-message {
  display: block;
  margin: 0px auto;
}
.footer__SNS {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.footer__line p {
  font-family: 'M PLUS 1p', sans-serif;
  font-style: normal;
  color: #776650;
  font-size: 2.0rem;
  font-weight: normal;
  display: inline-block;
}
@media(max-width:768px) {
  .footer__sns_links-message {
    margin: 10px auto 0px auto;
  }
  .footer__SNS {
    display: block;
    margin-top: 40px;
  }
  .footer__sns_links p {
    font-family: 'M PLUS 1p', sans-serif;
    font-style: normal;
    color: #776650;
    font-size: 2.0rem;
    font-weight: normal;
    display: inline-block;
  }
  .footer__line p {
    font-family: 'M PLUS 1p', sans-serif;
    font-style: normal;
    color: #776650;
    font-size: 1.6rem;
    font-weight: normal;
    margin-top: 15px;
  }
  .footer__container {
    display: block;
  }
  .footer__sns_links-message {
    margin: -40px auto -20px auto;
  }
}
@media(max-width:768px) {
  .footer__sns_links p {
    font-family: 'M PLUS 1p', sans-serif;
    font-style: normal;
    color: #776650;
    font-size: 1.8rem;
    display: inline;
    font-weight: normal;
  }
  #line_button {
    margin-top: 10px;
  }
}
.footer__sns_links li {
  display: inline-block;
}
.footer__sns_links img {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-top: 30px;
}
#ashirai_2 {
  width: 20px;
  height: 15px;
}
@media(min-width : 1024px) {
  .footer__sns_links p {
    font-family: 'M PLUS 1p', sans-serif;
    font-style: normal;
    color: #776650;
    font-size: 2.0rem;
    font-weight: normal;
    display: inline-block;
  }
  .footer__sns_links img {
    width: 40px;
    height: 40px;
  }
  #x_icon {
    margin-left: 40px
  }
  #line_button {
    height: 50px;
    margin-top: 10px;
    margin-left: 40px;
  }
  .footer__buttermarche h1 {
    font-family: 'Marcellus', serif;
    font-style: normal;
    color: #776650;
    font-size: 5.0rem;
    font-weight: bold;
    margin: 95px auto 25px auto;
  }
  .footer__buttermarche h2 {
    font-family: 'M PLUS 1p', sans-serif;
    font-style: normal;
    color: #776650;
    font-size: 2.0rem;
    font-weight: 300;
    line-height: 30px;
  }
  .footer__butter ul li p {
    font-family: 'M PLUS 1p', sans-serif;
    font-style: normal;
    color: #776650;
    font-size: 1.8rem;
    font-weight: 300;
    list-style: none;
  }
  .fotter__buttermarche_holiday p {
    font-family: 'M PLUS 1p', sans-serif;
    font-style: normal;
    color: #776650;
    font-size: 2.0rem;
    font-weight: 300;
    line-height: 30px;
  }
  .fotter__buttermarche_time p {
    font-family: 'M PLUS 1p', sans-serif;
    font-style: normal;
    color: #776650;
    font-size: 2.0rem;
    font-weight: 300;
    line-height: 30px;
  }
}
/*コピーライト*/
.footer small {
  display: block;
  font-family: 'M PLUS 1p', sans-serif;
  font-style: normal;
  color: #776650;
  font-size: 1.6rem;
  font-weight: lighter;
  margin: 50px auto 20px auto;
}
@media(max-width :768px) {
  .footer small {
    font-size: 1.4rem;
    margin: 15px auto 20px auto;
  }
}
/* TOPボタン*/
#scroll-top {
  background-color: #F1DAA2;
  color: #776650;
  bottom: 45px;
  padding: 10px;
  position: fixed;
  right: 30px;
  border-radius: 90px;
  z-index: 20000;
}
#scroll-top a {
  text-decoration: none;
  color: #776650;
  font-size: 1.4rem;
}
@media(max-width : 768px) {
  #scroll-top {
    padding: 10px;
    border-radius: 10px;
    position: fixed;
  }
  #scroll-top a {
    font-family: "Mplus 1p";
    font-style: normal;
    font-size: 1.6rem;
  }
  #scroll-top {
    bottom: 105px;
  }
}