@charset "UTF-8";

@import url("normalize.css"); /* ------- Reset all CSS Styles */

/********************
共通
******************************/
* {
  box-sizing: border-box;
}
/* https://developer.mozilla.org/ja/docs/Web/CSS/box-sizing */

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium",
    "游ゴシック", "Yu Gothic", sans-serif;
  background-image: url(../images/background.jpg);
  /* 天地(上下)左右の中央に配置 */
  background-position: center center;
  /* タイル状に繰り返し表示しない */
  background-repeat: no-repeat;
  /* コンテンツの高さが画像の高さより大きい時、動かないように固定 */
  background-attachment: fixed;
  /* 表示するコンテナの大きさに基づいて、背景画像を調整 */
  background-size: cover;
  /* 背景画像が読み込まれる前に表示される背景のカラー */
  background-color: #2b581d;
}


/* 共通　大枠 */
.wrapper {
  width: auto;
  margin: 0 auto;
  background-color: rgba(184, 168, 168, 0.829);
}

/* 共通　ヘッダー・メインナビゲーション */
.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.logo {
  width: 50%;
}
.logo img {
  width: 140px;
  height: auto;
}
.navigation-header {
  width: 50%;
  margin-bottom: 10px;
  margin-right: 20px;
}
.navigation-header ul {
  display: flex;
  justify-content: space-between;
}
.navigation-header ul li {
  font-size: 14px;
  font-weight: bold;
}
.navigation-header ul li a {
  color: #000000;
  text-decoration: none;
  transition: 0.3s;
}
.navigation-header ul li a:hover {
  color: #e2416e;
}

/* 共通　フッター */
.footer {
  width: 100%;
  height: 200px;
  margin-top: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.navigation-footer {
  width:100%;
}
.navigation-footer ul {
  display: flex;
  justify-content: center;
  padding-left: 0;
}
.navigation-footer ul li {
  font-size: 14px;
  font-weight: bold;
  margin: 0 40px;
}
.navigation-footer ul li a {
  color:  #000000;
  text-decoration: none;
  transition: 0.3s;
}
.navigation-footer ul li a:hover {
  color: #e2416e;
}

.copyright {
  color:  #000000;
}
/********************
index.html 
**************************************************/
/* index.html　メインビジュアル */
.main-image {
  text-align: center;
  width: 100%
}
.main-image img {
  width:80%;
}
/* index.html スライト */
#slideshow {
  position: relative;
  height: 400px;
}
#slideshow img {
  position:absolute;
  top: 0;
  left: 0;
  z-index: 8;
  opacity: 0;
}
#slideshow img.active {
  z-index: 10;
  opacity: 1;
}
#slideshow img.last-active {
  z-index: 9;
}

/* index.html イントロテキスト部分 */
.text-intro {
  width: 800px;
  margin: auto;
  padding: 60px 20px;
}
.text-intro p {
  font-size: 30px;
  line-height: 1.75;
  color:  #000000;
}
/* index.html バナーエリア */
.banner-wrapper {
  width: 100%;
  justify-content: center;
  display: flex;
  justify-content: space-around;
}
.banner {
  width: 30%;
}
.banner h2 {
  font-size: 13px;
  text-align: center;
  margin: 5px;
}
.banner img {
  width: 80%;
}
.banner a {
  text-decoration: none;
  color:  #000000;
  transition: 0.3s;
}
.banner a img {
  transition: 0.3s;
}
.banner a:hover {
  color: #e2416e;
}
.banner a:hover img {
  opacity: 0.6;
}
/********************
その他のページ
**************************************************/
.content-wrapper {
  width: 100%;
  padding: 80px 40px;
  display: flex;
  justify-content: space-between;
}
.content-text {
  width: 80%;

}
.content-text h2 {
  font-size: 35px;
  color:  #000000;
}
.content-text h3 {
  margin-top: 100px;
  font-size: 20px;
  font-weight: bold;
  color:  #000000;
}
.content-text p {
  font-size: 30px;
  color:  #000000;
  line-height: 1.75;
  margin-bottom: 40px;
  text-align: justify;
}
.content-image {
  width: 50%;
}
.content-image img {
  padding: 60px 0px 0px 80px;
}
.shop-ranking{
  text-align: center;
}
.shop-ranking p{
  font-size: 30px;
}
.btn{
  background: linear-gradient(rgb(194, 103, 103), rgb(238, 255, 0));
}
