@charset "UTF-8";
/* header 内追加要素（後に全体のCSSへ移植） */
.header-ec {
  background: #212025;
  height: 42px;
}

.header-ec__inner {
  width: 1200px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.header-ec__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  margin-left: 20px;
  padding-left: 10px;
  padding-right: 10px;
  text-decoration: none;
  color: #fff;
}

.header-ec__link--cart img {
  width: 17px;
  height: 15px;
  margin-right: 8px;
}

.header-ec__link--mypage img {
  width: 10px;
  height: 15px;
  margin-right: 8px;
}

.header-ec__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

@media screen and (max-width: 600px) {
  .header-ec__inner {
    width: auto;
  }
}

/* カート投入画面用 */
.ec-details {
  padding-top: 50px;
  padding-bottom: 50px;
  background: #fff;
}

.ec-details__inner {
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 600px) {
  .ec-details__inner {
    width: auto;
  }
}

.ec-title {
  padding-left: 18px;
  border-left: 18px solid #dc0012;
  font-size: 22px;
  line-height: 1.63636;
}

@media screen and (max-width: 600px) {
  .ec-title {
    margin-left: 10px;
    margin-right: 10px;
    padding-left: 9px;
    border-left: 9px solid #dc0012;
    font-size: 18px;
  }
}

.ec-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.ec-main__col01 {
  width: 100%;
  max-width: 464px;
  padding-left: 28px;
  padding-right: 28px;
}

.ec-main__col02 {
  width: 100%;
  max-width: 460px;
}

@media screen and (max-width: 600px) {
  .ec-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding-left: 10px;
    padding-right: 10px;
  }
  .ec-main__col01 {
    max-width: none;
    margin-top: 40px;
  }
  .ec-main__col02 {
    max-width: none;
  }
}

.ec-images {
  padding: 3px;
  border: 10px solid #efefef;
}

.ec-images__list {
  position: relative;
  width: 100%;
  padding-top: 100%;
}

.ec-images__item {
  position: absolute;
  left: 0;
  top: 0;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.ec-images img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.ec-images-note {
  margin-top: 40px;
  font-size: 12px;
  line-height: 1.4;
}

.ec-images-message {
  margin-top: 24px;
  font-size: 12px;
  line-height: 1.5;
}

.ec-images-message p:not(:first-child) {
  margin-top: 8px;
}

.ec-images-message em {
  color: #dc0012;
}

.ec-price__text {
  margin-top: 22px;
  padding: 13px 22px;
  border: 2px solid #ffb406;
  font-weight: bold;
  line-height: 1;
}

.ec-price__small {
  font-size: 18px;
  vertical-align: 3px;
}

.ec-price__number {
  display: inline-block;
  margin-left: 4px;
  margin-right: 4px;
  font-size: 36px;
}

.ec-blowout {
  margin-top: 24px;
}

.ec-blowout__text {
  line-height: 1.71429;
  font-size: 14px;
}

.ec-blowout__input {
  margin-top: 6px;
}

.ec-blowout input {
  display: none;
}

.ec-blowout label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 24px;
  height: 58px;
  border: 2px solid #d2d2d2;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition: 0.32s background-color, 0.32s border-color;
  transition: 0.32s background-color, 0.32s border-color;
}

.ec-blowout label:hover {
  background: #effcfe;
  border-color: #03a9f4;
}

.ec-blowout input:checked + label {
  border-color: #03a9f4;
  background-color: #03a9f4;
  color: #fff;
}

.ec-blowout svg {
  width: 36px;
  height: 30px;
  margin-right: 10px;
}

.ec-blowout__path {
  fill: #afafaf;
}

.ec-blowout input:checked + label .ec-blowout__path {
  fill: #fff;
}

@media screen and (max-width: 600px) {
  .ec-blowout label {
    padding-left: 12px;
    font-size: 14px;
  }
}

.ec-button-container {
  margin-top: 20px;
}

.ec-button {
  margin-top: 6px;
}

.ec-button__text {
  line-height: 1.71429;
  font-size: 14px;
}

.ec-button__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 78px;
  border-radius: 6px;
  background: #da2e35;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  -webkit-box-shadow: 0 6px 0 #910505;
  box-shadow: 0 6px 0 #910505;
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-transition: 0.32s background-color, 0.32s -webkit-box-shadow,
    0.32s -webkit-transform;
  transition: 0.32s background-color, 0.32s -webkit-box-shadow,
    0.32s -webkit-transform;
  transition: 0.32s box-shadow, 0.32s transform, 0.32s background-color;
  transition: 0.32s box-shadow, 0.32s transform, 0.32s background-color,
    0.32s -webkit-box-shadow, 0.32s -webkit-transform;
}

.ec-button__link:hover {
  -webkit-box-shadow: 0 3px 0 #910505;
  box-shadow: 0 3px 0 #910505;
  background: #f5323a;
  -webkit-transform: none;
  transform: none;
  color: #fff;
  cursor: pointer;
}

.ec-button__link img {
  margin-right: 10px;
}

@media screen and (max-width: 600px) {
  .ec-button__link {
    font-size: 16px;
  }
}

.ec-purchase-only {
  margin-top: 24px;
}

.ec-purchase-only__title {
  padding-left: 25px;
  position: relative;
  font-size: 16px;
  font-weight: 600;
}

.ec-purchase-only__title::before {
  position: absolute;
  left: 0;
  top: 2px;
  display: inline-block;
  width: 15px;
  height: 15px;
  content: "";
  margin-right: 10px;
  background: #f29e0e;
}

.ec-purchase-only__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
}

.ec-purchase-only__list li {
  width: 168px;
  margin-right: 10px;
}

.ec-purchase-only__link {
  text-decoration: none;
}

.ec-purchase-only__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 38px;
  border: 2px solid #d9d9d9;
  border-radius: 3px;
}

.ec-purchase-only__text {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.5;
  color: #252525;
}

.ec-guide {
  margin-top: 20px;
}

.ec-guide__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 189px;
  height: 33px;
  border-radius: 4px;
  background: #47b16b;
  text-decoration: none;
  font-size: 11px;
  font-weight: bold;
  color: #fff;
  -webkit-box-shadow: 0 3px 0 #398e56;
  box-shadow: 0 3px 0 #398e56;
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-transition: 0.32s background-color, 0.32s -webkit-box-shadow,
    0.32s -webkit-transform;
  transition: 0.32s background-color, 0.32s -webkit-box-shadow,
    0.32s -webkit-transform;
  transition: 0.32s box-shadow, 0.32s transform, 0.32s background-color;
  transition: 0.32s box-shadow, 0.32s transform, 0.32s background-color,
    0.32s -webkit-box-shadow, 0.32s -webkit-transform;
}

.ec-guide__link:hover {
  -webkit-box-shadow: 0 1px 0 #398e56;
  box-shadow: 0 1px 0 #398e56;
  background: #4ec677;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  color: #fff;
  cursor: pointer;
}

.ec-data {
  margin-top: 50px;
}

.ec-data__title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

.ec-data__table {
  margin-top: 24px;
  width: 100%;
  border-collapse: collapse;
  line-height: 2;
}

.ec-data__table th {
  padding-top: 16px;
  padding-bottom: 16px;
  border: 2px solid #fff;
  background: #fbf5ee;
  text-align: center;
  width: 258px;
}

.ec-data__table td {
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 18px;
  border: 2px solid #fff;
  background: #fdfaf7;
  text-align: left;
}

@media screen and (max-width: 600px) {
  .ec-data__table {
    width: calc(100% - 20px);
    margin-left: 10px;
    margin-right: 10px;
  }
  .ec-data__table th {
    width: 120px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .ec-data__table td {
    padding: 8px;
  }
}

.ec-large-image {
  margin-top: 50px;
  text-align: center;
}

.ec-large-image img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 600px) {
  .ec-large-image {
    margin-left: 10px;
    margin-right: 10px;
  }
}

.ec-details-option {
  padding-top: 70px;
  padding-bottom: 70px;
  background: #f9efe3;
}

.ec-details-option__inner {
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.ec-details-option__title {
  font-size: 18px;
  text-align: center;
  font-weight: bold;
}

.ec-details-option__title::after {
  display: block;
  content: attr(data-text);
  margin-top: 30px;
  font-size: 56px;
}

@media screen and (max-width: 600px) {
  .ec-details-option__title {
    font-size: 18px;
  }
  .ec-details-option__title::after {
    margin-top: 16px;
    font-size: 30px;
  }
  .ec-details-option__inner {
    width: auto;
    margin-left: 10px;
    margin-right: 10px;
  }
}

.ec-details-option-row {
  margin-top: 58px;
}

.ec-details-option-row__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.ec-details-option-row__item:not(:first-child) {
  margin-top: 56px;
}

.ec-details-option-row__body {
  width: calc(100% - 320px);
}

.ec-details-option-row__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8px;
  background: #da2e35;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ec-details-option-row__title01 {
  margin-right: 16px;
  padding: 8px;
  background: #fff;
  font-size: 18px;
  text-align: center;
  font-weight: bold;
  color: #da2e35;
}

.ec-details-option-row__title02 {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
}

.ec-details-option-row__image {
  width: 280px;
}

.ec-details-option-row__image img {
  width: 100%;
  height: auto;
}

.ec-details-option-row__text01 {
  margin-top: 16px;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.63636;
}

.ec-details-option-row__text02 {
  margin-top: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.75;
}

@media screen and (max-width: 600px) {
  .ec-details-option-row {
    display: block;
  }
  .ec-details-option-row__item {
    display: block;
    width: 100%;
  }
  .ec-details-option-row__item:not(:first-child) {
    margin-top: 40px;
  }
  .ec-details-option-row__image {
    margin-left: auto;
    margin-right: auto;
  }
  .ec-details-option-row__body {
    width: auto;
  }
  .ec-details-option-row__header {
    margin-top: 16px;
    padding: 4px;
  }
  .ec-details-option-row__title01 {
    font-size: 12px;
  }
  .ec-details-option-row__title02 {
    font-size: 20px;
  }
  .ec-details-option-row__text01 {
    margin-top: 24px;
    font-size: 20px;
  }
  .ec-details-option-row__text02 {
    font-size: 14px;
  }
}

.ec-details-option-alignment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 24px;
}

.ec-details-option-alignment__item {
  width: 225px;
  margin-right: 16px;
}

.ec-details-option-alignment__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 48px;
  border-radius: 6px;
  background: #da2e35;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  -webkit-box-shadow: 0 6px 0 #910505;
  box-shadow: 0 6px 0 #910505;
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-transition: 0.32s background-color, 0.32s -webkit-box-shadow,
    0.32s -webkit-transform;
  transition: 0.32s background-color, 0.32s -webkit-box-shadow,
    0.32s -webkit-transform;
  transition: 0.32s box-shadow, 0.32s transform, 0.32s background-color;
  transition: 0.32s box-shadow, 0.32s transform, 0.32s background-color,
    0.32s -webkit-box-shadow, 0.32s -webkit-transform;
}

.ec-details-option-alignment__link:hover {
  -webkit-box-shadow: 0 3px 0 #910505;
  box-shadow: 0 3px 0 #910505;
  background: #f5323a;
  -webkit-transform: none;
  transform: none;
  color: #fff;
  cursor: pointer;
}

.ec-details-option-button {
  margin-top: 26px;
}

.ec-details-option-button__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 48px;
  border-radius: 6px;
  background: #f29e0e;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  -webkit-box-shadow: 0 6px 0 #cc860d;
  box-shadow: 0 6px 0 #cc860d;
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-transition: 0.32s background-color, 0.32s -webkit-box-shadow,
    0.32s -webkit-transform;
  transition: 0.32s background-color, 0.32s -webkit-box-shadow,
    0.32s -webkit-transform;
  transition: 0.32s box-shadow, 0.32s transform, 0.32s background-color;
  transition: 0.32s box-shadow, 0.32s transform, 0.32s background-color,
    0.32s -webkit-box-shadow, 0.32s -webkit-transform;
}

.ec-details-option-button__link:hover {
  -webkit-box-shadow: 0 3px 0 #cc860d;
  box-shadow: 0 3px 0 #cc860d;
  background: #ffaa18;
  -webkit-transform: none;
  transform: none;
  color: #fff;
  cursor: pointer;
}

.ec-details-message {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #ffe6c8;
}

.ec-details-message__inner {
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.ec-details-message__title {
  font-size: 24px;
  text-align: center;
  font-weight: bold;
}

.ec-details-message__text {
  margin-top: 1.5em;
  line-height: 2;
}

@media screen and (max-width: 600px) {
  .ec-details-message__inner {
    width: auto;
    margin-left: 10px;
    margin-right: 10px;
  }
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.ec-images .slick-list {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.ec-images .slick-track {
  height: 100%;
}

.ec-images .slick-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.ec-images .slick-slide > div {
  width: 100%;
  height: 100%;
}

.ec-images .slick-arrow {
  position: absolute;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background: none;
  outline: none;
  cursor: pointer;
  width: 28px;
  height: 100px;
  background: #eee;
  text-indent: -100px;
  overflow: hidden;
}

.ec-images .slick-prev {
  top: calc(50% - 50px);
  left: -41px;
  background: url(/lineup/tire/details/img/slick_arrow_left.svg) no-repeat
    center;
  background-size: 18px 25px;
}

.ec-images .slick-next {
  top: calc(50% - 50px);
  right: -41px;
  background: url(/lineup/tire/details/img/slick_arrow_right.svg) no-repeat
    center;
  background-size: 18px 25px;
}

.ec-images .slick-dots {
  position: absolute;
  left: 0;
  bottom: -40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.ec-images .slick-dots li {
  width: 11px;
  height: 11px;
  margin-left: 5px;
  margin-right: 5px;
  text-indent: -100px;
  overflow: hidden;
  background: #d6d6d6;
  border-radius: 50%;
}

.ec-images .slick-dots li.slick-active {
  background: #252525;
}

.ec-sold-out {
  font-size: 18px;
  text-align: center;
  margin-top: 30px;
  line-height: 1.5;
  background: #fff8ef;
  border: 2px solid #ffedc4;
  padding: 24px 0;
}

/* 持込タイヤ交換 */
.ec-form-Items {
  margin-top: 22px;
  margin-bottom: 130px;
}

.ec-form-Item {
  display: flex;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(112, 112, 112, 0.14);
}

.ec-form-Item .ec-form-Title {
  max-width: 290px;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  margin-top: 10px;
}

.ec-form-Item .ec-form-Title em {
  width: 42px;
  background: #d41515;
  padding: 3px 0 4px;
  border-radius: 3px;
  margin: 2px 0 0 10px;
  text-align: center;
  line-height: 1;
  font-size: 12px;
  color: #ffffff;
  display: block;
}

.ec-form-Item-Box {
  flex: 1;
}

.ec-form-Item-Box .ec-form-Item-Contents {
  max-width: 304px;
  width: 100%;
}

.ec-form-Item-Box select {
  width: 100%;
  border: 1px solid rgba(191, 191, 191, 1);
  border-radius: 3px;
  box-sizing: border-box;
  padding: 10px 11px;
  font-size: 14px;
  cursor: pointer;
  background: #ffffff url(../details/img/select-arrow.png) no-repeat right center;
  background-size: 22px auto;
  appearance: none;
}

HTML CSS JSResult Skip Results Iframe
EDIT ON
/* WebKit ブラウザで、input type="number" のスピンボタンを非表示にする。 */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

/* Firefox で、input type="number" のスピンボタンを非表示にする。また、入力欄の値表示を中央寄せにし、高さをボタンのサイズに合わせる。 */
input[type="number"] {
  -moz-appearance: textfield;
  text-align: center;
  height: 38px;
}

button.ec-form-btn-number {
  width: 38px;
  height: 38px;
  border-radius: 3px 0 0 3px;
  background-color: #DC0012;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  vertical-align: middle;
}

button.ec-form-btn-number:hover {
background-color: #df817e;
transition: 0.3s;
}

button.ec-form-btn-number.plus {
  border-radius: 0 3px 3px 0;
}

button.ec-form-btn-number.minus {
  border-radius: 3px 0 0 3px;
}

button.ec-form-btn-number:before {
  content: "";
  width: 12px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}

button.ec-form-btn-number.plus:after {
  content: "";
  width: 2px;
  height: 12px;
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}


.ec-number-Group .ec-form-number {
  width: 73px;
  border: 1px solid rgba(191, 191, 191, 1);
  vertical-align: middle;
}

.ec-tire-exchange-pricebox {
  margin-top: 25px;
}

.ec-tire-exchange-pricebox .ec-price__text {
  text-align: center;
  margin-top: 15px;
}
.ec-tire-exchange-gas {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}

.ec-tire-exchange-gas span {
  padding-right: 25px;
  padding-left: 25px;
  position: relative;
}

.ec-tire-exchange-gas span:before,
.ec-tire-exchange-gas span:after {
  content: "";
  width: 2px;
  height: 20px;
  background-color: #DA2E35;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.ec-tire-exchange-gas span:before {
  transform: rotate(-30deg);
  left: 0;

}

.ec-tire-exchange-gas span:after {
  transform: rotate(30deg);
  right: 0;
}

.ec-tire-exchange-gas span em {
  padding-right: 3px;
  padding-left: 3px;
  color: #DA2E35;
  font-size: 32px;
  font-weight: 700;
}

.ec-tire-exchange-attention p {
  font-size: 12px;
  line-height: 1.5;
}

.ec-tire-exchange-attention b {
  margin-top: 25px;
  margin-bottom: 10px;
  display: inline-block;
}

.ec-form-rubber .ec-form-rubber-img {
  max-width: 150px;
  width: 100%;
  margin-right: 17px;
}

.ec-form-rubber .ec-form-rubber-img img {
  width: 100%;
  height: auto;
}

.ec-form-rubber {
  display: flex;
  align-items: center;
  padding: 15px;
  background-color: #F9EFE3;
  border-radius: 5px;
  position: relative;
}

.ec-form-rubber:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 10px solid #F9EFE3;
  position: absolute;
  top: -10px;
  left: 20px;
}

.ec-form-rubber .ec-form-rubber-text {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.ec-form-rubber-wrap {
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(112, 112, 112, 0.14);
}

.ec-form-Item.ec-form-noneborder {
  border-bottom: none;
}

.ec-form-error-Text {
  color: #D41515;
  font-size: 15px;
  line-height: 1.5;
  margin-top: 25px;
}

.ec-form-Items .error {
  color: #D41515;
  font-size: 15px;
  line-height: 1.5;
  margin-top: 5px;
}


@media screen and (max-width: 600px) {
  .ec-form-Items {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 30px;
  }
  .ec-form-Item {
    display: block;
    padding-top: 0;
  }
  .ec-form-Item-Box .ec-form-Item-Contents {
    max-width: initial;
  }
  .ec-form-Item .ec-form-Title {
    font-size: 15px;
  }
  .ec-tire-exchange-pricebox {
    margin-top: 18px;
  }
  .ec-form-error-Text {
    padding-right: 10px;
    padding-left: 10px;
  }
}
