@charset "UTF-8";

/* =========================
   reset
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
p,
ul,
li,
figure {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
  min-width: 1366px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #7A6A5A;
  background-color: #6b4f3e;
}

/* =========================
   base
========================= */
.page-bg {
  position: relative;
  background: url("../images/background-s.jpg") repeat center top;
  background-size: 680px auto;
}

.page-bg::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25); /* ←ここ調整ポイント */
  z-index: 0;
}

.header,
.hero,
.content-wrap {
  width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  height: 30px;
  padding: 0 16px;
  border-radius: 999px;
  background-color: #5A3E2B;
  color: #F8F8F8;
  font-family: "Quicksand", sans-serif;
  font-size: 11px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

.button:active {
  transform: translateY(0);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* =========================
   header
========================= */
.header {
  padding-top: 18px;
}

.header__inner {
  position: relative;
}

.header__logo {
  width: 120px;
  height: auto;
  position: relative;
  z-index: 10;
  display: block;
}

.header__logo a {
  display: inline-block;
  color: #F8F8F8;
}

.header__logo img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.45));
}

.header__tel {
  position: absolute;
  top: 2px;
  right: 0;
  color: #F8F8F8;
  font-family: "Quicksand", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-list {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}

.nav-list__item {
  flex: 1;
}

.nav-list__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 28px;
  border: 1px solid rgba(248, 248, 248, 0.55);
  color: #F8F8F8;
  font-family: "Quicksand", sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.nav-list__item img {
  width: 11px;
  height: 11px;
}

.nav-list__item a:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

/* =========================
   hero
========================= */
.hero {
  margin-top: 40px;
  margin-bottom: 48px;
}

.hero__inner {
  position: relative;
  width: 100%;
}

.hero__image {
  width: 100%;
  height: 428px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 280px; /* 調整ポイント */
  z-index: 2;

  /* 白ロゴを浮かせる影 */
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 1));
}

/* =========================
   layout
========================= */
.content-wrap {
  display: grid;
  grid-template-columns: 220px 1fr;
  column-gap: 46px;
  margin-top: 38px;
  padding-bottom: 50px;
}

.main-contents {
  padding-top: 4px;
}

/* =========================
   sidebar
========================= */
.sidebar__banners {
  display: grid;
  gap: 10px;
}

.sidebar__banner {
  display: block;
  overflow: hidden; /* ←これ大事 */
  border-radius: 8px;
  transition: transform 0.25s ease;
}

.sidebar__banner img {
  display: block;
  width: 100%;
  border-radius: 4px;
  transition: transform 0.25s ease;
}

.sidebar__banner:hover {
  transform: translateY(-2px);
}

.sidebar__banner:hover img {
  transform: scale(1.05);
}

.sns-list {
  margin-top: 22px;
  display: grid;
  gap: 10px;
  padding: 12px;
}

.sns-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #F8F8F8;
  border-radius: 5px;
  padding: 6px 10px;
  font-family: "Quicksand", sans-serif;
  font-size: 13px;
  border: 1px solid #f8f8f8;
  transition: all 0.25s ease;
}

.sns-list a:hover {
  padding-left: 6px;
  color: #fff;
}

.sns-list img {
  width: 18px;
  height: 18px;
}

.side-nav {
  margin-top: 26px;
  display: grid;
  color: #F8F8F8;
  gap: 9px;
}

.side-nav a {
  position: relative;
  display: block;
  padding-left: 14px;
  color: #F8F8F8;
  font-size: 13px;
  border-bottom: 1px solid #F8F8F8;
  padding: 2px 2px 8px 20px;
  transition: all 0.25s ease;
}

.side-nav a:hover {
  color: #fff;
  padding-left: 18px;
  border-bottom: 1px solid #fff;
}

.side-nav a:hover::after {
  width: 100%;
}

.side-nav a::before {
  content: "▶";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 10px;
  padding: 4px 2px;
}

.list__title {
  position: relative;
  padding: 2px 2px 8px 20px;
  border-bottom: 2px solid #F8F8F8;
}

.list__title::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 8px;
  
  width: 14px;
  height: 14px;

  background: url("../images/coffeebeans.svg") no-repeat center / contain;
}

.shop-card {
  margin-top: 34px;
}

.shop-card__logo {
  width: 84px;
  margin-bottom: 10px;
}

.shop-card__inner{
 background-color: #EFE7DF;
 border-radius: 5px;
 padding: 12px 4px;
}

.shop-card__image {
  width: 100%;
  border-radius: 4px;
}

.shop-card__info {
  margin-top: 12px;
  margin-left: 8px;
  color: #5A3E2B;
  font-size: 12px;
  line-height: 1.7;
}

/* =========================
   feature 共通
========================= */
.feature {
  position: relative;
  display: grid;
  grid-template-columns: 280px 1fr;
  max-width: 1200px;
  align-items: center;
  column-gap: 0;
  margin: 0 auto 64px;
}

.feature__media {
  position: relative;
  z-index: 2;
}

.feature__main-image {
  display: block;
  width: 100%;
  height: auto;
}

.feature__card {
  position: relative;
  min-height: 340px;
  padding: 54px 56px 54px 140px;
  background: rgba(239, 231, 223, 0.88);
  border-radius: 10px;
  
  display: flex;
  flex-direction: column;
}

.feature__bg-title {
  position: absolute;
  font-family: "Allura", cursive;
  font-size: 150px;
  line-height: 1;
  color: rgba(248, 248, 248, 0.22);
  pointer-events: none;
}

.feature__title {
  margin: 0 0 28px;
  color: #7A6A5A;
  font-size: 28px;
  font-weight: 500;
  text-align: right;
}

.feature__desc {
  max-width: 289px;
  margin: 0 0 28px auto;
  font-size: 18px;
  line-height: 2;
}

.feature .button {
  align-self: flex-end;
}

/* =========================
   concept
========================= */
.feature--concept .feature__bg-title {
  top: -62px;
  left: 467px;
}
.feature--concept {
  display: block;
}

.feature--concept .feature__media {
  position: absolute;
  left: -13px;
  top: 46%;
  transform: translateY(-37%);
  z-index: 2;
}

.feature--concept .feature__main-image {
  width: 476px;
  max-width: none;
}

.feature--concept .feature__card {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================
   coffee
========================= */

.feature--coffee {
  display: block;
  max-width: 1200px;
  margin: 0 auto 64px;
}

.feature--coffee .feature__card {
  position: relative;
  width: 100%;
  min-height: 390px;
  padding: 64px 380px 56px 56px;
  background: rgba(239, 231, 223, 0.88);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}

.feature--coffee .feature__bg-title {
  top: -36px;
  left: 40px;
  font-size: 140px;
}

.feature--coffee .feature__title {
  text-align: left;
  margin-bottom: 24px;
}

.feature--coffee .feature__desc {
  max-width: 305px;
  margin: 0 0 28px;
  font-size: 18px;
  line-height: 2;
}

.feature--coffee .button {
  align-self: flex-start;
}

.feature--coffee .feature__image--beans {
  position: absolute;
  top: -80px;
  right: -190px;
  width: 576px;
  z-index: 2;
}

.feature--coffee .feature__sub-image {
  position: absolute;
  right: 366px;
  bottom: -13px;
  width: 199px;
  z-index: 2;
}

/* =========================
   sandwich
========================= */

.feature--sandwich {
  position: relative;
  display: block;
  max-width: 1200px;
  margin: 0 auto 64px;
}

.feature--sandwich .feature__card {
  position: relative;
  width: 100%;
  min-height: 390px;
  padding: 64px 56px 56px 360px;
  background: rgba(239, 231, 223, 0.88);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}

.feature--sandwich .feature__bg-title {
  top: -28px;
  right: 40px;
  font-size: 140px;
}

.feature--sandwich .feature__title {
  text-align: right;
  margin-bottom: 24px;
}

.feature--sandwich .feature__desc {
  max-width: 320px;
  margin: 0 0 28px auto;
  font-size: 16px;
  line-height: 2;
}

.feature--sandwich .button {
  align-self: flex-end;
}

.feature--sandwich .feature__image--sand {
  position: absolute;
  left: -18px;
  top: 57%;
  transform: translateY(-40%);
  width: 350px;
  z-index: 2;
}

.feature--sandwich .feature__image--sand img {
  display: block;
  width: 100%;
  height: auto;
}

/* =========================
   news
========================= */
.news {
  margin-top: 18px;
}

.news__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #F8F8F8;
}

.news__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1px solid #F8F8F8;
  border-radius: 50%;
  font-family: "Quicksand", sans-serif;
  font-size: 12px;
  line-height: 1;
}

.news__title {
  font-size: 16px;
  font-weight: 500;
}

.news-list {
  border-top: 1px solid rgba(248, 248, 248, 0.8);
}

.news-list__item {
  border-bottom: 1px solid rgba(248, 248, 248, 0.35);
}

.news-list__item a {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 13px 0;
  color: #F8F8F8;
  font-size: 12px;
}

.news-list__item a span{
  transition: all 0.25s ease;
}
.news-list__item a span:hover {
  padding-left: 6px;
  color: #fff;
}

.news-list__item time {
  font-family: "Quicksand", sans-serif;
}

/* =========================
   pagetop
========================= */
.pagetop {
  margin-top: 28px;
  text-align: right;
}

.pagetop a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  height: 28px;
  padding: 0 16px;
  border-radius: 999px;
  background-color: #F8F8F8;
  color: #7A6A5A;
  font-family: "Quicksand", sans-serif;
  font-size: 11px;
  font-weight: 700;
}

/* =========================
   footer
========================= */
.footer {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 18px 0 26px;
  background-color: #EFE7DF;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer__left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer__logo svg {
  width: 78px;
  color: #7A6A5A;
}

.footer__info {
  color: #7A6A5A;
  font-size: 11px;
  line-height: 1.8;
  white-space: nowrap;
}

.footer__copy {
  color: #7A6A5A;
  font-family: "Quicksand", sans-serif;
  font-size: 11px;
}