@charset "UTF-8";
@-ms-viewport {
  width: device-width; }

/*--------------------------------------------------------------------------
CSS　tab
--------------------------------------------------------------------------*/
/*========= タブメニュー用　CSS ===============*/
ul.tab-list {
  list-style-type: none; }

.tab-list {
  margin: 0 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: space-btween;
  -ms-flex-pack: space-btween;
  justify-content: space-btween; }

.tab-list-item {
  margin: 10px 10px 0 0;
  text-align: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  background-color: #FFF;
  color: #666;
  border: solid 1px rgba(0, 0, 0, 0.2);
  padding: 10px 20px;
  cursor: pointer;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.2; }

.tab-list-item.active {
  background-color: #eee;
  color: #222;
  border: solid 1px rgba(0, 0, 0, 0.8);
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out; }

.tab-contents-item {
  display: none;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out; }

.tab-contents-item.show {
  display: block;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out; }

/*===============================
■■　スマホ用　■■
===============================*/
/*------------(XS)------------*/
@media (min-width: 320px) and (max-width: 566px) {
  .tab-list-item {
    padding: 10px 6px;
    margin: 6px 6px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 31%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.4rem;
    line-height: 1.2; }
  .geo-img {
    margin-bottom: 20px; } }

/*------------(SM)------------*/
/*------------(MD)------------*/
/*------------(LG)------------*/
/*------------(XL)------------*/
