@charset "utf-8";

.logo-text {
  font-size: 28px;
  font-weight: bold;
  font-family: "Georgia", serif;
  color: #333;
  text-decoration: none;
  letter-spacing: 2px;
}


body {
  --primary-color: #643a00;
  --secondary-color: #d5659f;
  --text-color: #333;
  --radius-medium: 8px;
  --shadow-general: 0px 4px 30px -4px #34343444;
  --content-width: 1200px;
  font-family: "Noto Sans JP", sans-serif;
  background: #fffcf6;
  color: #494949;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.4;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  transition: 0.3s ease-in-out;
}

img {
  max-width: 100%;
  height: auto;
}

.header {
  padding: .9em 3em;
  background: #fff;
  position: relative;
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__nav {
  display: flex;
}

.header__nav--list {
  display: flex;
  gap: 2em;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.header__nav--list a {
  color: var(--text-color);
  text-decoration: none;
  letter-spacing: .05em;
  line-height: 1.5;
}

.header__nav--list a:hover {
  opacity: .6;
}

.header__logo {
  margin: 0;
  padding: 0;
}

.header__logo a {
  display: block;
}

.header__logo img {
  width: 220px;
  height: auto;
  vertical-align: middle;
}

header .header__mbsearch {
  display: none;
  position: absolute;
  right: 16px;
  top: 28px;
  font-size: 1.3em;
}

/* コンテンツ */

.menu,
.campaign,
.news {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5em;
}

/* スライダー */

.splide {
  margin: 0 auto 3em;
}

.splide__slide img {
  width: 100%;
}

.section-title {
  text-align: center;
  letter-spacing: .08em;
  margin: 1.4em 0;
  position: relative;
}

.section-title:after {
  height: 2px;
  content: "";
  position: absolute;
  width: 2em;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
}

/* ニュース */

.news {
  margin: 3em auto;
}

.news__wrap {
  display: flex;
  gap: 3em;
}

.news-title {
  text-align: left;
  font-size: 1.4em;
  line-height: 1.4;
  margin: 1em 0;
}

.news__list {
  list-style-type: none;
  line-height: 1.5;
  font-size: 1em;
}

.news__item {
  margin-bottom: 1.2em;
}

.news__link {
  display: flex;
  color: var(--text-color);
  text-decoration: none;
}

.news__date {
  flex: 0 0;
  margin-right: 1.2em;
  font-weight: 700;
}

.news__wrap--left,
.news__wrap--right {
  width: 50%;
}

/* メニュー */

.menu {
  margin: 2em auto;
}

.menu__wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3em 1em;
}

.menu__wrap--list p {
  text-align: center;
  font-weight: 700;
  margin-top: .6em;
}

/* キャンペーン */

.campaign {
  margin: 4em auto;
}

.campaign__wrap {
  display: flex;
  gap: 3em;
  margin-bottom: 3em;
  align-items: center;
}

.campaign__left,
.campaign__right {
  width: 50%;
}

.campaign__left--subtitle {
  font-size: 15px;
  color: var(--secondary-color);
  line-height: 1.6;
}

.campaign__left--title {
  font-size: 1.4em;
  margin-bottom: 1em;
}

.campaign__left--detail {
  line-height: 1.7;
}

.campaign__left--button {
  display: inline-block;
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color-color);
  font-size: .95em;
  position: relative;
  padding: .6em 4em;
  margin: 1em 0;
  vertical-align: middle;
  text-decoration: none;
}

.campaign__right--image {
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-general);
}

/* パララックス */

.pickup {
  position: relative;
}

.background-full {
  width: 100%;
  position: relative;
}

.pickup__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  color: #fff;
}

.pickup__content--title {
  font-size: 2em;
  letter-spacing: .06em;
  line-height: 1.8;
  margin-bottom: .8em;
}

.pickup__content--detail {
  line-height: 2;
}

/* インフォ */

.info {
  margin: 2em 0;
}

.info__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2em;
}

.info__card {
  display: block;
}

.info__wrap--card {
  display: block;
  text-decoration: none;
  color: var(--text-color);
  padding: 1.6em;
  box-shadow: var(--shadow-general);
  border-radius: var(--radius-medium);
  background: #fff;
  flex: 0 0 30%;
}

.info__wrap--card h4 {
  margin-bottom: .8em;
}

.info__wrap--card span {
  display: block;
  text-align: right;
}

/* フッター */

.footer {
  background: #fff;
  padding: 1.4em 1em;
}

.footer__content {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1em;
  padding: 1em;
}

.footer__logo {
  margin: 0;
  padding: 0;
}

.footer__logo img {
  width: 180px;
  height: auto;
}

.footer__sns {
  display: flex;
  gap: 1em;
}

.footer__sns--btn {
  display: flex;
  text-align: center;
  align-items: center;
  border-radius: 50%;
  padding: 6px;
  text-decoration: none;
  text-align: center;
}

.footer__sns--btn span {
  height: 20px;
  line-height: 20px;
  width: 20px;
}

.footer__sns--twitter {
  background: #1d9bf0;
  color: #fff;
}

.footer__sns--facebook {
  background: #1778f2;
  color: #fff;
}

.footer__sns--insta {
  background: #e1306c;
  color: #fff;
}

.footer__sns--youtube {
  background: #f00;
  color: #fff;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  list-style-type: none;
}

.footer__nav--list {
  display: flex;
  gap: 1.4em;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.footer__nav--list a {
  color: var(--text-color);
  text-decoration: none;
  letter-spacing: .05em;
  line-height: 1.5;
}

.footer__nav--list a:hover {
  opacity: .6;
}

.footer__copyright {
  color: #7f7f7f;
  margin: 0;
  text-align: center;
  font-size: .9em;
}

@media screen and (max-width:1024px) {
  .header__content {
    justify-content: center;
  }

  .header__nav {
    display: none;
  }

  header .header__mbsearch {
    display: block;
  }
}

@media only screen and (max-width:768px) {
  .news__wrap {
    flex-direction: column-reverse;
  }

  .news__wrap--left,
  .news__wrap--right {
    width: 100%;
  }
  .menu__wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .campaign__wrap {
    flex-direction: column-reverse;
  }

  .campaign__left,
  .campaign__right {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .info {
    padding: 0 1em;
  }
  .info__wrap--card {
    flex: 0 0 100%;
  }
  .pickup__content--detail {
    display: none;
  }
  .pickup__content--title {
    font-size: 1.4em;
  }
}


/*=============================
  黒 × 金 デザインテーマ
==============================*/

body {
  --primary-color: #d4af37;   /* ゴールド */
  --secondary-color: #e1c16e; /* 薄めのゴールド */
  --text-color: #f5f5f5;      /* 白めの文字 */
  background: #0d0d0d;        /* 黒 */
  color: #e8e8e8;             /* 標準文字 */
}

/* ヘッダー */
.header {
  background: #000;
  border-bottom: 1px solid #d4af3766;
}
.header__nav--list a {
  color: #f2f2f2;
}
.header__nav--list a:hover {
  opacity: .8;
}

/* ロゴテキスト */
.logo-text {
  color: #d4af37;
  text-shadow: 0 0 6px #d4af3733;
}

/* セクションタイトル */
.section-title {
  color: #f7f7f7;
}
.section-title:after {
  background: #d4af37;
}

/* ニュース */
.news__link {
  color: #e0e0e0;
}
.news__date {
  color: #d4af37;
}

/* メニューカード */
.menu__wrap--list p {
  color: #f4f4f4;
}

/* キャンペーン */
.campaign__left--subtitle {
  color: var(--primary-color);
}
.campaign__left--title {
  color: #fff;
}
.campaign__left--detail {
  color: #ddd;
}
.campaign__left--button {
  border-color: #d4af37;
  color: #d4af37;
}
.campaign__right--image {
  border: 2px solid #d4af3720;
}

/* パララックス文字 */
.pickup__content--title,
.pickup__content--detail {
  text-shadow: 0 0 10px #000;
}

/* インフォカード */
.info__wrap--card {
  background: #111;
  color: #e8e8e8;
  box-shadow: 0 4px 20px -4px #000;
  border: 1px solid #d4af3720;
}

/* フッター */
.footer {
  background: #000;
}
.footer__nav--list a {
  color: #f2f2f2;
}
.footer__copyright {
  color: #a0a0a0;
}

/* SNSボタン：枠だけゴールド化 */
.footer__sns--btn {
  border: 1px solid #d4af37;
  background: #111;
}

.splide__slide img {
  width: 100%;
  height: 550px; /* ← 好きな高さに調整 */
  object-fit: cover;  /* ← トリミングして綺麗に収まる */
}


.pickup__content--title,
.pickup__content--detail {
  color: #fff; /* 白文字 */
  background: rgba(0, 0, 0, 0.4); /* 半透明の黒背景 */
  padding: 0.2em 0.4em; /* 背景の余白を少し追加 */
  border-radius: 4px; /* 好みで角を丸める */
  display: inline; /* ブロックにせず文字の位置を維持 */
}


