/*========= レイアウトのためのCSS ===============*/


.box{
    padding: 40px;
  display:flex;
  color:#fff ;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#box1{
    background: url(https://rootco.itembox.design/item/fut/store/store_box1img.jpg?d=20220504113453) center;
}
#box2{
    background: url(https://rootco.itembox.design/item/fut/store/store_box2img.jpg?d=20220504111135) center;
}
#box3{
    background: #fff;
}
#box4{
    background: #fff;
}
#box5{
    background: #333;
}
#box6{
    background: #666;
}
#box7{
    background: #FFF;
}

.store-logo{
    width: 30%;}

.storep{
    color: #fff ;
    font-size: 0.8rem ;
    line-height:1.5rem ;
    }

.storepbk{    
    color: #000;
    font-size: 0.8rem ;
    line-height:2rem ;
    }


.storeh1{
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    }
.storeh1bk{
    color: #000;
    font-size: 2rem;
    font-weight: bold;
    }

.storeh2{
    color: #fff;
    font-size: 1.5rem;
    }
.storeh2bk{
    color: #666;
    font-size: 1.5rem;
    }

.storeh3bk{
    color: #000;
    font-size: 1rem;
    }
.storeh3{
    color: #000;
    font-size: 1rem;
    }


.store-card02 {
    display: block;
    background: #ffffff;
    margin: auto;
    padding: auto;
    width: 80%;
    text-align: left;
}

.store-card{
    width: 80%;
    }


/*========= dlデザインcss ===============*/

dt,dd {
    margin: 0; /* ブラウザの初期値をクリア */
    padding: 0; /* ブラウザの初期値をクリア */
}
.dlstore {
    width: 800px;
    display: flex; /* 子要素のdtとddを横並びにする */
    flex-wrap: wrap; /* 1つのdtとddで1行になるよう改行させる */
}
.dlstore dt,
.dlstore dd {
    border-bottom: 1px solid #666; /* 各セルの下の線。テーブルの下の線も補える。 */
    box-sizing: border-box; /* widthの計算を楽にするため */
    padding: 15px 30px;
    text-align: left;

}
.dlstore dt {
    font-size: 0.8rem;
    font-weight: bold;
    width: 300px;
}
.dlstore dd {
    width: calc(100% - 300px); /* テーブル幅からdtを引いた分の横幅を指定。 */
    font-size: 0.8rem;
}

/* FOR smartphone landscape
***********************/
@media screen and (max-width:750px) {

    .dlstore {
        width: 100%; /* 横幅をpxではなく、幅いっぱいに指定。 */
        border-left: none; /* テーブルの左の線を消す */
        display: block; /* 横並びにさせないようブロック要素にする */
    }
    .dlstore dt,
    .dlstore dd {
        border-right: none; /* セルの右の線を消す */
        width: 100%; /* 横幅を幅いっぱいに指定 */
        padding: 8px 10px; /* 各セルに余白を取る */
    }
    .dlstore dt {
        border-bottom: none; /* 下の線を消す（ddの下の線が残る） */
        padding-bottom: 0; /*ddとの距離を近づけるため、0にする*/
    }

}


/*========= gridデザインCSS ===============*/

.store-gridcontainer2 {
    display: grid;
    width: 70%;
    grid-template-columns: 1fr 1fr;
    margin: auto;
    gap: 0rem;
}

.store_griditem1 {
    font-size: 2rem;
    line-height: 1.5;
    display: inline-grid;
    border: 0px solid #666;
    color: #fff;
    background: url(https://rootco.itembox.design/item/fut/store/store_bgimg-s.jpg?d=20220504122055);
    width: 200px;
    /* padding: 20px 0; */
    /* text-align: center; */
    border-radius: 125px;
    height: 200px;
    margin: auto;
    align-content: center;
    justify-content: center;
}

.store_griditem2 {
    font-size: 2rem;
    line-height: 1.5;
    display: inline-grid;
    border: 0px solid #666;
    color: #fff;
    background: url(https://rootco.itembox.design/item/fut/store/store_bgimg-c.jpg?d=20220504122053) right;
    width: 200px;
    /* padding: 20px 0; */
    /* text-align: center; */
    border-radius: 125px;
    height: 200px;
    margin: auto;
    align-content: center;
    justify-content: center;
}


/*========= gridデザインCSS(insta) ===============*/

.store-gridcontainer_i {
    display: grid;
    width: 50%;
    grid-template-columns: 1fr 1fr;
    margin: auto;
    gap: 10rem;
}
.store_griditem_i {
    display: inline-grid;
    margin: auto;
    align-content: center;
    justify-content: center;
}




/*========= Google Mapレスポンシブ ===============*/
.map-wrap {
  max-width: 70%; /* ここに横幅を指定 */
  margin: auto;
}
.map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

/* Google Mapのiframe */
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/*========= ページネーションCSS ===============*/

.pagination {
  position:fixed;
  right:20px;
  top: 50%;
    transform: translateY(-50%);
  font-size:1em;
  z-index: 10;
  list-style: none;
}

.pagination a {
  display:block;
  height:20px;
  margin-bottom:5px;
  color:#fff;
  position:relative;
  padding:4px;
}

.pagination a.active:after {
  box-shadow:inset 0 0 0 5px;
}

/*現在地表示のテキストの設定*/
.pagination a .hover-text {
  position:absolute;
  right:15px;
  top:0;
  opacity:0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  padding-right: 15px;
}

.pagination a:hover .hover-text {
  opacity: 1;
}

.pagination a:after {
  -webkit-transition:box-shadow 0.5s ease;
  transition:box-shadow 0.5s ease;
  width:10px;
  height:10px;
  display: block;
  border:1px solid;
  border-radius:50%;
  content:"";
  position: absolute;
  margin:auto;
  top:0;
  right:3px;
  bottom:0;
}




/*768px以下は現在地表示のテキストを非表示*/

@media screen and (max-width:768px) { 
  .pagination a .hover-text{
    display: none;
  } 
p.storep {text-align: left; }
.store-gridcontainer2 {
    gap: 1rem;
    width: 100%;}
.store_griditem1{
    width: 100%;
    padding: 10px 0;
    border-radius: 5%;}
.store_griditem2{
    width: 100%;
    padding: 10px 0;
    border-radius: 5%;}
.store-gridcontainer_i {
    display: grid;
    width: 50%;
    grid-template-columns: 1fr;
    margin: auto;
    gap: 1rem;}
.storepbk{
    line-height:1.5rem ;}
.store-card02 {
    width: 100%;}
.store-card {
    width: 100%;}
.store-logo{
    width: 70%;}
#box1{
    background: url(https://rootco.itembox.design/item/fut/store/store_box1imgsp.jpg?d=20220504150414) center;
    background-size: cover ;
}
#box2{
    background: url(https://rootco.itembox.design/item/fut/store/store_box2imgsp.jpg?d=20220504120329) center;
    background-size: cover ;
}
.map-wrap {
  max-width: 100%; /* ここに横幅を指定 */
  margin: auto;
}
.map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 100%;
}
}
