.container {
  background-color: initial;
}
/* ============================================================
hero
============================================================ */
.hero {
  width: 100%;
  max-width: initial;
  height: calc(100vh - 60px);
}
.hero__inner {
  max-width: initial;
  width: 100%;
  height: 100%;
}
.hero__head {
  position: relative;
  padding-bottom: 5.3333vw;
  width: 100%;
  height: 100%;
}
.hero__img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero__img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.hero__title {
  position: absolute;
  bottom: 5.3333vw;
  left: 0;
  right: 0;
}
.hero__title__inner {
  margin: 0 auto;
  max-width: 1200px;
  width: 80%;
}
.hero__title-text {
  display: inline-block;
  position: relative;
  color: var(--accent);
  font-size: 4.333vw;
  font-weight: bold;
  letter-spacing: 0.05em;
  padding-left: 0.6em;
  padding-right: 1.8em;
}
.hero__title-text::after {
  content: "";
  display: block;
  width: 100%;
  height: 5.3333vw;
  position: absolute;
  left: 0;
  bottom: -5.3333vw;
  background-color: var(--accent);
}

/* ============================================================
main
============================================================ */
main {
  background-color: #eae5d5;
  padding: 40px 0;
}
/* ============================================================
intro
============================================================ */
.intro__inner {
  padding: 40px 0 40px;
}
.intro__title {
  font-size: min(2.933vw, 4.4rem);
  font-weight: bold;
  color: var(--accent);
  font-family: serif;
}
.intro__text {
  margin-top: 20px;
  font-size: min(1.733vw, 2.6rem);
}
/* ============================================================
content
============================================================ */
.content {
  padding: 100px 0;
  border-top: 1px solid var(--accent);
  width: 80%;
}
.content__inner {
  width: 100%;
}
.content-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.content-top__text {
  font-size: min(2.133vw, 3.2rem);
  font-family: serif;
  font-weight: bold;
}
.content-top__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
}
.content-top__floor {
  color: var(--accent);
  font-size: 3rem;
  font-weight: bold;
  padding-right: 12px;
  line-height: 1;
  border-right: 1px solid var(--accent);
}
.content-top__map {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* padding-left: 12px; */
  text-decoration: none;
}
.content-top__map-icon {
  color: var(--accent);
  font-size: 2.2rem;
}
.content-top__map-text {
  color: var(--accent);
  font-weight: bold;
}
.content-main {
  margin-top: 20px;
  display: flex;
  gap: 60px;
}
/* .content-main-col {
  width: calc(50% - 40px);
} */
.content-main-left {
  width: 32%;
}
.content-main-left__img:nth-of-type(n + 2) {
  margin-top: 20px;
}
.content-main-left__img img {
  width: 100%;
  display: block;
}
.content-main-left__img-caption {
  margin-top: 4px;
  font-size: min(1.17vw, 16px);
  word-break: auto-phrase;
}
.content-main-left__img-caption--right {
  text-align: right;
}
.content-main-right {
  /* width: calc(68% - 60px); */
  width: 50%;
}
.content-main-right__title {
  display: flex;
  flex-direction: column;
}
.content-main-right__title--main {
  font-size: min(2vw, 3rem);
  font-weight: bold;
}
.content-main-right__title--sub {
  font-size: min(1.46vw, 2.2rem);
  font-weight: normal;
}
.content-main-right__text {
  margin-top: 10px;
  font-size: min(1.067vw, 16px);
  line-height: 1.6;
  word-break: auto-phrase;
}
.content-main-right__text--em {
  font-weight: bold;
  color: var(--accent);
}
.content-main-right__box {
  margin-top: 20px;
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(to right, #fbf0c3, #d6b384);
}
.content-main-right__box__title,
.content-bottom__box__title {
  font-size: min(1.2vw, 18px);
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--accent);
}
.content-main-right__box__text {
  font-size: min(1.067vw, 16px);
  line-height: 1.6;
  margin-bottom: 8px;
}
.content-main-right__box__text--em {
  font-size: min(1.133vw, 17px);
  /* font-weight: bold; */
}
.content-main-right__offer {
  margin-top: 10px;
  font-size: min(0.933vw, 14px);
  font-weight: bold;
}
.content-main-right__link-wrap,
.content-bottom__link-wrap {
  text-align: right;
}
.content-main-right__link,
.content-bottom__link {
  display: inline-block;
  margin-top: 20px;
  font-size: min(1.17vw, 16px);
  font-weight: bold;
  position: relative;
  padding-right: 26px;
}
.content-main-right__link::after,
.content-bottom__link::after {
  content: "→";
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  width: 17px;
  height: 17px;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  color: var(--white);
  background-color: var(--accent);
}
.content-bottom__box {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.content-bottom__box--wh {
  margin-top: 40px;
  padding: 20px;
  border-radius: 20px;
  background-color: var(--white);
}
.content-bottom__box__title {
  margin-top: 40px;
  font-size: min(2vw, 3rem);
}
.content-bottom__col {
  width: calc(50% - 20px);
}
.content-bottom__img {
  margin-top: 8px;
  width: 70%;
}
.content-bottom__img img {
  width: 100%;
  display: block;
}
.content-bottom__box__text {
  margin-top: 10px;
  font-size: min(1.2vw, 18px);
  line-height: 1.6;
}
.content-bottom__box__text--bg {
  padding: 12px;
  border-radius: 16px;
  background-color: #fbe3d6;
  width: 70%;
}
.content-bottom__box__btn-wrap {
  width: 100%;
}
.biccamera-content-bottom {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
.biccamera-title {
  color: #e94d1a;
  font-size: min(2.133vw, 3.2rem);
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
/* .biccamera-mainimg-wrap {
  width: 50%;
  margin: 40px auto 0;
} */
.biccamera-mainimg {
  display: block;
  width: 100%;
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.1);
}
.biccamera-logo-wrap {
  width: 24%;
  margin: 0 auto 20px;
}
.biccamera-logo {
  display: block;
  width: 100%;
}
.biccamera-desc {
  width: 100%;
  max-width: 980px;
  margin: 40px auto 0;
  /* padding: 40px; */
  text-align: center;
  /* box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  background: var(--white); */
  font-size: min(1.067vw, 16px);
  line-height: 2;
}
.biccamera-gallery {
  width: 50%;
  max-width: 980px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  /* width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw); */
}
.biccamera-gallery-img-wrap {
  /* width: calc((100% - 40px) / 3); */
  width: 100%;
}
.biccamera-gallery-img {
  width: 100%;
  display: block;
}
.biccamera-section-title {
  width: 100%;
  max-width: 980px;
  margin: 80px auto 0;
  font-size: min(1.46vw, 2.2rem);
  font-weight: bold;
  letter-spacing: 0.08em;
}
.biccamera-section-text {
  width: 100%;
  max-width: 980px;
  margin: 20px auto 0;
  font-size: min(1.067vw, 16px);
}
.biccamera-floor-table {
  width: 100%;
  max-width: 980px;
  margin: 40px auto 0;
  border-collapse: collapse;
  border-spacing: 0;
  background: #fff;
  font-size: min(1.067vw, 16px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}
.biccamera-floor-table th {
  padding: 16px;
  vertical-align: center;
  border-top: none;
  background: var(--accent);
  color: var(--white);
  font-weight: bold;
  text-align: center;
}
.biccamera-floor-table td {
  border-top: 1px solid var(--black);
  padding: 16px 32px 16px 8px;
  text-align: left;
  vertical-align: top;
}
.biccamera-floor-table tr:first-child td {
  border-top: none;
}
.biccamera-floor-table th,
.biccamera-floor-table td {
  border-right: 1px solid var(--black);
}
.biccamera-floor-table th:last-child,
.biccamera-floor-table td:last-child {
  border-right: none;
}
.biccamera-floor-table td:nth-child(1),
.biccamera-floor-table td:nth-child(2),
.biccamera-floor-table td:nth-child(3) {
  white-space: nowrap;
}
.biccamera-floor-table__caption {
  width: 100%;
  max-width: 980px;
  margin: 4px auto 0;
  font-size: min(1.17vw, 16px);
  word-break: auto-phrase;
  text-align: right;
}
/* テスト */
.biccamera-products {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.biccamera-product-card {
  background: linear-gradient(135deg, #fff 70%, #ffe5db 100%);
  border-radius: 14px;
  padding: 1.5rem 2rem 2rem 2rem;
  width: 340px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #f3d2c2;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.biccamera-product-card:hover {
  box-shadow: 0 8px 32px rgba(233, 77, 26, 0.13);
  transform: translateY(-4px) scale(1.02);
}
.biccamera-product-card .product-label {
  background: #e94d1a;
  color: #fff;
  font-size: 1rem;
  padding: 0.3em 1.1em;
  border-radius: 1em;
  margin-bottom: 0.9em;
  align-self: flex-start;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(233, 77, 26, 0.08);
}
.biccamera-product-card .product-img {
  background: #f3f3f3;
  width: 240px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #bbb;
  border-radius: 8px;
  margin-bottom: 1.2em;
  border: 1px solid #eee;
}
.biccamera-product-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.05rem;
  width: 100%;
  color: #444;
}
.biccamera-product-card li {
  margin-bottom: 0.4em;
}
.biccamera-events {
  width: 100%;
  max-width: 980px;
  margin: 60px auto 0;
}
/* .biccamera-events-list { */
  /* width: 100%;
  max-width: 980px;
  margin: 60px auto 0; */
  /* padding: 40px 20px; */
  /* background-color: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04); */
/* } */
.biccamera-event-block:nth-child(n + 2) {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid var(--black);
}
.biccamera-event-block .event-title {
  font-weight: 700;
  font-size: min(1.067vw, 16px);
  margin-bottom: 0.7em;
  letter-spacing: 0.04em;
}
.biccamera-event-block ul {
  margin: 0 0 0.7em 1.2em;
  padding: 0;
}
.biccamera-event-block li {
  margin-bottom: 0.25em;
  font-size: min(1.067vw, 16px);
}
.biccamera-event-imgs {
  width: 100%;
  max-width: 980px;
  margin: 40px auto 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.biccamera-event-img-wrap {
  width: calc((100% - 40px) / 3);
}
.biccamera-event-imgs img {
  display: block;
  width: 100%;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
}
.biccamera-events__caption {
  width: 100%;
  max-width: 980px;
  margin: 4px auto 0;
  font-size: min(1.17vw, 16px);
  word-break: auto-phrase;
  text-align: left;
}
/* テスト */
/* ============================================================
レスポンシブ
============================================================ */
@media screen and (max-width: 767px) {
  /* ============================================================
hero
============================================================ */
  .hero {
    height: calc(100vh - 45px);
  }
  .hero__head {
    padding-bottom: 24px;
  }
  .hero__img img {
    height: 100%;
    object-fit: cover;
  }
  .hero__title {
    bottom: 24px;
    font-size: 3.2rem;
    line-height: 1.2;
  }
  .hero__title__inner {
    width: 100%;
    padding: 0 20px;
  }
  .hero__title-text {
    font-size: 3.2rem;
  }
  .hero__title-text::after {
    height: 24px;
    bottom: -24px;
  }
  /* ============================================================
main
============================================================ */
  main {
    background-color: #eae5d5;
    padding: 20px 0;
  }
  /* ============================================================
intro
============================================================ */
  .intro__inner {
    padding: 20px 0;
  }
  .intro__title {
    font-size: 20px;
  }
  .intro__text {
    margin-top: 8px;
    font-size: 14px;
  }
  /* ============================================================
content
============================================================ */
  .content {
    padding: 40px 0;
  }
  .content-top {
    display: flex;
    flex-direction: column;
  }
  .content-top__text {
    font-size: 16px;
  }
  .content-top__meta {
    width: 100%;
    gap: 4px 0;
    margin-top: 8px;
  }
  .content-top__floor {
    font-size: 2.8rem;
    padding-right: 8px;
  }
  .content-top__map {
    padding: 0 16px 0 8px;
  }
  .content-top__map-icon {
    font-size: 2rem;
  }
  .content-bottom__box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
  }
  .content-bottom__col {
    width: 100%;
  }
  .content-bottom__box__text {
    font-size: 18px;
  }
  .content-bottom__img {
    width: 100%;
  }
  .content-bottom__box__text--bg {
    width: 100%;
  }

  /*  */
  .content-main {
    margin-top: 16px;
    display: flex;
    flex-direction: column-reverse;
    gap: 8px;
  }
  .content-main-col {
    width: 100%;
  }
  .content-main-left {
    margin-top: 16px;
  }
  .content-main-left__img-caption {
    font-size: 13px;
  }
  .content-main-left__img:nth-of-type(n + 2) {
    margin-top: 8px;
  }
  .content-main-right__title--main {
    font-size: 16px;
  }
  .content-main-right__title--sub {
    font-size: 14px;
  }
  .content-main-right__text {
    margin-top: 10px;
    font-size: 14px;
  }
  .content-main-right__box {
    margin-top: 16px;
    padding: 16px;
  }
  .content-main-right__box__title,
  .content-bottom__box__title {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .content-main-right__box__text {
    font-size: 16px;
    margin-bottom: 4px;
  }
  .content-main-right__box__text--em {
    font-size: 17px;
  }
  .content-main-right__offer {
    font-size: 14px;
  }
  .content-main-right__link,
  .content-bottom__link {
    font-size: 14px;
  }
  /* .content-main-right__link::after {
    content: "→";
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    font-size: 1.7rem;
    color: var(--white);
    background-color: var(--accent);
  } */
  .biccamera-title {
    font-size: 16px;
  }
  /* .biccamera-mainimg-wrap {
    width: 100%;
    margin: 20px auto 0;
  } */
  .biccamera-logo-wrap {
    width: 80%;
    margin: 0 auto 20px;
  }
  .biccamera-desc {
    width: 100%;
    padding: 0 20px;
    font-size: 14px;
  }
  .biccamera-gallery {
    width: 100%;
    margin: 40px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  .biccamera-gallery-img-wrap {
    width: 100%;
  }
  .biccamera-section-title {
    margin: 60px auto 0;
    font-size: 18px;
  }
  .biccamera-section-text {
    margin: 12px auto 0;
    font-size: 16px;
  }
  .biccamera-table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .biccamera-floor-table {
    table-layout: fixed;
    min-width: 1100px;
    width: 100%;
    font-size: 16px;
  }
  .biccamera-floor-table th:nth-child(1) {
    width: 180px;
  }
  .biccamera-floor-table th:nth-child(2) {
    width: 300px;
  }
  .biccamera-floor-table th:nth-child(3) {
    width: 260px;
  }
  .biccamera-floor-table th:nth-child(4) {
    width: 360px;
  }
  .biccamera-floor-table__caption {
    font-size: 13px;
    text-align: left;
  }
  .biccamera-events-list {
    padding: 0;
    margin: 40px auto 0;
  }
  .biccamera-event-block .event-title {
    font-size: 16px;
    margin-bottom: 0.5em;
  }
  .biccamera-event-block li {
    font-size: 14px;
  }
  .biccamera-event-imgs {
    gap: 12px;
    margin: 20px auto 0;
    flex-wrap: wrap;
  }
  .biccamera-event-img-wrap {
    width: 100%;
  }
  .biccamera-events__caption {
    font-size: 13px;
    text-align: left;
  }
}
