@charset "utf-8";
/* CSS Document */

main {
    background: top center no-repeat url(../img/bg_img.jpg);
    margin-top: 80px;
}
.title {
    padding-top: 180px;
    margin: 0 auto;
    width: 70%;
}
.title img {
    margin: 0;
}
.title img:nth-of-type(2) {
    margin-top: 45px;
}
.map {
    margin-top: 70px;
    text-align: center;
}
.thumbnail_wrap {
    background-color: #fffbcc;
    margin-top: 80px;
    padding: 0 0 80px;
}
.thumbnail {
    max-width: 1400px;
    flex-wrap: wrap;
    margin: 0 auto;
}

.thumbnail_item {
    width: 217px;
    height: 165px;
    border-radius: 10px;
    background-color: #fff;
    padding: 0 15px;
    margin: 10px 5px;
}

.thumbnail_item.is-empty {
height: 0;
padding-top: 0;
padding-bottom: 0;
margin-top: 0;
margin-bottom: 0;
}
.thumbnail_inner {
    padding-top: 5%;
}


      .thumbnail_item.is-empty {
  height: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.thumbnail_inner img {
    display: inline-block;
    height: 100%;
}
.thumbnail_name {
    font-weight: bold;
    margin-left: 5px;
}

.thumbnail_name span {
    display: block;
    font-size: 9px;
}

.h3_title {
    padding: 80px 0 50px;
}
.tabs li {
    width: 120px;
    cursor: pointer;
    margin: 0 auto;
    position: relative;
  }
  .tabs li:after {
      content: "";
      width: 1px;
      height: 50%;
      position: absolute;
      right: 0;
      top: 25%;
      background: #c8bab1;
  }
  .tabs li:last-of-type:after {
      display: none;
  }
  .tabs li.display {
    border-bottom: solid 5px #db3735;
    position: relative;
}
.tabs li.display::before {
	content: '';
	position: absolute;
	top: 104%;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 6px 0 6px;
	border-color: #db3735 rgba(0,0,255,0) rgba(0,0,255,0) rgba(0,0,255,0);
    background-color: transparent;
}
  article>div {
    display: none;
  }

  article>div.display {
    display: block;
  }
  article h2 em {
      font-style: normal;
      display: inline-block;
      padding: 10px 20px 0;
      background: left top no-repeat url(../img/title.jpg);
  }
.tabs {
    max-width: 910px;
    margin: 0 auto;
}
.tabs li p {
    text-align: center;
}
.tabs li p img {
    display: block;
    margin: auto;
}
.tabs li span {
    font-weight: bold;
    font-size: 14px;
}
.tabs li img:nth-of-type(1){
    display: block;
}
.tabs li img:nth-of-type(2){
    display: none;
}
.tabs li.display img:nth-of-type(2){
    display: block;
}
.tabs li.display img:nth-of-type(1){
    display: none;
}

/* 各カテゴリー */
article {
    background-color: #fffbcc;
    margin-top: 80px;
    padding: 65px 0;
}
article ul {
    max-width: 1160px; 
    margin: 0 auto;
}
.ttl span {
    display: block;
    font-size: 14px;
    color: #f3ca21;
}
.content {
    max-width: 1160px;
    background-color: #fff;
    border-radius: 30px;
    padding: 43px 60px;
    margin: 45px 0;
}
.content_inner {
    align-items: start;
}
.txt_wrap {
    margin-left: 40px;
    flex: 1;
}
.txt {
    font-weight: bold;
    line-height: 1.7;
    margin-top: 20px;
}
.menu {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1.7px;
    padding-left: 20px;
    flex: 1;
}
.store_wrap {
    background-color: #f6f7f9;
    padding: 20px;
    margin-top: 20px;
    display: flex;
}
.store_wrap .name {
    width: 300px;
    border-right: 1px solid #cccccc;
    padding-right: 40px;
    margin-right: 40px;
    font-weight: bold;
}
.store_wrap ul {
    flex: 1;
}
.store_wrap ul li {
    line-height: 2;
}
.store_wrap a {
    color: #3f1b03;
}
.store_wrap a:hover {
    opacity: 0.8;
}
.item {
    margin-right: 20px;
}
/* NotePC - iPadPro */
@media screen and (max-width: 1279px) {
    .content_inner > img {
        width: 45%;
    }
}

/* iPadPro - iPad */
@media screen and (max-width: 1023px) {
    .tabs li span {
        letter-spacing: -1px;
    }
    main {
        margin-top: 60px;
    }
}

/* 小型Tablet */
@media screen and (max-width: 767px) {
    header {
        background: linear-gradient(to top, #000, #000 1px, #fff 1px, #fff 2px, #000 2px, #000 4px, #fff 4px, #fff), #fff;
    }
    main {
        background-size: 125vw;
    }
    .title {
        width: 95%;
        padding-top: 10vw;
        padding-bottom: 10vw;
    }
    .title img:nth-of-type(2) {
        margin-top: 3vw;
    }
    .thumbnail_wrap {
        margin-top: 0;
    }
    .tabs {
        flex-wrap: wrap;
        padding: 0 10px;
    }
    .tabs li {
        width: 48%;
        margin: 20px 1%;
        border-bottom: 1px solid #c8bab1 !important;
    }
    .tabs li:after,
    .tabs li.display::before {
        display: none;
    }
    .tabs li.display {
        border-bottom: 0;
    }
    .tabs li p {
        text-align: left;
    }
    .tabs li:not(.display) img:nth-of-type(1),
    .tabs li.display img:nth-of-type(2),
    .tabs p span {
        display: inline-block;
        vertical-align: middle;
    }
    .tabs p span {
        font-size: 20px;
        letter-spacing: 0;
    }

    .content_inner {
        flex-direction: column;
    }
    .content_inner > img,
    .txt_wrap {
        width: 100%;
        max-width: 500px;
        margin: 0 auto 20px;
    }
    .store_wrap {
        background: transparent;
        flex-direction: column;
        padding: 20px 0 0;
        margin: 0;
        border-top: 1px solid #3f1b03;
    }
    .store_wrap .name {
        width: auto;
        padding-right: 0;
        margin-right: 0;
        border-right: 0;
    }
    .store_wrap a span {
        word-break: break-all;
    }
    .store_wrap ul {
        margin: 0;
        padding: 0;
        font-size: 14px;
    }
}

/* Smartphone */
@media screen and (max-width: 500px) {
    .h3_title {
        padding: 40px 0 20px;
    }
    .tabs li {
        margin: 0 1%;
    }
    .thumbnail_item {
        padding: 2vw 1vw;
        width: 42vw;
        height: auto;
        margin: 10px 2vw;
    }
    .thumbnail_inner img {
        width: 4.5vw;
    }
    .thumbnail_name {
        font-size: 3vw;
    }
    .thumbnail_name span {
        font-size: 2vw;
    }
    .tabs p img {
        width: 32px;
    }
    .tabs p span {
        font-size: 14px;
    }
    article {
        margin-top: 40px;
        padding: 40px 0;
    }
    article ul {
        padding: 0 10px;
    }
    .content {
        padding: 20px;
        border-radius: 16px;
    }
    .txt_inner .sub_ttl img {
        width: 40px;
    }
    .menu {
        font-size: 18px;
        line-height: 24px;
    }
    .item {
        width: 2.5em;
    }
    .item + span {
        flex: 1;
    }
}