/* 基本スタイル */


@charset "UTF-8";

html{
    font-size: 62.5%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

#marunouchi_cafe_map{
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 1.6rem;
  color: #31655C;
  background-color: #FDF1E3; /* 背景のベージュ色 */
  position: relative;
}

#marunouchi_cafe_map p{
    line-height: 1.5;
} 


#marunouchi_cafe_map img{ 
    max-width:100%; 
    height:auto; 
    display:block;
    margin: auto; 
}

.container {

}

/* ヘッダー */
.main-header {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
}

.main-header .description{
    position: absolute;
    text-align: center;
    font-size: 2.5rem;
    width: 310px;
    bottom: 100px;
    left: 214px;
    color: #755D48;
}

@media screen and (max-width: 1330px) {
	.main-header .description {
		bottom: 10%;
		left: 14%;
	}	
}	

@media screen and (max-width: 1080px) {
	.main-header .description {
		left: 10%;
	}	
}



/* マップエリア */
.map-area {
    margin: 0 auto 60px;
    max-width: 1230px;
    overflow-x: auto;
    position: relative;
    cursor: grab;
    user-select: none;
    /* --- スクロールバー非表示の設定 --- */
    -ms-overflow-style: none;  /* IE, Edge用 */
    scrollbar-width: none;     /* Firefox用 */
}

/* Chrome, Safari, Googleなどのブラウザ用 */
.map-area::-webkit-scrollbar {
    display: none;
}

.map-area .map {
  width: 1556px;
  max-width: initial !important;
}

.map-placeholder{
    position: absolute;
    width: 306px;
    height: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: opacity 0.5s ease, visibility 0.5s;
    pointer-events: none;
    z-index: 10;
    opacity: 1; /* 初期状態は表示 */
    visibility: visible;
}

.map-placeholder.is-hidden {
    opacity: 0;
    visibility: hidden;
}




.shop-area-wrap{
    max-width: 1080px;
    margin: 0 auto;
}

.shop-area-intro{
    color: #31655C;
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 40px;
}


/* タブボタン */
.area-tabs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    position: -webkit-sticky; /* Safari対応 */
    position: sticky;
    top: 10px;                   
    z-index: 1000;            

}

.tab-btn {
    background-color: #755D48;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: normal;
    font-size: 3.2rem;
    width: 31%;
    height: 60px;
    line-height: 60px;
}

#area-yurakucho.tab-btn:hover,
#area-yurakucho.tab-btn.active {
    background-color: #BD89BA;
}

#area-marunouchi.tab-btn:hover,
#area-marunouchi.tab-btn.active {
    background-color: #F19001;
}

#area-otemachi.tab-btn:hover,
#area-otemachi.tab-btn.active {
    background-color: #EC6E86;
}



/* セクションタイトル */
.section-title {
    color: #31655C;
    text-align: center;
    font-size: 3rem;
    margin-bottom: 40px;
}

.grid-title {
  background: #755D48;
  text-align: center;
  color: #fff;
  font-size: 2.5rem;
  width: 100%;
  min-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 4px 0;
  font-weight: 500;
}

.grid-title.title-height-same{
    height: 80px;
}

.grid-title span{
    font-size: 2rem;
}

#section-marunouchi .grid-title{
    background-color: #F19001;
}

#section-yurakucho .grid-title{
    background-color: #BD89BA;
}

#section-otemachi .grid-title{
    background-color: #EC6E86;;
}

.shop-section {
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease; /* ふわっとさせる時間 */
}

.shop-section.is-visible {
    display: block; /* 念のためここでも指定 */
    opacity: 1;
}

.shop-section.is-active {
    display: block;     /* 存在を出す */
    opacity: 1;         /* 不透明にする */
}



/*---------------------------------
shop-grid
---------------------------------*/


.shop-grid{
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}

.shop-img{
	margin-bottom: 12px;
}

.shop-item {
  max-width: 340px;
  margin-bottom: 70px;
  width: calc(33% - 17px);
}

.shop-option{
    font-weight: normal;
}


.shop-location{
    font-weight: normal;
    margin-bottom: 20px;
}

.shop-name{
    font-size: 2.2rem;
}

.shop-link{
    color: #000;
    position: relative;
    padding-right: 30px;
}

.shop-link::after{
    content: "";
    position: absolute;
    background: url("../img/icon_link.svg") no-repeat left top;
    width: 22px;
    height: 22px;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.shop-grid-singel-wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.shop-grid-singel-wrap .shop-grid{
    display: flex;
    flex-direction: column; 
    /*flex: 1;*/    
    max-width: 340px;
    width: calc(33% - 17px);
    margin-bottom: 0;
}

.shop-grid-singel-wrap .shop-grid .shop-item {
  width: 100%;
}

.area-information{
    background: #F6D8B3;
    padding-bottom: 50px;
}

.information-title{
    font-family: 'Rubik';
    font-size: 3rem;
    font-weight: normal;
    padding: 50px 0;
    text-align: center;
}


.area-grid{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap:30px;
	max-width: 670px;
	margin: 0 auto;
	color: #000;
}

.area-item{
	width: calc(50% - 30px)
}

.area-img{
	margin-bottom: 12px;
}

.area-link{
    color: #000;
    position: relative;
    padding-right: 30px;
    text-decoration: none;
}

.area-link::after{
    content: "";
    position: absolute;
    background: url("../img/icon_link.svg") no-repeat left top;
    width: 22px;
    height: 22px;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.area-grid p{
	margin-top: 12px;
}


.main-footer{
    color: #fff;
    background: #E94739;
    padding: 40px 0 20px;
    /*min-height: 500px;*/
}

.footer-inner{
    max-width: 1080px;
    margin: 0 auto 70px;
    font-size: 1.4rem;
    font-weight: normal;
}

.footer-inner-list li{
    position: relative;
    padding-left: 20px;
}

.footer-inner-list li::before{
    content: "※";
    position: absolute;
    left: 0;
    top: 0;
}



#copyright-cafe-map{
    font-size: 1.8rem;
    text-align: center;
    font-weight: normal;
    display: block;
}

#copyright-cafe-map a{
	color: #fff;
	text-decoration: none;
}

#page-top{
    position: fixed;
    right: 2%;
    bottom: 100px;
    max-width: 80px;
    display: none; 
    z-index: 9999; 
}

 #page-top.on_footer {
    position: absolute;
    bottom: 200px;
    top: auto;
 }


/*---------------------------------
scroll
---------------------------------*/

.scroll-up {
  opacity: 0; 
  visibility: hidden;
  transform: translateY(50px);
  transition: all 1s;
}
.scroll-up.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}



.only_sp{ display: none!important; }

@media screen and (max-width: 1120px) {

    #scroll-area,
    .shop-area-wrap{
        padding: 0 30px;
    }

}	



@media screen and (max-width: 896px) {

  .only_pc{ display: none !important; }
  .only_sp{ display: block !important; }


  	.main-header {
  		margin-bottom: 20px;
  	}

    .main-header .description{
        position: static;
        font-size: 1.8rem;
        width: 100%;
    }


    .map-area .map {
      width: 1240px;
      max-width: initial !important;
    }


    .shop-area-intro {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .area-select {
        position: -webkit-sticky;
        position: sticky;
        top: 10px;
        z-index: 1000;
        border-radius: 100px;
        background: #31655C;
        border: none;
        color: #fff;
        width: 100%;
        text-align: center;
        text-align-last: center;
        line-height: 46px;
        font-size: 2.2rem;

/* --- 矢印のカスタマイズ --- */
    -webkit-appearance: none; 
    -moz-appearance: none;    
    appearance: none;         
    
    background-image: url("../img/icon_arrow.svg"); 
    background-repeat: no-repeat;
    background-size: 25px;      
    background-position: right 25px center;
    
    padding-left: 20px; 
    padding-right: 20px; 
    cursor: pointer;
    margin-bottom: 30px;
    background-color:#31655C:;

    }

    #scroll-area,
    .shop-area-wrap{
        padding: 0 30px;
    }

    .map-placeholder {
        max-width: 200px!important;
    }
       
    .bg-yurakucho { background-color: #BD89BA !important; }
    .bg-marunouchi { background-color: #F19001 !important; } 
    .bg-otemachi   { background-color: #EC6E86 !important; }


    .main-footer {
      padding: 20px 30px 10px;
      font-size: 1.4rem;
    }

    #copyright-cafe-map{
        font-size: 1.2rem;
    }

    #page-top{
    	max-width: 50px;
    }	
	 #page-top.on_footer {
	    position: absolute;
	    max-width: 50px;
	    bottom: 200px;
	    top: auto;
	    height: 50px;
	    display: block;
	 }


    .section-title {
      font-size: 2.6rem;
      margin-bottom: 20px;
    }

    .grid-title {
        min-height: 36px;
        font-size: 2rem;
    }

    .shop-grid {
        gap: 20px;
        margin-bottom: 20px;
        /*justify-content: center;*/
    }

    .shop-name {
      font-size: 1.8rem;
    }

    .shop-option {
        /*font-size: 1.8rem;*/
        font-size: 1.4rem;
    }


    .shop-location {
      font-size: 1.4rem;
      margin-bottom: 0;
    }

	  .shop-item {
	    margin-bottom: 40px;
	    width: calc(50% - 10px);
	    max-width: initial;
	  }

    .shop-link {
        font-size: 1.4rem;
        padding-right: 22px;
    }

    .shop-link::after{
        width: 18px;
        height: 18px;
        background-size: cover;
    }

    .shop-grid-singel-wrap .shop-grid {
    	max-width: initial;
  		width: calc(50% - 15px);
    }

	.shop-grid-singel-wrap .shop-grid .shop-item {
    	width: 100%;
  	}

    .title-height-same-sp{
        height: 80px;
    }

    .title-height-same.clear-sp{
        height: auto;
    }    

}


@media screen and (max-width: 600px) {

	.area-grid{
		display: block;
		padding: 0 30px;
	}

	  .area-item {
	    width: 100%;
	    margin-bottom: 40px;
	    max-width: 320px;
	    margin: 0 auto 40px;
	  }
	
}	


@media screen and (max-width: 414px) {

  .shop-item,
  .shop-grid-singel-wrap .shop-grid {
    width: 100%;
  }


    .title-height-same-sp,
    .title-height-same{
       height: auto !important;
    }


    .information-title {
    	padding: 30px 0;
    }	





}	