/**** access ****/
section {
    margin-bottom: 30px;
}
.access .container {
  width: 940px;
  margin: 30px auto;
}
table{
  border-collapse: separate;
  border-spacing: 0px 5px;
  margin: 0 auto;
}
td,th{
  padding: 10px;
}
th{
  background: #10a0e0;
  color: #fff;
}
td{
  background: #f1fafe;
}

.google-map {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.google-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.access p {
  margin-top: .5em;
  font-size: 1em;
}

.access p.btm {
  margin-bottom: 3em;  
}

.access li {
  display: inline-block;
  margin-right: 15px;
  width: 290px;
  vertical-align: top;
  margin-bottom: 20px;
}
.access li.owl {
  vertical-align: bottom;
  text-align: center;
}
.access li img {
  width: 100%;
  border-radius: .6em;
}
.access li.owl img {
  width: 150px;
}
.access li .cap {
  font-size: .85em;
}
.access li:nth-child(3n) {
  margin-right: 0;
}

@media (max-width: 767px) {
  .access .container {
    width:100%;
    margin: 1em 0 2em;
  }
  .access li {
    display: block;
    margin-right: 0;
    width: 100%;
    margin-bottom: 2em;
  }
  
  .privacy p {
    margin-top: .5em;
    font-size: 1em;
  }

}



/*タブ切り替え全体のスタイル*/
.tabs {
  margin-top: 50px;
  padding-bottom: 40px;
  background-color: #fff;
/*  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);*/
/*  width: 700px;*/
  margin: 0 auto;}

/*タブのスタイル*/
.tab_item {
  width: calc(100%/2);
  height: 50px;
  border-bottom: 3px solid #10a0e0;
  background-color: #d9d9d9;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
}
.tab_item:hover {
  opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding: 20px 15px 0;
  clear: both;
  overflow: hidden;
}


/*選択されているタブのコンテンツのみを表示*/
#access01:checked ~ #access01_content,
#access02:checked ~ #access02_content,
#access03:checked ~ #access03_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #10a0e0;
  color: #fff;
}

@media (max-width: 767px) {
  .tab_item {
    padding: 8px 4px;
    line-height: 1;
  }
}