@charset "utf-8";

/* 全体設定 */
body {
  font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN', 
serif;
  background-color: #261714;
  color: #f2f2f2;
}



/* タイトル、見出し */
.title {
  font-family: Acumin Pro;
  font-weight: bold;
  font-size: 26px;
  text-align: center;
  margin-bottom: 90px;
}

/* moreボタン */
a.button {
  display: block;
  width: 110px;
  padding: 10px 0;
  margin: 0 auto;
  background-color:#f2f2f2;
  color:#261714;
  font-size: 20px;
  font-weight: bold;
  /* 角丸18px */
  border-radius: 18px;
  text-align: center;
  margin-bottom: 80px;
}

/* 共通レイアウト */
#mainvisual, #concept, #item, #news, #service, #footer {
  /* 左右中央に配置 */
  margin: 0 auto; 
  /* 各セクション、上下に内側余白をつける */
  padding: 100px 0;
}

.col-2 {
  display: flex;
  justify-content: space-between;
}

/* 共通レイアウト_スマホ対応 */
@media screen and (max-width: 768px) {
  #concept, #item, #news, #service {
    padding: 0;
    margin-bottom: 150px;
  }
  .col-2 {
    display: block;
  }
}


/* ヘッダー */
.gnav-sp-wrap {
  display: none;
}


#header {
  background-color: #2c4019;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px 0 50px;
  	/* ヘッダーをページ上部に固定 */
	position: fixed;
  top: 0;
  	/* ほか要素よりも重なり順を1つ上に指定 */
  z-index: 1;
}

.gnav-pc-wrap {
  display: flex;
}

.gnav-pc {
  display: flex;
  align-items: center;
  margin-right: 60px;
}

.gnav-pc li {
  margin-left: 30px;
}

.customernav-pc{
  display: flex;
  align-items: center;
}

.customernav-pc li {
  margin-left: 15px;
}

/* スマホ対応_ヘッダー */

@media screen and (max-width: 768px) {
  
  /* PCメニュー非表示 */
  .gnav-pc-wrap {
    display: none;
  }

  #header {
		height: 100px;
		padding: 40px;
	}

  #header img {
    width: 80%;
  }

  /* スマホメニュー */
  #menu-button {
    display: block;
    width: 60px;
    height: 60px;
    padding: 22px 18px;
  }

  .menu-button-inner {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
  }

  .menu-button-inner span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #f2f2f2;
    position: absolute;
  }

  .menu-button-inner span:nth-child(1) {
    top: 0;
  }

  .menu-button-inner span:nth-child(2) {
    top: 0;
    bottom: 0;
    margin: auto;
  }

  .menu-button-inner span:nth-child(3) {
    bottom: 0;
  }

  /* スマホ用メニューのスタイル */
  .gnav-sp-wrap {
    display: none;
    width: 100vw;
    height: 100vh;
    background-color: #2c4019;
    position: fixed;
    z-index: 100;
    padding-top: 100px;
  }

  ul.gnav-sp li {
    text-align: center;
    margin-bottom: 30px;
  }

  ul.gnav-sp li a {
    font-size: 20px;
    letter-spacing: 0.1em;
    color: #f2f2f2;
    font-weight: bold;
  }


}



/* メインビジュアル */
#mainvisual {
  background-image: url(../images/pc-main.png);
  width: 100vw;

  height: 100vh;
  	/* 背景画像が常に縦横比を維持したまま前面を覆うようにサイズ指定 */
  background-size: cover;
  	/* 背景画像が常に中央に配置されるように指定 */
  background-position: center;
  	/* 背景画像が繰り返さないように指定 */
	background-repeat: no-repeat;
	/* ヘッダー分、上に余白を設定する */
  margin-top: 80px;
  /* 下部に余白追加 */
  margin-bottom: 100px;
}

/* スマホ対応_メインビジュアル */
@media screen and (max-width: 768px) {
  #mainvisual {
    background-image: url(../images/sp-main.png);
    margin-top: 100px;
    margin-bottom: 100px;
    background-size: 100vw;
  }
}

/* CONCEPT */
#concept {
  /* 横幅の最大値 */
  max-width: 940px; 
}

.col-2 .item{
  width: calc((100% - 36px)/2);
}

h2.large {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.5em;
  padding-bottom: 45px;
}

p.medium {
  font-size: 18px;
  line-height: 1.5em;
  padding-bottom: 35px;
}

/* スマホ対応_CONCEPT */
@media screen and (max-width: 768px) {
  #concept {
    text-align: center;
  }
  .col-2 .item {
    width: 90%;
    margin: 0 auto;
  }
  
  #concept img {
    width: 100%;
  }
}

/* ITEM */
/* ITEM-見出し（擬似要素） */
.section-title {
  text-align: center;
  margin-bottom: 30px;
}

h3.section-title {
  font-size: 20px;
  position: relative;
  display: inline-block;
  padding: 0 55px;
}

h3.section-title::before,h3.section-title::after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 50px;
  height: 1px;
  background-color: #666;
}

h3.section-title::before {
  left: 0;
}

h3.section-title::after {
  right: 0;
}
/* 擬似要素ここまで */

/* ITEM-アイテムリスト */
.container {
  margin: 0 auto;
}

.list {
  display: flex;
  justify-content: space-between;
  text-align: center;
  /* ウィンドウ幅でレイアウトが崩れないように幅を指定 */
  width: 1200px;
  /* ブロック要素を中央寄せ */
  margin: 0 auto;
  /* 下部に余白を追加 */
  margin-bottom: 50px;
}

.list .item {
  width: calc((100% - 35px)/4);
  margin: 0 20px;
}

p.item-name {
  font-size: 16px;
  margin-top: 20px;
}
p.item-price {
  font-size: 15px;
  color: #a66c4b;
  margin-top: 10px;
}


/* ITEM-カテゴリ一覧 */
.sort-btn {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.sort-btn li {
  display: inline;
  width: 220px;
  padding: 15px 0;
  margin: 0 auto;
  background-color:#8c4d3f;
  color:#f2f2f2;
  font-size: 18px;
  /* 角丸10px */
  border-radius: 10px;
  text-align: center;
  margin: 0 30px 20px 30px;
}

li.all {
  background-color: #a66c4b;
}

/* ITEM-スマホ対応 */
@media screen and (max-width: 768px) {
  .list {
    width: 100%;
    display: block;
  }

  .list .item {
    width: 48%;
    margin: auto;
    padding-bottom: 30px;
  }

  .list a {
    text-align: center;
  }

  .list img {
    width: 100%;
  }

  .sort-btn {
    flex-wrap: wrap;
    margin-bottom: 0;
  }
}


/* NEWS */
/* slickスライド */
.multiple-items {
  width: 1200px;
  margin: 0 20px;
  text-align: center;
  margin-bottom: 80px;
}

.slick-slide img {
  margin: 0 auto;
}

p.news-date {
  font-size: 14px;
  margin: 10px 0;
}
p.p.news-title {
  font-size: 18px;
}

/* スマホ対応_NEWS */
@media screen and (max-width: 768px) {
  .multiple-items {
    margin: 0 20px;
    width: 90%;
    padding-bottom: 50px;
  }
}


/* SERVICE */
#service {
  max-width: 1040px;
}

.section-inner {
  margin: 0 auto;
}

.service-item {
  width: calc((100% - 15px) / 2);
  padding: 0 80px;
}

.col-2.concept2 {
  flex-direction: row-reverse;
}

h4 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 45px;
}

p.small {
  font-size: 16px;
  line-height: 1.5em;
  width: 360px;
}

/* SERVICE-ボタン */
a.service_button {
  display: block;
  width: 210px;
  padding: 10px 0;
  margin: 0 auto;
  background-color:#2c4019;
  color:#f2f2f2;
  font-size: 16px;
  font-weight: bold;
  border-radius: 20px;
  text-align: center;
  margin: 30px 0 120px 80px;
}

/* スマホ対応_SERVICE */
@media screen and (max-width: 768px) {
  .service-item {
    width: 100%;
  }
  .service-item img {
    width: 100%;
  }

  h4 {
    margin-top: 30px;
  }

  p.small {
    width: 100%;
  }

  a.service_button {
    margin: 50px auto;
  }
}

/* FOOTER */
#footer {
  background-color: #2c4019;
  text-align: center;
  padding: 80px 0;
}

.footer-link {
  margin-bottom: 50px;
}

.footer-link li {
  display: inline;
  margin-right: 40px;
}

p.copyright {
  color: #f2f2f2;
}

/* スマホ対応_フッター */
@media screen and (max-width: 768px) {
  .footer-link li {
    display: block;
    padding: 10px;
    margin: auto;
    font-size: 14px;
  }
}