/* グロナビ調整 */
@media screen and (min-width: 769px) and (max-width: 1258px) {
  .l-sw-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1024;
    display: flex;
    flex-direction: column;
  }

  .l-sw-header .-sw-header-inner {
    display: flex;
    align-items: center;
  }

  .l-sw-nav {
    position: relative; 
    width: 100%;
    background-color: #000;
  }

  .l-sw-nav .c-sw-nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* 最下部メニュー */
@media print, screen and (min-width: 769px) {
  .l-sw-bottom-tables .c-sw-bottom-tables-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* width: 100%; */
    max-width: 1100px;
    /* max-width: none !important; */
    /* margin-right: 0 !important;
    margin-left: 0 !important; */
    padding: 0 1rem;
  }

  .c-sw-bottom-tables-item{
    padding: 1rem;
  }

}

/* 雨路面動画の上にリンクボタンを追加 */
.m-sw-impression-uservoice-paly-add {
  position: absolute;
  display: inline-block;
  width: 65px;
  height: 65px;
  border-radius: 55px;
  background-color: #ff0; 
  bottom: 20px; 
  right: 20px;
  transition: background-color 0.3s ease;
  overflow: hidden;
}

.m-sw-impression-uservoice-paly-add.add-button-3 {
  position: absolute;
  display: inline-block;
  width: 65px;
  height: 65px;
  border-radius: 55px;
  background-color: #ff0; 
  bottom: 20px; 
  right: 30px;
  transition: background-color 0.3s ease;
  overflow: hidden;
}

.m-sw-impression-uservoice-paly-add::after {
  content: "";
  position: absolute;
  width: 17px; 
  height: 19px;
  top: 45%; 
  left: 53%; 
  transform: translate(-50%, -50%);
  background-color: #000;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transition: background-color 0.3s ease;
}

.m-sw-impression-uservoice-paly-add .-label {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 7px;
  text-align: center;
  color: #000;
  font-size: 9px;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  letter-spacing: 0.125em;
  pointer-events: none; 
}

.m-sw-impression-uservoice-paly-add.add-button-2 .-label {
  left: 1px;
}

.m-sw-impression-uservoice-paly-add:hover {
  background-color: #fff; 
}
.m-sw-impression-uservoice-paly-add:hover::after {
  background-color: #000; 
}
.m-sw-impression-uservoice-paly-add:hover .-label {
  color: #000; 
}

.l-sw-impression-main .p-sw-impression-main-body 
  .m-sw-row-item.u-item-9 .add-button-3 {
    opacity: 0;
    transform: translateY(20px);
}

.l-sw-impression-main .p-sw-impression-main-body 
  .m-sw-row-item.u-item-9.-from-tween.-to-tween .add-button-3 {
    opacity: 1;
    transform: translateY(0);
    transition-property: opacity, transform;
    transition-duration: .375s, 1s;
    transition-delay: .625s;
}

.l-sw-impression-main .p-sw-impression-main-body 
  .m-sw-row-item.u-item-2 .u-item-2-3 .add-button-2 {
    opacity: 0;
    transform: scale(0.8);
}

.l-sw-impression-main .p-sw-impression-main-body 
  .m-sw-row-item.u-item-2 .u-item-2-3.-from-tween.-to-tween .add-button-2 {
    opacity: 1;
    transform: scale(1);
    transition-property: opacity, transform;
    transition-duration: .625s, 1.375s;
    transition-delay: 2.625s;
}

body.is-scroll .l-sw-impression-main .p-sw-impression-main-body 
  .u-radius.-from-tween.-to-tween .add-button-2 {
    transition-delay: 0s !important;
}

.modal-size {
  width: min(28.5vw, 400px) !important
}

@media (max-width: 768.02px) {
  .modal-size {
    width: 100% !important;
  }
}

/* よくあるご質問 画像差し替え */
@media (min-width: 768.02px) {
  .image-replace{
    width: 80%;
    margin: 0 auto;
  }
}

/*============================
header
============================*/
.l-sw-header {
  position: fixed;
  z-index: 1024;
  right: 0;
  left: 0;
  width: 100%;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.375s;
          transition-duration: 0.375s;
}

@media print, screen and (min-width: 769px) {
  .l-sw-header {
    top: 0;
  }
}
@media screen and (max-width: 768px) {
  .l-sw-header {
    top: 0;
  }
}
@media print, screen and (min-width: 769px) {
  .l-sw-header.is-hide {
    -webkit-transform: translateY(-55px);
            transform: translateY(-55px);
  }
}
@media screen and (max-width: 768px) {
  .l-sw-header.is-hide {
    -webkit-transform: translateY(-41px);
            transform: translateY(-41px);
  }
}
.l-sw-header::before {
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  border-bottom-color: rgba(255, 255, 255, 0.5);
  border-bottom-style: solid;
  border-bottom-width: 0;
  content: "";
}

.l-sw-header .-sw-header-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media print, screen and (min-width: 769px) {
  .l-sw-header .-sw-header-inner {
    min-height: 55px;
	  padding-left: 50px;
  }
}
@media screen and (max-width: 768px) {
  .l-sw-header .-sw-header-inner {
    z-index: 9;
    min-height: 41px;
	          margin: 10px 20px;
  }
}
@media print, screen and (min-width: 769px) {
  .l-sw-header .c-sw-header-dunlopLogo {
    padding: 0 18px 2px;
  }
}
@media screen and (max-width: 768px) {
  .l-sw-header .c-sw-header-dunlopLogo {
    padding: 0 10px 2px;
  }
}
.l-sw-header .c-sw-header-nav-icon {
  position: absolute;
  z-index: 9;
  top: 7px;
  right: 15px;
  display: block;
  width: 30px;
  height: 30px;
}

@media print, screen and (min-width: 769px) {
  .l-sw-header .c-sw-header-nav-icon {
    display: none;
  }
}
.l-sw-header .c-sw-header-nav-icon > span {
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  -webkit-transition-property: background-color, -webkit-transform;
  transition-property: background-color, -webkit-transform;
  transition-property: background-color, transform;
  transition-property: background-color, transform, -webkit-transform;
  -webkit-transition-duration: 0.375s;
          transition-duration: 0.375s;
}

.l-sw-header .c-sw-header-nav-icon > span:nth-child(1) {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}

.l-sw-header .c-sw-header-nav-icon > span:nth-child(2) {
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
  -webkit-transition-delay: 0s, 0.1s;
          transition-delay: 0s, 0.1s;
}

html.is-menu .l-sw-header .c-sw-header-nav-icon > span:nth-child(1) {
  -webkit-transform: rotate(-30deg) translateY(0);
          transform: rotate(-30deg) translateY(0);
}

html.is-menu .l-sw-header .c-sw-header-nav-icon > span:nth-child(2) {
  -webkit-transform: rotate(30deg) translateY(0);
          transform: rotate(30deg) translateY(0);
}

.l-sw-nav {
  position: absolute;
  right: 0;
}

@media print, screen and (min-width: 769px) {
  .l-sw-nav {
    top: 0;
  }
}
@media screen and (max-width: 768px) {
  .l-sw-nav {
    top: 41px;
  }
}
@media screen and (max-width: 768px) {
  html:not(.is-menu) .l-sw-nav {
    pointer-events: none;
  }
}
@media screen and (max-width: 768px) {
  .l-sw-nav .-sw-nav-inner {
    width: 100vw;
    background-color: #000;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.625s;
            transition-duration: 0.625s;
  }
}
@media screen and (max-width: 768px) {
  html:not(.is-menu) .l-sw-nav .-sw-nav-inner {
    -webkit-transform: translateX(100vw);
            transform: translateX(100vw);
  }
}
@media screen and (max-width: 768px) {
  html.is-menu .l-sw-nav .-sw-nav-inner {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media print, screen and (min-width: 769px) {
  .l-sw-nav .c-sw-nav-container {
    padding: 0 20px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .l-sw-nav .c-sw-nav-container {
    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;
    min-height: calc(100dvh - 41px);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
@media print, screen and (min-width: 769px) {
  .l-sw-nav .c-sw-nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 55px;
  }
}
@media print, screen and (min-width: 769px) {
  .l-sw-nav .c-sw-nav-item:not(:first-of-type) {
    margin-left: min(3.57vw, 40px);
  }
}
@media screen and (max-width: 768px) {
  .l-sw-nav .c-sw-nav-item:not(:first-of-type) {
    margin-top: 40px;
  }
}
.l-sw-nav .c-sw-nav-item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  text-decoration: none;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .l-sw-nav .c-sw-nav-item-link {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.l-sw-nav .c-sw-nav-item-link .u-small {
  line-height: 1;
  font-weight: 500;
}

@media print, screen and (min-width: 769px) {
  .l-sw-nav .c-sw-nav-item-link .u-small {
    font-size: 11px;
  }
}
@media screen and (max-width: 768px) {
  .l-sw-nav .c-sw-nav-item-link .u-small {
    font-size: 13px;
  }
}
.l-sw-nav .c-sw-nav-item-link .u-strong {
  border-bottom-color: rgba(255, 255, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 2px;
  -webkit-transition-property: border-bottom-color;
  transition-property: border-bottom-color;
  -webkit-transition-duration: 0.125s;
          transition-duration: 0.125s;
  font-weight: 500;
}

@media print, screen and (min-width: 769px) {
  .l-sw-nav .c-sw-nav-item-link .u-strong {
    font-size: min(1.07vw, 15px);
  }
}
@media screen and (max-width: 768px) {
  .l-sw-nav .c-sw-nav-item-link .u-strong {
    font-size: 19px;
  }
}
.l-sw-nav .c-sw-nav-item-link.u-current .u-strong {
  border-bottom-color: #ff0;
}

@media print, screen and (min-width: 769px) {
  .l-sw-nav .c-sw-nav-item-link:hover .u-strong {
    border-bottom-color: #ff0;
  }
}
.l-sw-nav .c-sw-nav-copyright {
  font-weight: 300;
}

@media print, screen and (min-width: 769px) {
  .l-sw-nav .c-sw-nav-copyright {
    text-align: right;
    font-size: 0.625rem;
  }
}
@media screen and (max-width: 768px) {
  .l-sw-nav .c-sw-nav-copyright {
    text-align: center;
    font-size: 0.625rem;
  }
}
.l-sw-nav .c-sw-nav-copyright small {
  font-size: 100%;
}

@media screen and (min-width: 769px) and (max-width: 1258px) {
  .l-sw-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1024;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .l-sw-header .-sw-header-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
	  margin: 10px;
  }
  .l-sw-nav {
    position: relative;
    width: 100%;
    background-color: #000;
  }
  .l-sw-nav .c-sw-nav-list {
    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;
  }
}
html.is-menu {
  overflow-y: hidden;
}

@media screen and (min-width: 769px) and (max-width: 1258px) {
  main {
      background: #E6EAEB;
  }
}

.l-sw-footer {
    text-align: center;
    background-color: #fff;
    color: #000;
}