@charset "utf-8";
/* CSS Document */
.mv_inner {
  position: relative;
}
.mv_inner::after {
  display: block;
  position: absolute;
  bottom: -1px;
  right: 0;
  content: "";
  background: url("/assets/img/top/mv_deco.png") no-repeat center center / cover;
  width: 50%;
  aspect-ratio: 683/214;
}
.mv_img {
  display: block;
  background-image: url("/assets/img/top/mv_01.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 90vh;
}
.mv_img_01 {
  background-image: url("/assets/img/top/mv_01.jpg");
}
.mv_img_02 {
  background-image: url("/assets/img/top/mv_02.jpg");
}
@media screen and (max-width: 768px) {
  .mv_inner::after {
    background-image: url("/assets/img/top/mv_deco_sp.png");
    background-size: contain;
    background-position: bottom;
    width: 100%;
    aspect-ratio: 750 / 193;
    bottom: 0;
  }
  .mv_img {
    height: 48vh;
  }
}
.floating_densyoku {
  position: fixed;
  z-index: 1;
  top: 25%;
  right: 2vw;
  height: auto;
}
.floating_densyoku:after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 2px;
  width: 236px;
  height: 169px;
  border-radius: 10px;
  background: #fff;
  z-index: -1;
}
.floating_densyoku a {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  background: url("/assets/img/top/banner_densyoku.png") no-repeat center center / cover;
  width: 253px;
  padding: 5px 15px 0 0;
  aspect-ratio: 253/186;
}
.floating_densyoku_text {
  text-align: center;
  color: #fff;
  text-shadow: 1px 1px 0 #be00ff, -1px 1px 0 #be00ff, 1px -1px 0 #be00ff, -1px -1px 0 #be00ff;
  font-weight: 700;
  line-height: 1.28;
  font-size: 28px;
}
.floating_densyoku_text span {
  display: block;
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .floating_densyoku {
    display: none;
    right: -100vw;
  }
}
.lead {
  position: relative;
  text-align: center;
}
.lead::after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  background-color: #fff;
  background-image: radial-gradient(circle, #a360a0 1.5px, transparent 1.5px);
  background-position: 0 0;
  background-size: 12px 1px;
  position: absolute;
}
.lead_innner {
  padding: 15px 15px;
}
.lead_innner p {
  color: #a360a0;
  font-feature-settings: normal;
  font-weight: 700;
  line-height: 1.5em;
  font-size: 20px;
}
.lead_innner p span {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .lead_innner {
    padding: 2.66vw 2vw 2vw;
  }
  .lead_innner p {
    font-size: calc(36vw/7.5);
		line-height: 1.38;
  }
}
/*
	コンテンツ共通
*/
.section {
  padding: 150px 0 30px;
	margin-top: -90px;
}
.section_heading {
  margin: 0 auto 25px;
  max-width: 514px;
  text-align: center;
}
.section_heading > span {
  display: block;
}
.section_heading ._en {
  border-bottom: 1px solid #a360a0;
  padding-bottom: 10px;
  color: #969696;
  line-height: 1;
  font-weight: 500;
  font-size: 52px;
}
.section_heading ._en ._small {
  font-size: .7em;
}
.section_heading ._ja {
  line-height: 1;
  font-weight: 500;
  font-size: 18px;
  padding-top: .77em;
}
@media screen and (max-width: 768px) {
  .section {
    padding: calc(220vw / 7.5) 0 calc(40vw / 7.5);
		margin-top: calc(-140vw/7.5);
  }
  .section_heading {
    margin-bottom: calc(30vw / 7.5);
    max-width: calc(514vw / 7.5);
  }
  .section_heading ._en {
    padding-bottom: calc(15vw / 7.5);
    font-size: calc(64vw / 7.5);
  }
  .section_heading ._ja {
    font-size: calc(32vw / 7.5);
    padding-top: .81em
  }
}
/*
	トピックス
*/
.topics_inner {
  padding: 0 15px;
}
.topics_card_area {
  padding: 0 21px;
  max-width: 1060px;
  margin: 0 auto;
  box-sizing: border-box;
}
.topics_card_row {
  position: relative;
}
.prev-arrow, .next-arrow {
  position: absolute;
  top: 45%;
  width: 18px;
  cursor: pointer;
  transition: .3s;
}
.prev-arrow:hover, .next-arrow:hover {
  opacity: .6;
}
.prev-arrow {
  left: -21px;
}
.next-arrow {
  right: -21px;
}
.topics_card {
  position: relative;
  text-align: center;
  background: #f5e6f5;
  margin: 0 15px;
}
.topics_card_meta {
  color: #646464;
  background: #fff;
  line-height: 1;
  font-weight: 600;
  font-size: 18px;
  padding-bottom: 10px;
}
.topics_card_img {
  aspect-ratio: 224/156;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.topics_card_text {
  display: flex;
  flex-direction: column;
  padding: 10px 5px;
  gap: 8px;
  line-height: 1.5;
}
.topics_card_fs01 {
  font-weight: 700;
  font-size: 18px;
}
.topics_card_fs02 {
  font-weight: 400;
  font-size: 16px;
}
.topics_card_fs03 {
  line-height: 1.6;
  font-weight: 500;
  font-size: 15px;
}
.topics_card_fs04 {
  font-weight: 500;
  font-size: 14px;
}
.topics_card a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  opacity: 0;
}
.topics_card a:hover {
  opacity: .4;
}
.topics_card_area .slick-track {
  display: flex;
}
.topics_card_area .slick-slide {
  height: auto !important;
}
.topics_btn {
  margin-top: 40px;
  text-align: center;
}
.topics_btn a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  background: #fafaf0;
  color: #969696;
  box-shadow: 0 0 12px 4px rgb(180, 180, 165);
  border-radius: 6px;
  line-height: 1;
  font-weight: 600;
  font-size: 20px;
  padding: .35em .5em .3em;
  min-width: 192px;
}
@media screen and (max-width: 768px) {
  .topics_inner {
    padding: 0 2vw;
  }
  .topics_card_area {
    padding: 0 calc(20vw / 7.5);
    max-width: calc(637vw / 7.5);
  }
  .prev-arrow, .next-arrow {
    top: 45%;
    width: calc(18vw / 7.5);
  }
  .prev-arrow {
    left: calc(-20vw / 7.5);
  }
  .next-arrow {
    right: calc(-20vw / 7.5);
  }
  .prev-arrow, .next-arrow {
    top: 45%;
    width: calc(18vw / 7.5);
  }
  .topics_card {
    margin: 0 calc(18vw / 7.5);
  }
  .topics_card_meta {
    font-size: calc(50vw / 7.5);
    padding-bottom: calc(20vw / 7.5);
  }
  .topics_card_text {
    padding: calc(30vw / 7.5) calc(5vw / 7.5);
    gap: calc(9vw / 7.5);
  }
  .topics_card_fs01 {
    font-size: calc(48vw / 7.5);
  }
  .topics_card_fs02 {
    font-size: calc(42vw / 7.5);
  }
  .topics_card_fs03 {
    line-height: 1.44;
    font-size: calc(42vw / 7.5);
  }
  .topics_card_fs04 {
    font-size: calc(37vw / 7.5);
  }
  .topics_btn {
    margin-top: calc(80vw / 7.5);
  }
  .topics_btn a {
    box-shadow: 0 0 calc(16vw / 7.5) calc(5vw / 7.5) rgb(180, 180, 165);
    border-radius: calc(8vw / 7.5);
    font-size: calc(32vw / 7.5);
    min-width: calc(318vw / 7.5);
  }
}
/*
	店舗（会員）紹介
*/
.shop_bg {
  background: #f5e6f5;
}
.shop_inner {
  box-sizing: content-box;
  margin: 0 auto;
  padding: 45px 15px;
  max-width: 1230px;
}
.partners_list {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.partners_list_item {
  overflow: hidden;
  position: relative;
}
.partners_list_link:hover {
  opacity: 1;
}
.partners_list_bg {
  display: block;
  background-image: url("/assets/img/top/img_shop_01.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 404 / 243;
  transition: .3s;
}
a.partners_list_link:hover .partners_list_bg {
  transform: scale(1.1);
}
.partners_list_title {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.partners_list_title ._en {
  display: block;
  color: #fff;
  text-shadow: 1px 1px 0 #231815, -1px 1px 0 #231815, 1px -1px 0 #231815, -1px -1px 0 #231815;
  font-weight: 700;
  line-height: 1.125;
  font-size: 40px;
}
.partners_list_title ._ja {
  display: inline-block;
  color: #fff;
  background: #323250;
  white-space: nowrap;
  box-sizing: border-box;
  border-radius: 4px;
  font-weight: 600;
  line-height: 1.375em;
  font-size: 16px;
  min-width: 92px;
  padding: 0 .25em;
}
.shop_btn {
  margin: 24px auto 0;
  text-align: center;
}
.shop_btn a {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  background: #a360a0;
  color: #fff;
  font-weight: 600;
  gap: .35em;
  line-height: 1;
  font-size: 32px;
  padding: 0 50px;
  min-width: 627px;
  min-height: 50px;
}
.shop_btn a span {
  font-size: .5em;
}
.shop_btn a::before, .shop_btn a::after {
  content: "";
  pointer-events: none;
  background: #f5e6f5;
  position: absolute;
  width: 0px;
  height: 0px;
  border: 25px solid;
}
.shop_btn a::before {
  left: 0;
  border-color: #a360a0 #a360a0 #a360a0 #f5e6f5;
}
.shop_btn a::after {
  right: 0;
  border-color: #a360a0 #f5e6f5 #a360a0 #a360a0;
}
@media screen and (max-width: 768px) {
  .shop_inner {
    padding: calc(30vw / 7.5) 0;
    max-width: none;
  }
  .partners_list {
    grid-template-columns: repeat(2, 1fr);
    gap: calc(20vw / 7.5);
  }
  .partners_list_bg {
    aspect-ratio: 365 / 223;
  }
  .partners_list_title ._en {
    margin-bottom: calc(3vw / 7.5);
    line-height: 1.07;
    font-size: calc(43vw / 7.5);
  }
  .partners_list_title ._ja {
    border-radius: calc(4vw / 7.5);
    line-height: 1em;
    font-size: calc(23vw / 7.5);
    min-width: calc(130vw / 7.5);
    padding: .2em;
  }
  .shop_btn {
    margin-top: calc(30vw / 7.5);
  }
  .shop_btn a {
    gap: .42em;
    font-size: calc(43vw / 7.5);
    padding: 0 calc(80vw / 7.5);
    min-width: calc(640vw / 7.5);
    min-height: calc(80vw / 7.5);
  }
  .shop_btn a span {
    font-size: .65em;
  }
  .shop_btn a::before, .shop_btn a::after {
    border-width: calc(40vw / 7.5);
  }
}
/*
	エスプラナード赤坂商店街振興組合について
*/
.about_bg {
  background: url("/assets/img/top/bg_about_us.jpg") no-repeat center center / cover;
}
.about_inner {
  padding: 86px 15px 82px;
  max-width: 950px;
  margin: 0 auto;
}
.about_heading {
  text-align: center;
  font-weight: 700;
  line-height: 1;
  font-size: 32px;
  margin-bottom: 42px;
}
.about_text {
  text-align: center;
  color: #231815;
  font-weight: 600;
  line-height: 2.4;
  font-size: 20px;
}
.about_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 54px;
  gap: 35px;
}
.about_list_item {
  background: #faebeb;
  width: calc((100% - 70px)/3);
  border-radius: 6px;
}
.about_list_item a {
  display: block;
  background: #faebeb;
  color: #787878;
  text-align: center;
  border-radius: 6px;
  box-shadow: 0 0 12px 4px rgb(180, 170, 190);
  font-weight: 700;
  line-height: 1;
  font-size: 20px;
  padding: .5em .25em;
}
@media screen and (max-width: 768px) {
  .about_bg {
    background-image: url("/assets/img/top/bg_about_us_sp.jpg");
  }
  .about_inner {
    padding: calc(45vw / 7.5) 2vw calc(55vw / 7.5);
    max-width: none;
  }
  .about_heading {
    font-size: calc(40vw / 7.5);
    margin-bottom: calc(32vw / 7.5);
  }
  .about_text {
    line-height: 1.91;
    font-size: calc(27vw / 7.5);
  }
  .about_list {
    width: calc(496vw / 7.5);
    flex-direction: column;
    margin: calc(56vw / 7.5) auto 0;
    gap: calc(30vw / 7.5);
  }
  .about_list_item {
    width: 100%;
    border-radius: calc(10vw / 7.5);
  }
  .about_list_item a {
    border-radius: calc(10vw / 7.5);
    box-shadow: 0 0 calc(16vw / 7.5) calc(5vw / 7.5) rgb(180, 170, 190);
    font-size: calc(32vw / 7.5);
  }
}
/*
	電車で車で、好アクセス
*/
.access_inner {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 987px;
}
@media screen and (max-width: 768px) {
  .access_inner {
    padding: 0;
    max-width: none;
  }
}
/*
	リンク集
*/
.banner {
  margin-top: 50px;
}
.banner_inner {
  padding: 0 15px;
  margin: 0 auto;
  max-width: 1000px;
}
.banner_list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 0;
}
.banner_item_01 {
  width: 28.12%;
  margin-right: 8%;
}
.banner_item_02 {
  width: 27.82%;
  margin-right: 7.3%;
}
.banner_item_03 {
  width: 28.63%;
}
.banner_item_04 {
  width: 13.70%;
  margin-right: 6.5%;
}
.banner_item_05 {
  width: 17.78%;
  margin-right: 8.2%;
}
.banner_item_06 {
  width: 23.50%;
  margin-right: 7%;
}
.banner_item_07 {
  width: 13.06%;
}
@media screen and (max-width: 768px) {
  .banner {
    margin-top: calc(30vw / 7.5);
  }
  .banner_inner {
    padding: 0 2vw;
    max-width: none;
  }
  .banner_list {
    gap: calc(25vw / 7.5) 0;
  }
  .banner_item_01 {
    width: calc(281vw / 7.5);
    margin-right: calc(80vw / 7.5);
  }
  .banner_item_02 {
    width: calc(278vw / 7.5);
    margin-right: 0;
  }
  .banner_item_03 {
    width: calc(272vw / 7.5);
    margin-right: calc(34vw / 7.5);
  }
  .banner_item_04 {
    width: calc(130vw / 7.5);
    margin-right: calc(40vw / 7.5);
  }
  .banner_item_05 {
    width: calc(169vw / 7.5);
    margin-right: 0;
  }
  .banner_item_06 {
    width: calc(235vw / 7.5);
    margin-right: calc(70vw / 7.5);
  }
  .banner_item_07 {
    width: calc(130vw / 7.5);
    margin-right: 0;
  }
}