@charset "euc-jp";
/* CSS Document */

*{margin:0px; padding:0px;}
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
margin:0;
padding:0;
border:0;
outline:0;
font-size:100%;
vertical-align:bottom;
background:transparent;
font-weight:normal;}

body {line-height:1;}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {display:block;}

ul {list-style:none;}

input, select {vertical-align:middle;}

div {display: block;}

h1, h2, h3, h4, h5, h6, p, address{
	display: block;
	font-size: 100%;
	font-weight: normal;
	font-style: normal;}

img {vertical-align: bottom; border: none;}

table{border-collapse:collapse; width:100%;}

a {outline:none; }
a:focus {outline:none;}
*:focus {
  outline: none;
  border: none;
}


html{
    font-size: 62.5%;
    box-sizing: border-box;
}

body {
	font-family: "Helvetica Neue" , Helvetica , "Hiragino Kaku Gothic ProN","メイリオ", sans-serif;
	font-size:1.6rem;/* 16px*/
	line-height: 1.7;
	-webkit-text-size-adjust: 100%;
  
  color:#b5b5b6;}

a,a:visited,a:link,a:active{
  color:#b5b5b6 !important;
  text-decoration:none !important;}
  
a img{transition: 0.3s all;}

a:hover{
  text-decoration: none!important;
	opacity:0.5 !important;
	transition: 0.5s all;
  color:#000;}

a.link_red:hover{
  color: #b81c22 !important; 
  opacity: 1 !important;
}

.bold{font-weight: bold;}
  
img{
	max-width: 100%;
	height: auto;
}

.Contents{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.Contents_inner{
  max-width: 740px;
  margin: 0 auto;
}
 .Second_Contents{padding-top: 100px;}

.Container{
  overflow: hidden;
  padding-bottom: 20vw;
}


@media screen and (min-width:768px){.pc_hidden{display: none;}}
@media screen and (min-width:1001px){
  .Container{margin-top: 120px;}}

@media screen and (max-width:767px) {.sp_hidden{display: none;} .Second_Contents{padding-top: 50px;}}

@media screen and (max-width:320px){body{font-size: 1.4rem;}}



/*////////////////////*/

/*header*/
.header{
  padding: 30px 40px;
  box-sizing: border-box;
  position: relative;
}

.header h1.logo{
  width: 80px;
}

.g_nav ul li.uc{
  position: relative;
}
.g_nav ul li a{position: relative;}

.g_nav ul li a.current{color: #b81c22 !important; transition: 0.3s;}

.g_nav ul li a:hover,
.g_nav ul li.search_btn:hover{ opacity: 1 !important; color: #b81c22 !important;}


.cart_count{
  font-family: "Helvetica Neue" , Helvetica , Arial , sans-serif;
  position: absolute;
  top: -18px;
  right: -12px;
  box-sizing: border-box;
  font-size: 1rem;
  background: #b81c22;
  color: #FFF;
  display: flex;
  line-height: 1;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  border-radius: 18px;
}
.g_nav ul li.uc:before{
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: #b5b5b6;
  position: absolute;
  left: 0;
  top: 0.9em;
}
input.Search_txt{
  border:none;
  background: none;
  border-bottom: 2px solid #b5b5b6;
  border-radius: 0;
  flex: 1;
}
.Search_inner{
  display: flex;
  justify-content: space-between;
  max-width: 600px; margin: 0 auto;
}

.Search_inner button{
  border:none;
  background: none;
  width: 20px;
  margin-left: 30px;
}

  @media screen and (min-width:1001px){
    .nav-button{display: none;}
    .header{
      display: flex;
      align-items: center;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%; 
      box-sizing: border-box;}
      
    .header h1.logo{margin-right: 60px;}
    .nav-wrap{flex: 1;}
    .g_nav ul{
      display: flex;
      justify-content: space-around;
    }
    .g_nav ul li{
      font-size: 2rem;
     
    }
    .g_nav ul li + li{margin-left: 10px;}
    
    .header.is-fixed{
      position: fixed;
      width: 100%;
      padding: 20px 40px;
      height: 80px;
      box-sizing: border-box;
      background: rgba(255,255,255,0.8);
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      z-index: 99;
      top:0;
      left: 0;
      animation: DownAnime 0.5s forwards;
    }
    .header.is-fixed h1.logo{width: 50px;}
    .search_btn{cursor: pointer;}
    .search_area{
      width: 100vw;
      display: none;
      position: absolute;
      top: 120px;
      left: 0;
      box-sizing: border-box;
      padding: 20px 40px;
      background: rgba(255,255,255,0.8);
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      z-index: 99;
    }
    .header.is-fixed .search_area{top: 80px;}
    
    .search_area_close{position: absolute; top: 10px; right: 40px; font-size: 2.4rem; cursor: pointer; font-weight: 100;}
  }
  
  @keyframes DownAnime{
      from {
        opacity: 0;
        transform: translateY(-100px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }    
  
  @media screen and (max-width:1200px) {
    .g_nav ul li{font-size: 1.8rem;}
    
  }
  
  @media screen and (max-width:1000px) {
    .header{
      padding: 20px 20px;}
    .header h1.logo{
      width: 60px;
    }  
    .nav-wrap {
      position: fixed;
      left: 0;
      top: 0;
      opacity: 0;
      visibility: hidden;
      overflow: hidden;
      z-index: 999 !important;
      background:#FFF;
      width: 100%;
      height: 100%;
      transition: .1s;
      }
	  .nav-wrap.close_menu{opacity: 0; }
	  .nav-wrap.open {opacity:1; visibility: visible;}

    .g_nav{
      margin: 8vh 0 6vh;
    }
	  .nav-wrap ul {}
	  .nav-wrap ul li {
      display: block;
      margin: 2vh 0;
      text-align: center;
      }


	  /*hamburger*/
	  .nav-button,
	  .nav-button span {
      display: inline-block;
      transition: all 0.3s;
      box-sizing: border-box;}

	  .nav-button {
	  	display: block;
      cursor: pointer;
      z-index: 9990;
      position: fixed;
      top: 30px;
      right: 30px;
      width: 30px;
      height: 20px;
      }
	  	.nav-button.active{position: fixed;}

	  .nav-button span {
      position: absolute;
      left: 0;
      width: 100%;
      height: 1px;
      background-color: #c9caca;}

	  .nav-button span:nth-of-type(1) {top: 0;}
	  .nav-button span:nth-of-type(2) {top: 9px;}
	  .nav-button span:nth-of-type(3) {bottom: 0;}

	  .nav-button.active span:nth-of-type(1) {
		-webkit-transform: translateY(9px) rotate(-45deg);
		transform: translateY(9px) rotate(-45deg);
	  }

	  .nav-button.active span:nth-of-type(2) {opacity: 0;}

	  .nav-button.active span:nth-of-type(3) {
		-webkit-transform: translateY(-8px) rotate(45deg);
		transform: translateY(-9px) rotate(45deg);
	  }
    
    li.search_btn{display: none !important;}
    .search_area{display: block !important;}
    .Search_inner{padding: 0 40px;}
    .search_area_close{display: none;}
    }


.copyright{
  text-align: center;
  padding: 30px 20px;
}

/*about///////////////*/
h2{
  text-align: center;
  font-weight: bold;
  font-size: 2.8rem;
  color: #c9caca;
}
.About_logo{
  text-align: center;
  padding: 100px 0 150px 0;
}
.About_logo img{max-width: 400px;}

.lead{
  font-size: 1.8rem;
  margin: 150px auto 0 auto;
  max-width: 608px;
  line-height: 2.5;
}

.access_wrap{
  background:#eeeeed;
  color: #FFF;
}
.access_inner{
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 30px;
}
.access_wrap a{color: #FFF !important;} 

.access_info p,.access_info address{
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2;
}
.address_br{display: none;}
@media screen and (min-width:768px){
  .access_inner{
    display: flex;
    justify-content: space-between;
    position: relative;
   }
  .access_info{width: 54%; margin-top: 100px;}
  .access_map{width: 46%;}
  .h-logo{
    width: 150px;
    position: absolute;
    bottom: 20px;
    left: 20px;
  }
  
}
@media screen and (min-width:768px) and (max-width:1100px) {
  .address_br{display: block;}
  .access_info{margin-top: 5vw;}
  .access_info p,.lead{
    font-size: 1.5rem;}
  .h-logo{width: 120px;}  
  .access_map{padding-top: 80px;}
}
@media screen and (max-width:767px) {
  .About_logo{
    text-align: center;
    padding: 50px 0 100px 0;
  }
  h2{font-size: 2.4rem;}
  .About_logo img{max-width: 250px;}
  .access_info p,

  .lead{
    margin: 50px 0 30px 0;
    font-size: 1.6rem;}
  .access_info{padding: 20px 0;}
  .h-logo{
    width: 100px; margin-top: 20px;}
  .copyright{font-size: 1.2rem;}  
}

/*about 2024*/
.About_kv{
  margin-top: 100px;
}

/*Top_shop*/
.Top_shop{
  margin: 150px 0;
}

/*Pickup_slide*/
.Pickup_slide{margin-bottom: 100px;}
.Pickup_slide img{
margin: 0 auto;
max-width:auto !important;
width: 100% !important;
}
.Pickup_slide_item{
  width: 100%;
  height:0;
  padding-top: 66%;
  position: relative;
  overflow: hidden;
  
}
.Pickup_slide_item img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.slick-dots{
  text-align: center;
  margin-top: 30px;
}
.slick-dots li{
  display: inline-block;
  
}
.slick-dots li button{
  text-indent: -999999px;
  overflow: hidden;
  width: 12px;
  border-radius: 12px;
  height: 12px;
  border: 1px solid #b7b8b8;
  margin: 0 5px;
  background: none;
}
.slick-dots li.slick-active button{
  background: #b7b8b8;
}
  @media screen and (max-width:767px) {
    .Pickup_slide{margin-bottom: 50px;}
    .slick-dots{margin-top: 20px;}
    .slick-dots li button{
      width: 8px;
      border-radius: 8px;
      height: 8px; margin: 0 3px;}
  }
/*slide_txt*/
.slide_txt p{
margin-bottom:100px;
display : inline-block;
padding-left: 100%;
white-space : nowrap;
line-height : 1;
animation : scrollSample01 10s linear infinite;
}
@keyframes scrollSample01{
0% { transform: translateX(0)}
100% { transform: translateX(-125%)}
}

/*Product_list*/
h2.List_ttl{
  margin-bottom: 40px;
  font-weight: 400;
}
.Product_list{
  display:flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.Product_list:after{
  content: '';
  display: block;
  width: 30%;
}

.Product_item_img{
  margin-bottom: 10px;
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 66%;
  overflow: hidden;
}
.Product_item_img img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
}
.Product_item{
  width: 30%;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 60px;
}
.Product_item a{
  display: block;
}
.Product_item_sold{	
  background:#E9E9E7;	
  line-height: 1;	
  padding: 5px 20px;	
  color: #FFF;	
  font-size: 1.6rem;	
  margin-top: 10px;	
  display: inline-block;	
}	
.Sold_out{	
  background:#E9E9E7;	
  line-height: 1;	
  	
  color: #FFF;	
  font-size: 1.6rem;	
  margin-top: 10px;	
  display: inline-block;	
}	
.Sold_out a{color: #FFF !important; padding: 15px 20px; display:block!important;}	
.product_inquiry{margin-top:30px;}

.Product_item_price{
  position: relative;
  display: inline-block;
}
/*.Product_item_price:after{
  content: '';
  width: 1em;
  height: 1.7em;
  display: block;
  background: #FFF;
  position: absolute;
  right: 0;
  top: 0;
}*/


.Pager{
  padding-top: 30px;
  max-width: 300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}


.pager_prev a{
  display: block;
  width: 18px;
  height: 18px;
  border-top: 1px solid #b7b8b8;
  border-left: 1px solid #b7b8b8;
  transform: rotate(-45deg);
}

.pager_next a{
  display: block;
  width: 18px;
  height: 18px;
  border-top: 1px solid #b7b8b8;
  border-right: 1px solid #b7b8b8;
  transform: rotate(45deg);
}


  @media screen and (max-width:767px) {
    .slide_txt p{
      margin-bottom:50px;}
    .Product_item{
      width: 48%;
      font-size: 1.4rem;
      margin-bottom: 40px;
    }
    .Product_list:after{
      width: 48%;}
  }


/*Product_detail*/
.Product_detail_txt{
  text-align: center;
}
.Product_detail_name{
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 20px;
}

.group_list{
  font-size: 1.6rem;
  margin-bottom: 5px;
  display: inline-block;
}
.group_list li{
  display: inline-block;
  font-weight: bold;
  background: #DDD;
  padding: 0 10px;
  border-radius: 5px;
  
}

.group_list li a{
  color: #FFF !important;
}

.group_list:nth-last-of-type(3),
.group_list:nth-last-of-type(2),
.group_list:nth-last-of-type(1){
  display: block;
  margin-top: 5px;
  font-size: 2rem;
}
.group_list:nth-last-of-type(3) li,
.group_list:nth-last-of-type(2) li,
.group_list:nth-last-of-type(1) li{
  font-weight: normal;
  background: none;
  padding: 0;
  border-radius: 0;
}

.group_list:nth-last-of-type(3) li a,
.group_list:nth-last-of-type(2) li a,
.group_list:nth-last-of-type(1) li a{
  color:#b5b5b6 !important;
}


.group_list li.group_Environment{
  display: none;
}
.group_list li.group_Environment　+ li{
  font-size: 1rem;
}
.group_list li.group_artist:after,
.group_list li.group_label:after,
.group_list li.group_type:after{
  content: ':';
  margin-left: 10px;
}


.group_list li + li{margin-left: 5px;}
.Product_detail_price{
  font-size: 2rem;
  margin-top: 20px;
}
.Product_detail_stock{
  margin-top: 20px;
}

.Product_detail_option{
  margin: 60px 0;
}
input[type="button"],
input[type="text"],
input[type="submit"],
input[type="image"],
textarea{
-webkit-appearance: none;
border-radius: 0;
}

.Product_detail_option input,
.Product_detail_option select{
  border: 1px solid #b7b8b8;
  border-radius: 0;
  width: 100px;
  padding: 10px;
  height: 40px;
  box-sizing: border-box;
}
.Product_detail_option select:focus{
  outline: none;
}
.count,
.option_box{
  display: flex;
  align-items: center;
  justify-content: center;
}
.count p,
.option_box p{margin-right: 10px;}


.btn_addcart button{
  border:none;
  background: #b7b8b8;
  color: #FFF;
  padding: 15px 40px;
  font-size: 2rem;
  cursor: pointer;
}
.btn_addcart button:hover{
  opacity: 0.6;
  transition: 0.3s;
}

.Product_detail_ex{
  margin: 80px auto 100px auto;
  max-width: 800px;
}

.youtube_wrap{
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
    margin-top:40px;
}
.youtube_wrap iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.Product_detail_thm{}
.Product_detail_thm ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.Product_detail_thm ul:after{
  content: '';
  width: 30%;
  display: block;
}

.Product_detail_thm ul li{
  width: 30%;
}
.Product_detail_thm ul li a{
  display: block;
  width: 100%;
  height: 0;
  padding-top: 66%;
  overflow: hidden;
  position: relative;
}
.Product_detail_thm ul li a img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.Recommend{padding-top: 200px;}
.Recommend_list{
  display: flex;
  flex-wrap: wrap;
}


.Recommend_item a{display: block;}

.Recommend .slide_txt p{margin-bottom: 40px;}

  @media screen and (min-width:1001px) {
    .Product_detail_option{
    justify-content: center;
    display: flex;
    }
    .option{
      display: flex
    }
    .count + .option,
    .option_box + .option_box{margin-left: 20px;}
  }
  @media screen and (min-width:768px) {
  .Product_detail_top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    }
  
  .Product_detail_img{
    width: 55%;
  }  
  .Product_detail_txt{
    width: 40%;
  }
  .Recommend_item{
    width: 14.5%;
    margin-bottom: 30px;
    margin-right: 2.6%;
  }
  .Recommend_item:nth-child(6n){margin-right: 0;}
}

  @media screen and (max-width:1100px) {
    .Product_detail_name{
      font-size: 2.4rem;}
    .Product_detail_option{
      justify-content: center;
      display: flex;
      flex-direction: column;
    }  
    .count + .option{margin-top: 20px;}
  }
   @media screen and (max-width:1000px) {
     .option_box + .option_box{margin-top: 20px;}}
     
  @media screen and (max-width:767px) {
    .Product_detail_img{margin-bottom: 20px;}
    .Product_detail_option{
      margin: 30px 0;
    }
    .Product_detail_ex{
      margin: 40px auto 50px auto;}
    .Recommend{padding-top: 80px;}
    .Recommend_item{
    width: 23%;
    margin-bottom: 10px;
    margin-right: 2.6%;
  }
  .Recommend_item:nth-child(4n){margin-right: 0;}
    
  }
  
/*accordion*/ 
.acc_wrap{
  margin-bottom: 30px;
}
.acc{
  display: none;
  }
.trigger{
  cursor: pointer;
  padding: 10px 0;
  position: relative;
  text-align: left;
  font-weight: 400;
  font-size: 2rem;
}
h2.link{
  padding: 10px 0;
  
  text-align: left;
  font-weight: 400;
  font-size: 2rem;
  margin-bottom: 40px;
}
h2.link a{
  position: relative;
  display: block;
  color: #c9caca !important;
}

.trigger:after{
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  border-right: 1px solid #b7b8b8;
  border-bottom: 1px solid #b7b8b8;
  position: absolute;
  right: 20px;
  top: 15px;
  transform: rotate(45deg);
  transition: 0.3s;
}

/*
h2.link a:after{
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  border-right: 1px solid #b7b8b8;
  border-top: 1px solid #b7b8b8;
  position: absolute;
  right: 20px;
  top: 15px;
  transform: rotate(45deg);
  transition: 0.3s;}
*/

.trigger.open:after{transform: rotate(-135deg); top: 20px;}  

.acc p{
  margin-bottom: 30px;
}

/*2022.11 renewal*/
.top_select_wrap{
  text-align: center;
  color: #c9caca;
  padding: 20px 0 50px 0;
}
.top_select_txt{
  font-size: 2rem;
  margin-bottom: 10px;
}
.top_select_ttl{
  font-weight: 400;
  font-size: 5rem;
  margin-bottom: 30px;
}
.top_select_list{
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}


.top_select_list li{
  width: 8%;
  margin: 0 1.75%;
  position: relative;
}
ul.top_select_list li a:hover {
  opacity: 1 !important;
  color: #b81c22 !important;
}

ul.top_select_list.on li a{ color: #b81c22 !important;}
ul.top_select_list li a span{
  display: block; font-weight: 700 !important;
  font-size: 1.4rem;
  margin-top: -10px;
  line-height: 1.2;
}

ul.top_select_list li a img.top_select_icon_on{
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}
ul.top_select_list li a:hover img.top_select_icon_off,
ul.top_select_list.on img.top_select_icon_off{
  opacity: 0 !important;
}
ul.top_select_list li a:hover img.top_select_icon_on,
ul.top_select_list.on img.top_select_icon_on{
  opacity: 1 !important;
}

.top_select_type{
  font-weight: 400;
  padding-top: 20px;
  font-size: 4.4rem;
}
.top_select_type span{
  cursor: pointer;
  font-weight: 400;
  transition: 0.3s;
}
.top_select_type span:hover{
  color: #b81c22 !important;}

.top_select_type span.on{
  color: #b81c22 !important;
}

  @media screen and (max-width:1000px) {
    .top_select_txt{font-size: 1.8rem;}
    .top_select_ttl{font-size: 4.8rem;}
    .top_select_type{font-size: 3.6rem;}
  }
  @media screen and (max-width:767px) {
    .top_select_wrap{
      padding: 0 0 30px 0;
    }
    .top_select_txt{font-size: 1.4rem; margin-bottom:10px;}
    .top_select_ttl{font-size: 2.4rem; line-height: 1.2; margin-bottom:20px;}
    .top_select_type{display: none;}
    .top_select_list-sp{
      display: flex;
      max-width: 300px;
      margin: 0 auto;
      flex-wrap: wrap;
      padding: 0 20px;
      justify-content: space-between;
      margin-bottom: 20px;
    }
    .top_select_list-sp li{
      width: 26%;}
    .top_select_list-sp li img{
      width: 80%;
    }  
    .top_select_list-sp li a span{font-size: 1.2rem; margin-top: -10px; display: block;}  
  }

/*fadein*/  
@keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1}}

@-webkit-keyframes fadeIn{
    0% {opacity: 0;}
    100% {opacity: 1}}

.top_fadein{animation: fadeIn 2s ease 0s 1 normal; z-index: 1;}

.fadein-y {
  opacity: 0;
  transform : translate(0, 40px);
  transition : all 1500ms;
  visibility: hidden;
  z-index: 1;
  }

.fadein-x{
  opacity: 0;
  transform : translate(40px, 0);
  transition : all 1500ms;
  visibility: hidden;
  }
.fadein-x2{
  opacity: 0;
  transform : translate(-40px, 0);
  transition : all 1500ms;
  visibility: hidden;
  }  

.fadein-y.scrollin,.fadein-x.scrollin,.fadein-x2.scrollin{
  opacity: 1;
  transform: translate(0, 0);
  z-index: 1;
  visibility: visible;
}

.fadein {
  opacity: 0;
  transition : all 1500ms;
  visibility: hidden;
  }

.fadein.scrollin{
  opacity: 1;
  transform: translate(0, 0);
  visibility: visible;
}  

/*2024 add*/
section + section{
  margin-top: 100px;
}
/*=========
tab
=========*/
.tab_head{
  display: flex;
  font-size: 20px;
  padding: 30px 0;
}
.tab_head_ttl{
  margin-right: 20px;
}
.u-tab__menu {
  
}
.u-tab__menu li {
  display: inline-block;
}
.u-tab__item {
  
}
.u-tab__item[aria-expanded="true"] {
  color: #b81c22 !important;
}
.u-tab__item:not([aria-expanded="true"]):hover {
  color: #b81c22 !important;
  opacity: 1 !important;
}

.u-tab__body {
  display: none;
  
}
.u-tab .u-block {
  display: block;
}
.u-tab .u-none {
  display: none;
}
.tab_info{
  margin-top: 30px;
}
.info_modal{
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  padding: 20px;
  width: 100%;
  max-width: 740px;
  margin: 0 auto;
  box-sizing: border-box;
  background: #FFF;
}
  #calendar_modal{
    max-width: 590px;
  }

.gmap{
  margin-bottom: 30px;
  width: 100% !important;
  
  
}
.gmap_inner{
  position: relative;
  width: 100% !important;
  height: 0;
  padding-top: 80%;
}
.gmap_inner iframe{
  position: absolute;
  top: 0;
  left: 0;
  
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
 
}
  
@media screen and (max-width: 767px) {
  .info_modal{
  padding: 10px;}
 
}