@charset "UTF-8";
body {
  background-color: #000;
  color: #fff;
  font-family: serif;
}
input[type="checkbox"] {
  display: none;
}
iframe {
  width: 100%;
  height: 200px;
}
main#bottompage {
  padding-top: 100px;
  background-image: url(../images/bottommv.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
}
img {
  width: 100%;
  height: auto;
}
h1 {
  display: block;
  width: 100%;
  font-size: 10px;
}
#prace_announce {
  display: block;
  background-color: red;
  font-size: 11px;
  padding: 10px 0;
  margin-top: 5px;
  border-radius: 50px;
  font-weight: bold;
  position: fixed;
  width: 96%;
  bottom: 1%;
  left: 2%;
}

form#shopsrc {
  padding: 10px 30px 50px;
  background: linear-gradient(0deg, #000B15 0%, #015882 35%, #0178AF 50%, #000B15);
}
#bottomsrc form#shopsrc {
  background: linear-gradient(0deg, #000000 0%, #015882 35%, #0178AF 50%, #000b1500);
}
form#shopsrc select {
  text-align: left;
  color: #fff;
  border-bottom: solid 1px #7b7b7b;
  padding: 10px 20px 10px 10px;
  width: 100%;
  background-image: url(../images/selectarrow.png);
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: calc(100% - 5px) center;
  margin-top: 10px;
  font-size: 18px;
}
form#shopsrc button,
form#shopsrc a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  border: solid 1px #c8c8c8;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  padding: 15px 0;
}
form#shopsrc button {
  margin: 30px auto 0;
  background: linear-gradient(180deg, #00a0e9 0%, #276e8f 40%, #1a536e 60%, #02577F 100%);
}
form#shopsrc a {
  margin: 10px auto 0;
}
form#shopsrc button img,
form#shopsrc a img {
  width: auto;
  height: 20px;
  margin-right: 5px;
}
header {
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 10px 10px;
  transition: .5s;
}
select#linkSelect {
  text-align: left;
  color: #fff;
  border-bottom: solid 1px #7b7b7b;
  padding: 10px 20px 10px 10px;
  width: 100%;
  background-image: url(../images/selectarrow.png);
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: calc(100% - 5px) center;
  margin-top: 10px;
  font-size: 18px;
}
.header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.logo {
  display: block;
  width: 150px;
}
/* Nav items */
.menu {
  list-style: none;
  position: absolute;
  width: 100%;
  height: auto;
  top: 100%;
  margin-top: 52px;
  padding: 0 0 10px 0;
  clear: both;
  background: #000;
  transform: scale(1, 0);
  transform-origin: top;
  z-index: 10;
  left: 0;
  transition: .5s;
  text-align: left;
}

/* Hamburger menu button */
.menu-btn:checked ~ header .header_inner .menu {
  transform: scale(1, 1);
  transform-origin: top;
}
/* Hamburger menbu text */
.menu a {
  display: block;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  text-transform: capitalize;
  color: #ddd;
  opacity: 0;
  padding: 15px 20px;
}

.menu li {
  border-top: 1px solid rgb(75, 75, 75);
  opacity: 0;
}
.menu-btn:checked ~ header {
  background-color: #000;
}
.menu-btn:checked ~ header .header_inner .menu a,
.menu-btn:checked ~ header .header_inner .menu li {
  opacity: 1;
}

.menu-btn {
  display: none;
}

.menu-icon {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding: 24px 14px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.navicon {
  background: #ddd;
  display: block;
  height: 3px;
  width: 26px;
  position: relative;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before,
.navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #ddd;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before {
  top: 9px;
}

.navicon:after {
  bottom: 9px;
}

/* Hamburger Menu Animation Start */
.menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
  top: 0;
}
.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  bottom: 0;
}

.menu-btn:checked ~ .menu-icon .navicon {
  background: rgba(0, 0, 0, 0);
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
/* Hamburger Menu Animation End */

/* Navbar Container */
.navtext-container {
  width: 100%;
  height: 52px;
  position: absolute;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Navbar Text */
.navtext {
  position: absolute;
  text-transform: uppercase;
  color: #ddd;
  letter-spacing: 4px;
  font-size: 20px;
}
nav {
  width: 100%;
  display: block;
  font-size: 12px;
  text-align: left;
}
nav ol li {
  display: inline-block;
}





#mv {
  background-image: url(../images/mv-sp.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #000;
}
img.mvform-car {
  display: block;
  width: calc(100% - 60px);
  margin: 0 auto;
}
.mv_catch {
  background: linear-gradient(90deg, #303030, #ffffff, #000000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: serif;
  font-weight: 900;
  writing-mode: vertical-rl;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 15vh 0 0;
  font-size: 24px;
  letter-spacing: 6px;
  text-indent: -20px;
  line-height: 34px;
}










.inner {
  max-width: 1280px;
  padding: 30px 15px;
  margin: 0 auto;
}
.section_ttl {
  margin-bottom: 20px;
}
.resultarea.section_ttl {
  margin-bottom: 50px;
}
.section_ttl span {
  display: inline-block;
  position: relative;
  font-size: 12px;
  color: #ddd;
}
.section_ttl span:after {
  content: "";
  display: block;
  width: 13px;
  height: 1px;
  background-color: #01A0E9;
  position: absolute;
  right: -20px;
  top: calc(50% - 1px);
}
.section_ttl p {
  font-weight: 900;
  margin-top: 3px;
  font-size: 20px;
}
.areashopsearch_ttl {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  padding: 20px 15px;
}
.shoplist_child {
  display: flex;
  justify-content: space-between;
  padding: 20px 10px;
  border-top: solid 1px #656565;
}
.shoplist_child:last-child {
  border-bottom: solid 1px #656565;
}
.shoplist_left {
  width: calc(100% - 100px);
}
.shoplist_left h3 {
  font-size: 10px;
  color: #ddd;
  padding: 5px 0 10px;
}
.marks {
  display: flex;
  max-width: 150px;
  width: 100%;
}
.marks img {
  width: 19%;
  margin-right: 1%;
}
.marks img:last-child {
  margin-right: 0;
}
.shoplist_right {
  width: 80px;
  position: relative;
}
.shoplist_right img {
  height: 80px;
  width: 100%;
  object-fit: cover;
}
.distance {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 12px;
  background-color: #00a0e9;
  padding: 3px 6px;
}


.newslist a,
.ft_menu_list a {
  padding: 15px 10px;
  border-bottom: solid 1px #656565;
  display: block;
  font-size: 16px;
  position: relative;
}
.new-post-badge {
  font-size: 10px;
  display: inline-block;
  background-color: #cf0000;
  text-align: center;
  padding: 3px 3px;
  line-height: 1;
  margin-left: 5px;
  vertical-align: bottom;
}
nav .new-post-badge {
  display: none;
}
.ft_menu_list_child:first-child {
  border-top: solid 1px #656565;
}
.morelink {
  text-align: center;
  margin-top: 30px;
  text-decoration: underline #ddd;
  font-size: 14px;
}

.repairlist_child_info {
  padding: 20px;
  background-color: #222;
}
.repairlist_child_info h4 {
  font-size: 18px;
  display: block;
  text-align: center;
  margin-bottom: 15px;
  font-weight: bold;
}

.repairimg_slick img {
  height: 190px;
  object-fit: cover;
}
.tagslist {
  display: flex;
  flex-wrap: wrap;
}
.tagslist p {
  display: inline-block;
  font-size: 12px;
  font-family: system-ui;
  border: solid 1px #fff;
  padding: 5px 10px;
  border-radius: 100px;
  margin: 0 5px 5px 0;
}


#categorylist,
#instructions {
  background-color: #fff;
  color: #333;
}
.categorylist_cont li {
  margin-bottom: 20px;
}
.categorylist_cont li:last-child {
  margin-bottom: 0;
}
.categorylist_cont li h2 {
  padding: 7px 10px;
  border-left: solid 5px #00a0e9;
  background-color: #f7f7f7;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 18px;
}
.categorylist_cont li a {
  display: block;
  border-bottom: none;
  font-size: 16px;
  padding: 5px 10px;
  margin-bottom: 5px;
}
.maker_slick {
  padding-top: 20px;
}
.maker_slick img {
  height: 40px;
  display: inline-block;
  object-fit: contain;
}
.instructions_ttl {
  display: block;
  text-align: center;
  background-color: #222;
  color: #fff;
  padding: 10px 0;
  font-size: 18px;
  font-weight: bold;
}
.instructions_list li {
  padding: 30px 0;
  text-align: center;
  font-size: 14px;
}
.instructions_list li:nth-child(even) {
  background-color: #f7f7f7;
}
.instructions_list li h5 {
  font-size: 16px;
  font-weight: bold;
  color: #00a0e9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.instructions_list li h5 span {
  color: #fff;
  font-size: 12px;
  background-color: #00a0e9;
  padding: 5px 10px;
  border-radius: 100px;
  margin-right: 10px;
}
.instructions_list li p {
  font-weight: bold;
  line-height: 1.5;
}


#footer {
  background-color: #fff;
  color: #000;
}
.ft_logo_area {
  text-align: center;
}
.ft_logo_area .logo {
  margin: 0 auto;
}
.ft_logo_area h2 {
  font-size: 12px;
  margin-top: 5px;
}
.ft_menu_list,
.ft_taxsonomy_list {
  margin-top: 30px;
}
.ft_taxsonomy_list h5 {
  display: block;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #00a0e9;
}
.ft_taxsonomy_list_box a {
  display: inline-block;
  margin: 0 10px 8px 0;
  font-size: 14px;
  text-decoration: underline #ccc;
}
ul.ft_taxsonomy_list_box li {
  border-top: solid 1px #666666;
  padding: 20px 10px;
}
ul.ft_taxsonomy_list_box li h2 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}
ul.ft_taxsonomy_list_box li a {
  display: block;
  margin-bottom: 10px;
}
ul.ft_taxsonomy_list_box li a:last-child {
  margin-bottom: 0;
}
#copy {
  display: block;
  text-align: center;
  font-size: 12px;
  background-color: #00a0e9;
  color: #fff;
  padding: 20px 0;
  font-family: system-ui;
}






#shoplist,
#repairlist {
  background-color: #000;
}
#news {
  background-color: #1a1a1a;
}
.result_option {
  display: block;
  align-items: flex-end;
  font-size: 12px;
  margin-bottom: 20px;
}
.result_option_count,
.result_option_prefecture,
.result_option_maker {
  margin: 0 10px 5px 0;
  line-height: 1;
}
.result_option_count span {
  font-size: 14px;
}
.result_option_count text {
  font-size: 30px;
  line-height: 1px;
  margin: 0 5px;
}
.no_hit {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #222;
}
.total_cont {
  width: 125px;
  margin: 0 auto;
}
.total_cont h6 {
  font-size: 14px;
  color: #C9C9C9;
  margin: 0 0 5px 1px;
  display: block;
  width: 100%;
}
.total_cont p {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.total_cont p b {
  font-size: 47px;
  letter-spacing: -2px;
  transform: scaleY(1.1);
  display: inline-block;
  line-height: 1;
}
.total_cont p span {
  font-size: 22px;
  color: #01A0E9;
  font-weight: bold;
}
.total_cont p span text {
  display: block;
  font-size: 10px;
  color: #ddd;
}

#shop_title {
  margin-bottom: 30px;
}
.shop_info_name h2 {
  font-size: 22px;
  text-align: center;
  margin-top: 15px;
}
.shop_info_name h2 span {
  display: block;
  width: 60px;
  font-size: 12px;
  padding: 5px 0;
  margin: 10px auto 0;
}
#bottompage_cont h2 {
  font-size: 22px;
  text-align: left;
  margin-bottom: 20px;
}
#bottompage_cont p {
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 24px;
}
#bottompage_cont b {
  display: block;
  padding-bottom: 5px;
  margin-bottom: 10px;
  border-bottom: solid 1px;
}
#shop_info .tagslist {
  justify-content: left;
  margin-bottom: 30px;
}
.shop_info_image .slick-dotted.slick-slider {
  margin-bottom: 0px;
}
.shop_info_image img {
  margin: 0 5px;
}
.shop_info_image .slick-dots li {
  width: 15px;
  height: 15px;
  margin: 0px;
}
.shop_info_image .slick-dots li button:before {
  opacity: 1;
  color: #fff;
  font-size: 8px;
}
.shop_info_image .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #01A0E9;
}


.shop_info_cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  max-width: 300px;
  background: linear-gradient(180deg, #3896C3 0%, #02405D 40%, #02405D 60%, #02577F 100%);
  padding: 15px 0;
  margin: 0 auto;
  border-radius: 10px;
}
.shop_info_cta a img {
  width: 28px;
}
.shop_info_cta a p {
  font-size: 18px;
  font-weight: bold;
  margin-left: 5px;
}
#shop_info .marks {
  width: 100%;
  justify-content: center;
  max-width: inherit;
  margin: 20px 0;
}
#shop_info .marks img {
  width: 24%;
  margin: 0 0.5%;
  max-width: 50px;
  border-radius: 5px;
  border: solid 1px #fff;
}
table.shop_info_table {
  width: 100%;
}
table.shop_info_table tr {
  border-top: solid 1px #bfbfbf;
}
table.shop_info_table th,
table.shop_info_table td {
  padding: 13px 5px;
  vertical-align: middle;
}
table.shop_info_table th {
  font-size: 12px;
  color: #ddd;
  width: 90px;
}
table.shop_info_table td {
  font-size: 14px;
  color: #fff;
}
table.shop_info_table td p {
  display: inline-block;
  margin-right: 3px;
}
.shop_info_otherimage {
  display: flex;
  padding: 30px 0;
}
.shop_info_otherimage img {
  width: 32%;
  margin-right: 1.33%;
}
.shop_info_otherimage img:last-child {
  margin-right: 0;
}
.shop_info_map {
  margin-bottom: 30px;
}

.news_date {
  padding: 10px 0;
  text-align: center;
  font-size: 12px;
}
.news_info_content {
  white-space: pre-wrap;
  font-size: 14px;
  line-height: 26px;
}
aside {
  padding: 30px 15px;
}
#popupshop {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  z-index: 11;
  background-color: rgba(0, 0, 0, .7);
  transition: .3s;
}
input[type="checkbox"]#popup:checked + body {
  display: flex;
}
input[type="checkbox"]#popup:checked + #popupshop {
  display: flex;
}
.popupshop_child {
  width: 90%;
  background-color: #1a1a1a;
  padding: 30px 10px;
  border: solid 1px #01A9E6;
  text-align: center;
  position: relative;
}
.popupshop_child h2 {
  font-weight: bold;
}
.popupshop_child h2 span {
  display: block;
  margin-top: 10px;
  font-size: 20px;
}
.popupshop_child_image {
  position: relative;
  margin: 20px 0;
}
.popupshop_child_image img {
  height: 150px;
  object-fit: cover;
}
.popupshop_child h3 {
  font-size: 14px;
  display: block;
  text-align: left;
}
.popupshop_child a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(180deg, #3896C3 0%, #02405D 40%, #02405D 60%, #02577F 100%);
  padding: 15px 0;
  margin: 0 auto;
  border-radius: 10px;
  font-weight: bold;
  font-size: 20px;
  margin-top: 20px;
}
.popupshop_child a img {
  width: 18px;
  margin-right: 3px;
}
.popupshop_child a text {
  font-weight: normal;
  font-size: 14px;
  margin-top: 3px;
  display: block;
  width: 100%;
}
.popupshop_child label {
  position: absolute;
  display: block;
  width: 25px;
  top: 15px;
  right: 15px;
}


.citylist_cont {
}
.citylist_cont a {
}

@media screen and (min-width:769px) {
h1 {
  font-size: 14px;
  padding: 10px 0;
  background-color: #00a0e9;
}
#prace_announce {
  display: block;
  width: 370px;
  right: 10px;
  left: initial;
  font-size: 12px;
  padding: 15px 0;
}
header {
  position: sticky;
  padding: 0;
}
.header_inner {
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 10px;
}
.logo {
  display: block;
  width: 220px;
}
.header_form form#shopsrc {
  padding: 0px;
  background: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_form form#shopsrc select,
.header_form form#shopsrc button,
.header_form form#shopsrc a {
  margin: 0 0 0 10px;
}
.header_form form#shopsrc select:disabled {
  padding: 0;
  background-image: none;
  border: none;
  font-size: 14px;
}
.header_form form#shopsrc select#prefecture,
.header_form form#shopsrc select#maker,
.header_form form#shopsrc select#worktype {
  font-size: 14px;
  width: auto;
}
.header_form form#shopsrc button,
.header_form form#shopsrc a {
  padding: 12px 0;
  font-size: 14px;
}
.header_form form#shopsrc button {
  min-width: 190px;
  border: none;
}
.header_form form#shopsrc a {
  min-width: 160px;
}
.header_categorylist {
  background-color: #222;
  display: flex;
  align-items: center;
  padding: 0px calc((100% - 1200px) / 2);
}
.header_categorylist h6 {
  font-size: 12px;
  display: block;
  width: 110px;
  margin-left: 10px;
  color: #c9c9c9;
}
.header_categorylist_cont {
  display: flex;
  align-items: center;
  width: calc(100% - 110px);
}
.header_categorylist_cont li {
  margin-left: 2%;
  position: relative;
  padding: 15px 0;
}
.header_categorylist_cont li:hover {
  cursor: pointer;
}
.header_categorylist_cont li h2 {
  font-size: 14px;
  display: flex;
  align-items: center;
}
.header_categorylist_cont li h2:after {
  content: "▼";
  font-size: 10px;
  margin-left: 2px;
  transform: scale(0.8);
  color: #00a0e9;
}
.header_categorylist_cont li .grobal_menulist {
  display: none;
  position: absolute;
  left: -20px;
  top: 100%;
  padding: 25px 20px;
  width: max-content;
  background-color: rgba(0, 0, 0, .5);
}
.header_categorylist_cont li .grobal_menulist a {
  display: block;
  text-align: left;
  width: 100%;
  font-size: 14px;
  margin-bottom: 15px;
}
.header_categorylist_cont li .grobal_menulist a:last-child {
  margin-bottom: 0;
}
.header_categorylist_cont li .grobal_menulist a:hover {
  text-decoration: underline #ddd;
}
.header_categorylist_cont li:hover .grobal_menulist {
  display: block;
}
nav {
  max-width: 1200px;
  padding: 5px 10px;
  margin: 0 auto;
}
.inner {
  padding: 30px 25px;
}
#mv {
  background-image: url(../images/mv-pc.jpg);
  display: flex;
  align-items: center;
  background-size: cover;
  justify-content: center;
  background-position: bottom center;
  padding: 50px 30px;
}
main#bottompage {
  background-image: url(../images/bottommv-pc.jpg);
}
.mv_catch {
  background: linear-gradient(180deg, #8b8b8b, #ffffff, #989898);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  writing-mode: inherit;
  display: block;
  width: auto;
  justify-content: center;
  align-items: center;
  padding: 0;
  letter-spacing: 3px;
  text-indent: 0;
  line-height: 1.5;
  margin-right: 3%;
  font-size: 36px;
}
img.mvform-car {
  width: 60%;
  max-width: 600px;
  margin: 0;
}


.main_flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
.main_flex_cont {
  width: calc(100% - 320px);
}
.main_flex_cont section {
  margin-bottom: 20px;
}


.section_ttl p {
  font-size: 20px;
}
aside {
  width: 300px;
  background-color: #222;
  padding: 30px 25px;
}
#news,
#pickuplist {
  background-color: #111;
}
#shoplist {
  background-color: rgba(0,0,0,0);
}
#repairlist,
#categorylist {
  background-color: #222;
  color: #fff;
}
.categorylist_cont li {
  display: flex;
  flex-wrap: wrap;
}
.categorylist_cont li h2 {
  width: 100%;
}
.categorylist_cont li a {
  display: block;
  border-bottom: solid 1px #ababab;
  font-size: 14px;
  padding: 0 0 2px;
  margin: 0 0 10px 15px;
}

#repairlist .slick-slide {
  margin: 0 5px;
}
#repairlist .repairimg_slick .slick-slide {
  margin: 0;
}
.repairlist_child {
  margin-bottom: 20px;
  display: block;
}
.repairlist_child_info {
  padding: 15px 10px;
}
.repairlist_child_info h4 {
  font-size: 14px;
}
.tagslist p {
  font-size: 10px;
}
.categorylist_cont li h2 {
  color: #fff;
  background-color: #222;
}
.instructions_ttl {
  padding: 15px 0;
  font-size: 20px;
}
.instructions_list li {
  padding: 40px 0;
  text-align: center;
  font-size: 14px;
}
.instructions_list li h5 {
  font-size: 24px;
  margin-bottom: 15px;
  text-align: left;
}
.instructions_list li h5 span {
  font-size: 14px;
  padding: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.instructions_list li p {
  font-weight: bold;
  line-height: 1.7;
  font-size: 20px;
}

#footer {
  background-color: #000;
  color: #fff;
  margin-top: 50px;
}
#footer .inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 100px 25px 50px;
}
.ft_child_left,
.ft_child_right {
  width: 49%;
}
.ft_child_left {
  max-width: 400px;
}
.ft_logo_area {
  text-align: left;
}
.ft_logo_area .logo {
  margin: 0;
}
.ft_taxsonomy_list:not(:last-child) {
  margin-top: 0;
  margin-bottom: 30px;
}
.ft_taxsonomy_list h5 {
  border-bottom: solid 1px #00a0e9;
  padding-bottom: 10px;
  font-size: 18px;
  color: #fff;
}
ul.ft_taxsonomy_list_box li {
  border-top: none;
  padding: 10px 0;
  margin-bottom: 10px;

}
ul.ft_taxsonomy_list_box li h2 {
  margin-bottom: 10px;
}
ul.ft_taxsonomy_list_box li a {
  display: inline-block;
  margin-bottom: 5px;
}
.main_flex_cont section#shop_title {
  margin-bottom: 30px;
}
.tagslist p {
  font-size: 14px;
  font-weight: bold;
  border: solid 1px #fff;
  padding: 8px 14px;
}
aside .tagslist p {
  font-size: 10px;
  padding: 5px 7px;
}
.shop_info_name h2 {
  font-size: 40px;
  text-align: left;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.shop_info_name h2 span {
  width: 70px;
  font-size: 16px;
  padding: 8px 0;
  margin: 0;
}
#bottompage_cont h2 {
  font-size: 40px;
  text-align: left;
  margin-bottom: 30px;
}
#bottompage_cont p {
  font-size: 16px;
  margin-bottom: 40px;
  line-height: 26px;
}
#bottompage_cont b {
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.newslist a, .ft_menu_list a {
  font-size: 16px;
  padding: 15px 60px 16px 10px;
}
.new-post-badge {
  font-size: 10px;
  width: 45px;
  padding: 5px 0;
  margin-left: 10px;
}
.morelink {
  font-size: 14px;
}


.result_option {
  display: flex;
}
.result_option_count span {
  font-size: 16px;
}
.result_option_count text {
  font-size: 40px;
}
.result_option_count, .result_option_prefecture, .result_option_maker {
  margin-right: 15px;
  font-size: 16px;
}
.shoplist_cont {
  display: flex;
  flex-wrap: wrap;
}
.shoplist_right {
  width: 100%
}
.shoplist_right img {
  height: 150px;
}
.shoplist_left {
  width: 100%;
}
.shoplist_left h2 {
  font-size: 18px;
  padding: 15px 0px 5px;
}
.shoplist_left h3 {
  font-size: 12px;
}
.shoplist_child {
  position: relative;
  align-items: center;
  width: 31%;
  display: inline-block;
  margin: 0 .9% 20px;
  border: none;
  padding: 15px 10px;
  vertical-align: top;
  background-color: #434343;
  border-top: solid 5px #01a0e9;
}
.shoplist_child:last-child {
  border-bottom: none;
}
.info {
  width: 100%;
}
.shoplist_child .marks {
  display: flex;
  max-width: 100%;
  justify-content: flex-start;
  width: 70%;
  position: absolute;
  top: 18px;
  left: 13px;
}
.distance {
  font-size: 14px;
  padding: 5px 8px;
}

.popupshop_child {
  max-width: 500px;
  padding: 50px 30px;
}
.popupshop_child h2 {
  font-weight: bold;
  font-size: 22px;
}
.popupshop_child h2 span {
  font-size: 30px;
}
.popupshop_child_image img {
  height: auto;
  max-height: 250px;
}
.popupshop_child_image .distance {
  font-size: 14px;
  padding: 10px 15px;
}
.popupshop_child_image .distance span {
  font-size: 24px;
  line-height: 1;
}
.popupshop_child a {
  padding: 20px 0;
  font-size: 28px;
}
.popupshop_child a img {
  width: 24px;
}
.popupshop_child a text {
  font-size: 18px;
  margin-top: 5px;
}

.news_date {
  text-align: left;
  font-size: 16px;
}

.areashopsearch_ttl {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  padding: 0px 0 100px;
}

  
}








