@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
html, input, textarea, select {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
}

@media print, screen and (min-width: 750px) {
  html {
    font-size: 0.9rem;
  }
}

*, *::before, *::after {
  box-sizing: border-box;
  word-break: break-all;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a img {
  border: none;
}

a {
  color: #0365b8;
}

@media screen and (max-width: 749px) {
  .pc {
    display: none;
  }
}
@media print, screen and (min-width: 750px) {
  .sp {
    display: none;
  }
}
body {
  margin: 0px;
  background: url(../common_img/background.jpg);
}

.contents {
  margin: auto;
  max-width: 530px;
  display: flex;
  flex-direction: column;
}
@media print, screen and (min-width: 750px) {
  .contents {
    max-width: 1260px;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: stretch;
  }
}

@media print, screen and (min-width: 750px) {
  main {
    width: calc(100% - 200px);
  }
}

article:not(.top) {
  margin-top: 10px;
  margin-right: 10px;
  margin-left: 10px;
  padding: 10px;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0px 0px 6px #555555;
}
@media print, screen and (min-width: 750px) {
  article:not(.top) {
    margin-left: 0px;
    height: calc(100% - 10px);
  }
}

aside {
  padding: 10px;
  float: none;
}
@media print, screen and (min-width: 750px) {
  aside {
    display: block;
    float: left;
    width: 180px;
    margin-left: 10px;
    margin-right: -200px;
    margin-top: 10px;
    padding: 0px;
  }
}
aside #logo {
  display: none;
}
@media print, screen and (min-width: 750px) {
  aside #logo {
    display: block;
  }
}

footer {
  margin: auto;
  max-width: 530px;
}
@media print, screen and (min-width: 750px) {
  footer {
    max-width: 1260px;
  }
}

header {
  border-top: 5px solid #f7556a;
  height: 55px;
  z-index: 1000;
}
@media print, screen and (min-width: 750px) {
  header {
    height: 5px;
    margin-bottom: 10px;
  }
}
header #header {
  padding-top: 5px;
  height: 100%;
  display: flex;
  align-items: center;
}
@media print, screen and (min-width: 750px) {
  header #header {
    display: none;
  }
}
header #header a img {
  max-width: calc(100% - 55px);
  height: auto;
  width: auto;
}

footer {
  clear: both;
  padding: 10px;
  padding-bottom: 70px;
  position: relative;
}
@media print, screen and (min-width: 750px) {
  footer {
    padding-bottom: 40px;
  }
}
footer address {
  color: #010000;
  text-align: right;
  font-size: 0.7rem;
  font-style: normal;
}

.spnavi {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 5020;
  background: #f7556a;
  border-bottom-left-radius: 10px;
}
.spnavi div {
  display: inline-block;
  position: relative;
  cursor: pointer;
  width: 50px;
  height: 50px;
}
@media print, screen and (min-width: 750px) {
  .spnavi {
    display: none;
  }
}

.spnavi-icon {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 2px;
  margin-left: -14px;
  background: #ffffff;
  transition: all 0.5s;
}
.spnavi-icon::before, .spnavi-icon::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 26px;
  height: 2px;
  background: #ffffff;
  transition: all 0.5s;
}
.spnavi-icon::before {
  margin-top: -10px;
}
.spnavi-icon::after {
  margin-top: 8px;
}
.spnavi-icon.close {
  background: transparent;
}
.spnavi-icon.close::before {
  transform: translateY(9px) rotate(-315deg);
  background: #ffffff;
}
.spnavi-icon.close::after {
  transform: translateY(-9px) rotate(315deg);
  background: #ffffff;
}

.spnavi-text {
  display: none;
}

@media screen and (max-width: 749px) {
  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5010;
    overflow-y: auto;
    background: #f7556a;
    transform: translateY(-100%);
  }
  nav.open {
    transform: translateY(0%);
  }
  nav.ani {
    transition: all 0.5s;
  }
  nav > ul {
    margin: 0;
    padding: 0;
    padding-top: 50px;
    padding-bottom: 30px;
  }
  nav > ul > li {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  nav > ul > li a {
    display: block;
    padding: 0;
    padding-top: 8px;
    padding-bottom: 8px;
    text-align: center;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 1px;
    color: #ffffff;
    text-decoration: none;
    position: relative;
  }
  nav > ul > li a:hover {
    color: #ffffff;
    text-decoration: none;
  }
  nav > ul > li a span.icon {
    position: absolute;
    white-space: nowrap;
    overflow: hidden;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    display: block;
    width: 26px;
    height: 26px;
  }
  nav > ul > li a span.icon::before, nav > ul > li a span.icon::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    width: 14px;
    height: 3px;
    transition: all 0.5s;
  }
  nav > ul > li a span.icon::before {
    height: 14px;
    width: 3px;
  }
  nav > ul > li a.open span.icon::before {
    background: transparent;
  }
  nav > ul > li > ul {
    margin: 0;
    padding: 0;
    border: none;
    background: #274635;
  }
  nav > ul > li > ul > li {
    list-style: none;
    border: none;
  }
  nav > ul > li > ul > li > a {
    display: block;
    padding: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 10px;
    padding-right: 10px;
    text-align: left;
    font-weight: 500;
    font-size: 0.875rem;
    color: #ffffff;
    text-decoration: none;
  }
  nav > ul > li > ul > li > a:hover {
    color: #ffffff;
    text-decoration: none;
  }
}
@media print, screen and (min-width: 750px) {
  nav ul {
    margin: 0px;
    padding: 0px;
    margin-left: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  nav ul li {
    list-style: none;
    background: url(../common_img/navi_list.png) no-repeat center left;
    padding-left: 26px;
    color: #342501;
    margin-bottom: 5px;
  }
  nav ul li a {
    color: #342501;
    text-decoration: none;
  }
}

#pankuzu {
  margin-bottom: 10px;
  font-size: 0.8rem;
  color: #8f8f8f;
}
#pankuzu a {
  color: #8f8f8f;
}
#pankuzu span {
  color: #0365b8;
  font-weight: bold;
}

article {
  color: #342501;
}
article h1 {
  position: relative;
  margin: 0;
  padding: 0;
  margin-bottom: 10px;
  padding-left: 10px;
  border-radius: 5px;
  width: 100%;
  max-width: 1040px;
  height: 102px;
  overflow: hidden;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  display: flex;
  align-items: center;
}
@media print, screen and (min-width: 750px) {
  article h1 {
    font-size: 1.5rem;
    padding-left: 20px;
  }
}
article h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 83px;
  height: 60px;
}
@media print, screen and (min-width: 550px) {
  article h1::after {
    background: url(../common_img/page_title_car.png) no-repeat bottom right;
  }
}
article h1.lightblue {
  background: url(../common_img/page_title_lightblue.jpg);
}
article h1.blue {
  background: url(../common_img/page_title_blue.jpg);
}
article h1.bluegreen {
  background: url(../common_img/page_title_bluegreen.jpg);
}
article h1.green {
  background: url(../common_img/page_title_green.jpg);
}
article h1.pink {
  background: url(../common_img/page_title_pink.jpg);
}
article h1.red {
  background: url(../common_img/page_title_red.jpg);
}
article h1.skyblue {
  background: url(../common_img/page_title_skyblue.jpg);
}
article h1.yellow {
  background: url(../common_img/page_title_yellow.jpg);
}
article h2 {
  position: relative;
  margin: 0;
  padding: 0;
  margin-bottom: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 40px;
  font-size: 1.25rem;
  font-weight: 500;
  color: #342501;
  border-bottom: 1px dashed #545454;
}
@media print, screen and (min-width: 750px) {
  article h2 {
    margin-left: -10px;
  }
}
article h2::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: url(../common_img/title_mark.jpg) no-repeat center left;
}
article h3 {
  color: #0365b8;
  font-size: 1.125rem;
  font-weight: 500;
}
article strong {
  color: #cc0000;
}
article section {
  margin-bottom: 2rem;
}
article section:last-of-type {
  margin-bottom: 0;
}
@media print, screen and (min-width: 750px) {
  article section {
    margin-left: 10px;
    margin-right: 10px;
  }
}
article ul {
  margin: 0px;
  padding: 0px;
  margin-bottom: 1rem;
}
article ul li {
  margin-left: 20px;
}
article ul li span {
  display: block;
  font-weight: 500;
}
article ul.lispace li {
  margin-bottom: 0.5rem;
}
article .more {
  text-align: right;
}
article .more img {
  max-width: 100%;
  height: auto;
  width: auto;
}
article #recommend-page {
  border-top: 1px dashed #545454;
  border-bottom: 1px dashed #545454;
}
article #recommend-page h3 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  text-align: center;
}
@media print, screen and (min-width: 750px) {
  article #recommend-page h3 {
    text-align: left;
  }
}
article .one_banner {
  margin-bottom: 1rem;
}
article .one_banner ul {
  margin-bottom: 0;
}
article .one_banner ul li {
  margin-bottom: 0;
}
article .one_banner ul li span {
  font-size: 0.8rem;
  margin-left: 0.5rem;
}
article .one_banner span {
  font-size: 0.8rem;
  margin-left: 1rem;
}
article .tel {
  margin-bottom: 1rem;
}
article .tel img {
  max-width: 100%;
  height: auto;
  width: auto;
}
article .tel .teltab {
  display: block;
  margin: 0px;
  padding: 0px;
  text-align: center;
}
@media print, screen and (min-width: 550px) {
  article .tel .teltab {
    display: none;
  }
}

article ul.image {
  margin: 0px;
  margin-bottom: 10px;
  padding: 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
}
@media print, screen and (min-width: 750px) {
  article ul.image {
    flex-direction: row;
  }
}
article ul.image li {
  margin: 0px;
  margin-bottom: 10px;
  list-style: none;
  text-align: center;
}
article ul.image li img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
article ul.image li span {
  display: block;
  font-size: 0.9rem;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}
article ul.image li span.fancycomment {
  display: none;
}
@media print, screen and (min-width: 750px) {
  article ul.image.image2 {
    justify-content: space-between;
  }
}
@media print, screen and (min-width: 750px) {
  article ul.image.image2 li {
    width: 49%;
  }
}
@media print, screen and (min-width: 750px) {
  article ul.image.image3 {
    justify-content: space-between;
  }
}
@media print, screen and (min-width: 750px) {
  article ul.image.image3 li {
    width: 31.3%;
  }
}
@media print, screen and (min-width: 750px) {
  article ul.image.image3 li.double {
    width: 65.5%;
  }
}
article ul.image.image32 {
  flex-direction: row;
  justify-content: space-between;
}
@media print, screen and (min-width: 750px) {
  article ul.image.image32 {
    justify-content: space-between;
  }
}
article ul.image.image32 li {
  width: 49%;
}
@media print, screen and (min-width: 750px) {
  article ul.image.image32 li {
    width: 31.3%;
  }
}
article ul.image.image32 li.double {
  width: 100%;
}
@media print, screen and (min-width: 750px) {
  article ul.image.image32 li.double {
    width: 65.5%;
  }
}

ul.page {
  margin: 0px;
  padding: 0px;
  margin-bottom: 0.5rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
ul.page li {
  margin: 0px;
  margin-bottom: 0.5rem;
  padding: 0px;
  width: 40%;
  list-style: none;
}
@media print, screen and (min-width: 550px) {
  ul.page li {
    width: 30%;
  }
}
ul.page li.prev {
  text-align: left;
}
ul.page li.next {
  text-align: right;
}
ul.page li img {
  max-width: 100%;
  height: auto;
  width: auto;
}

article table {
  width: 100%;
  border-collapse: collapse;
  empty-cells: show;
  margin-bottom: 1rem;
}
article table th,
article table td {
  padding: 0.5rem;
  color: #342501;
}
@media print, screen and (min-width: 750px) {
  article table th,
  article table td {
    padding: 1rem;
  }
}
article table th {
  background: #b2b2b2;
  border: 1px solid #ffffff;
  white-space: nowrap;
}
article table td {
  border-bottom: 1px dashed #535353;
}

article #map {
  margin-bottom: 1em;
  border: 1px solid #dcdcdc;
}
article #map iframe {
  width: 100%;
  max-width: 100%;
}

article.taiyapack ul.lispace li span {
  color: #0365b8;
}
article.taiyapack ul.lispace li p {
  margin: 0px;
  margin-bottom: 1rem;
  padding-left: 1rem;
  text-indent: -1rem;
}
article.taiyapack .pricewrap {
  display: flex;
  flex-direction: column;
}
@media print, screen and (min-width: 1050px) {
  article.taiyapack .pricewrap {
    flex-direction: row;
    justify-content: space-between;
  }
}
article.taiyapack .pricewrap .price {
  max-width: 500px;
}
@media print, screen and (min-width: 1050px) {
  article.taiyapack .pricewrap .price {
    width: 49%;
  }
}
article.taiyapack .pricewrap .price h4 {
  margin: 0;
  padding: 0.3rem;
  font-size: 1rem;
  font-weight: 500;
  background: #fff79a;
}
article.taiyapack .pricewrap .price table {
  width: 100%;
  border-collapse: collapse;
  empty-cells: show;
  margin-bottom: 1rem;
}
article.taiyapack .pricewrap .price table th {
  border: 1px solid #535353;
  background: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.3rem;
}
@media print, screen and (min-width: 750px) {
  article.taiyapack .pricewrap .price table th {
    padding: 0.5rem;
  }
}
article.taiyapack .pricewrap .price table tr:not(.title) th {
  white-space: normal;
  font-weight: 500;
}
article.taiyapack .pricewrap .price table td {
  border: 1px solid #535353;
  font-size: 0.875rem;
  padding: 0.3rem;
}
@media print, screen and (min-width: 750px) {
  article.taiyapack .pricewrap .price table td {
    padding: 0.5rem;
  }
}
article.taiyapack .pricewrap .price table td.com {
  width: 9rem;
}
article.taiyapack .pricewrap .price table td.price {
  width: 5rem;
  text-align: center;
  background: #9fd1f2;
}
article.taiyapack .pricewrap .price table td.price em {
  font-style: normal;
  font-weight: 500;
  margin-right: 3px;
}
article.taiyapack .kome {
  padding-left: 1rem;
  text-indent: -1rem;
  margin-left: 1rem;
}

article.sale ul {
  margin: 0px;
  padding: 0px;
  border-bottom: 1px solid #535353;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media print, screen and (min-width: 750px) {
  article.sale ul {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
article.sale ul li {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
article.sale ul li.image {
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@media print, screen and (min-width: 750px) {
  article.sale ul li.image {
    margin-top: 0px;
    width: 33%;
  }
}
article.sale ul li.image img {
  max-width: 100%;
  height: auto;
  width: auto;
}
@media print, screen and (min-width: 750px) {
  article.sale ul li.data {
    width: 65%;
  }
}
article.sale ul li.data h3 {
  margin: 0px;
  margin-bottom: 0.5em;
  padding: 0.5em;
  background: #3daacb;
  border-radius: 5px;
  color: #ffffff;
}
article.sale ul li.data p.price {
  margin: 0px;
  padding: 0px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #cc0000;
}
article.sale .noitem {
  margin-top: 5em;
  margin-bottom: 5em;
  text-align: center;
}

form {
  margin: 0px;
  padding: 0px;
  display: inline;
}
form input,
form textarea,
form select {
  margin: 0px;
  width: 96%;
  padding: 0.5rem;
}
form textarea {
  height: 10em;
}
form input[type=text],
form input[type=password],
form input[type=number],
form input[type=email],
form input[type=tel],
form input[type=password],
form input[type=file],
form textarea {
  border: 1px solid #666666;
}
form input[type=text].inputerror,
form input[type=password].inputerror,
form input[type=number].inputerror,
form input[type=email].inputerror,
form input[type=tel].inputerror,
form input[type=password].inputerror,
form input[type=file].inputerror,
form textarea.inputerror {
  background: #fee9f0;
}
form input:focus,
form textarea:focus,
form select:focus {
  outline: none;
}
form .select {
  display: inline-block;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}
form .select select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  border: 1px solid #cccccc;
  border-radius: 10px;
  padding: 10px;
  padding-right: 25px;
  margin: 0;
  margin-top: 3px;
  margin-bottom: 3px;
  color: #000000;
  background: #ffffff;
}
form .select select:focus {
  outline: none;
}
@media print, screen and (min-width: 750px) {
  form .select select {
    padding: 5px;
    padding-right: 25px;
  }
}
form .select::after {
  position: absolute;
  content: "";
  top: calc(50% - 5px);
  transform: translateY(-50%);
  right: 10px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #000000;
  border-bottom: 2px solid #000000;
  transform: rotate(45deg);
}
form input[type=radio],
form input[type=checkbox] {
  display: none;
}
form label {
  display: block;
  margin-bottom: 5px;
}
form label span {
  display: inline-block;
  position: relative;
  padding-left: 28px;
  cursor: pointer;
}
form label.radio span::before {
  display: block;
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  height: 18px;
  width: 18px;
  background: #ffffff;
  border: 1px solid #aaaaaa;
  border-radius: 50%;
}
form label.radio span::after {
  display: block;
  content: "";
  position: absolute;
  top: 5px;
  left: 3px;
  height: 12px;
  width: 12px;
  background: #005aa1;
  border: 1px solid #005aa1;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: 0;
}
form label:not(.radio) span::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 21px;
  width: 21px;
  background: #ffffff;
  border: 1px solid #aaaaaa;
}
form label:not(.radio) span::after {
  display: block;
  content: "";
  position: absolute;
  top: 5px;
  left: 4px;
  width: 14px;
  height: 8px;
  border-left: 3px solid #005aa1;
  border-bottom: 3px solid #005aa1;
  transform: rotate(-45deg);
  transition: all 0.3s;
  opacity: 0;
}
form input[type=radio]:checked + span::before,
form input[type=checkbox]:checked + span::before {
  border: 1px solid #333333;
}
form input[type=radio]:checked + span::after,
form input[type=checkbox]:checked + span::after {
  opacity: 1;
}

article.inquiry strong {
  color: #f86466;
}
article.inquiry .need {
  font-style: normal;
  font-weight: bold;
  color: #f86466;
}
article.inquiry .error {
  display: block;
  color: #ff0000;
  font-weight: 500;
  margin-bottom: 0em;
}
article.inquiry table th {
  display: block;
  padding: 0.5rem 0 0 0;
  background: #ffffff;
  text-align: left;
  border: none;
}
@media print, screen and (min-width: 750px) {
  article.inquiry table th {
    display: table-cell;
    width: 20%;
    padding: 0.5em;
    border-bottom: 4px solid #ffffff;
    background: #f6f6f6;
  }
}
article.inquiry td {
  display: block;
  padding: 0px;
  padding-bottom: 0.5em;
  border: none;
}
@media print, screen and (min-width: 750px) {
  article.inquiry td {
    display: table-cell;
    padding: 0.5em;
  }
}
article.inquiry .form_button ul {
  margin: 0px;
  padding: 0px;
  margin-bottom: 0.5em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media print, screen and (min-width: 750px) {
  article.inquiry .form_button ul {
    flex-direction: row;
    justify-content: space-around;
  }
}
article.inquiry .form_button ul li {
  margin: 0px;
  padding: 0px;
  list-style: none;
  width: 240px;
  text-align: center;
}
@media print, screen and (min-width: 750px) {
  article.inquiry #thanks {
    margin-bottom: 30em;
  }
}
article.inquiry #privacy h3 {
  margin-bottom: 0px;
}
article.inquiry #privacy p {
  margin-top: 0px;
}
@media print, screen and (min-width: 750px) {
  article.inquiry #privacy table th {
    width: auto;
  }
}

article.tire_search {
  /*
  	.select_category {
  		border-bottom:5px solid $tire_color_blue;
  		margin-bottom:1rem;

  		ul {
  			margin:0;
  			padding:0;
  			margin-left:-5px;		//左右をぴったりにするためにliのマイナスmargin
  			margin-right:-5px;
  			display:flex;
  			flex-direction:row;
  			justify-content:space-between;
  			@include pc() {
  				margin-left:0;		//PCの時は左右にちょっとだけ余白
  				margin-right:0;
  				justify-content:space-around;
  			}

  			//外側（lightblueの部分）
  			li {
  				margin:0;
  				padding:0;
  				margin-left:5px;
  				margin-right:5px;
  				list-style:none;
  				width:294px;
  				height:62px;
  				padding:2px;		//この隙間が枠線になる
  				padding-bottom:0;
  				background:$tire_color_light_blue;
  				@include pc() {
  					//PCの時は面取り
  					padding:5px;
  					padding-bottom:0;
  					background:
  						linear-gradient(135deg,transparent 18px,$tire_color_light_blue 18px),
  						linear-gradient(225deg,transparent 18px,$tire_color_light_blue 18px);
  					background-position:top left,top right;
  					background-size:52% 100%;
  					background-repeat:no-repeat;
  				}
  				position:relative;
  				display:flex;			//内側のdivを上下左右中央に
  				justify-content:center;
  				align-items:center;
  				cursor:pointer;
  				transition:all .5s;		//SPは面取りしないのでこのtransitionが有効

  				//内側（白の部分）
  				div {
  					display:flex;			//画像のdivとテキストのspan
  					justify-content:center;	//上下左右中央に
  					align-items:center;
  					height:100%;
  					width:100%;
  					background:#ffffff;

  					@include pc() {
  						//PCの時は面取りで
  						background:
  							linear-gradient(135deg,transparent 16px,#ffffff 16px),
  							linear-gradient(225deg,transparent 16px,#ffffff 16px);
  						background-position:top left,top right;
  						background-size:52% 100%;
  						background-repeat:no-repeat;
  						position:relative;	//before を absolute で乗せるので
  					}
  				}

  				//beforeでマウスオンのイメージを作っておく（PCの時）
  				&::before {
  					@include pc() {
  						content:'';
  						position:absolute;
  						top:0;
  						left:0;
  						width:100%;
  						height:100%;
  						background:
  							linear-gradient(135deg,transparent 18px,$tire_color_blue 18px),
  							linear-gradient(225deg,transparent 18px,$tire_color_blue 18px);
  						background-position:top left,top right;
  						background-size:52% 100%;
  						background-repeat:no-repeat;
  						transition:all .5s;		//PC用のtransition
  						opacity:0;				//opacityで見えなくしておく
  					}
  				}

  				//マウスオン
  				&:hover {
  					@include sp() {
  						background:$tire_color_blue;
  					}
  					&::before {
  						@include pc() {
  							opacity:1;	//面取りなのでbeforeのイメージを表示
  						}
  					}
  				}

  				//選択時
  				&.selected {
  					background:$tire_color_blue;
  					@include pc() {
  						background:
  							linear-gradient(135deg,transparent 18px,$tire_color_blue 18px),
  							linear-gradient(225deg,transparent 18px,$tire_color_blue 18px);
  						background-position:top left,top right;
  						background-size:52% 100%;
  						background-repeat:no-repeat;
  					}
  					div {
  						background:transparent;
  					}
  				}

  				//アイコンと文字
  				div {
  					figure {
  						margin:0;
  						width:53px;
  						height:80%;
  						background-repeat:no-repeat;
  						background-position:center right;
  						background-size:contain;
  						@include sp() {
  							display:none;
  						}
  						@include pc(1010) {
  							width:53px;
  							height:100%;
  						}
  					}
  					span {
  						margin-left:0;
  						padding:3px;
  						color:$tire_color_blue;
  						font-size:0.875rem;
  						font-weight:500;
  						@include pc() {
  							font-size:1rem;
  						}
  						@include pc(1010) {
  							margin-left:7px;
  							font-size:1.125rem;
  						}
  					}
  				}

  				&.selected {
  					div {
  						figure {
  							background-repeat:no-repeat;
  							background-position:center right;
  							background-size:contain;
  						}
  						span {
  							color:#ffffff;
  						}
  					}
  				}

  				&.summer {
  					div {
  						figure {
  							background-image:url(../tire/image/select_category_summer.png);
  						}
  					}
  					&.selected {
  						div {
  							figure {
  								background-image:url(../tire/image/select_category_summer_on.png);
  							}
  						}
  					}
  				}
  				&.winter {
  					div {
  						figure {
  							background-image:url(../tire/image/select_category_winter.png);
  						}
  					}
  					&.selected {
  						div {
  							figure {
  								background-image:url(../tire/image/select_category_winter_on.png);
  							}
  						}
  					}
  				}
  				&.allseason {
  					div {
  						figure {
  							background-image:url(../tire/image/select_category_allseason.png);
  						}
  					}
  					&.selected {
  						div {
  							figure {
  								background-image:url(../tire/image/select_category_allseason_on.png);
  							}
  						}
  					}
  				}
  			}
  		}
  	}
  */
}
article.tire_search .select_category {
  border-bottom: 5px solid #2e65b2;
  margin-bottom: 1rem;
}
@media print, screen and (min-width: 750px) {
  article.tire_search .select_category {
    margin-bottom: 2rem;
  }
}
article.tire_search .select_category ul {
  margin: 0;
  padding: 0;
  margin-left: -5px;
  margin-right: -5px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media print, screen and (min-width: 750px) {
  article.tire_search .select_category ul {
    margin-left: 0;
    margin-right: 0;
    justify-content: space-around;
  }
}
article.tire_search .select_category ul li {
  margin: 0;
  padding: 0;
  margin-left: 5px;
  margin-right: 5px;
  list-style: none;
  width: 294px;
  height: 62px;
  padding: 2px;
  padding-bottom: 0;
  background: #8cbfd2;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.5s;
}
@media print, screen and (min-width: 750px) {
  article.tire_search .select_category ul li {
    padding: 5px;
    padding-bottom: 0;
    background: linear-gradient(135deg, transparent 18px, #8cbfd2 18px), linear-gradient(225deg, transparent 18px, #8cbfd2 18px);
    background-position: top left, top right;
    background-size: 52% 100%;
    background-repeat: no-repeat;
  }
}
article.tire_search .select_category ul li div {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  background: #ffffff;
}
@media print, screen and (min-width: 750px) {
  article.tire_search .select_category ul li div {
    background: linear-gradient(135deg, transparent 16px, #ffffff 16px), linear-gradient(225deg, transparent 16px, #ffffff 16px);
    background-position: top left, top right;
    background-size: 52% 100%;
    background-repeat: no-repeat;
    position: relative;
  }
}
@media print, screen and (min-width: 750px) {
  article.tire_search .select_category ul li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 18px, #2e65b2 18px), linear-gradient(225deg, transparent 18px, #2e65b2 18px);
    background-position: top left, top right;
    background-size: 52% 100%;
    background-repeat: no-repeat;
    transition: all 0.5s;
    opacity: 0;
  }
}
@media screen and (max-width: 749px) {
  article.tire_search .select_category ul li:hover {
    background: #2e65b2;
  }
}
@media print, screen and (min-width: 750px) {
  article.tire_search .select_category ul li:hover::before {
    opacity: 1;
  }
}
article.tire_search .select_category ul li:hover div {
  background: transparent;
}
article.tire_search .select_category ul li.selected {
  background: #2e65b2;
}
@media print, screen and (min-width: 750px) {
  article.tire_search .select_category ul li.selected {
    background: linear-gradient(135deg, transparent 18px, #2e65b2 18px), linear-gradient(225deg, transparent 18px, #2e65b2 18px);
    background-position: top left, top right;
    background-size: 52% 100%;
    background-repeat: no-repeat;
  }
}
article.tire_search .select_category ul li.selected div {
  background: transparent;
}
article.tire_search .select_category ul li div figure {
  margin: 0;
  width: 53px;
  height: 80%;
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
  transition: all 0.5s;
}
@media screen and (max-width: 749px) {
  article.tire_search .select_category ul li div figure {
    display: none;
  }
}
@media print, screen and (min-width: 1010px) {
  article.tire_search .select_category ul li div figure {
    width: 53px;
    height: 100%;
  }
}
article.tire_search .select_category ul li div span {
  margin-left: 0;
  padding: 3px;
  color: #2e65b2;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.5s;
}
@media print, screen and (min-width: 750px) {
  article.tire_search .select_category ul li div span {
    font-size: 1rem;
  }
}
@media print, screen and (min-width: 1010px) {
  article.tire_search .select_category ul li div span {
    margin-left: 7px;
    font-size: 1.125rem;
  }
}
article.tire_search .select_category ul li:hover div figure, article.tire_search .select_category ul li.selected div figure {
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
}
article.tire_search .select_category ul li:hover div span, article.tire_search .select_category ul li.selected div span {
  color: #ffffff;
}
article.tire_search .select_category ul li.summer div figure {
  background-image: url(../tire/image/select_category_summer.png);
}
article.tire_search .select_category ul li.summer:hover div figure, article.tire_search .select_category ul li.summer.selected div figure {
  background-image: url(../tire/image/select_category_summer_on.png);
}
article.tire_search .select_category ul li.winter div figure {
  background-image: url(../tire/image/select_category_winter.png);
}
article.tire_search .select_category ul li.winter:hover div figure, article.tire_search .select_category ul li.winter.selected div figure {
  background-image: url(../tire/image/select_category_winter_on.png);
}
article.tire_search .select_category ul li.allseason div figure {
  background-image: url(../tire/image/select_category_allseason.png);
}
article.tire_search .select_category ul li.allseason:hover div figure, article.tire_search .select_category ul li.allseason.selected div figure {
  background-image: url(../tire/image/select_category_allseason_on.png);
}
article.tire_search .category_content {
  display: none;
}
article.tire_search .category_content.show {
  display: block;
}
article.tire_search .category_content h3 {
  color: #2e65b2;
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
}
article.tire_search .category_content .select_rim {
  margin-bottom: 2rem;
}
@media print, screen and (min-width: 750px) {
  article.tire_search .category_content .select_rim {
    margin-bottom: 3rem;
  }
}
article.tire_search .category_content .select_rim ul {
  margin: 0;
  padding: 0;
  width: 100%;
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, 100px);
  grid-gap: 10px;
}
@media print, screen and (min-width: 750px) {
  article.tire_search .category_content .select_rim ul {
    justify-content: left;
    grid-template-columns: repeat(auto-fit, 120px);
  }
}
article.tire_search .category_content .select_rim ul li {
  margin: 0;
  padding: 10px 5px;
  list-style: none;
  border: 2px solid #8cbfd2;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
}
article.tire_search .category_content .select_rim ul li:hover {
  transition: all 0.5s;
}
article.tire_search .category_content .select_rim ul li:hover, article.tire_search .category_content .select_rim ul li.selected {
  color: #ffffff;
  border: 2px solid #2e65b2;
  background: #2e65b2;
}
article.tire_search .category_content .rim_content {
  margin-bottom: 2rem;
  display: none;
}
article.tire_search .category_content .rim_content.show {
  display: block;
}
article.tire_search .category_content .rim_content table {
  margin: 0;
}
article.tire_search .category_content .rim_content table th {
  background: none;
  font-weight: 400;
  text-align: center;
  padding: 10px;
  width: 3rem;
  border-bottom: 1px solid #d4d4d4;
}
@media print, screen and (min-width: 750px) {
  article.tire_search .category_content .rim_content table th {
    width: 5rem;
  }
}
article.tire_search .category_content .rim_content table td {
  font-weight: 400;
  padding: 10px;
  border-bottom: 1px solid #d4d4d4;
}
article.tire_search .category_content .rim_content table td span {
  font-weight: 500;
  margin-left: 0.5rem;
}
article.tire_search .category_content .rim_content table thead th, article.tire_search .category_content .rim_content table thead td {
  border-bottom: 2px solid #929292;
}
article.tire_search .category_content .rim_content table thead td {
  text-align: center;
}
article.tire_search .category_content .rim_content table td ul {
  margin: 0;
  padding: 0;
  width: 100%;
  display: grid;
  justify-content: left;
  grid-template-columns: repeat(auto-fit, 110px);
  grid-gap: 5px;
}
@media print, screen and (min-width: 750px) {
  article.tire_search .category_content .rim_content table td ul {
    grid-template-columns: repeat(auto-fit, 140px);
    grid-gap: 10px;
  }
}
article.tire_search .category_content .rim_content table td ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}
article.tire_search .category_content .rim_content table td ul li a {
  display: block;
  border: 2px solid #8cbfd2;
  border-radius: 10px;
  padding: 10px 3px;
  text-align: center;
  text-decoration: none;
  color: inherit;
}
article.tire_search .category_content .rim_content table td ul li a:hover {
  color: #ffffff;
  border: 2px solid #2e65b2;
  background: #2e65b2;
  transition: all 0.5s;
}
article.tire_search .notexist {
  margin-top: 5rem;
  margin-bottom: 5rem;
  text-align: center;
}

article.tire_list h3 {
  margin: 0;
  margin-bottom: 10px;
  color: #2e65b2;
  font-size: inherit;
  font-weight: 400;
  border-bottom: 1px solid #808080;
  padding-left: 10px;
  padding-bottom: 5px;
}
@media print, screen and (min-width: 750px) {
  article.tire_list h3 {
    padding-left: 20px;
  }
}
@media print, screen and (min-width: 775px) {
  article.tire_list .condnum {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
article.tire_list .condnum .num {
  margin: 0;
  color: #2e65b2;
  padding-left: 10px;
}
@media print, screen and (min-width: 750px) {
  article.tire_list .condnum .num {
    padding-left: 20px;
  }
}
article.tire_list .condnum .num span {
  font-size: 2rem;
  margin-right: 3px;
}
article.tire_list .condnum .cond {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: 0;
}
@media print, screen and (min-width: 750px) {
  article.tire_list .condnum .cond .select {
    margin-left: 5px;
  }
}
article.tire_list .notire {
  margin-top: 5rem;
  margin-bottom: 5rem;
  text-align: center;
}
article.tire_list .mama {
  position: fixed;
  bottom: -30px;
  right: 5px;
  width: 100px;
  z-index: 900;
}
@media print, screen and (min-width: 750px) {
  article.tire_list .mama {
    width: 150px;
  }
}
article.tire_list .mama img {
  width: 100%;
}

article.tire_list .item,
article.tire_confirm .item {
  margin-top: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #808080;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
}
article.tire_list .item:first-of-type,
article.tire_confirm .item:first-of-type {
  padding-top: 2rem;
  border-top: 1px solid #808080;
}
@media print, screen and (min-width: 750px) {
  article.tire_list .item,
  article.tire_confirm .item {
    flex-direction: row-reverse;
  }
}
@media print, screen and (min-width: 750px) {
  article.tire_list .item .cont,
  article.tire_confirm .item .cont {
    width: calc(100% - 220px);
  }
}
article.tire_list .item .cont h2,
article.tire_confirm .item .cont h2 {
  margin: 0;
  padding: 0;
  border: none;
  font-weight: 500;
  font-size: 1.125rem;
}
article.tire_list .item .cont h2::after,
article.tire_confirm .item .cont h2::after {
  display: none;
}
@media print, screen and (min-width: 750px) {
  article.tire_list .item .cont h2,
  article.tire_confirm .item .cont h2 {
    font-size: 1.5rem;
  }
}
article.tire_list .item .cont .price,
article.tire_confirm .item .cont .price {
  margin: 0;
  margin-bottom: 1rem;
  font-weight: 500;
}
article.tire_list .item .cont .price span,
article.tire_confirm .item .cont .price span {
  color: #e15f59;
  margin-left: 1rem;
}
article.tire_list .item .cont .price span em,
article.tire_confirm .item .cont .price span em {
  font-style: normal;
  font-size: 2rem;
}
article.tire_list .item .cont .description,
article.tire_confirm .item .cont .description {
  margin: 0;
  margin-bottom: 1rem;
}
article.tire_list .item .cont .workfee-wrap,
article.tire_confirm .item .cont .workfee-wrap {
  text-align: center;
}
article.tire_list .item .cont .workfee-wrap a,
article.tire_confirm .item .cont .workfee-wrap a {
  text-decoration: none;
}
article.tire_list .item .cont .workfee-wrap div.workfee,
article.tire_confirm .item .cont .workfee-wrap div.workfee {
  display: none;
  text-align: left;
  margin-top: 10px;
  margin-bottom: 10px;
}
article.tire_list .item .cont a.confirm,
article.tire_confirm .item .cont a.confirm {
  margin: auto;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  width: 220px;
  max-width: 100%;
  height: 50px;
  color: #2e65b2;
  text-align: center;
  text-decoration: none;
  border: 2px solid #2e65b2;
  border-radius: 20px;
  transition: all 0.5s;
}
article.tire_list .item .cont a.confirm:hover,
article.tire_confirm .item .cont a.confirm:hover {
  color: #ffffff;
  background: #2e65b2;
}
article.tire_list .item .image,
article.tire_confirm .item .image {
  text-align: center;
  margin-bottom: 10px;
}
@media print, screen and (min-width: 750px) {
  article.tire_list .item .image,
  article.tire_confirm .item .image {
    width: 200px;
    margin-right: 20px;
    margin-bottom: 0;
  }
}
article.tire_list .item .image img,
article.tire_confirm .item .image img {
  max-width: 200px;
  max-height: 200px;
}

article.tire_confirm .item {
  padding-bottom: 0;
}
@media print, screen and (min-width: 750px) {
  article.tire_confirm .item {
    padding-bottom: 1rem;
  }
}

@media print, screen and (min-width: 750px) {
  article.tire_confirm .guide {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}
article.tire_confirm form .input-contactus-tel {
  display: none;
}
article.tire_confirm table th {
  display: block;
  padding: 0.5rem 0 5px 0;
  background: #ffffff;
  font-weight: 500;
  text-align: left;
  border: none;
}
@media print, screen and (min-width: 750px) {
  article.tire_confirm table th {
    display: table-cell;
    width: 15rem;
    padding: 0.5rem;
    border-bottom: 1px solid #808080;
  }
}
article.tire_confirm table th .need {
  background: #d5312d;
  color: #ffffff;
  font-weight: 400;
  font-size: 0.75rem;
  padding: 3px 5px;
  border-radius: 5px;
  margin-left: 0.5rem;
}
@media print, screen and (min-width: 750px) {
  article.tire_confirm table th .need {
    float: right;
  }
}
article.tire_confirm table td {
  display: block;
  padding: 0px;
  padding-bottom: 0.5rem;
  border: none;
}
@media print, screen and (min-width: 750px) {
  article.tire_confirm table td {
    display: table-cell;
    padding: 0.5rem;
    border-bottom: 1px solid #808080;
  }
}
article.tire_confirm table td p {
  margin: 0;
}
article.tire_confirm .inputerrormessage {
  color: #ff0000;
  font-weight: 500;
}
article.tire_confirm .finish {
  margin-bottom: 6rem;
}
article.tire_confirm .finish .thanks {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 3rem;
}
article.tire_confirm .form_button ul {
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media print, screen and (min-width: 750px) {
  article.tire_confirm .form_button ul {
    flex-direction: row-reverse;
    justify-content: space-around;
  }
}
article.tire_confirm .form_button ul li {
  margin: 0px;
  margin-bottom: 10px;
  padding: 0px;
  list-style: none;
  width: 100%;
}
article.tire_confirm .form_button ul li button {
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  width: 220px;
  max-width: 100%;
  height: 50px;
  color: #2e65b2;
  background: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border: 2px solid #2e65b2;
  border-radius: 20px;
  transition: all 0.5s;
  cursor: pointer;
}
article.tire_confirm .form_button ul li button:hover {
  color: #ffffff;
  background: #2e65b2;
}
article.tire_confirm .form_button ul li button.inquiry_form_back {
  color: #808080;
  border: 2px solid #808080;
}
article.tire_confirm .form_button ul li button.inquiry_form_back:hover {
  color: #ffffff;
  background: #808080;
}
article.tire_confirm .finish {
  margin-bottom: 6rem;
}
@media print, screen and (min-width: 750px) {
  article.tire_confirm .finish {
    text-align: center;
  }
}
article.tire_confirm .finish .thanks {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 3rem;
}

.inquiry_form_loading_wrap {
  display: none;
}

.inquiry_form_loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(128, 128, 128, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

@media print, screen and (min-width: 810px) {
  div.workfee {
    margin-left: 1rem;
  }
  div.workfee h3 {
    margin-left: -1rem;
  }
}
div.workfee .scroll {
  overflow-x: auto;
}
div.workfee .scroll table {
  margin-bottom: 10px;
  border-collapse: separate;
  border-spacing: 0;
  empty-cells: show;
  width: 530px;
}
div.workfee .scroll table th {
  padding: 5px;
  font-size: 0.875rem;
  font-weight: 500;
  background: #d7eff8;
  border: none;
  text-align: center;
}
div.workfee .scroll table td {
  padding: 5px;
  font-size: 0.875rem;
  background: #ffffff;
  border: none;
  text-align: center;
  width: 80px;
}
div.workfee .scroll table td.com {
  text-align: left;
}
div.workfee .scroll table td span {
  font-size: 0.75rem;
  margin-left: 3px;
}
div.workfee .scroll table td.kind {
  width: 100px;
  text-align: left;
}
div.workfee .scroll table td.rim {
  width: 110px;
  text-align: left;
}
div.workfee .scroll table th, div.workfee .scroll table td {
  border-right: 1px solid #929292;
  border-bottom: 1px solid #929292;
}
div.workfee .scroll table th.kind, div.workfee .scroll table td.kind {
  border-left: 1px solid #929292;
}
div.workfee .scroll table thead tr:first-of-type th {
  border-top: 1px solid #929292;
}
div.workfee .scroll table th.kind,
div.workfee .scroll table td.kind {
  position: sticky;
  left: 0;
}
div.workfee p {
  margin: 0;
  font-size: 0.875rem;
}

.guidance {
  margin-top: 10px;
  margin-bottom: 10px;
}
@media print, screen and (min-width: 870px) {
  .guidance {
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}
.guidance p {
  margin: 0;
  font-weight: 500;
}
.guidance em {
  font-style: normal;
  font-weight: 600;
  font-size: 1.25rem;
}
@media print, screen and (min-width: 750px) {
  .guidance em {
    font-size: min(2rem, 2vw);
  }
}
.guidance .g1 p {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-bottom: 10px;
  background: #cc0000;
  padding: 5px;
  color: #ffffff;
  font-size: 0.875rem;
}
@media print, screen and (min-width: 750px) {
  .guidance .g1 p {
    padding: 10px;
    font-size: min(1.5rem, 1.5vw);
  }
}
.guidance .g2 {
  background: #ffef03;
  padding: 5px;
}
@media print, screen and (min-width: 750px) {
  .guidance .g2 {
    background: none;
    padding: 0;
  }
}
.guidance .g2 p {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  color: #cc0000;
  font-size: 0.875rem;
}
@media print, screen and (min-width: 750px) {
  .guidance .g2 p {
    font-size: min(1.25rem, 1.25vw);
  }
}
@media print, screen and (min-width: 750px) {
  .guidance .g2 p:last-of-type {
    background: linear-gradient(transparent 60%, #ffef03 60%);
  }
  .guidance .g2 p:last-of-type::before {
    content: "★☆★☆ ";
  }
  .guidance .g2 p:last-of-type::after {
    content: " ☆★☆★";
  }
}

.guidance_price {
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid #d662b7;
  background: #ffffee;
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: 5px;
}
@media print, screen and (min-width: 750px) {
  .guidance_price {
    margin: 1rem;
  }
}
article.tire_search .guidance_price {
  margin-left: auto;
  margin-right: auto;
}
.guidance_price p {
  margin: 0;
}
@media print, screen and (min-width: 750px) {
  .guidance_price p {
    font-size: 1.25rem;
  }
}
article.tire_list .guidance_price p {
  font-size: 0.875rem;
}
.guidance_price p em {
  font-style: normal;
  font-weight: 600;
  color: #f7556a;
}
.guidance_price ul {
  margin: 0;
  padding: 0;
}
.guidance_price ul li {
  margin: 0;
  padding: 0;
  list-style: none;
  padding-left: 1rem;
  text-indent: -1rem;
  font-size: 0.875rem;
}
@media print, screen and (min-width: 750px) {
  .guidance_price ul li {
    padding-left: 0;
    text-indent: 0;
    display: inline;
  }
}

#calender {
  background: #ffffff;
  border-radius: 6px;
}
#calender #calender-inner {
  padding: 10px;
}
#calender #calender-inner h2 {
  margin: 0px;
  padding: 5px;
  background: #0365b8;
  border-radius: 5px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 5px;
}
#calender #calender-inner table {
  width: 80%;
  margin: auto;
  margin-bottom: 10px;
  border-collapse: collapse;
}
@media print, screen and (min-width: 750px) {
  #calender #calender-inner table {
    width: 100%;
  }
}
#calender #calender-inner table caption {
  color: #0365b8;
  font-weight: bold;
}
@media print, screen and (min-width: 750px) {
  #calender #calender-inner table caption {
    line-height: 1rem;
  }
}
#calender #calender-inner table th {
  font-weight: normal;
}
@media print, screen and (min-width: 750px) {
  #calender #calender-inner table th {
    font-size: 0.8rem;
    line-height: 1.1rem;
  }
}
#calender #calender-inner table td {
  text-align: center;
}
@media print, screen and (min-width: 750px) {
  #calender #calender-inner table td {
    font-size: 0.7rem;
    line-height: 1.1rem;
  }
}
#calender #calender-inner table .sunday {
  color: #ff0000;
}
#calender #calender-inner table .saturday {
  color: #0000ff;
}
#calender #calender-inner table .type1 {
  background: #ffcc00;
}
#calender #calender-inner table .type2 {
  background: #86cfff;
}
#calender #calender-inner table .type3 {
  background: #8fd379;
}
#calender #calender-inner table .type4 {
  background: #30acfd;
}
#calender #calender-inner #legend {
  width: 80%;
  margin: auto;
}
@media print, screen and (min-width: 750px) {
  #calender #calender-inner #legend {
    width: 100%;
    font-size: 0.7rem;
  }
}
#calender #calender-inner #legend ul {
  margin: 0px;
  padding: 0px;
}
#calender #calender-inner #legend ul li {
  list-style: none;
  line-height: 1.1rem;
  font-size: 0.875rem;
  font-weight: 400;
}
#calender #calender-inner #legend .legend-type1 {
  color: #ffcc00;
  font-size: 1rem;
}
#calender #calender-inner #legend .legend-type2 {
  color: #86cfff;
  font-size: 1rem;
}
#calender #calender-inner #legend .legend-type3 {
  color: #8fd379;
  font-size: 1rem;
}
#calender #calender-inner #legend .legend-type4 {
  color: #30acfd;
  font-size: 1rem;
}

#pagetop {
  position: fixed;
  right: 0px;
  bottom: -60px;
  width: 60px;
  height: 60px;
  z-index: 999;
  transition: all 0.5s;
}
#pagetop.show {
  bottom: 0px;
}
#pagetop a {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  text-decoration: none;
  width: 100%;
  height: 100%;
  background: #f7556a;
  border-top-left-radius: 100%;
}
#pagetop a i {
  margin-right: 20%;
  margin-bottom: 20%;
  color: #ffffff;
  font-size: 1.5rem;
  transition: all 0.5s;
}
#pagetop a:hover i {
  margin-bottom: 35%;
}
#pagetop.showtarget {
  position: absolute;
  right: 0px;
  top: -60px;
  bottom: 0;
  transition: none;
}

.fancybox-title-inside {
  text-align: left;
}
.fancybox-title-inside span {
  display: block;
  color: #0365b8;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.grid-base {
  display: none;
}
@media print, screen and (min-width: 550px) {
  .grid-base {
    display: block;
  }
}

.liquid-base {
  display: block;
}
@media print, screen and (min-width: 550px) {
  .liquid-base {
    display: none;
  }
}

ul.top-grid {
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
ul.top-grid li {
  margin: 0px;
  padding: 0px;
  list-style: none;
  display: block;
  width: 50%;
}
@media print, screen and (min-width: 750px) {
  ul.top-grid li {
    width: 265px;
    height: 300px;
  }
}
ul.top-grid li.double {
  width: 100%;
}
@media print, screen and (min-width: 750px) {
  ul.top-grid li.double {
    width: 530px;
  }
}
ul.top-grid li img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.facebook {
  position: relative;
}
.facebook .facebook-inner {
  content: "";
  position: absolute;
  top: 25%;
  left: 7.547%;
  width: 84.9056%;
  height: 68.333%;
  overflow: hidden;
}

.loading-elastic-flowing-dot-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.loading-elastic-flowing-dot {
  position: relative;
  left: -9999px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #3498db;
  color: #3498db;
  box-shadow: 9999px 0 0 -5px;
  animation: loading-elastic-flowing-dot 1.5s infinite linear;
  animation-delay: 0.25s;
}
.loading-elastic-flowing-dot::before, .loading-elastic-flowing-dot::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #3498db;
  color: #3498db;
}
.loading-elastic-flowing-dot::before {
  box-shadow: 9984px 0 0 -5px;
  animation: loading-elastic-flowing-dot-before 1.5s infinite linear;
  animation-delay: 0s;
}
.loading-elastic-flowing-dot::after {
  box-shadow: 10014px 0 0 -5px;
  animation: loading-elastic-flowing-dot-after 1.5s infinite linear;
  animation-delay: 0.5s;
}

@keyframes loading-elastic-flowing-dot-before {
  0% {
    box-shadow: 9984px 0 0 -5px;
  }
  30% {
    box-shadow: 9984px 0 0 2px;
  }
  60%, 100% {
    box-shadow: 9984px 0 0 -5px;
  }
}
@keyframes loading-elastic-flowing-dot {
  0% {
    box-shadow: 9999px 0 0 -5px;
  }
  30% {
    box-shadow: 9999px 0 0 2px;
  }
  60%, 100% {
    box-shadow: 9999px 0 0 -5px;
  }
}
@keyframes loading-elastic-flowing-dot-after {
  0% {
    box-shadow: 10014px 0 0 -5px;
  }
  30% {
    box-shadow: 10014px 0 0 2px;
  }
  60%, 100% {
    box-shadow: 10014px 0 0 -5px;
  }
}/*# sourceMappingURL=style.css.map */