@charset "UTF-8";
/* ============================== */
/* MARUNOUCHI AUTUMN COLLECTION 2020 */
/* V1.0 | 20200827 */
/* ============================== */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap");
/* CSS RESET */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.bgc--maru {
  background-color: #0064BE;
}

.bgc--shinmaru {
  background-color: #BE003C;
}

.bgc--oazo {
  background-color: #0ABEDC;
}

.bgc--brick {
  background-color: #6E5028;
}

.bgc--iiyo {
  background-color: #009006;
}

.bgc--tokia {
  background-color: #E63296;
}

.bgc--nijubashi {
  background-color: #A0916A;
}

.bgc--terrace {
  background-color: #796BAF;
}

.bgc--terracem {
  background-color: #F08300;
}

.bgc--areay {
  background-color: #D35D14;
}

.bgc--aream {
  background-color: #D35D14;
}

.bgc--otemachi {
  background-color: #E55858;
}

/* 初期設定 */
html, body {
  font-size: 62.5%;
  font-family: 'Noto Sans JP', sans-serif;
}

* {
  box-sizing: border-box;
}

img {
  width: auto;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
}

@media (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}

@media (max-width: 768px) {
  .sp {
    display: initial;
  }
}

/* MODULES */
.area-map {
  margin-top: 4rem;
}

.area-map__ttl {
  font-size: 2.4rem;
  line-height: 1.6;
  color: #969696;
  text-align: center;
}

.area-map__link {
  color: inherit;
  display: inline-block;
  padding-bottom: 4.5rem;
  transition: 0.3s ease all;
  position: relative;
  z-index: 0;
}

.area-map__link:hover {
  opacity: 0.6;
}

.area-map__link::before {
  display: block;
  content: "";
  width: 4rem;
  height: 4rem;
  border-radius: 100%;
  border: 1px solid #646464;
  position: absolute;
  right: 50%;
  bottom: 0;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
  z-index: -1;
}

.area-map__link::after {
  display: block;
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  border-right: 1px solid #646464;
  border-bottom: 1px solid #646464;
  position: absolute;
  right: 50%;
  bottom: 20%;
  -webkit-transform: translateX(50%) rotate(45deg);
  transform: translateX(50%) rotate(45deg);
  z-index: -1;
}

.building {
  margin-top: 6.3rem;
}

@media (max-width: 768px) {
  .building {
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .building-pc {
    display: none;
  }
}

.building-pc__list {
  display: flex;
  flex-wrap: wrap;
}

.building-pc__item {
  width: 100%;
  max-width: 19.04%;
  margin-bottom: 0.8rem;
}

.building-pc__item:not(:nth-child(5n)) {
  margin-right: 1.2%;
}

.building-pc__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 5.8rem;
  background-color: #969696;
  border-style: solid;
  border-width: 0.4rem;
  border-color: transparent;
  border-radius: 0.5rem;
  text-align: center;
  color: #FFF;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2;
  transition: 0.3s ease all;
}

@media (max-width: 840px) {
  .building-pc__link {
    font-size: 1.6rem;
  }
}

.building-pc__link:hover {
  background-color: #FFF !important;
}

.building-pc__link--maru:hover {
  color: #0064BE !important;
  border-color: #0064BE;
}

.building-pc__link--shinmaru:hover {
  color: #BE003C !important;
  border-color: #BE003C;
}

.building-pc__link--oazo:hover {
  color: #0ABEDC !important;
  border-color: #0ABEDC;
}

.building-pc__link--brick:hover {
  color: #6E5028 !important;
  border-color: #6E5028;
}

.building-pc__link--iiyo:hover {
  color: #009006 !important;
  border-color: #009006;
}

.building-pc__link--tokia:hover {
  color: #E63296 !important;
  border-color: #E63296;
}

.building-pc__link--nijubashi:hover {
  color: #A0916A !important;
  border-color: #A0916A;
}

.building-pc__link--terrace:hover {
  color: #796BAF !important;
  border-color: #796BAF;
}

.building-pc__link--terracem:hover {
  color: #F08300 !important;
  border-color: #F08300;
}

.building-pc__link--areay:hover {
  color: #D35D14 !important;
  border-color: #D35D14;
}

.building-pc__link--aream:hover {
  color: #D35D14 !important;
  border-color: #D35D14;
}

.building-pc__link--otemachi:hover {
  color: #E55858 !important;
  border-color: #E55858;
}

.building-pc__link--active.building-pc__link--maru {
  background-color: #0064BE;
  border-color: #0064BE;
}

.building-pc__link--active.building-pc__link--shinmaru {
  background-color: #BE003C;
  border-color: #BE003C;
}

.building-pc__link--active.building-pc__link--oazo {
  background-color: #0ABEDC;
  border-color: #0ABEDC;
}

.building-pc__link--active.building-pc__link--brick {
  background-color: #6E5028;
  border-color: #6E5028;
}

.building-pc__link--active.building-pc__link--iiyo {
  background-color: #009006;
  border-color: #009006;
}

.building-pc__link--active.building-pc__link--tokia {
  background-color: #E63296;
  border-color: #E63296;
}

.building-pc__link--active.building-pc__link--nijubashi {
  background-color: #A0916A;
  border-color: #A0916A;
}

.building-pc__link--active.building-pc__link--terrace {
  background-color: #796BAF;
  border-color: #796BAF;
}

.building-pc__link--active.building-pc__link--terracem {
  background-color: #F08300;
  border-color: #F08300;
}

.building-pc__link--active.building-pc__link--areay {
  background-color: #D35D14;
  border-color: #D35D14;
}

.building-pc__link--active.building-pc__link--aream {
  background-color: #D35D14;
  border-color: #D35D14;
}

.building-pc__link--active.building-pc__link--otemachi {
  background-color: #E55858;
  border-color: #E55858;
}

.building-sp {
  display: none;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .building-sp {
    display: block;
  }
}

.building-sp #building-sp__menu {
  display: none;
}

.building-sp #building-sp__menu:checked ~ .building-sp__menu--list .building-sp__menu--item {
  height: 4.6rem;
  transition: 0.3s ease all;
}

.building-sp #building-sp__menu:checked ~ .building-sp__menu::after {
  -webkit-transform: translateY(50%) rotate(-45deg);
  transform: translateY(50%) rotate(-45deg);
  transition: 0.3s ease all;
}

.building-sp__menu {
  display: block;
  width: 100%;
  font-size: 2rem;
  padding: 1.5rem 3rem;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  position: relative;
  cursor: pointer;
}

.building-sp__menu::after {
  display: block;
  content: "";
  width: 1rem;
  height: 1rem;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  position: absolute;
  bottom: 50%;
  right: 2rem;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: translateY(50%) rotate(135deg);
  transform: translateY(50%) rotate(135deg);
  transition: 0.3s ease all;
}

.building-sp__menu--maru {
  background-color: #0064BE;
}

.building-sp__menu--shinmaru {
  background-color: #BE003C;
}

.building-sp__menu--oazo {
  background-color: #0ABEDC;
}

.building-sp__menu--brick {
  background-color: #6E5028;
}

.building-sp__menu--iiyo {
  background-color: #009006;
}

.building-sp__menu--tokia {
  background-color: #E63296;
}

.building-sp__menu--nijubashi {
  background-color: #A0916A;
}

.building-sp__menu--terrace {
  background-color: #796BAF;
}

.building-sp__menu--terracem {
  background-color: #F08300;
}

.building-sp__menu--areay {
  background-color: #D35D14;
}

.building-sp__menu--aream {
  background-color: #D35D14;
}

.building-sp__menu--otemachi {
  background-color: #E55858;
}

.building-sp__menu--item {
  height: 0;
  overflow: hidden;
  transition: 0.3s ease all;
}

.building-sp__menu--link {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: 1.8rem;
  line-height: 1.4;
  color: #646464;
  padding: 1rem;
  transition: 0.3s ease all;
  border-left: 1px solid #CCC;
  border-right: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  text-align: center;
}

.building-sp__menu--link:hover {
  color: #FFF;
}

.building-sp__menu--link--maru:hover {
  background-color: #0064BE;
}

.building-sp__menu--link--shinmaru:hover {
  background-color: #BE003C;
}

.building-sp__menu--link--oazo:hover {
  background-color: #0ABEDC;
}

.building-sp__menu--link--brick:hover {
  background-color: #6E5028;
}

.building-sp__menu--link--iiyo:hover {
  background-color: #009006;
}

.building-sp__menu--link--tokia:hover {
  background-color: #E63296;
}

.building-sp__menu--link--nijubashi:hover {
  background-color: #A0916A;
}

.building-sp__menu--link--terrace:hover {
  background-color: #796BAF;
}

.building-sp__menu--link--terracem:hover {
  background-color: #F08300;
}

.building-sp__menu--link--areay:hover {
  background-color: #D35D14;
}

.building-sp__menu--link--aream:hover {
  background-color: #D35D14;
}

.building-sp__menu--link--otemachi:hover {
  background-color: #E55858;
}

.container {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container__wrap {
  width: 100%;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

.footer {
  margin-top: 3rem;
  padding: 3rem;
  background-color: #E4FBFD;
}

.footer__wrap {
  width: 100%;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.footer-contact {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: bold;
}

.footer-copyright {
  margin-top: 0;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.4;
}

.footer-note {
  margin-top: 3rem;
}

.footer-note-list__item {
  font-size: 1.2rem;
  line-height: 1.5;
}

.footer-note-list__item::before {
  content: "※";
}

.hero {
  width: 100%;
  background-color: #1DADB1;
  padding-left: 4rem;
  padding-right: 4rem;
  padding-top: 4rem;
}

@media (max-width: 768px) {
  .hero {
    padding: 0;
  }
}

.hero__wrap {
  width: 100%;
  max-width: 127rem;
  margin-left: auto;
  margin-right: auto;
}

.hero img {
  width: 100%;
  height: auto;
  max-width: initial;
}

@media (max-width: 768px) {
  .hero img {
    width: 110%;
    margin-left: -5%;
    margin-right: -5%;
  }
}

.hero-bnr {
  height: 9rem;
  background: url("../img/bnr_bg.svg") center left repeat-x;
  background-size: contain;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 3rem;
  padding-right: 3rem;
}

@media (max-width: 768px) {
  .hero-bnr {
    height: 5.5rem;
  }
}

.hero-note {
  margin-top: 1rem;
  width: 100%;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

.hero-note__text {
  font-size: 1.2rem;
  text-align: right;
  color: #646464;
}

@media (max-width: 768px) {
  .hero-note__text {
    font-size: 1rem;
    text-align: center;
  }
}

.pagetop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}

.pagetop__link {
  transition: 0.3s ease all;
}

.pagetop__link:hover {
  opacity: 0.6;
}

.sale-shop-note {
  margin-top: 3rem;
}

.sale-shop-note-list {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem 1rem;
}

@media (max-width: 768px) {
  .sale-shop-note-list {
    justify-content: flex-start;
    flex-direction: column;
  }
}

.sale-shop-note-list + .sale-shop-note-list {
  margin-top: 1.3rem;
}

.sale-shop-note-list__item {
  display: flex;
  align-items: center;
  flex: 1;
}

.sale-shop-note-list__wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .sale-shop-note-list__wrap {
    justify-content: flex-start;
    flex-direction: column;
  }
}

.sale-shop-note-list__member {
  display: flex;
  align-items: center;
}

.sale-shop-note-list__icon {
  width: 4rem;
  margin-right: 0.5rem;
}

@media (max-width: 768px) {
  .sale-shop-note-list__icon {
    width: 3.2rem;
  }
}

.sale-shop-note-list__text {
  font-size: 1.8rem;
  font-weight: bold;
  white-space: nowrap;
  color: #646464;
}

@media (max-width: 768px) {
  .sale-shop-note-list__text {
    font-size: 1.6rem;
  }
}

.sale-shop-note-list__text::before {
  content: "……";
}

.sale-shop-note-list__note {
  display: flex;
  align-items: center;
}

.sale-shop-note-list__note::before {
  content: "※";
  font-size: 1.5rem;
  color: #646464;
}

@media (max-width: 768px) {
  .sale-shop-note-list__note::before {
    font-size: 1.2rem;
  }
}

.sale-shop-note-list__note--icon {
  width: 2.8rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

@media (max-width: 768px) {
  .sale-shop-note-list__note--icon {
    width: 2rem;
  }
}

.sale-shop-note-list__note--text {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #646464;
}

@media (max-width: 768px) {
  .sale-shop-note-list__note--text {
    font-size: 1.2rem;
  }
}

.sale-shop__body {
  margin-top: 6rem;
}

.sale-shop__building-name {
  color: #FFF;
  font-size: 2rem;
  padding: 1rem 1rem 0.6rem;
  margin-top: 3rem;
  border-radius: 1rem 1rem 0 0;
}

.sale-shop__building-name--maru {
  background-color: #0064BE;
}

.sale-shop__building-name--shinmaru {
  background-color: #BE003C;
}

.sale-shop__building-name--oazo {
  background-color: #0ABEDC;
}

.sale-shop__building-name--brick {
  background-color: #6E5028;
}

.sale-shop__building-name--iiyo {
  background-color: #009006;
}

.sale-shop__building-name--tokia {
  background-color: #E63296;
}

.sale-shop__building-name--nijubashi {
  background-color: #A0916A;
}

.sale-shop__building-name--terrace {
  background-color: #796BAF;
}

.sale-shop__building-name--terracem {
  background-color: #F08300;
}

.sale-shop__building-name--areay {
  background-color: #D35D14;
}

.sale-shop__building-name--aream {
  background-color: #D35D14;
}

.sale-shop__building-name--otemachi {
  background-color: #E55858;
}

.sale-shop__list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 2rem;
  margin-top: 2rem;
}

.sale-shop__item {
  flex: 0 0 calc(calc(100% - 2rem) / 2);
  border: 1px solid #C3C3C3;
}

@media (max-width: 768px) {
  .sale-shop__item {
    flex: auto;
    width: 100%;
  }
}

.sale-shop-header {
  padding: 1.5rem 2.2rem 1.5rem 6.5rem;
  position: relative;
  cursor: pointer;
  transition: 0.3s ease all;
}

.sale-shop-header:hover {
  opacity: 0.6;
}

.sale-shop-header::before {
  display: block;
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 100%;
  border: 1px solid #E470A5;
  position: absolute;
  left: 2.2rem;
  bottom: 40%;
  -webkit-transform: translateY(40%);
  transform: translateY(40%);
}

.sale-shop-header::after {
  display: block;
  content: "";
  width: 1rem;
  height: 1rem;
  border-top: 1px solid #E470A5;
  border-right: 1px solid #E470A5;
  position: absolute;
  left: 2.7rem;
  bottom: 42.5%;
  -webkit-transform: translateY(42.5%) rotate(45deg);
  transform: translateY(42.5%) rotate(45deg);
}

.sale-shop__shop-name {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  color: #646464;
}

@media (max-width: 768px) {
  .sale-shop__shop-name {
    font-size: 1.6rem;
  }
}

.sale-shop__shop-name a {
  color: inherit;
}

.sale-shop__shop-name a::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: auto;
  background-color: transparent;
}

.sale-shop__shop-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.sale-shop__shop-info-item {
  font-size: 1.4rem;
  line-height: 1.4;
  color: #646464;
}

@media (max-width: 768px) {
  .sale-shop__shop-info-item {
    font-size: 1.2rem;
  }
}

.sale-shop__shop-info-item:not(:last-child)::after {
  content: "／";
}

.sale-shop-item-header {
  display: flex;
}

.sale-shop-item__ttl {
  flex: 1;
  display: flex;
  justify-content: space-between;
  gap: 0 2rem;
  align-items: center;
  background-color: #CCC;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (max-width: 768px) {
  .sale-shop-item__ttl {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.sale-shop-item__ttl--present {
  background-color: #E9546B;
}

.sale-shop-item__ttl--service {
  background-color: #ED8114;
}

.sale-shop-item__ttl--point {
  background-color: #2E68B1;
}

.sale-shop-item__ttl--event {
  background-color: #796BAF;
}

.sale-shop-item__ttl--off {
  background-color: #E60012;
}

.sale-shop-item__wrap {
  padding: 1rem 2rem 2rem;
}

.sale-shop-item__text {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 500;
  color: #646464;
}

@media (max-width: 768px) {
  .sale-shop-item__text {
    font-size: 1.6rem;
  }
}

.sale-shop-item__text strong {
  font-size: 2.8rem;
  font-weight: 900;
}

@media (max-width: 768px) {
  .sale-shop-item__text strong {
    font-size: 2.2rem;
  }
}

.sale-shop-item__text strong.present {
  color: #E9546B;
}

.sale-shop-item__text strong.service {
  color: #ED8114;
}

.sale-shop-item__text strong.point {
  color: #2E68B1;
}

.sale-shop-item__text strong.event {
  color: #796BAF;
}

.sale-shop-item__text strong.off {
  color: #E60012;
}

.sale-shop-item__btn {
  text-align: right;
  margin-top: 1rem;
}

.sale-shop-item__btn + .sale-shop-item__text {
  margin-top: 2rem;
}

.sale-shop-item__btn-link {
  display: inline-block;
  font-size: 1.5rem;
  color: #646464;
  background-color: #FFF066;
  padding: 0.8rem 4rem 0.8rem 1rem;
  border-radius: calc(infinity * 1px);
  position: relative;
  transition: .3s ease all;
}

.sale-shop-item__btn-link::before {
  display: block;
  content: "";
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 100%;
  border: 1px solid #E470A5;
  position: absolute;
  right: 1rem;
  bottom: 50%;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.sale-shop-item__btn-link::after {
  display: block;
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1px solid #E470A5;
  border-right: 1px solid #E470A5;
  position: absolute;
  right: 1.7rem;
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(45deg);
  transform: translateY(50%) rotate(45deg);
}

.sale-shop-item__btn-link:hover {
  opacity: 0.6;
}

.sale-shop-item__note {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #646464;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .sale-shop-item__note {
    font-size: 1.2rem;
  }
}

.sale-shop-icon {
  display: flex;
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}

.sale-shop-icon__item {
  width: 4rem;
}

.sale-shop-category {
  flex: 1;
  font-size: 1.4rem;
  font-weight: bold;
  color: #FFF;
  display: flex;
  justify-content: flex-end;
  gap: 0 0.5em;
}

@media (max-width: 768px) {
  .sale-shop-category {
    font-size: 1.2rem;
  }
}

.sale-shop-category--member2 {
  font-size: 1.2rem;
}

.shop-map {
  margin-top: 8rem;
}

.shop-map__ttl {
  font-size: 2.4rem;
  line-height: 1.6;
  color: #969696;
  text-align: center;
}

@media (max-width: 768px) {
  .shop-map__ttl {
    font-size: 2rem;
  }
}

.shop-map--img {
  display: block;
  margin-top: 2rem;
}

/* PAGE */
/* LAYOUT */
