@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

*:focus {
  outline: none;
}

body,
html,
div,
p,
span,
blockquote,
u,
s,
i,
b,
table,
tr,
th,
td,
ul,
ol,
dl,
li,
dt,
dd,
strong,
h1,
h2,
h3,
h4,
h5,
em,
header,
footer,
nav,
aside,
section,
input,
select,
option,
textarea,
button {
  margin: 0;
  padding: 0;
  font-weight: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-align: justify;
  text-justify: inter-ideograph;
  color: inherit;
}

body {
  font-weight: 400;
  font-size: 16px;
  font-family: "Noto Sans Japanese", sans-serif;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: #272727;
  background: #fff;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
}

ul,
ol {
  list-style-type: none;
}

a {
  text-decoration: none;
  transition-property: all;
  transition: 0.3s linear;
}
a:hover {
  opacity: 0.7;
}

table {
  border-collapse: collapse;
}

.wrap {
  width: 100vw;
  overflow-x: hidden;
}

.container {
  margin: 0 auto;
  padding: 0 25px;
  width: 100%;
  max-width: 1280px;
}

.black {
  color: #272727 !important;
}

.white {
  color: #fff !important;
}

.blue {
  color: #2EA7E0 !important;
}

.orange {
  color: #ED6C05 !important;
}

.bg-black {
  background: #272727 !important;
}

.bg-white {
  background: #fff !important;
}

.bg-blue {
  background: #2EA7E0 !important;
}

.bg-orange {
  background: #ED6C05 !important;
}

.small {
  font-size: 0.8rem !important;
}

.normal {
  font-size: 1rem !important;
}

.middle {
  font-size: 1.2rem !important;
}

.big {
  font-size: 1.5rem !important;
}

.large {
  font-size: 2rem !important;
}

.left {
  text-align: left !important;
}

.center {
  text-align: center !important;
}

.right {
  text-align: right !important;
}

.bold {
  font-weight: 700 !important;
}

.w100 {
  font-weight: 100;
}

.w200 {
  font-weight: 200;
}

.w300 {
  font-weight: 300;
}

.w400 {
  font-weight: 400;
}

.w500 {
  font-weight: 500;
}

.w700 {
  font-weight: 700;
}

.w900 {
  font-weight: 900;
}

@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.img_center {
  display: block;
  margin: 40px auto;
  max-width: 400px;
  width: 100%;
}

.sec_padi {
  padding: 100px 0 120px;
}
@media (max-width: 768px) {
  .sec_padi {
    padding: 80px 0 100px;
  }
}

.sec_padi_bottom {
  padding: 0 0 120px;
}
@media (max-width: 768px) {
  .sec_padi_bottom {
    padding: 0 0 100px;
  }
}

.m_big {
  margin: 100px 0;
}

.m_middle {
  margin: 40px 0;
}

.mt_big {
  margin-top: 100px;
}

.mt_middle {
  margin-top: 40px;
}

.mt_short {
  margin-top: 20px;
}

.m_auto_middle {
  margin: 40px auto;
}

.block_center {
  display: table;
}

.ttl_wrap h1, .ttl_wrap h2 {
  font-size: clamp(1.3rem, 4vw, 60px);
  font-weight: 900;
  line-height: 1.5;
}
.ttl_wrap p {
  max-width: 500px;
  margin: 40px auto 0;
}

.ttl_wrap_next {
  margin-top: 150px;
}

.item_list_ttl {
  margin: 60px 0 40px;
  font-size: clamp(1.3rem, 4vw, 1.5rem);
  font-weight: bold;
  text-align: center;
  color: #fff;
}

.item_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.item_list .item {
  width: 30%;
  opacity: 0;
}
@media (max-width: 768px) {
  .item_list .item {
    width: 100%;
  }
  .item_list .item:nth-child(n+2) {
    margin-top: 50px;
  }
}
.item_list .item dl {
  margin-top: 15px;
  color: #fff;
}
.item_list .item dl dt {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  font-weight: bold;
}
.item_list .item dl dt::before {
  content: "";
  display: block;
  margin: 6px 10px 0 0;
  width: 15px;
  height: 15px;
}
.item_list .item dl dd {
  margin-top: 5px;
}
.item_list .item p {
  margin-top: 15px;
  color: #fff;
}
.item_list .item.fade_item {
  animation-name: fadeUpItem;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
}
.item_list .item.fade_item:nth-child(1) {
  animation-delay: 0.4s;
}
.item_list .item.fade_item:nth-child(2) {
  animation-delay: 0.5s;
}
.item_list .item.fade_item:nth-child(3) {
  animation-delay: 0.6s;
}

.item_list.mark_orange dt::before {
  background: #ED6C05;
}

.item_list.mark_white dt::before {
  background: #fff;
}

@keyframes fadeUpItem {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.sec_ttl {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
}
.sec_ttl::before, .sec_ttl::after {
  content: "";
  display: block;
  width: 10px;
  height: 3px;
  background: #272727;
}
.sec_ttl::before {
  margin-right: 5px;
}
.sec_ttl::after {
  margin-left: 5px;
}

.para, .para_clean {
  height: 0%;
  background-size: cover;
  padding-top: 100vh;
}
@media (max-width: 768px) {
  .para, .para_clean {
    padding-top: 200px;
  }
}

.para_fix {
  background-image: url(../img/fix.jpg);
}
@media (max-width: 768px) {
  .para_fix {
    background-image: url(../img/pic_main_visual.jpeg);
  }
}

.button_yellow {
  display: block;
  margin: 100px auto 0;
  padding: 10px;
  max-width: 400px;
  text-align: center;
  color: #272727;
  font-weight: bold;
  background: #FFFF00;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .button_yellow {
    font-size: 0.8rem;
  }
}

.fadein {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s linear;
}

.fadein.start {
  opacity: 1;
  transform: translateY(0);
}

.white_border {
  width: 100vw;
  height: 50px;
  background: #fff;
}

.header {
  position: absolute;
  top: 0;
  padding: 15px 5vw;
  width: 100vw;
  z-index: 1;
}

.header_logo {
  display: block;
  width: 20vw;
  min-width: 250px;
}
@media (max-width: 768px) {
  .header_logo {
    width: 40vw;
    max-width: 220px;
    min-width: initial;
  }
}

.header_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 20px;
}
@media (max-width: 768px) {
  .header_wrap {
    display: block;
  }
  .header_wrap .header_tel {
    margin-left: 0;
    font-size: 5.2vw;
  }
}

.header_tel {
  margin: 5px 0 0 2vw;
  color: #fff;
  font-size: 3.2vw;
  font-weight: bold;
}
@media (max-width: 768px) {
  .header_tel {
    display: none;
  }
}

.header_tel_sp {
  display: none;
}
@media (max-width: 768px) {
  .header_tel_sp {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 20px 0 0 0;
    flex-wrap: nowrap;
    font-size: clamp(24px, 5vw, 25px);
    font-weight: bold;
    color: #fff;
  }
  .header_tel_sp::before {
    content: "";
    display: block;
    margin: 5px 5px 0 0;
    width: 25px;
    height: 25px;
    background-image: url(../img/tel.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
nav {
  position: fixed;
  top: 30px;
  right: 3vw;
  padding: 80px 40px 40px;
  width: 100%;
  max-width: 300px;
  transform: translateX(500px);
  border: 1px solid #fff;
  transition: all 0.4s ease-in-out;
}
nav img {
  opacity: 0;
}
nav ul {
  margin-top: 40px;
}
nav ul li {
  opacity: 0;
}
nav ul li::after {
  content: "";
  display: block;
  height: 1px;
  width: 0;
  background: #fff;
  transition: all 0.4s ease-in;
}
nav ul li:hover::after {
  width: 100%;
}
@media (max-width: 768px) {
  nav ul li:hover::after {
    display: none;
  }
}
nav ul li:nth-child(n+2) {
  margin-top: 15px;
}
nav ul a {
  display: block;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
}
nav ul a:hover {
  opacity: 1;
}
@media (max-width: 500px) {
  nav {
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    max-width: initial;
  }
  nav img {
    display: block;
    margin: 0 auto;
    width: 200px;
  }
}

nav.active {
  transform: translate(0);
}
nav.active img {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-delay: 0.3s;
}
nav.active li {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
nav.active li:nth-child(1) {
  animation-delay: 0.4s;
}
nav.active li:nth-child(2) {
  animation-delay: 0.5s;
}
nav.active li:nth-child(3) {
  animation-delay: 0.6s;
}
nav.active li:nth-child(4) {
  animation-delay: 0.7s;
}
nav.active li:nth-child(5) {
  animation-delay: 0.8s;
}
nav.active li:nth-child(6) {
  animation-delay: 0.9s;
}
nav.active li:nth-child(7) {
  animation-delay: 1s;
}

.header_menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.header_menu li {
  padding-left: 15px;
}
.header_menu a {
  display: block;
}
@media (max-width: 768px) {
  .header_menu {
    width: 100%;
  }
  .header_menu li {
    padding-left: 0;
    width: 100%;
    text-align: center;
  }
  .header_menu li a {
    padding: 10px 0;
  }
}

.header_bars {
  position: fixed;
  top: 50px;
  right: 5vw;
  z-index: 3;
}
.header_bars::after {
  content: "menu";
  display: block;
  position: absolute;
  bottom: -13px;
  left: 50%;
  transform: translateY(0) translateX(-50%) rotate(0);
  -webkit-transform: translateY(0) translateX(-50%) rotate(0);
  font-size: 0.6rem;
  color: #fff;
  text-transform: uppercase;
  transition: all 0.6s;
}
.header_bars span {
  display: block;
  margin: 6px auto;
  width: 30px;
  height: 3px;
  background: #fff;
  border-radius: 5px;
  transition: all 0.6s;
}
.header_bars p {
  font-size: 0.6rem;
  line-height: 1.5;
}
.header_bars:hover {
  cursor: pointer;
}
@media (max-width: 500px) {
  .header_bars {
    top: 30px;
  }
}

.header_bars.active::after {
  content: "close";
}
.header_bars.active span:nth-child(1) {
  transform: translateY(8px) rotate(-45deg);
}
.header_bars.active span:nth-child(2) {
  opacity: 0;
}
.header_bars.active span:nth-child(3) {
  transform: translateY(-10px) rotate(45deg);
}

footer iframe {
  width: 100%;
}
footer .copyright {
  margin-top: -6px;
  padding: 10px 0;
}
@media (max-width: 768px) {
  footer .copyright {
    font-size: 10px;
  }
}

.footer_wrap {
  margin: 0 auto;
  max-width: 500px;
}
@media (max-width: 768px) {
  .footer_wrap img {
    display: block;
    margin: 0 auto;
    width: 70%;
  }
}
.footer_wrap ul {
  color: #fff;
  font-size: 3vw;
  font-size: min(5vw,30px);
  font-weight: 900;
}
.footer_wrap ul li {
  text-align: center;
}

.footer_tel {
  display: block;
  margin: 50px 0;
  padding: 20px 0;
  color: #fff;
  text-align: center;
  line-height: 1;
  font-weight: 900;
  font-size: 4rem;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
@media (max-width: 768px) {
  .footer_tel {
    font-size: clamp(35px, 10vw, 50px);
  }
}

.totop {
  display: table;
  position: fixed;
  right: 20px;
  bottom: 20px;
}
.totop img {
  width: 25px;
}
.totop:hover {
  cursor: pointer;
}

.searchform {
  position: relative;
  width: 327px;
}
.searchform input {
  width: 100%;
  padding: 12px 59px 12px 12px;
  border: 1px solid #272727;
}
.searchform button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 10px;
  background: #272727;
  border: 1px solid #272727;
}
.searchform button:hover {
  cursor: pointer;
}
.searchform button img {
  width: 25px;
}

.breadcrumb {
  padding: 6px 0;
}
.breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.breadcrumb ul li::after {
  content: "»";
  margin: 0 10px;
}
.breadcrumb ul li:last-child::after {
  display: none;
}

article .single_thumbnail {
  margin: 30px 0;
  width: 100%;
}
article figcaption {
  text-align: center;
}
article h1 {
  font-size: 2rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  article h1 {
    font-size: 25px;
  }
}
article h2 {
  margin-top: 60px;
  padding: 10px 15px;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  background: #ED6C05;
}
article h3 {
  margin-top: 60px;
  padding: 10px;
  font-weight: 700;
  font-size: 1.5rem;
}
article h4 {
  margin-top: 40px;
  font-weight: 700;
}
article p {
  margin: 30px 0;
  line-height: 2;
}
article a {
  text-decoration: underline;
}
article a:hover {
  text-decoration: none;
}
article .wp-block-table {
  margin-right: 10px;
  margin-left: 10px;
}
article table {
  min-width: 100%;
  border-bottom: 2px solid #dfdfdf;
}
article table tr:nth-child(odd) {
  background: #dfdfdf;
}
article table th, article table td {
  padding: 10px;
}
article table th {
  font-weight: 700;
  color: #fff;
  background: #acacac;
}
article strong {
  font-weight: 700;
  font-style: normal;
}
article em {
  font-weight: 700;
  font-style: normal;
  background: linear-gradient(transparent 60%, #acacac 60%);
}
article ul, article ol {
  margin-top: 30px;
  padding: 15px 10px 15px 40px;
  background: #dfdfdf;
}
article ul li, article ol li {
  padding-top: 10px;
}
article ul li:first-child, article ol li:first-child {
  padding-top: 0;
}
article ul {
  list-style-type: disc;
}
article ol {
  list-style-type: decimal;
}
article dl {
  margin-top: 30px;
}
article dl dt {
  padding-top: 10px;
}
article dl dt:first-child {
  padding-top: 0;
}
article dl dd {
  padding: 3px 0 3px 20px;
}
article input[type=text],
article input[type=tel],
article input[type=email],
article textarea {
  padding: 5px 10px;
  width: 100%;
  border: 1px solid #acacac;
}
article input[type=submit] {
  display: table;
  margin: 0 auto;
  padding: 5px 40px;
  color: #272727;
  background: #acacac;
  border: 2px solid #acacac;
}
article input[type=submit]:hover {
  color: #272727;
  background: #fff;
}
article input[type=submit]:active {
  color: #272727;
  background: #fff;
}
article blockquote {
  position: relative;
  margin-top: 30px;
  padding: 40px;
  background: #dfdfdf;
}
article blockquote p:first-child {
  margin-top: 0;
}
article blockquote::before, article blockquote::after {
  display: block;
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
article blockquote::before {
  top: 10px;
  left: 10px;
  background-image: url("../img/icon_quote1.svg");
}
article blockquote::after {
  right: 10px;
  bottom: 10px;
  background-image: url("../img/icon_quote2.svg");
}
article blockquote cite {
  padding-top: 20px;
  font-style: normal;
  font-size: 0.8rem;
  color: #acacac;
}

.toc {
  display: table;
  margin-top: 30px;
  padding: 15px;
  border: 1px solid #acacac;
}

.toc_title {
  margin-top: 0;
  text-align: center;
  font-weight: 700;
}

.toc_list {
  counter-reset: dt;
}
.toc_list dt, .toc_list dd {
  text-decoration: underline;
}
.toc_list dt:hover, .toc_list dd:hover {
  cursor: pointer;
  text-decoration: none;
}
.toc_list dt {
  counter-increment: dt;
  counter-reset: dd;
  padding: 20px 0 0 20px;
}
.toc_list dt::before {
  content: counter(dt) ". ";
  margin-left: -20px;
}
.toc_list dd {
  counter-increment: dd;
  padding-left: 47px;
}
.toc_list dd::before {
  content: counter(dt) "-" counter(dd) ". ";
  margin-left: -34px;
}

.top-main {
  position: relative;
  height: 100vh;
  background-image: url(../img/main_back.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.top-main_ttl {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  padding: 0 20px;
  width: 100%;
  text-align: center;
  letter-spacing: -0.5px;
  color: #fff;
  font-size: clamp(25px, 5vw, 50px);
  line-height: 1.8;
}
.top-main_ttl span {
  letter-spacing: -3vw;
}

.top-main_line {
  width: clamp(250px, 90%, 300px);
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-20%) translateX(-50%);
}

.top-news_ttl {
  margin-top: 50px;
}

.news {
  position: relative;
  margin: 30px auto 0;
  width: 100%;
  max-width: 700px;
  height: 250px;
  border: 2px solid #272727;
  background: #fff;
}
.news .top-news_img {
  position: absolute;
  right: -15vw;
  bottom: -130px;
  width: 200px;
  z-index: -1;
}
@media (max-width: 768px) {
  .news .top-news_img {
    display: none;
  }
}

.top-news_wrap {
  width: 100%;
  height: 100%;
  padding: 20px;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.top-news_wrap::-webkit-scrollbar {
  display: none;
}

.top-news_item {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  padding: 15px 20px;
  color: #272727;
  line-height: 1.3;
  border-top: 1px dashed #272727;
}
.top-news_item time {
  margin-right: 20px;
}
.top-news_item:first-child {
  padding-top: 0;
  border-top: none;
}
.top-news_item:last-child {
  padding-bottom: 0;
}
@media (max-width: 768px) {
  .top-news_item {
    flex-wrap: wrap;
  }
  .top-news_item time {
    margin-bottom: 5px;
    width: 100%;
  }
}

.tire_type {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  margin: 100px 0 80px;
}
.tire_type img {
  width: 18%;
}
@media (max-width: 768px) {
  .tire_type .tire_type {
    margin: 40px 0;
  }
  .tire_type img {
    width: 48%;
  }
}

.tire_price {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.tire_price:nth-of-type(n+2) {
  margin-top: 30px;
}
.tire_price .tire_price_img {
  width: 48%;
  height: 160px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  border: 1px solid #2EA7E0;
  line-height: 160px;
}
.tire_price ul {
  width: 48%;
}
.tire_price ul li {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  font-weight: bold;
}
.tire_price ul li::before {
  content: "";
  display: block;
  margin: 6px 7px 0 0;
  width: 15px;
  height: 15px;
  background: #2EA7E0;
}
.tire_price ul li:nth-child(n+2) {
  margin-top: 5px;
}
@media (max-width: 768px) {
  .tire_price:nth-of-type(n+2) {
    margin-top: 50px;
  }
  .tire_price .tire_price_img {
    width: 100%;
    height: 100px;
    line-height: 100px;
  }
  .tire_price ul {
    margin-top: 20px;
    width: 100%;
  }
}

.kerosene .kerosene_wrap {
  margin: 70px 0 50px;
}
.kerosene dl {
  color: #fff;
}
.kerosene dl dt, .kerosene dl dd {
  margin-top: 5px;
  text-align: center;
}
.kerosene dl dt {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  font-weight: bold;
}
.kerosene dl dt::before {
  content: "";
  display: block;
  margin: 6px 5px 0 0;
  width: 15px;
  height: 15px;
  background: #fff;
}
.kerosene p, .kerosene a {
  text-align: center;
  color: #fff;
}
.kerosene a {
  margin-top: 10px;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .kerosene dl:nth-child(n+2) {
    margin-top: 20px;
  }
  .kerosene a {
    font-size: 2rem;
  }
}

.size_wrap {
  margin: 0 auto;
  padding: 20px 10px;
  width: min(100%,800px);
  border: 1px solid #2EA7E0;
}
.size_wrap .size_content {
  display: table;
  margin: 0 auto;
}
.size_wrap .size_ttl {
  margin-bottom: 15px;
  text-align: center;
  color: #2EA7E0;
  font-size: 1.2rem;
  font-weight: bold;
}
.size_wrap .size_info {
  color: #2EA7E0;
  font-size: 0.8rem;
}
.size_wrap .size_info .size_info_ttl {
  font-size: 1.2rem;
  font-weight: bold;
}
.size_wrap .size_info .size_info_type {
  display: inline-block;
}
@media (max-width: 768px) {
  .size_wrap {
    padding: 20px;
  }
  .size_wrap .size_info {
    margin-top: 15px;
  }
  .size_wrap .size_info .size_info_ttl {
    display: block;
    margin-bottom: 3px;
  }
}

.size_cuation {
  margin: 60px 0 100px;
  text-align: center;
  color: #2EA7E0;
}

.shop_list {
  position: relative;
  margin-top: 80px;
}

.shop_item {
  position: relative;
  margin: 0 15px;
  width: 32%;
  background: #fff;
  border-radius: 10px;
}

.shop_item_img, .shop_item_noimg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 200px;
  border-radius: 10px 10px 0 0;
  background: #ED6C05;
}

.shop_item_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px 10px 0 0;
}

.shop_item_noimg {
  background: #ED6C05;
}
.shop_item_noimg img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  width: 80%;
}

.shop_item_content {
  padding: 220px 30px 60px;
}

.shop_item_ttl {
  font-size: 1.2rem;
  font-weight: bold;
}

.shop_table {
  margin-top: 5px;
}
.shop_table th, .shop_table td {
  vertical-align: top;
}
.shop_table th {
  padding-right: 10px;
  white-space: nowrap;
}

.shop_item_price {
  display: table;
  position: absolute;
  right: 30px;
  bottom: 20px;
}

.slick-track {
  display: flex;
}

.slick-slide {
  height: auto !important;
}

.slick-prev {
  left: 0;
  z-index: 1;
}

.slick-next {
  right: 0;
}

.slick-arrow {
  width: 40px;
  height: 40px;
}

.prev-arrow, .next-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  cursor: pointer;
}

.prev-arrow {
  left: 0;
  z-index: 1;
}

.next-arrow {
  right: 0;
}

.wash_plan .wash_plan_subttl {
  margin: 20px 0 0;
  max-width: initial;
  text-align: center;
  font-weight: bold;
  font-size: 1.5rem;
}
.wash_plan .wash_plan_list_ttl {
  margin: 70px 0 50px;
  text-align: center;
  color: #2EA7E0;
  font-size: 1.5rem;
  font-weight: bold;
}
.wash_plan .wash_plan_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.wash_plan .wash_plan_list::after {
  content: "";
  display: block;
  width: 30%;
  height: 0;
}
.wash_plan dl {
  width: 28%;
}
.wash_plan dl dt {
  font-size: 1.5rem;
  font-weight: bold;
}
.wash_plan dl dd {
  margin-top: 3px;
  color: #2EA7E0;
}
.wash_plan dl:nth-child(n+4) {
  margin-top: 30px;
}
@media (max-width: 768px) {
  .wash_plan .wash_plan_list_ttl {
    margin: 40px 0 30px;
  }
  .wash_plan dl {
    width: 100%;
  }
  .wash_plan dl:nth-child(n+2) {
    margin-top: 30px;
  }
}

.coding_wrap:nth-child(n+2) {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .coding_wrap:nth-child(n+2) {
    margin-top: 100px;
  }
}

.coding_ttl {
  margin-bottom: 50px;
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
}

.coding_item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.coding_item img {
  width: 45%;
}
.coding_item dl {
  width: 51%;
  color: #fff;
}
.coding_item dt {
  font-weight: bold;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .coding_item dt {
    font-size: 1.2rem;
  }
}
.coding_item dd {
  margin-top: 10px;
}
.coding_item li {
  font-size: 1.5rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .coding_item li {
    font-size: 1.2rem;
  }
}
.coding_item:nth-child(n+2) {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .coding_item img {
    width: 100%;
  }
  .coding_item dl {
    margin-top: 15px;
    width: 100%;
  }
}

.option_wrap .option_ttl {
  margin-bottom: 50px;
  text-align: center;
  color: #2EA7E0;
  font-size: 1.5rem;
  font-weight: bold;
}
.option_wrap .option_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.option_wrap .option_item {
  width: 30%;
}
.option_wrap .option_item:nth-child(n+4) {
  margin-top: 30px;
}
.option_wrap dl dt {
  font-size: 1.2rem;
  font-weight: bold;
}
.option_wrap dl dd {
  margin-top: 5px;
  color: #2EA7E0;
}
.option_wrap dl li {
  font-size: 1.2rem;
  font-weight: bold;
}
.option_wrap:nth-child(n+2) {
  margin-top: 100px;
}
@media (max-width: 768px) {
  .option_wrap .option_item {
    width: 100%;
  }
  .option_wrap .option_item:nth-child(n+2) {
    margin-top: 30px;
  }
}

.inspec {
  position: relative;
}

.inspec_wrap {
  padding-bottom: 50px;
  margin-top: 70px;
}

.inspec_subttl {
  margin-top: 10px;
  max-width: initial !important;
  text-align: center;
  font-weight: bold;
  font-size: 1.5rem;
}

.inspec_item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}
.inspec_item:nth-child(n+2) {
  margin-top: 80px;
}
.inspec_item .inspec_item_img {
  margin-right: 30px;
  width: max(35%, 300px);
}
.inspec_item .inspec_content {
  margin-left: 20px;
  width: 35%;
}
.inspec_item .inspec_item_ttl {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 10px;
}
.inspec_item table {
  margin: 3px 0;
}
.inspec_item table th, .inspec_item table td {
  padding: 1px 10px 1px 0;
  color: #ED6C05;
  font-size: 1.2rem;
  font-weight: bold;
}
.inspec_item table th {
  padding: 1px 20px 1px 0;
}
.inspec_item table td {
  padding: 1px 0;
}
.inspec_item .inspec_item_desc {
  display: table;
  margin-top: 5px;
  padding: 5px;
  font-weight: bold;
  font-size: 0.8rem;
  border-top: 1px solid #272727;
}
@media (max-width: 600px) {
  .inspec_item {
    margin: 0 auto;
    max-width: 270px;
  }
  .inspec_item:nth-child(n+2) {
    margin-top: 50px;
  }
  .inspec_item .inspec_item_img {
    width: 90%;
    margin: 0 auto;
  }
  .inspec_item .inspec_item_ttl {
    display: table;
  }
  .inspec_item .inspec_content {
    display: table;
    margin: 30px auto 0;
    width: 100%;
  }
  .inspec_item table {
    display: table;
  }
}

.inspec_caution {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}

.inspec_button {
  padding: 120px 0;
}
.inspec_button .button_yellow {
  margin: 0 auto;
}

.inspection_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  margin: 40px 0 80px;
}
.inspection_list ul {
  margin-right: 10px;
}
.inspection_list p {
  margin-left: 10px;
}

.contact_table {
  width: 100%;
}
.contact_table th {
  padding: 10px 10px 10px 0;
}
.contact_table td {
  padding: 10px 0 10px 10px;
}
@media (max-width: 768px) {
  .contact_table tr {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }
  .contact_table th, .contact_table td {
    width: 100%;
  }
  .contact_table th {
    padding-bottom: 0;
    padding-right: 10px;
  }
  .contact_table td {
    padding-top: 5px;
    padding-left: 0;
  }
}
.contact_table input[type=text],
.contact_table input[type=tel],
.contact_table input[type=email],
.contact_table textarea {
  padding: 5px 10px;
  width: 100%;
  border: 1px solid #272727;
}
.contact_table label:hover {
  cursor: pointer;
}
.contact_table input[type=checkbox] + label {
  position: relative;
  padding-right: 20px;
}
.contact_table input[type=checkbox] + label::before {
  display: inline-block;
  content: "";
  vertical-align: middle;
  margin-top: -3px;
  margin-right: 10px;
  width: 1em;
  height: 1em;
  border: 1px solid #272727;
}
.contact_table input[type=checkbox]:checked + label::after {
  display: block;
  position: absolute;
  content: "";
  top: -4px;
  left: 4px;
  width: 0.4em;
  height: 1em;
  border-right: 3px solid #272727;
  border-bottom: 3px solid #272727;
  transform: rotate(45deg);
}
.contact_table input[type=radio] + label {
  position: relative;
  padding-right: 20px;
}
.contact_table input[type=radio] + label::before {
  display: inline-block;
  content: "";
  vertical-align: middle;
  margin-top: -3px;
  margin-right: 10px;
  width: 1em;
  height: 1em;
  border: 1px solid #272727;
  border-radius: 50%;
}
.contact_table input[type=radio]:checked + label::after {
  display: block;
  position: absolute;
  content: "";
  top: 3px;
  left: 4px;
  width: 0.6em;
  height: 0.6em;
  background: #272727;
  border-radius: 50%;
}

.contact_error {
  display: none;
  padding-top: 5px;
}

.contact_error_all {
  display: none;
  text-align: center;
}

.contact_submit button {
  display: table;
  margin: 10px auto 0 auto;
  padding: 10px 50px;
  color: #fff;
  background: #272727;
  border: 2px solid #272727;
}
.contact_submit button:active {
  color: #272727;
  background: #fff;
}
.contact_submit a {
  display: table;
  margin: 10px auto 0 auto;
  padding: 10px 50px;
  color: #fff;
  background: rgba(39, 39, 39, 0.5);
  border: 2px solid rgba(39, 39, 39, 0.5);
}/*# sourceMappingURL=style.css.map */