@charset "UTF-8";
:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@font-face {
  font-family: "Meiryo";
  src: url("../fonts/meiryo.ttc") format("truetype");
  font-weight: 300;
  font-style: normal;
}
.han-sans-bold {
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.han-sans-regular {
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.font12 {
  font-size: 12px !important;
  line-height: 18px;
}

.font14 {
  font-size: 14px !important;
  line-height: 20px;
}

.font15 {
  font-size: 15px !important;
  line-height: 22px;
}

.font16 {
  font-size: 16px !important;
  line-height: 19px;
}

.font18 {
  font-size: 18px !important;
  line-height: 22px;
}

.font20 {
  font-size: 20px !important;
  line-height: 30px;
}

.font22 {
  font-size: 22px !important;
  line-height: 30px;
}

.font24 {
  font-size: 24px !important;
  line-height: 30px;
}

.font25 {
  font-size: 25px !important;
  line-height: 30px;
}

.font28 {
  font-size: 28px !important;
  line-height: 35px;
}

.font30 {
  font-size: 30px !important;
  line-height: 36px;
}

.font32 {
  font-size: 32px !important;
  line-height: 38px;
}

.font34 {
  font-size: 34px !important;
  line-height: 39px;
}

.font36 {
  font-size: 36px !important;
  line-height: 40px;
}

.font40 {
  font-size: 40px !important;
  line-height: 55px;
}

.text-red {
  color: #ff3333;
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-title-secondary {
  color: var(--title-secondary-color) !important;
}

.text-title-primary {
  color: var(--title-primary-color) !important;
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.text-black {
  color: #000000 !important;
}

.text-white {
  color: #FFFFFF !important;
}

.text-deleted {
  text-decoration: line-through;
}

.text-disable {
  opacity: 0.3;
}

.text-normal {
  font-weight: normal;
}

.text-bold {
  font-weight: bold;
}

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

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

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

:root {
  --bg-primary-color: #2788ca;
  --bg-secondary-color: #30726C;
  --bg-light-color: #F2F2F2;
  --primary-color: #59BCB0;
  --footer-color: #497296;
  --title-dark-color: #606060;
  --title-primary-color: #30726C;
  --title-secondary-color: #14B6E2;
}

.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}

.clearfix {
  clear: both;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0 auto !important;
  padding: 0;
  font-family: "M PLUS 1p", Arial, sans-serif;
  color: #7f8488;
  position: relative;
  min-height: 100vh;
  transition: 0.5s;
}

body.disable-scroll {
  overflow: hidden;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

p {
  margin-bottom: 5px;
}

ul {
  padding: 0px;
}

a:hover, a:visited, a:link, a:active {
  text-decoration: none !important;
}

.container-full {
  display: block;
  margin: 20px auto;
  width: 100%;
}

.bg-light {
  background-color: var(--bg-light-color);
}

.bg-green-default-color {
  background-color: #00b2cc;
}

.bg-rose-default-color {
  background: #e7447d;
}

.color-default {
  color: #00b2cc;
}

.color-rose {
  color: #e7447d;
}

.bg-footer {
  background-color: var(--footer-color);
}

.bg-gradient {
  background-image: linear-gradient(var(--bg-primary-color), var(--bg-secondary-color));
  padding: 100px 0;
}
@media (max-width: 768px) {
  .bg-gradient {
    padding: 0;
  }
}

.button--no-border {
  border: 0 none;
  background: transparent;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}
.row .col {
  padding-left: 15px;
  padding-right: 15px;
  float: left;
}

.row-2-col .col {
  width: 50%;
}
@media (max-width: 768px) {
  .row-2-col .col {
    width: 100%;
  }
}

@-webkit-keyframes a-ltr-after {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(101%);
  }
}

@keyframes a-ltr-after {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(101%);
  }
}
@-webkit-keyframes a-ltr-before {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(200%);
  }
}
@keyframes a-ltr-before {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(200%);
  }
}
@-webkit-keyframes a-top-bottom-before {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(200%);
  }
}
@keyframes a-top-bottom-before {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(200%);
  }
}
@-webkit-keyframes animateOverlay {
  to {
    opacity: 1;
    bottom: 0;
  }
}
@keyframes animateOverlay {
  to {
    opacity: 1;
    bottom: 0;
  }
}
@-webkit-keyframes openfilter {
  0% {
    max-width: 34px;
  }
  95% {
    max-width: 800px;
  }
  to {
    overflow: visible;
  }
}
@keyframes openfilter {
  0% {
    max-width: 34px;
  }
  95% {
    max-width: 800px;
  }
  to {
    overflow: visible;
  }
}
a[disabled] {
  opacity: 0.3;
  cursor: not-allowed;
}
a[disabled] > span {
  opacity: 1 !important;
}

button {
  color: inherit;
  align-items: center;
  justify-content: center;
  outline: none;
  cursor: pointer;
}
button:focus {
  outline: none;
}

button.outline {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
button.outline:hover {
  background: #00a6b633;
  transition: 0.5s;
}

button.filled {
  background: var(--title-secondary-color);
  color: #fff;
  border: 2px solid transparent;
}
button.filled:hover {
  color: white;
  background: #00a6b633;
  transition: 0.5s;
}

button:disabled {
  color: var(--primary-color);
  border: 2px solid;
  background: transparent;
  cursor: not-allowed;
}
button:disabled:hover {
  color: var(--primary-color);
  border: 2px solid;
  background: transparent;
}

.pd0 {
  padding: 0 !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.m-0 {
  margin: 0 auto !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.pv-30 {
  padding: 30px 0 !important;
}

.pv-20 {
  padding: 20px 0 !important;
}

.disabled {
  display: none;
}

.block-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.max-style {
  max-width: 1200px;
  width: 100%;
}

input[type=radio]:checked + .radio i.icon-star:before {
  content: url(../images/star.svg);
}
input[type=radio]:checked + .radio i.icon-moon:before {
  content: url(../images/moon.svg);
}
input[type=radio]:checked + .radio i.icon-sun:before {
  content: url(../images/sun.svg);
}

.icon-star:before {
  content: url(../images/star_.svg);
}

.icon-moon:before {
  content: url(../images/moon_.svg);
}

.icon-sun:before {
  content: url(../images/sun_.svg);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99999;
}

.overlay__wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.overlay__spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.overlay__spinner i {
  font-size: 25px;
  color: antiquewhite;
}

.notification {
  position: fixed;
  top: 60px;
  width: 500px;
  max-width: 100%;
  z-index: 4000;
  margin: 0 auto;
  left: 0;
  right: 0;
  transition-duration: 0.3s;
  transition-timing-function: linear;
}

#aui-flag-container {
  position: fixed;
  top: 60px;
  width: 550px;
  max-width: 100%;
  z-index: 4000;
  margin: 0 auto;
  left: 0;
  right: 0;
}

.aui-flag[aria-hidden=false] {
  opacity: 1;
  top: 0;
  left: 0;
}

.aui-flag {
  left: 0;
  max-height: 300px;
  opacity: 0;
  position: relative;
  top: -10px;
  transition: opacity 0.2s, top 0.5s;
}

.aui-message.error, .aui-message-error {
  background: #fff;
  border-color: #d04437;
  color: #333;
}

.aui-flag .aui-message {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-radius: 3px;
  width: 100%;
}

.aui-message {
  background: #fff;
  border: 1px solid #3572b0;
  border-radius: 3px;
  color: #333;
  line-height: 20px;
  margin: 20px 0 0 0;
  overflow-wrap: break-word;
  padding-bottom: 20px;
  padding-left: 60px;
  padding-right: 40px;
  padding-top: 20px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
}

.aui-message.error:before, .aui-message-error:before {
  background-color: #d04437;
}

.aui-message.error:before, .aui-message-error:before {
  background-color: #d04437;
}

.aui-message:before {
  background-color: #3572b0;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  top: 0;
  width: 40px;
}

.aui-message.closeable:hover .icon-close, .aui-message.closeable .icon-close:focus, .aui-message.closeable:not(.fadeout):not(.aui-will-close) .icon-close {
  opacity: 1;
}

.aui-message .aui-icon.icon-close {
  background-image: none;
  color: #707070;
  text-indent: inherit;
}

.aui-message.closeable .icon-close {
  cursor: pointer;
  left: auto;
  opacity: 0;
  position: absolute;
  right: 20px;
  top: 20px;
}

.aui-message:after {
  color: #fff;
  font-family: "Font Awesome 5 Pro";
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-weight: bold;
  left: 12px;
  line-height: 1;
  margin-top: -8px;
  position: absolute;
  speak: none;
  top: 50%;
}

.fa-remove:before, .fa-close:before, .fa-times:before {
  content: "\F00D";
}

/*****************************/
.aui-flag-stack {
  position: relative;
}

#aui-flag-container > .aui-flag-stack > div.aui-flag-stack-top-item[aria-hidden=false] {
  display: block;
  transition: transform 0.5s 0.5s, top 0.5s, opacity 0.8s;
}

.aui-flag[aria-hidden=false] {
  opacity: 1;
  top: 0;
  left: 0;
}

.aui-flag {
  left: 0;
  max-height: 300px;
  opacity: 0;
  position: relative;
  top: -10px;
  transition: opacity 0.2s, top 0.5s;
}

aui-message:first-child, .aui-message:first-child {
  margin-top: 0;
}

.aui-message {
  background: #fff;
  border: 1px solid #3572b0;
  border-radius: 3px;
  color: #333;
  line-height: 20px;
  margin: 20px 0 0 0;
  overflow-wrap: break-word;
  padding-bottom: 20px;
  padding-left: 60px;
  padding-right: 40px;
  padding-top: 20px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
}

.aui-message.warning, .aui-message-warning {
  background: #fff;
  border-color: #EDC211;
  color: #333;
}

.aui-message.error, .aui-message-error {
  background: #fff;
  border-color: #d04437;
  color: #333;
}

.aui-message.success, .aui-message-success {
  background: #fff;
  border-color: #f4462a;
  color: #333;
}

.aui-message.success:before, .aui-message-success:before {
  background-color: #f4462a;
}

.aui-message.error:before, .aui-message-error:before {
  background-color: #d04437;
}

.aui-message.warning:before, .aui-message-warning:before {
  background-color: #EDC211;
}

.aui-message:before {
  background-color: #3572b0;
}

.aui-message:before {
  background-color: #3572b0;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  top: 0;
  width: 40px;
}

.aui-message p.title {
  font-weight: bold;
}

.aui-message p.title strong {
  font-weight: inherit;
}

.aui-message.closeable:hover .icon-close, .aui-message.closeable .icon-close:focus, .aui-message.closeable:not(.fadeout):not(.aui-will-close) .icon-close {
  opacity: 1;
  outline: none;
}

.aui-message.closeable .icon-close {
  top: 10px;
}

.aui-message.closeable .icon-close {
  cursor: pointer;
  left: auto;
  opacity: 0;
  position: absolute;
  right: 20px;
  top: 20px;
}

.aui-message .aui-icon.icon-close {
  background-image: none;
  color: #707070;
  text-indent: inherit;
}

.aui-message .aui-icon {
  background-position: center;
}

.aui-icon {
  background-repeat: no-repeat;
  border: none;
  display: inline-block;
  height: 16px;
  margin: 0;
  padding: 0;
  text-align: left;
  vertical-align: text-bottom;
  width: 16px;
}

.aui-message.success:after, .aui-message-success:after {
  content: "\F05A";
  color: #fff;
}

.aui-message.warning:after, .aui-message-warning:after {
  content: "\F071";
  color: #fff;
}

.aui-message.error:after, .aui-message-error:after {
  content: "\F06A";
  color: #fff;
}

.aui-message:after {
  content: "\F05A";
  color: #fff;
}

.box-shadow {
  box-shadow: 1px 1px 3px 1px #b4b4b4;
}

.toolTip {
  position: absolute;
  align-items: center;
  top: 30px;
  right: 150px;
  height: 70px;
  width: 300px;
  transition: 0.8s;
  -webkit-transition: 0.8s;
  z-index: 9;
}
.toolTip .toolTip-wrap {
  position: relative;
  padding: 10px;
  background-color: #f9f9f9;
  border: solid 3px #a0c7ff;
  -ie-border-radius: 5px;
  border-radius: 5px;
}
.toolTip .toolTip-wrap:before {
  content: "";
  position: absolute;
  bottom: -41px;
  left: 20px;
  width: 0;
  height: 0;
  border-color: #a0c7ff transparent transparent transparent;
  border-width: 20px;
  border-style: solid;
}
.toolTip .toolTip-wrap:after {
  content: "";
  position: absolute;
  bottom: -38px;
  left: 20px;
  width: 0;
  height: 0;
  border-color: #f9f9f9 transparent transparent transparent;
  border-width: 20px;
  border-style: solid;
}

.qr-block {
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 700;
}
.qr-block p.label-qr {
  font-size: 14px;
  text-align: center;
  margin-top: 35px;
  color: #000000;
}
.qr-block .img_QR {
  text-align: center;
}

.hr-line {
  margin-bottom: 50px;
  border-bottom: 1px solid #989898;
  padding-bottom: 30px;
}

.input-style {
  width: 100%;
  height: 36px;
  padding: 0 10px;
  font-size: 14px;
  border-radius: 20px;
  border: 1px solid #e2e3e3;
  box-shadow: 5px 5px 10px -1px #dddddd;
  outline: none;
}
.input-style:focus {
  border-color: rgba(128, 189, 255, 0.8);
  outline: 0;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08) inset, 0 0 8px rgba(128, 189, 255, 0.6);
  border-radius: 20px;
}

.input-shop {
  width: 100%;
  height: 36px;
  padding: 0 10px;
  font-size: 12.5px;
  border-radius: 20px;
  border: 1px solid #e2e3e3;
  box-shadow: 5px 5px 10px -1px #dddddd;
  outline: none;
}
.input-shop:focus {
  border-color: rgba(128, 189, 255, 0.8);
  outline: 0;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08) inset, 0 0 8px rgba(128, 189, 255, 0.6);
  border-radius: 20px;
}
.input-shop option {
  font-size: 14px;
}

.btn-form {
  width: 335px;
  margin: 35px auto 0 auto;
  max-width: 100%;
  text-align: center;
}

.btn-style {
  padding: 0 10px;
  font-size: 14px;
  border-radius: 20px;
  border: 1px solid #e2e3e3;
  box-shadow: 5px 5px 10px -1px #dddddd;
  outline: none;
  display: inline-block;
  line-height: 35px;
  color: #fff;
  background: #f4462a;
  width: 100%;
  height: 36px;
}
.btn-style:hover, .btn-style:focus {
  border-color: rgba(128, 189, 255, 0.8);
  outline: 0;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08) inset, 0 0 8px rgba(128, 189, 255, 0.6);
  border-radius: 20px;
}

.require {
  font-size: 10px;
  color: red;
  padding: 3px 15px;
  margin: 0;
}

.modal-style h4 {
  font-size: 15px;
  margin-bottom: 35px;
}
.modal-style .close {
  float: left;
  margin: 0;
  padding: 0;
}
.modal-style .modal-dialog {
  border-radius: 24px;
  width: 380px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.modal-style .modal-content {
  -webkit-border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0;
  -moz-background-clip: padding;
  border-radius: 6px;
  background-clip: padding-box;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
  color: #000;
  background-color: #fff;
  border: rgba(0, 0, 0, 0);
}
.modal-style .modal-content .modal-body {
  margin: 0 40px 40px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

label.customize-name-label input {
  margin-top: 5px;
  width: 100%;
  padding: 3px 0;
  font-size: 11px;
  color: #3a3a3a;
  border: none;
  border-bottom: 1px solid #dddddd;
  outline: none;
  background: transparent;
  text-align: center;
}
label.customize-name-label input:focus {
  border-bottom: 1px solid rgba(128, 189, 255, 0.8);
  outline: 0;
  color: #0016ff;
}

.IE .modal-dialog-centered {
  transform: translate(0px, -50%) !important;
  margin: 0 auto !important;
}

.line-button {
  padding: 0;
}
.line-button:focus {
  outline: none;
  box-shadow: none;
}
.line-button i {
  font-size: 20px;
  color: #00BE00;
  margin-right: 5px;
}

.wrap-btn-go-page {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding: 0 10px;
}

.btn-go-page {
  background-color: #f4462a;
  border-radius: 20px;
  border: none;
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  padding: 6px 35px;
  margin-bottom: 20px;
  display: inline-block;
}
.btn-go-page:hover {
  color: #fff;
}

.owl-item:not(.active) {
  overflow: hidden;
}

.form-container {
  width: 335px;
  margin: 0 auto;
  max-width: 100%;
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #000000;
  text-align: left;
}
.form-container .wrap-field {
  padding: 0 5px;
}
.form-container .wrap-field .item-field:not(:last-child) {
  margin-bottom: 15px;
}
.form-container .wrap-field .item-field p.label {
  font-size: 14px;
}
.form-container .line-optional .form-check .form-check-input {
  width: auto !important;
  box-shadow: none !important;
}
.form-container .line-optional #line-logged-mess {
  text-align: center;
}
.form-container .line-optional .login-line-wrap .button-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.form-container .line-optional .login-line-wrap .button-wrap .line-button {
  border-radius: 5px;
  background-color: #06C755;
  color: #fff;
  display: flex;
  align-items: center;
  margin: 0 10px;
  margin-bottom: 5px;
}
.form-container .line-optional .login-line-wrap .button-wrap .line-button img {
  border-right: solid 1px #0000000d;
}
.form-container .line-optional .login-line-wrap .button-wrap .line-button span {
  font-size: 12px;
  padding: 0 15px;
}
.form-container .line-optional .login-line-wrap .button-wrap .line-button:hover {
  background-color: #05903b;
}
.form-container .line-optional .login-line-wrap .button-wrap .line-button.line-follow-channel-btn {
  background-color: rgba(199, 157, 6, 0.77);
}
.form-container .line-optional .login-line-wrap .button-wrap .line-button.line-follow-channel-btn:hover {
  background-color: #c79d06;
}

@media (max-width: 768px) {
  .break {
    display: block;
  }
}

button:disabled {
  color: #fff;
  background: #7f8589;
  cursor: not-allowed;
  border: 1px solid #e2e3e3;
}
button:disabled:hover, button:disabled:focus {
  border: 1px solid #e2e3e3;
  color: #fff;
  background: #7f8589;
}

.owl-carousel .animated {
  -webkit-animation-duration: 0.3s !important;
          animation-duration: 0.3s !important;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.disabled-slider {
  opacity: 0.5;
}

.layerImg {
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  width: 100%;
}

::-moz-range-track {
  background: #ffffff;
  border: 0;
}

::-moz-range-track {
  background: #ccc;
  border: 0;
}

input::-moz-focus-inner {
  border: 0;
}

input::-moz-focus-inner,
input::-moz-focus-outer {
  border: 0;
}

.slider_wrap {
  position: relative;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  margin: 0 auto;
}
.slider_wrap .btn-slider {
  z-index: 10;
}
.slider_wrap .btn-slider:hover {
  cursor: pointer;
}
.slider_wrap .btn-slider i {
  font-size: 20px;
  color: #797979;
}
.slider_wrap .prev-slider {
  position: absolute;
  left: 0px;
  bottom: 60px;
  width: 40px;
  height: 40px;
  text-align: center;
  padding: 10px;
}
.slider_wrap .next-slider {
  position: absolute;
  right: 0px;
  bottom: 60px;
  width: 40px;
  height: 40px;
  text-align: center;
  padding: 10px;
}

.owl-carousel {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.owl-carousel {
  width: 100%;
  height: 100%;
}

.slider_prod {
  width: 100%;
  height: 90vh;
  margin: 0 auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.zH-all {
  height: 100% !important;
  margin: 0 auto;
}
.zH-all img {
  height: 90% !important;
  width: calc(100%) !important;
  transition: 0.8s;
}

/* zoom */
#zoom {
  width: calc(100% - 45px);
  height: 60px;
  position: absolute;
  left: 44px;
  right: 0px;
  z-index: 10;
  bottom: 60px;
}

#zoom2 {
  width: 60px;
  height: calc(100% - 190px);
  position: absolute;
  right: 0px;
  z-index: 10;
  top: 64px;
  text-align: center;
}

.zoom-show {
  display: block !important;
}

.block-zoom {
  background-color: #848484;
  opacity: 0.8;
  transition: 0.8s;
  -webkit-transition: 0.8s;
}

.bar-wrap-st {
  display: flex;
  width: 85%;
  margin: 0 auto;
}
.bar-wrap-st span {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  padding: 10px;
}
.bar-wrap-st span:hover {
  cursor: pointer;
}
.bar-wrap-st span.btn-full-screen {
  padding: 10px 0px 10px 40px;
}

.st-scrollbar-X {
  overflow-x: auto;
}
.st-scrollbar-X::-webkit-scrollbar {
  width: 4px !important;
  height: 4px !important;
}
.st-scrollbar-X::-webkit-scrollbar-track {
  background: #f2f2f2;
}
.st-scrollbar-X::-webkit-scrollbar-thumb {
  background: #b1b1b1 0% 0% no-repeat padding-box;
  opacity: 1;
}
.st-scrollbar-X::-webkit-scrollbar-thumb:hover {
  background: #A7A5A9 no-repeat padding-box;
}

.st-scrollbar-Y {
  overflow-y: auto;
}
.st-scrollbar-Y::-webkit-scrollbar {
  width: 5px !important;
  height: 5px !important;
}
.st-scrollbar-Y::-webkit-scrollbar-track {
  background: #f2f2f2;
}
.st-scrollbar-Y::-webkit-scrollbar-thumb {
  background: #D1D2DA 0% 0% no-repeat padding-box;
  border-radius: 5px;
  opacity: 1;
}
.st-scrollbar-Y::-webkit-scrollbar-thumb:hover {
  background: #A7A5A9 no-repeat padding-box;
}

.img-shaft-grip-root {
  width: 22px !important;
}

.grip-perfect-pro-item {
  width: 55px;
}

.body-design-item {
  width: 25px !important;
}

.fix_layout {
  margin: 0;
  height: 100%;
  overflow: hidden;
}

/******************************/
.item-customize {
  display: none;
}

.item-customize.on {
  display: inline-grid !important;
}

.owl-carousel .owl-item img {
  -o-object-fit: contain;
     object-fit: contain;
  padding: 20px 0px;
  height: 95%;
}

.owl-carousel .owl-item, .owl-carousel .owl-stage, .owl-carousel .owl-stage-outer, .item-layout {
  height: 100%;
}

.item-layout .scale {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.scale > * {
  height: 100% !important;
}

.layout {
  background: rgba(255, 255, 255, 0);
  position: relative;
  width: 100%;
  height: 100%;
  transform: scale(1);
  transform-origin: center center;
}

.layout > * {
  position: absolute;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

#main-sp {
  overflow: hidden;
  min-height: 0;
  min-width: 0;
  position: fixed;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  z-index: 9999;
}

.main-wrap {
  position: relative;
  height: 100%;
  width: 100%;
}
.main-wrap .logo {
  position: absolute;
  width: 70px;
  z-index: 99;
  top: 10px;
  right: 15px;
}
.main-wrap .close_window {
  position: absolute;
  z-index: 99;
  top: 10px;
  left: 15px;
  -webkit-animation: 300ms;
          animation: 300ms;
  -moz-animation: 300ms;
  visibility: hidden;
  opacity: 0;
  cursor: pointer;
}
.main-wrap .close_window i {
  font-size: 35px;
  color: #040055;
}
.main-wrap .main-menu {
  position: absolute;
  width: 150px;
  left: 0px;
  top: 0px;
  bottom: 60px;
  overflow: visible;
  transition: 0.8s;
  -webkit-transition: 0.8s;
  z-index: 9;
  border-right: 1px solid #e0dede;
}
.main-wrap .main-menu #show-menu {
  display: flex;
  text-align: center;
  align-items: center;
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 105px;
  transition: 0.8s;
  -webkit-transition: 0.8s;
  height: 40px;
  width: 40px;
}
.main-wrap .main-menu #show-menu .icon-text-menu {
  font-size: 11px;
  font-weight: bold;
  display: inline;
  transform: rotate(-90deg);
  opacity: 0;
  transition: 0.8s;
  -webkit-transition: 0.8s;
}
.main-wrap .main-menu #show-menu .icon-menu {
  display: inline-block;
  text-align: center;
  position: relative;
  width: 2px;
  height: 20px;
  background: #9a9ea1;
}
.main-wrap .main-menu #show-menu .icon-menu:before {
  display: inline-block;
  vertical-align: top;
  content: "";
  width: 2px;
  height: 20px;
  background: #9a9ea1;
  position: absolute;
  top: 0px;
  left: -5px;
  transition: 0.8s;
  -webkit-transition: 0.8s;
}
.main-wrap .main-menu #show-menu .icon-menu:hover {
  cursor: pointer;
}
.main-wrap .main-menu .mmenu-wrap {
  background: rgba(255, 255, 255, 0.8);
  position: relative;
  height: 100%;
}
.main-wrap .main-menu .mmenu-wrap #mmenu {
  border-bottom: 1px solid #e0dede;
  padding: 5px 0px;
  height: 8%;
  opacity: 1;
  transition: 0.8s;
  -webkit-transition: 0.8s;
}
.main-wrap .main-menu .mmenu-wrap .btn-st {
  background-color: #f4462a;
  border-radius: 20px;
  border: none;
  color: #ffffff;
  width: 85px;
  height: 36px;
  display: inline-block;
  padding-left: 30px;
  line-height: 35px;
  transition: 0.8s;
  -webkit-transition: 0.8s;
  font-size: 16px;
  position: relative;
}
.main-wrap .main-menu .mmenu-wrap .btn-st:before {
  content: url(../images/bee.svg);
  width: 20px;
  height: 20px;
  display: inline-block;
  position: absolute;
  top: 6px;
  left: 15px;
}
.main-wrap .main-menu .mmenu-wrap .block-list-menu {
  padding: 25px 0px;
  height: calc(100% - 8%);
  overflow-y: hidden;
  position: relative;
  -ms-overflow-style: none;
  /* IE and Edge */
}
.main-wrap .main-menu .mmenu-wrap .block-list-menu .total-wrap-sp {
  display: none;
  transform: rotate(90deg);
  position: absolute;
  width: 40px;
  top: 15px;
  left: -5px;
  font-weight: bold;
  font-size: 13px;
  transition: 0.8s;
  -webkit-transition: 0.8s;
  color: #000000;
}
.main-wrap .main-menu .mmenu-wrap .block-list-menu .total-wrap-sp.on {
  opacity: 0;
}
.main-wrap .main-menu .mmenu-wrap .block-list-menu .view-menu, .main-wrap .main-menu .mmenu-wrap .block-list-menu .view-menu-root {
  width: 130px;
  display: inline-grid;
  align-items: center;
  text-align: center;
  height: 96%;
  overflow-y: scroll;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.main-wrap .main-menu .mmenu-wrap .block-list-menu .view-menu::-webkit-scrollbar, .main-wrap .main-menu .mmenu-wrap .block-list-menu .view-menu-root::-webkit-scrollbar {
  display: none;
}
.main-wrap .main-menu .mmenu-wrap .block-list-menu .item-menu .img-menu a {
  display: inline-block;
}
.main-wrap .main-menu .mmenu-wrap .block-list-menu .item-menu .img-menu a:hover {
  cursor: pointer;
}
.main-wrap .main-menu .mmenu-wrap .block-list-menu .item-menu .img-menu a.grip-cadero-item {
  width: 50px;
}
.main-wrap .main-menu .mmenu-wrap .block-list-menu .item-menu .img-menu img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
.main-wrap .main-menu .mmenu-wrap .block-list-menu .item-menu .img-menu #body-design-category img {
  height: 150px;
}
.main-wrap .main-menu .mmenu-wrap .block-list-menu .item-menu .img-menu #body-color-category img {
  height: 90px;
}
.main-wrap .main-menu .mmenu-wrap .block-list-menu .item-menu .img-menu #spec-design-category img {
  height: 80px;
}
.main-wrap .main-menu .mmenu-wrap .block-list-menu .item-menu .name-menu {
  margin: 0;
  font-size: 12px;
}
.main-wrap .main-menu .mmenu-wrap .block-list-menu .item-menu .name-menu:last-child {
  margin: 5px 0px 15px;
}
.main-wrap .main-menu .mmenu-wrap .block-list-menu .item-select.on .item-selected {
  border: solid 2px blue;
  padding-left: 3px;
  padding-bottom: 10px;
  padding-top: 10px;
  width: 40px;
}
.main-wrap .main-menu .mmenu-wrap .block-list-menu .item-select.on .name-menu {
  color: #2658ac;
}
.main-wrap .main-menu .mmenu-wrap .block-list-menu #optional {
  width: 130px;
  margin: 0 auto;
  display: inline-grid;
  align-items: center;
  text-align: center;
  transition: 0.8s;
  -webkit-transition: 0.8s;
}
.main-wrap .main-menu .mmenu-wrap .block-list-menu #optional.on {
  opacity: 0;
}
.main-wrap .main-menu .mmenu-wrap .block-list-menu #optional #screw-switch-option .radio-item {
  width: calc(100% / 3 - 0px);
}
.main-wrap .main-menu .mmenu-wrap .block-list-menu #optional #screw-switch-option i {
  height: 19px;
  width: 19px;
  margin: 0 auto;
}
.main-wrap .main-menu .mmenu-wrap .block-list-menu::-webkit-scrollbar {
  display: none;
}
.main-wrap .main-menu .mmenu-wrap #body-hosel.on, .main-wrap .main-menu .mmenu-wrap #body-socket.on {
  display: none !important;
}
.main-wrap .main-menu .mmenu-wrap .item-wrap {
  margin-bottom: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #e7eaed;
  border-radius: 20px;
  height: 36px;
  box-shadow: 1px 5px 5px -1px #dddddd;
  padding: 0px 5px;
}
.main-wrap .main-menu .mmenu-wrap .item-wrap .radio-item {
  cursor: pointer;
  width: calc(100% / 2 - 3px);
  text-align: center;
  color: #7f8589;
  height: 28px;
  margin: 0;
  font-size: 9px;
  display: inline-grid;
  align-items: center;
  transition: all 300ms linear;
}
.main-wrap .main-menu .mmenu-wrap .item-wrap input[type=radio]:checked + .radio {
  box-shadow: 2px 3px 7px -1px #7f8589;
}
.main-wrap .main-content {
  background-color: #ffffff;
  position: absolute;
  display: block;
  top: 0px;
  right: 0px;
  left: 0px;
  bottom: 60px;
  height: auto;
  width: auto;
  transition: 0.8s;
  -webkit-transition: 0.8s;
}
.main-wrap .menu-footer {
  background-color: #FFFFFF;
  position: absolute;
  bottom: 0px;
  left: 0px;
  height: 60px;
  width: 100%;
  border-top: 1px solid #e0dede;
  box-sizing: border-box;
  white-space: nowrap;
  display: table;
  padding: 8px 20px;
  transition: opacity 0.5s ease-in-out 1.5s;
  text-align: center;
}
.main-wrap .menu-footer .mn-ft-list {
  align-items: center;
  position: relative;
  width: 100%;
  overflow: hidden;
  display: table-cell;
}
.main-wrap .menu-footer .mn-ft-list .main-menu-ft {
  overflow-x: scroll;
  position: absolute;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.main-wrap .menu-footer .mn-ft-list .main-menu-ft .mn-ft-item {
  border: 1px solid #e0dede;
  border-radius: 20px;
  align-items: center;
  font-size: 17px;
  line-height: 1.47059;
  font-weight: 400;
  letter-spacing: -0.022em;
  padding: 0px 20px;
  margin: 0 6px;
  display: inline-block;
  cursor: pointer;
  overflow: hidden;
  -webkit-animation: openfilter 4s ease 1 forwards;
  animation: openfilter 4s ease 1 forwards;
}
.main-wrap .menu-footer .mn-ft-list .main-menu-ft .mn-ft-item a {
  font-size: 14px;
  text-align: center;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  display: inline-block;
  cursor: pointer;
  padding: 9px 10px;
  color: #7f8488;
}
.main-wrap .menu-footer .mn-ft-list .main-menu-ft .mn-ft-item a.active {
  color: #FFFFFF;
  font-weight: bold;
}
.main-wrap .menu-footer .mn-ft-list .main-menu-ft .mn-ft-item label {
  font-size: 14px;
  text-align: center;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  display: inline-block;
  cursor: pointer;
  padding: 9px 10px;
  margin: 0;
  color: #7f8488;
}
.main-wrap .menu-footer .mn-ft-list .main-menu-ft .mn-ft-item.on {
  border: 1px solid #0016FF;
}
.main-wrap .menu-footer .mn-ft-list .main-menu-ft .mn-ft-item.active {
  border: none;
  background: #e7eaed;
}
.main-wrap .menu-footer .mn-ft-list .main-menu-ft .mn-ft-item.active .btn-item-ft.on {
  font-weight: bold;
  font-size: 14px;
  margin: 0 10px;
  align-items: center;
  padding: 3px 25px;
  outline: 0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 2px 3px 7px -1px #7f8589;
}
.main-wrap .menu-footer .mn-ft-list .main-menu-ft::-webkit-scrollbar {
  display: none;
}
.main-wrap .hide-menu {
  width: 40px;
  border: none;
}
.main-wrap .hide-menu .block-list-menu .item-menu {
  opacity: 0;
  transition: 0.8s;
  -webkit-transition: 0.8s;
}
.main-wrap .hide-menu .mmenu-wrap {
  padding: 25px 0px;
}
.main-wrap .hide-menu .mmenu-wrap #mmenu {
  opacity: 0;
  transition: 0.8s;
  -webkit-transition: 0.8s;
}
.main-wrap .hide-menu .mmenu-wrap .btn-st {
  height: 36px;
  width: 36px;
  line-height: 35px;
  transition: 0.8s;
  -webkit-transition: 0.8s;
}
.main-wrap .hide-menu .mmenu-wrap #show-menu {
  left: 0px;
  transition: 0.8s;
  -webkit-transition: 0.8s;
}
.main-wrap .hide-menu .mmenu-wrap #show-menu .icon-text-menu {
  opacity: 1;
}
.main-wrap .share-social {
  position: absolute;
  display: flex;
  align-items: center;
  top: 0px;
  right: -40px;
  bottom: 60px;
  height: auto;
  width: 60px;
  transition: 0.8s;
  -webkit-transition: 0.8s;
  z-index: 9;
}
.main-wrap .share-social.on {
  right: 0px;
  transition: 0.8s;
  -webkit-transition: 0.8s;
}
.main-wrap .share-social.on .list-social {
  background: rgba(246, 246, 246, 0.5);
}
.main-wrap .share-social .icon-menu-social {
  position: relative;
  top: 19px;
}
.main-wrap .share-social .icon-menu-social .btn-menu-social {
  cursor: pointer;
}
.main-wrap .share-social .icon-menu-social .btn-menu-social i {
  font-size: 20px;
}
.main-wrap .share-social .list-social {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  text-align: center;
}
.main-wrap .share-social .list-social .ls-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
}
.main-wrap .share-social .list-social a {
  width: calc(100%);
  display: inline-block;
}
.main-wrap .share-social .list-social a:not(:last-child) {
  margin-bottom: 20px;
}
.main-wrap .share-social .list-social a#go-home i.icon-r:before {
  content: url("../images/icon-r.svg");
}
.main-wrap .share-social .list-social a#fullscreen i.icon-fullscreen:before {
  content: url("../images/icon-fullscreen.svg");
}
.main-wrap .share-social .list-social a i {
  font-size: 20px;
  color: #1b1e21;
  width: 25px;
  display: inline-block;
}
.main-wrap .show-slider-control {
  position: absolute;
  align-items: center;
  bottom: 90px;
  right: 30px;
  height: 70px;
  width: 70px;
  transition: 0.8s;
  -webkit-transition: 0.8s;
  z-index: 9;
}
.main-wrap .show-slider-control span:not(.switcher) {
  display: block;
  transform: rotate(-90deg);
  font-size: 12px;
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #7f8387;
}
.main-wrap .show-slider-control span.switcher {
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
}
.main-wrap .show-slider-control span.switcher input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  display: none;
  z-index: 1;
}
.main-wrap .show-slider-control span.switcher label {
  display: block;
  width: 70px;
  height: 70px;
  z-index: 1;
  cursor: pointer;
}
.main-wrap .show-slider-control span.switcher label:before {
  content: "";
  width: 70px;
  height: 70px;
  display: inline-block;
}
.main-wrap .show-slider-control span.switcher.switcher-all input:checked ~ label:before {
  content: url(../images/view-all.svg);
}
.main-wrap .show-slider-control span.switcher.switcher-all input:not(:checked) ~ label:before {
  content: url(../images/view-sole.svg);
}
.main-wrap .show-slider-control span.switcher.switcher-all.iron input:checked ~ label:before {
  content: url(../images/view-all-2.svg);
}
.main-wrap .show-slider-control span.switcher.switcher-all.iron input:not(:checked) ~ label:before {
  content: url(../images/view-sole-2.svg);
}
.main-wrap #show-price-notice-sp {
  position: absolute;
  align-items: center;
  bottom: 190px;
  right: 40px;
  transition: 0.8s;
  z-index: 9;
}
.main-wrap #show-price-notice-sp .open_notice {
  height: 50px;
  width: 50px;
  border: 1px solid #D6DBE0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 3px 3px 7px -1px #dddddd;
}
.main-wrap #show-price-notice-sp .modal-style .modal-body {
  margin: 0 30px 40px;
}
.main-wrap #list-body-design.on {
  display: inline-flex !important;
  justify-content: center;
}
.main-wrap #list-body-design .item-select {
  margin: 10px;
}
.main-wrap #list-body-design img {
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-wrap #list-nameplate img {
  width: 44px;
  border-radius: 50%;
}
.main-wrap #list-socket img {
  width: 44px;
  border-radius: 50%;
}
.main-wrap .modal-style .close {
  float: left;
  margin: 0;
  padding: 0;
}
.main-wrap .modal-style .modal-dialog {
  border-radius: 24px;
  width: 380px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.main-wrap .modal-style .modal-header {
  border: none;
}
.main-wrap .modal-style .modal-content {
  -webkit-border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0;
  -moz-background-clip: padding;
  border-radius: 6px;
  background-clip: padding-box;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
  color: #000;
  background-color: #fff;
  border: rgba(0, 0, 0, 0);
}
.main-wrap .modal-style .modal-body {
  margin: 0 40px 40px;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.main-wrap .modal-style .modal-body .item-btn {
  width: calc(100%/2 - 10px);
}
.main-wrap .modal-style .modal-body .item-btn:hover {
  text-decoration: none;
}
.main-wrap .modal-style .modal-body #go-homepage {
  background: #f4462a;
  color: #fff;
  font-size: 17px;
  line-height: 1.47059;
  font-weight: 400;
  letter-spacing: -0.022em;
  border-radius: 22px;
  padding: 5px 10px;
  white-space: normal;
  text-align: center;
  border: none;
}
.main-wrap .modal-style .modal-body #go-homepage a {
  color: #fff;
}
.main-wrap .modal-style .modal-body button.no-confirm {
  color: #f4462a;
  font-size: 14px;
  opacity: 1;
  background: none;
  border: none;
}
.main-wrap .modal-style .modal-body button.no-confirm:hover {
  text-decoration: none;
}
.main-wrap .notice {
  position: absolute;
  z-index: 9;
  bottom: 10px;
  left: 31vw;
}

.full-screen .logo {
  display: none;
}
.full-screen .show-slider-control {
  display: none;
}
.full-screen .close_window {
  visibility: visible;
  opacity: 1;
}
.full-screen .main-menu {
  display: none;
}
.full-screen .share-social {
  display: none;
}
.full-screen .menu-footer {
  display: none;
}
.full-screen .main-content {
  bottom: 0px;
}
.full-screen .zH-all img {
  height: 99% !important;
}
.full-screen .layout > * {
  width: calc(100%);
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

.hide-menu .layout > * {
  width: calc(100%);
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

#modal-success .go-home {
  display: inline-block;
  background: #f4462a;
  color: #fff;
  font-size: 17px;
  line-height: 1.47059;
  font-weight: 400;
  letter-spacing: -0.022em;
  border-radius: 22px;
  padding: 5px 10px;
  white-space: normal;
  text-align: center;
  border: none;
}

/******************* STYLE FOR IE *********************/
.IE .item-customize.on {
  display: inline-block !important;
}
.IE .owl-carousel .owl-item img {
  width: auto !important;
  margin: 0 auto;
}
.IE .main-wrap .main-menu .mmenu-wrap .item-wrap .radio-item {
  display: inline-block;
  line-height: 28px;
  position: relative;
}
.IE .main-wrap .main-menu .mmenu-wrap .block-list-menu #optional #screw-switch-option i {
  display: inline-block;
  position: absolute;
  top: 4px;
  left: 9px;
}
.IE #shaft-body-design img {
  width: 16px;
}
.IE .img-grip-type {
  width: 27px !important;
}
.IE #info-prod #accessories .list-accessories-cover ul li img {
  width: auto;
}
.IE .layout {
  transition: 0s !important;
}

#first-data {
  width: 730px;
  margin: 0 auto;
  max-width: 100%;
}
#first-data h2 {
  font-size: 16px;
  text-align: left;
  margin-top: 35px;
  font-weight: bold;
}
#first-data p {
  font-size: 14px;
}
#first-data .first-intro {
  margin: 20px 0;
}
#first-data .btn-group-customize {
  margin-bottom: 60px;
}

#main-spec {
  width: 100%;
  height: 100vh;
}

.spec-footer {
  position: absolute;
  background: #FFFFFF;
  bottom: 0;
  left: 0;
  height: 60px;
  width: 100%;
  border-top: 1px solid #e0dede;
  box-sizing: border-box;
  white-space: nowrap;
  display: table;
  padding: 8px 20px;
}
.spec-footer .btn-next-page {
  padding-bottom: 0;
  position: relative;
  top: 4px;
}
.spec-footer .btn-next-page button {
  width: 330px;
  margin: 0;
}

.wrap-spec {
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 700;
  font-style: normal;
  background-color: #ffffff;
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  left: 180px;
  bottom: 60px;
  height: calc(100vh - 60px);
  width: auto;
  transition: 0.8s;
  -webkit-transition: 0.8s;
  overflow: hidden;
}

.spec__ {
  display: flex;
  height: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
}
.spec__ .spec-item {
  width: calc(100%/2 - 10px);
}

#back-home {
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
#back-home .bh-item {
  width: calc(100%/2 - 10px);
}
#back-home a {
  display: inline-block;
  line-height: 35px;
  color: #fff;
  background: #f4462a;
}
#back-home a:hover, #back-home a:focus {
  border-color: rgba(128, 189, 255, 0.8);
  outline: 0;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08) inset, 0 0 8px rgba(128, 189, 255, 0.6);
  border-radius: 20px;
}

.img_QR img {
  max-width: 100%;
  max-height: 100%;
}

.price_plus {
  font-size: 14px;
  font-weight: bold;
  padding-top: 0;
  width: 100%;
  height: 80px;
}

.roido-image-title {
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
}
.roido-image-title img {
  width: 184px;
  -o-object-fit: contain;
     object-fit: contain;
}

.title_driver {
  font-size: 25px;
  color: #ee3629;
}

#bee-icon {
  text-align: center;
  border-bottom: 1px solid #e0dede;
  height: 50px;
}
#bee-icon img {
  width: 35px;
  position: relative;
  top: 8px;
}

.logo-spec {
  width: 90px;
  margin-bottom: 15px;
  float: right;
  display: none;
}

.list_customize {
  position: absolute;
  width: 180px;
  left: 0;
  top: 0;
  bottom: 60px;
  overflow: visible;
  transition: 0.8s;
  -webkit-transition: 0.8s;
  z-index: 9;
  border-right: 1px solid #e0dede;
}
.list_customize .list-image-block {
  height: calc(100% - 50px);
  padding: 20px 0;
  overflow-y: hidden;
  text-align: center;
}
.list_customize .set {
  width: 100%;
  display: inline-grid;
  align-items: center;
  text-align: center;
  height: calc(100% - 40px);
  padding: 0 20px;
  overflow-y: scroll;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.list_customize .set::-webkit-scrollbar {
  display: none;
}
.list_customize .set ul {
  list-style: none;
}
.list_customize .set ul li {
  width: 139px;
  padding-right: 5px;
  padding-left: 5px;
}
.list_customize .set ul li:not(:last-child) {
  padding-bottom: 45px;
}
.list_customize .set .item-image {
  display: block;
  cursor: pointer;
  width: 100%;
  border: 1px solid #cccccc;
  border-radius: 5px;
  text-align: center;
  position: relative;
  box-shadow: 2px 3px 7px -1px #7f8589;
}
.list_customize .set .item-image span {
  position: absolute;
  bottom: 0px;
  left: 0px;
  background: rgba(51, 51, 51, 0.8);
  color: #fff;
  padding: 5px 20px;
  z-index: 1;
}
.list_customize .set .item-image .img-sole-block {
  height: 110px;
}
.list_customize .set .item-image .img-sole-block img {
  width: 100%;
  height: 110px;
  text-align: center;
  -o-object-fit: contain;
     object-fit: contain;
}
.list_customize .set .item-image.on {
  border: 2px solid #0016ff;
}
.list_customize .set .active-prod {
  border: 1px solid #1492e6;
}

#image-prod-block-order-detail .container-order-detail {
  width: 100%;
  height: 100%;
}
#image-prod-block-order-detail #show-detail-img-order-detail {
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  position: relative;
}
#image-prod-block-order-detail #show-detail-img-order-detail img {
  width: 100%;
  height: 400px;
  display: inline-block;
  -o-object-fit: contain;
     object-fit: contain;
}
#image-prod-block-order-detail #show-detail-img-order-detail .overview {
  width: 100%;
  height: 100%;
}
#image-prod-block-order-detail #show-detail-img-order-detail .overview .pinchzoomer, #image-prod-block-order-detail #show-detail-img-order-detail .overview .zoomHolder {
  width: 100%;
  height: 100% !important;
}

#image-prod-block #show-detail-img {
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
  height: 400px;
  position: relative;
}
#image-prod-block #show-detail-img img {
  width: 100%;
  height: 400px;
  display: inline-block;
  -o-object-fit: contain;
     object-fit: contain;
}
#image-prod-block #show-detail-img .overview {
  width: 100%;
  height: 100%;
}
#image-prod-block #show-detail-img .overview .pinchzoomer, #image-prod-block #show-detail-img .overview .zoomHolder {
  width: 100%;
  height: 100% !important;
}
#image-prod-block .list-image-block .list-image-prod {
  display: flex;
  align-items: flex-end;
}
#image-prod-block .list-image-block .list-image-prod p.scl {
  position: relative;
  height: 0;
  width: 100%;
  display: flex;
  align-items: center;
  margin: 0 auto;
  top: -25px;
}
#image-prod-block .list-image-block .list-image-prod p.scl:before {
  display: inline-block;
  vertical-align: top;
  content: "";
  width: 12px;
  height: 12px;
  border-left: 1px solid #000000;
  border-top: 1px solid #000000;
  position: absolute;
}
#image-prod-block .list-image-block .list-image-prod p.prev {
  width: 30px;
  height: 120px;
  cursor: pointer;
  left: 0;
}
#image-prod-block .list-image-block .list-image-prod p.prev:before {
  transform: scaleY(0.8) rotate(-45deg);
  left: 10px;
}
#image-prod-block .list-image-block .list-image-prod p.next {
  width: 30px;
  height: 120px;
  cursor: pointer;
  right: 0;
}
#image-prod-block .list-image-block .list-image-prod p.next:before {
  transform: scaleY(0.8) rotate(-225deg);
  right: 13px;
}
#image-prod-block .list-image-block .list-image-prod .list-image-prod-wrap {
  width: calc(100% - 70px);
  height: auto !important;
  overflow-y: hidden;
  overflow-x: scroll;
  margin-bottom: 5px;
}
#image-prod-block .list-image-block .list-image-prod .list-image-prod-wrap::-webkit-scrollbar {
  width: 10px !important;
  height: 10px !important;
}
#image-prod-block .list-image-block .list-image-prod .list-image-prod-wrap::-webkit-scrollbar-track {
  background: #f2f2f2;
}
#image-prod-block .list-image-block .list-image-prod .list-image-prod-wrap::-webkit-scrollbar-thumb {
  background: #7f8589 0% 0% no-repeat padding-box;
  border-radius: 5px;
  opacity: 1;
}
#image-prod-block .list-image-block .list-image-prod .list-image-prod-wrap ::-webkit-scrollbar-thumb:hover {
  background: #A7A5A9 no-repeat padding-box;
}
#image-prod-block .list-image-block .list-image-prod .list-image-prod-wrap ul {
  list-style: none;
  display: -webkit-flex;
}
#image-prod-block .list-image-block .list-image-prod .list-image-prod-wrap ul li {
  text-align: center;
}
#image-prod-block .list-image-block .list-image-prod .list-image-prod-wrap ul li:not(:last-child) {
  margin-right: 50px;
}
#image-prod-block .list-image-block .list-image-prod .list-image-prod-wrap ul li a {
  display: block;
  width: 105px;
  text-align: center;
  color: inherit;
  text-decoration: none;
  padding: 10px 0 5px;
  position: relative;
}
#image-prod-block .list-image-block .list-image-prod .list-image-prod-wrap .item-image {
  display: block;
  cursor: pointer;
  width: 135px;
  border: 1px solid #cccccc;
  border-radius: 5px;
  text-align: center;
  position: relative;
  box-shadow: 2px 3px 7px -1px #7f8589;
}
#image-prod-block .list-image-block .list-image-prod .list-image-prod-wrap .item-image span {
  position: absolute;
  bottom: 0px;
  left: 0px;
  background: rgba(51, 51, 51, 0.8);
  color: #fff;
  padding: 5px 20px;
  z-index: 1;
}
#image-prod-block .list-image-block .list-image-prod .list-image-prod-wrap .item-image .img-sole-block {
  height: 110px;
}
#image-prod-block .list-image-block .list-image-prod .list-image-prod-wrap .item-image .img-sole-block img {
  width: 100%;
  height: 110px;
  text-align: center;
  -o-object-fit: contain;
     object-fit: contain;
}
#image-prod-block .list-image-block .list-image-prod .list-image-prod-wrap .item-image.on {
  border: 2px solid #0016ff;
}
#image-prod-block .list-image-block .list-image-prod .list-image-prod-wrap .active-prod {
  border: 1px solid #1492e6;
}

.btn-block {
  margin: 40px 2px;
}
.btn-block .buttonPDF {
  background-color: #2a81c7;
  border: none;
  color: white;
  padding: 12px 24px;
  text-align: center;
  display: inline-block;
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 14px;
  outline: none;
}

h4.title-spec-st {
  font-size: 18px;
  margin-bottom: 25px;
  color: #000000;
  font-weight: bold;
}

.radio-st {
  display: flex;
  align-items: center;
}

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

.radio-st input[type=radio]:checked + .radio, .radio-st input[type=checkbox]:checked + .checkbox {
  outline: 0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 5px 5px 10px -1px #dddddd;
}

.item-wrap {
  flex-wrap: wrap;
  justify-content: space-around;
  background: #e7eaed;
  border-radius: 20px;
  height: 36px;
  box-shadow: 5px 5px 10px -1px #dddddd;
}
.item-wrap label {
  color: #7f8589;
}
.item-wrap .st-item {
  width: 25%;
  text-align: center;
  color: #7f8589;
  height: 28px;
  cursor: pointer;
  font-size: 18px;
  margin: 0 5px;
  display: inline-grid;
  align-items: center;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}

.st-weight .st-item {
  width: 20% !important;
}

.item-wrap2 {
  justify-content: space-between;
  flex-wrap: wrap;
}
.item-wrap2 label {
  color: #7f8589;
}
.item-wrap2 input:checked + .st-item {
  border: 1px solid #0016ff;
}
.item-wrap2 .st-item {
  cursor: pointer;
  width: calc(100%/2 - 10px);
  border-radius: 20px;
  height: 36px;
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 30px;
  border: 1px solid #dee4e9;
  box-shadow: 5px 5px 10px -1px #dddddd;
}

.checkbox-st label {
  border: 2px solid #BDBDBD;
  padding: 13px;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  border-radius: 14px;
}

.radio-st2 label {
  font-size: 12px;
  font-weight: bold;
}

.radio-st3 label:last-child {
  margin-right: 0px;
}

.has-7-pw label[for=headcount-0013], .has-7-pw label[for=headcount-0014], .has-7-pw label[for=headcount-0015], .has-7-pw label[for=headcount-0016] {
  display: none;
}

#info-prod {
  height: calc(100%);
  overflow-y: scroll;
  padding-top: 20px;
}
#info-prod::-webkit-scrollbar {
  width: 10px !important;
  height: 45px !important;
}
#info-prod::-webkit-scrollbar-track {
  background: #f2f2f2;
}
#info-prod::-webkit-scrollbar-thumb {
  background: #7f8589 0% 0% no-repeat padding-box;
  border-radius: 5px;
  opacity: 1;
}
#info-prod ::-webkit-scrollbar-thumb:hover {
  background: #A7A5A9 no-repeat padding-box;
}
#info-prod h4.main-title {
  margin-bottom: 50px;
  border-bottom: 1px solid #989898;
  padding-bottom: 5px;
}
#info-prod #selected_parts {
  margin-bottom: 50px;
  border-bottom: 1px solid #989898;
  padding-bottom: 30px;
}
#info-prod #selected_parts .selected_prod {
  margin-bottom: 50px;
}
#info-prod #selected_parts .selected_prod .selected-wrap .selected-item {
  width: calc(100% / 2 - 10px);
}
#info-prod #accessories {
  margin-top: 40px;
  border-bottom: 1px solid #989898;
  padding-top: 30px;
}
#info-prod #accessories .no_checkbox {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 18px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#info-prod #accessories .no_checkbox input {
  display: none;
  cursor: pointer;
}
#info-prod #accessories .no_checkbox input:checked ~ .radiobtn {
  background-color: #2196F3;
}
#info-prod #accessories .no_checkbox input:not(:checked) ~ .radiobtn:after {
  box-shadow: 5px 5px 10px -1px #dddddd;
}
#info-prod #accessories .no_checkbox .radiobtn {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #d8dadd;
  border-radius: 50%;
}
#info-prod #accessories .no_checkbox .radiobtn:after {
  border: 1px solid;
  top: 4px;
  left: 4px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: white;
  content: "";
  position: absolute;
}
#info-prod #accessories .list-accessories-cover ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
#info-prod #accessories .list-accessories-cover ul li {
  width: calc(100%/2 - 10px);
  padding-bottom: 20px;
}
#info-prod #accessories .list-accessories-cover ul li div {
  text-align: center;
  border: 1px solid #dfe0e1;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 3px 3px 5px -1px #dddddd;
}
#info-prod #accessories .list-accessories-cover ul li input {
  display: none;
}
#info-prod #accessories .list-accessories-cover ul li input:checked ~ div {
  border: 1px solid #0016ff;
}
#info-prod #accessories .list-accessories-cover ul li label {
  cursor: pointer;
  width: 100%;
  height: 100px;
  margin: 0;
}
#info-prod #accessories .list-accessories-cover ul li img {
  display: inline-block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#info-prod #accessories .list-accessories-cover ul li p {
  color: #7f8589;
  font-size: 13px;
  margin-top: 5px;
  margin-bottom: 0px;
}
#info-prod #head_spec {
  margin-bottom: 40px;
  padding-bottom: 30px;
}
#info-prod #head_spec .head_spec_item {
  margin-bottom: 20px;
}
#info-prod #head_spec .loft-wrap {
  flex-wrap: wrap;
  justify-content: space-between;
}
#info-prod #head_spec .loft-wrap .loft-item {
  width: calc(100% / 3 - 14px);
}
#info-prod #head_spec .hosel_wrap .hosel-item {
  width: calc(100% / 3 - 14px);
}
#info-prod #head_spec .hosel_wrap2 .hosel-item {
  width: calc(100% / 2 - 10px);
}
#info-prod #head_spec .hosel-number4 .hosel-item {
  width: calc(100%/4 - 15px);
}
#info-prod #head_spec .hosel-number3 .hosel-item {
  width: calc(100%/3 - 15px);
}
#info-prod #head_spec .hosel-number2 .hosel-item {
  width: calc(100%/2 - 15px);
}
#info-prod #head_spec .hosel-number1 .hosel-item {
  width: calc(50%/2);
}
#info-prod #head_spec .hosel_group {
  margin-bottom: 20px;
}
#info-prod #head_spec .hosel_group .hosel-item {
  width: calc(100%/2 - 20%);
}
#info-prod #head_spec .hosel_wrap.on {
  display: flex !important;
}
#info-prod #head_spec .screw_weight_wrap label {
  width: calc(100% / 4 - 14px);
}
#info-prod #head_count {
  margin-bottom: 40px;
  border-bottom: 1px solid #989898;
  padding-bottom: 30px;
}
#info-prod #head_count .head_count_block {
  margin-top: 20px;
}
#info-prod #head_count .head_count_block .head_count-wrap label {
  padding-left: 15px;
}
#info-prod #head_count > h4 {
  margin-bottom: 10px;
}
#info-prod #name_plate {
  margin-bottom: 40px;
  border-bottom: 1px solid #989898;
  padding-bottom: 30px;
}
#info-prod #name_plate .option-select_color {
  margin-bottom: 30px;
}
#info-prod #name_plate .option-select_color .option-select-color-wrap .st-item {
  width: calc(100%/2 - 14px);
}
#info-prod #name_plate .np-list {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
#info-prod #name_plate .np-list.option-nameplate-active {
  display: flex !important;
}
#info-prod #name_plate .np-list .np-list-item {
  margin-bottom: 36px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border: none;
  box-shadow: unset;
}
#info-prod #name_plate .np-list .np-list-item.active_customize {
  display: block !important;
}
#info-prod #name_plate .np-list .np-list-item.on > label {
  border: 1px solid #0016ff;
}
#info-prod #name_plate .np-list input {
  display: none;
}
#info-prod #name_plate .np-list label {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: white;
  cursor: pointer;
  width: 60%;
  max-width: 100%;
  border-radius: 20px;
  height: 36px;
  font-size: 18px;
  line-height: 30px;
  border: 1px solid #dee4e9;
  box-shadow: 5px 5px 10px -1px #dddddd;
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
#info-prod #name_plate .np-list p {
  display: block;
  width: 100%;
  margin-top: 3px;
  margin-bottom: 0px;
  font-size: 15px;
  color: #7f8589;
  text-align: right;
}
#info-prod #name_plate .np-list p.head-count-name {
  width: 25px;
}
#info-prod #name_plate .item-wrap2 .st-item {
  width: calc(95%/2 - 10px);
}
#info-prod #socket {
  margin-bottom: 40px;
  border-bottom: 1px solid #989898;
  padding-bottom: 30px;
}
#info-prod #socket .option-select_color {
  margin-bottom: 30px;
}
#info-prod #socket .option-select_color .option-select-color-wrap .st-item {
  width: calc(100%/2 - 14px);
}
#info-prod #socket .s-list {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
#info-prod #socket .s-list.option-socket-active {
  display: flex !important;
}
#info-prod #socket .s-list .s-list-item {
  margin-bottom: 36px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border: none;
  box-shadow: unset;
}
#info-prod #socket .s-list .s-list-item.socket_active_customize {
  display: block !important;
}
#info-prod #socket .s-list .s-list-item.on > label {
  border: 1px solid #0016ff;
}
#info-prod #socket .s-list input {
  display: none;
}
#info-prod #socket .s-list label {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: white;
  cursor: pointer;
  width: 60%;
  max-width: 100%;
  border-radius: 20px;
  height: 36px;
  font-size: 18px;
  line-height: 30px;
  border: 1px solid #dee4e9;
  box-shadow: 5px 5px 10px -1px #dddddd;
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
#info-prod #socket .s-list p {
  display: block;
  width: 100%;
  margin-top: 3px;
  margin-bottom: 0px;
  font-size: 13px;
  color: #7f8589;
  text-align: right;
}
#info-prod #socket .s-list p.head-count-name {
  width: 25px;
}
#info-prod #socket .socket-type2 {
  background-repeat: no-repeat;
}
#info-prod #socket .socket-type1 {
  background-repeat: repeat;
}
#info-prod #socket .item-wrap2 .st-item {
  width: calc(95%/2 - 10px);
}
#info-prod .quality-count > p {
  font-size: 14px;
}
#info-prod .quality-count ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#info-prod .quality-count ul li {
  width: calc(100%/2 - 8px);
  color: #7f8589;
  font-size: 18px;
}
#info-prod .quality-count ul li:not(:last-child) {
  margin-bottom: 20px;
}
#info-prod .quality-count ul li:last-child {
  width: 100%;
}
#info-prod .quality-count ul li select {
  outline: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  color: #7f8589;
  font-size: 18px;
  -moz-text-align-last: center;
       text-align-last: center;
  width: 113px;
  height: 36px;
  padding: 0px 30px 0px 15px;
  border: 1px solid #dee4e9;
  border-radius: 20px;
  box-shadow: 5px 5px 10px -1px #dddddd;
}
#info-prod .quality-count ul li select::-ms-expand {
  display: none;
  /* Hide the default arrow in Internet Explorer 10 and Internet Explorer 11 */
}
#info-prod .quality-count ul li .select-wrap {
  position: relative;
  width: 113px;
  height: 36px;
  display: inline-block;
}
#info-prod .quality-count ul li .select-wrap .icon-select {
  position: absolute;
  z-index: 1;
  right: 20px;
  top: 0px;
  display: flex;
  height: 36px;
  align-items: center;
}
#info-prod .quality-count ul li .select-wrap .icon-select:before {
  font-size: 14px;
  content: "\F078";
  font-weight: 900;
  font-family: "Font Awesome 5 Pro";
  color: #7f8589;
}
#info-prod .quality-count ul li span {
  margin-right: 3px;
}
#info-prod #shaft_spec {
  margin-bottom: 40px;
  border-bottom: 1px solid #989898;
  padding-bottom: 30px;
}
#info-prod #shaft_spec .shaft-item {
  margin-bottom: 20px;
}
#info-prod #shaft_spec .number_custom_shaft .number-custom-wrap .select_wrap {
  width: 100%;
  padding: 0px 35px;
  border: 1px solid #dee4e9;
  border-radius: 20px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: 5px 5px 10px -1px #dddddd;
  font-size: 18px;
  color: #7f8589;
  text-align: center;
  outline: none;
  text-align-last: center;
  -moz-text-align-last: center;
  position: relative;
  height: 36px;
}
#info-prod #shaft_spec .number_custom_shaft .number-custom-wrap .select_wrap span {
  display: inline-block;
  height: 36px;
  line-height: 35px;
}
#info-prod #shaft_spec .shaft_body {
  margin: 20px 0px;
}
#info-prod #shaft_spec .shaft_body .shaft-body-wrap {
  font-size: 14px;
}
#info-prod #shaft_spec .shaft_body .shaft-body-wrap .shaft-body-item {
  float: right;
}
#info-prod #shaft_spec .shaft_body .shaft-body-wrap .shaft-body-item p span:first-child {
  color: #323232;
  font-size: 13px;
}
#info-prod #shaft_spec .shaft_body .shaft-body-wrap .shaft-body-item p span:last-child {
  font-size: 14px;
  color: #323232;
}
#info-prod #shaft_spec .shaft_body .shaft-body-wrap .shaft-body-item a {
  cursor: pointer;
  font-size: 14px;
  color: #323232;
  border-bottom: 2px solid #f4462a;
  margin-top: 10px;
  padding-bottom: 5px;
  display: block;
}
#info-prod #shaft_spec #shaftCustomizeAmount {
  font-weight: normal;
  color: #000000;
}
#info-prod #shaft_spec #shaftCustomizeAmount h5 {
  font-weight: bold;
}
#info-prod #shaft_spec #shaftCustomizeAmount p {
  margin-bottom: 25px;
}
#info-prod #shaft_spec #shaftCustomizeAmount th, #info-prod #shaft_spec #shaftCustomizeAmount td {
  text-align: center;
}
#info-prod #shaft_spec #list-shaft-count .item-shaft-count.shaft-count-selected {
  display: flex !important;
}
#info-prod #shaft_spec #shaft-spec-master .shaft_spec_master_wrap {
  margin-bottom: 20px;
}
#info-prod #shaft_spec #shaft-spec-master .shaft_spec_master_wrap .st-item {
  width: calc(100%/3 - 15px);
  display: flex;
  align-items: center;
  justify-content: center;
}
#info-prod #shaft_spec #shaft-spec-master .shaft_spec_master_wrap .st-item img {
  width: 30px;
}
#info-prod #grip_spec {
  margin-bottom: 40px;
  border-bottom: 1px solid #989898;
  padding-bottom: 30px;
}
#info-prod #grip_spec .grip_backline_wrap {
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}
#info-prod #grip_spec .grip_backline_wrap label {
  font-size: 18px;
}
#info-prod #grip_spec .grip_backline_wrap .grip_backline_item {
  width: calc(100%/2 - 14px);
}
#info-prod #grip_spec #list-grip .list-grip-block {
  margin-top: 20px;
}
#info-prod #grip_spec #list-grip .list-grip-block ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 0;
}
#info-prod #grip_spec #list-grip .list-grip-block ul li {
  width: calc(100%);
  margin-bottom: 0px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
#info-prod #grip_spec #list-grip .list-grip-block ul li:not(:last-child) {
  margin-bottom: 10px;
}
#info-prod #grip_spec #list-grip .list-grip-block ul li input {
  display: none;
}
#info-prod #grip_spec #list-grip .list-grip-block ul li input:checked + .st-item {
  border: 2px solid red;
}
#info-prod #grip_spec #list-grip .list-grip-block ul li #block-bg-img {
  cursor: pointer;
  width: calc(100% - 145px);
  display: flex;
  flex-wrap: wrap;
}
#info-prod #grip_spec #list-grip .list-grip-block ul li #block-bg-img .grip-bg-img {
  height: 36px;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  max-width: 100%;
  background-position: center;
  border-radius: 20px;
}
#info-prod #grip_spec #list-grip .list-grip-block ul li #block-bg-img p {
  font-size: 13px;
  text-align: center;
  width: 100%;
  margin-top: 5px;
}
#info-prod #grip_spec #list-grip .list-grip-block ul li .select-wrap {
  position: relative;
  width: 113px;
  height: 36px;
  display: inline-block;
  margin-left: 30px;
}
#info-prod #grip_spec #list-grip .list-grip-block ul li .select-wrap .icon-select {
  position: absolute;
  z-index: 1;
  right: 20px;
  top: 0px;
  display: flex;
  height: 36px;
  align-items: center;
}
#info-prod #grip_spec #list-grip .list-grip-block ul li .select-wrap .icon-select:before {
  font-size: 14px;
  content: "\F078";
  font-weight: 900;
  font-family: "Font Awesome 5 Pro";
  color: #7f8589;
}
#info-prod #grip_spec #list-grip .list-grip-block ul li select {
  outline: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  color: #7f8589;
  font-size: 18px;
  -moz-text-align-last: center;
  text-align-last: center;
  width: 113px;
  height: 36px;
  padding: 0px 30px 0px 15px;
  border: 1px solid #dee4e9;
  border-radius: 20px;
  box-shadow: 5px 5px 10px -1px #dddddd;
}
#info-prod #comment-note {
  margin-bottom: 40px;
  border-bottom: 1px solid #989898;
  padding-bottom: 30px;
}
#info-prod #comment-note .comment_block textarea {
  width: 100%;
  border: 1px solid #a3a8ac;
  border-radius: 40px;
  height: 82px;
  outline: none;
  margin: 2px auto;
  font-size: 14px;
  padding: 10px 20px;
}
#info-prod #total .total-wrap {
  padding: 0px 0px 50px 0px;
}
#info-prod #total .total-wrap p {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#info-prod #total .total-wrap p span:first-child {
  font-size: 20px;
}
#info-prod #total .total-wrap p span:last-child {
  font-size: 22px;
}
#info-prod #total .content-more {
  padding-bottom: 20px;
}
#info-prod #qr-spec-detail {
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #000000;
}
#info-prod #group_send_link p.label {
  font-size: 14px;
  color: #000000;
}
#info-prod #group_send_link .btn-form {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#info-prod #group_send_link .btn-form .share-btn {
  width: calc(100%/3 - 30px);
  padding: 0 10px;
  font-size: 14px;
  border-radius: 20px;
  border: 1px solid #e2e3e3;
  box-shadow: 5px 5px 10px -1px #dddddd;
  outline: none;
  line-height: 35px;
  background: #fff;
  font-weight: bold;
  height: 36px;
  display: flex;
  align-items: center;
  color: #212529;
  justify-content: center;
}
#info-prod #group_send_link .btn-form .share-btn:focus, #info-prod #group_send_link .btn-form .share-btn:hover {
  border-color: rgba(128, 189, 255, 0.8);
  outline: 0;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08) inset, 0 0 8px rgba(128, 189, 255, 0.6);
  border-radius: 20px;
}
#info-prod #group_send_link .btn-form .share-btn i {
  font-size: 20px;
  margin-right: 10px;
}

#modal-notify .modal-dialog {
  width: 430px;
}
#modal-notify #notify_message {
  font-size: 15px;
  margin-bottom: 35px;
}
#modal-notify .modal-header {
  border: none;
}
#modal-notify .modal-body button.no-confirm {
  display: inline-block;
  width: 200px;
  background: #f4462a;
  color: #fff;
  font-size: 17px;
  line-height: 1.47059;
  font-weight: 400;
  letter-spacing: -0.022em;
  border-radius: 22px;
  padding: 5px 10px;
  white-space: normal;
  text-align: center;
  border: none;
}

#modal-remove .modal-content .modal-body {
  margin: 0 30px 40px;
}

#modal-send-mail-shop .modal-content, #modal-qrcode .modal-content, #modal-login .modal-content {
  height: 610px;
}
#modal-send-mail-shop .modal-content .modal-body, #modal-qrcode .modal-content .modal-body, #modal-login .modal-content .modal-body {
  justify-content: center;
}
#modal-send-mail-shop .modal-content .modal-body .input-email-shop, #modal-qrcode .modal-content .modal-body .input-email-shop, #modal-login .modal-content .modal-body .input-email-shop {
  position: relative;
}
#modal-send-mail-shop .modal-content .modal-body .input-email-shop .list-shop, #modal-qrcode .modal-content .modal-body .input-email-shop .list-shop, #modal-login .modal-content .modal-body .input-email-shop .list-shop {
  width: 100%;
  position: absolute;
  max-height: 110px;
  overflow-y: auto;
  background-color: #fff;
  border: 1px solid #ececec;
  z-index: 99999999;
}
#modal-send-mail-shop .modal-content .modal-body .input-email-shop .list-shop li, #modal-qrcode .modal-content .modal-body .input-email-shop .list-shop li, #modal-login .modal-content .modal-body .input-email-shop .list-shop li {
  padding: 10px;
  list-style: none;
  border-bottom: 1px solid #ececec;
  color: #333;
  font-size: 14px;
  font-weight: normal;
}
#modal-send-mail-shop .modal-content .modal-body .input-email-shop .list-shop li:hover, #modal-qrcode .modal-content .modal-body .input-email-shop .list-shop li:hover, #modal-login .modal-content .modal-body .input-email-shop .list-shop li:hover {
  cursor: pointer;
}

.btn-next-page {
  padding-bottom: 30px;
}
.btn-next-page button {
  background: #f4462a;
  color: #fff;
  display: inline-flex;
  padding: 6px 0;
  text-align: center;
  align-items: center;
  font-size: 16px;
  border-radius: 20px;
  height: 36px;
  width: 100%;
  border: none;
}

.list-color .modal-content {
  width: 85%;
  margin: 0 auto;
}
.list-color .modal-footer {
  padding: 0px 0px 20px 0px;
  border: none;
}
.list-color .md-list-color {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.list-color .md-list-color .md-item-color {
  width: calc(100%/2 - 5px);
  text-align: center;
  margin-bottom: 20px;
}
.list-color .md-list-color .md-item-color a {
  cursor: pointer;
  width: 45px;
  height: 45px;
  display: inline-block;
}
.list-color .md-list-color .md-item-color a.on img {
  border: 1px solid red;
  padding: 1px;
}
.list-color .md-list-color .md-item-color a.selected img {
  border: 1px solid #0c21ff;
  padding: 1px;
}
.list-color .md-list-color .md-item-color img {
  width: 45px;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 50%;
  box-shadow: 1px 4px 10px -1px #adb5bd;
}
.list-color .md-list-color .md-item-color p {
  font-size: 13px;
  color: #7f8589;
  margin: 0px;
}
.list-color .md-block-btn {
  text-align: center;
  width: 100%;
}
.list-color .md-block-btn .btn-close {
  cursor: pointer;
}
.list-color .md-block-btn .btn-close span.icon-close-modal {
  height: 1px;
  width: 30px;
  display: inline-block;
  background: #484848;
  transform: rotate(45deg);
  position: relative;
}
.list-color .md-block-btn .btn-close span.icon-close-modal:before {
  content: "";
  height: 1px;
  width: 30px;
  display: inline-block;
  background: #484848;
  transform: rotate(90deg);
  position: absolute;
  top: 0;
  left: 0;
}
.list-color .md-block-btn .btn-decide {
  cursor: pointer;
  display: inline-block;
  line-height: 32px;
  border-radius: 20px;
  font-size: 16px;
  color: #7f8589;
  height: 36px;
  width: 105px;
  padding-left: 15px;
  border: 1px solid #e2e3e3;
  box-shadow: 5px 5px 10px -1px #dddddd;
  position: relative;
}
.list-color .md-block-btn .btn-decide:before {
  content: "";
  background: url(../images/bee-gray.svg) no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  display: inline-block;
  position: absolute;
  top: 6px;
  left: 15px;
}
.list-color .md-block-btn .no-allow {
  cursor: not-allowed !important;
}

p.ptitle-st {
  font-weight: bold;
  font-size: 14px;
  color: #000000;
}

p.ptitle-st2 {
  font-size: 13px;
  color: #7f8589;
  margin-bottom: 5px;
}

.btn-shaft {
  padding: 12px 24px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  margin: 44px 2px;
  border-radius: 18px;
  border: 2px solid #DF0101;
}
.btn-shaft:hover {
  cursor: pointer;
}

.show-img-all {
  text-align: center;
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  max-width: 100%;
  display: flex;
  position: relative;
  align-items: center;
}
.show-img-all img {
  width: 70%;
  max-height: 500px;
  -o-object-fit: contain;
     object-fit: contain;
}

.btn-group-customize {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
}
.btn-group-customize .new_customize {
  margin: 0 10px;
  display: block;
  text-align: center;
  font-weight: 500;
  color: #ee3629;
  font-size: 16px;
  border: 1px solid #ee3629;
  border-radius: 20px;
  padding: 5px 0;
  width: 200px;
  max-width: 100%;
  cursor: pointer;
  box-shadow: 2px 3px 7px -1px #7f8589;
  -moz-box-shadow: 2px 3px 7px -1px #7f8589;
  -webkit-box-shadow: 2px 3px 7px -1px #7f8589;
}

.page-confirm {
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #000000;
}

.spec-container {
  margin: 0 auto;
  padding: 0 15px;
}

.icon-bee {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
}
.icon-bee:before {
  content: url(../images/bee.svg);
  width: 20px;
  height: 20px;
  display: inline-block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: -8px;
}

.btn-form .icon-bee {
  top: 3px;
}
.btn-form .icon-bee:before {
  content: url(../images/bee.svg);
}

/********************************* Order detail *********************************************/
.modal-backdrop.show {
  opacity: 0;
}

.content-more p {
  font-weight: normal;
  color: #000;
}
.content-more p .show_modal_amount {
  cursor: pointer;
  font-size: 16px;
  color: #323232;
  border-bottom: 2px solid #f4462a;
  padding-bottom: 5px;
  display: inline-block;
  font-weight: bold;
}

#main-order-detail {
  overflow: hidden;
  min-height: 0;
  min-width: 0;
  position: fixed;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  z-index: 9999;
}
#main-order-detail .main-wrap {
  position: relative;
  height: 100%;
  width: 100%;
}
#main-order-detail .main-wrap h4.title-spec-st {
  margin-bottom: 50px;
  border-bottom: 1px solid #989898;
  padding-bottom: 5px;
}
#main-order-detail .main-wrap .content {
  display: flex;
  height: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
}
#main-order-detail .main-wrap .content .item_ {
  width: calc(100%/2 - 10px);
}
#main-order-detail .main-wrap .content #content-order {
  height: calc(100%);
  overflow-y: scroll;
  padding: 20px 0;
}
#main-order-detail .main-wrap .content #content-order::-webkit-scrollbar {
  width: 10px !important;
  height: 45px !important;
}
#main-order-detail .main-wrap .content #content-order::-webkit-scrollbar-track {
  background: #f2f2f2;
}
#main-order-detail .main-wrap .content #content-order::-webkit-scrollbar-thumb {
  background: #7f8589 0% 0% no-repeat padding-box;
  border-radius: 5px;
  opacity: 1;
}
#main-order-detail .main-wrap .content #content-order ::-webkit-scrollbar-thumb:hover {
  background: #A7A5A9 no-repeat padding-box;
}
#main-order-detail .main-wrap #info-confirm > h4 {
  border-bottom: 1px solid #989898;
  padding-bottom: 5px;
}
#main-order-detail .main-wrap .table-list-info {
  margin-bottom: 20px;
}
#main-order-detail .main-wrap .table-list-info table {
  width: 100%;
  font-size: 14px;
}
#main-order-detail .main-wrap .table-list-info table td {
  padding: 5px;
}
#main-order-detail .main-wrap .table-list-info .table_order {
  width: 100%;
  font-size: 18px;
}
#main-order-detail .main-wrap .table-list-info .table_order .order_head {
  margin-bottom: 30px;
}
#main-order-detail .main-wrap .table-list-info .table_order .order_note {
  margin-top: 30px;
}
#main-order-detail .main-wrap .table-list-info .table_order .order_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#main-order-detail .main-wrap .table-list-info .table_order .order_wrap .order_item {
  width: calc(100% / 2 - 15px);
}
#main-order-detail .main-wrap .table-list-info .table_order .order_wrap .order_item:first-child {
  text-align: right;
  color: #7f8589;
  font-size: 13px;
}
#main-order-detail .main-wrap .table-list-info .table_order .order_wrap .order_item:last-child {
  color: #000000;
}
#main-order-detail .main-wrap .table-list-info .price {
  padding-top: 35px;
}
#main-order-detail .main-wrap .table-list-info .price .price_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#main-order-detail .main-wrap .table-list-info .price .price_wrap .price_item {
  width: calc(100% / 2 - 15px);
}
#main-order-detail .main-wrap .table-list-info .price .price_wrap .price_item:first-child {
  text-align: right;
  color: #7f8589;
  font-size: 13px;
}
#main-order-detail .main-wrap .table-list-info .price .price_wrap .price_item:last-child {
  font-size: 20px;
  color: #000000;
}
#main-order-detail .main-wrap .table-list-info #order__note {
  max-height: 200px;
  overflow-y: scroll;
}
#main-order-detail .main-wrap .table-list-info #order__note::-webkit-scrollbar {
  width: 10px !important;
  height: 45px !important;
}
#main-order-detail .main-wrap .table-list-info #order__note::-webkit-scrollbar-track {
  background: #f2f2f2;
}
#main-order-detail .main-wrap .table-list-info #order__note::-webkit-scrollbar-thumb {
  background: #7f8589 0% 0% no-repeat padding-box;
  border-radius: 5px;
  opacity: 1;
}
#main-order-detail .main-wrap .table-list-info #order__note ::-webkit-scrollbar-thumb:hover {
  background: #A7A5A9 no-repeat padding-box;
}
#main-order-detail .main-wrap .content-more {
  margin-bottom: 100px;
}
#main-order-detail .main-wrap .qr-block {
  margin-top: 50px;
  margin-bottom: 60px;
}
#main-order-detail .main-wrap #form-block .form-wrap {
  background: #e6e9ec;
  padding: 50px 0;
}
#main-order-detail .main-wrap #form-block .form-wrap .form-container {
  width: 335px;
  margin: 0 auto;
  max-width: 100%;
}
#main-order-detail .main-wrap #form-block .form-wrap .form-container a {
  font-size: 18px;
  margin-bottom: 15px;
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 700;
  font-style: normal;
  display: block;
  text-align: center;
}
#main-order-detail .main-wrap #form-block .form-wrap .form-container .wrap-field {
  padding: 0px 5px;
}
#main-order-detail .main-wrap #form-block .form-wrap .form-container .wrap-field .item-field:not(:last-child) {
  margin-bottom: 15px;
}
#main-order-detail .main-wrap #form-block .form-wrap .form-container .wrap-field .item-field p.label {
  font-size: 14px;
}
#main-order-detail .main-wrap #form-block .form-wrap .form-container .line-optional .form-check .form-check-input {
  width: auto !important;
  box-shadow: none !important;
}
#main-order-detail .main-wrap #form-block .form-wrap .form-container .line-optional #line-logged-mess {
  text-align: center;
}
#main-order-detail .main-wrap #form-block .form-wrap .form-container .line-optional .login-line-wrap .button-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#main-order-detail .main-wrap #form-block .form-wrap .form-container .line-optional .login-line-wrap .button-wrap .line-button {
  border-radius: 5px;
  background-color: #06C755;
  color: #fff;
  display: flex;
  align-items: center;
  margin: 0 10px;
  margin-bottom: 5px;
}
#main-order-detail .main-wrap #form-block .form-wrap .form-container .line-optional .login-line-wrap .button-wrap .line-button img {
  border-right: solid 1px #0000000d;
}
#main-order-detail .main-wrap #form-block .form-wrap .form-container .line-optional .login-line-wrap .button-wrap .line-button span {
  font-size: 12px;
  padding: 0 15px;
}
#main-order-detail .main-wrap #form-block .form-wrap .form-container .line-optional .login-line-wrap .button-wrap .line-button:hover {
  background-color: #05903b;
}
#main-order-detail .main-wrap #form-block .form-wrap .form-container .line-optional .login-line-wrap .button-wrap .line-button.line-follow-channel-btn {
  background-color: rgba(199, 157, 6, 0.77);
}
#main-order-detail .main-wrap #form-block .form-wrap .form-container .line-optional .login-line-wrap .button-wrap .line-button.line-follow-channel-btn:hover {
  background-color: #c79d06;
}
#main-order-detail .main-wrap #modal-confirm-sendmail button.confirm {
  background: #f4462a;
  color: #fff;
  font-size: 17px;
  line-height: 1.47059;
  font-weight: 400;
  letter-spacing: -0.022em;
  border-radius: 22px;
  padding: 5px 10px;
  white-space: normal;
  text-align: center;
  border: none;
}
#main-order-detail .main-wrap #modal-confirm-sendmail button.no-confirm {
  color: #f4462a;
  opacity: 1;
  background: none;
  border: none;
}
#main-order-detail .main-wrap #modal-confirm-sendmail .item-btn {
  width: calc(100%/2 - 10px);
}
#main-order-detail .main-wrap #modal-confirm-sendmail .item-btn:hover {
  text-decoration: none;
}
#main-order-detail .main-wrap #modal-sendmail-success .modal-dialog {
  width: 430px;
}
#main-order-detail .main-wrap #modal-sendmail-success a {
  display: inline-block;
  width: 200px;
  background: #f4462a;
  color: #fff;
  font-size: 17px;
  line-height: 1.47059;
  font-weight: 400;
  letter-spacing: -0.022em;
  border-radius: 22px;
  padding: 5px 10px;
  white-space: normal;
  text-align: center;
  border: none;
}

.IE .no-data #info-prod {
  height: auto;
  overflow-y: visible;
}
.IE .no-data .wrap-spec {
  height: auto;
  position: static;
  overflow: visible;
}
.IE #image-prod-block #show-detail-img img {
  width: auto !important;
}
.IE .list_customize .set .item-image .img-sole-block img {
  width: auto !important;
}

.no-data .roido-image-title {
  text-align: left;
  width: 700px;
  margin: 0 auto;
  max-width: 100%;
}
.no-data #main-spec {
  width: 100%;
  height: 100%;
}
.no-data #info-prod {
  height: auto;
  overflow-y: hidden;
}
.no-data .list_customize, .no-data .spec-footer {
  display: none;
}
.no-data .wrap-spec {
  height: auto;
  position: unset;
  overflow: unset;
}
.no-data .spec__ {
  display: block;
}
.no-data .spec__ .spec-item {
  width: calc(100%);
}
.no-data #image-prod-block #show-detail-img img {
  width: 350px;
}

#check-concierge {
  margin-bottom: 50px;
  border-bottom: 1px solid #989898;
  padding-bottom: 30px;
}
#check-concierge .btn-form {
  width: 280px;
}
#check-concierge .btn-go-shop-login button {
  padding: 0 10px;
  font-size: 14px;
  border-radius: 20px;
  border: 1px solid #e2e3e3;
  box-shadow: 5px 5px 10px -1px #dddddd;
  outline: none;
  display: inline-block;
  line-height: 35px;
  color: #fff;
  background: #f4462a;
  width: 100%;
  height: 36px;
}

.form-check-concierge {
  display: none;
}

.disable_options {
  display: none !important;
}

.list-image-prod ul li {
  position: relative;
}

.remove-item-custom {
  position: absolute;
  top: 5px;
  right: 15px;
  cursor: pointer;
  color: #f4462a;
}

#modal-remove .modal-body #go-homepage {
  background: #f4462a;
  color: #fff;
  font-size: 17px;
  line-height: 1.47059;
  font-weight: 400;
  letter-spacing: -0.022em;
  border-radius: 22px;
  padding: 8px 65px 7px;
  margin: 10px auto 25px;
  white-space: normal;
  text-align: center;
  border: none;
}

#modal-remove .modal-body button {
  color: #f4462a;
  font-size: 14px;
  opacity: 1;
}

.form_send_link_qr .line-button-group .form-check-inline {
  margin-top: 25px;
  margin-right: 0;
}
.form_send_link_qr .line-button-group .form-check-inline .form-check-label {
  font-size: 14px;
  text-align: left;
}

.shop-login {
  background-color: #f1f4f8;
  display: flex;
  min-height: 100vh;
  align-items: center !important;
  flex-direction: row !important;
}
.shop-login #shop-login-form {
  width: 335px;
  margin: 0 auto;
  max-width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
  padding: 35px;
}
.shop-login #shop-login-form .label {
  font-weight: bold;
  font-size: 13px;
  color: #333;
}
.shop-login #shop-login-form .field-item p.require {
  height: 20px;
}

/****************** Responsive ***********************/
/* Min 992px */
@media (min-width: 992px) {
  /*HOME*/
  .main-wrap .logo {
    width: 90px;
    top: 20px;
    right: 40px;
  }

  .owl-carousel .owl-item img {
    -o-object-fit: contain;
       object-fit: contain;
    width: 47% !important;
    margin: 0 auto;
    height: 100%;
  }

  .main-wrap .menu-footer {
    border-top: 1px solid #e0dede;
    border-bottom: none;
  }

  .main-wrap .main-menu .mmenu-wrap #mmenu {
    height: 50px;
  }

  .main-wrap .main-menu .mmenu-wrap .block-list-menu {
    height: calc(100% - 50px);
  }

  .owl-carousel .owl-item, .owl-carousel .owl-stage, .owl-carousel .owl-stage-outer, .item-layout {
    margin: 0 auto;
  }

  .zH-all img {
    height: 100% !important;
    transform: rotate(90deg);
  }

  /*END HOME*/
  /******** SPEC *******/
  .logo-spec {
    display: block;
  }

  #image-prod-block .list-image-block {
    display: none;
  }

  #submit-order .btn-next-page {
    display: none;
  }

  #main-order-detail .main-wrap .table-list-info .price .price_wrap .price_item:last-child, #main-order-detail .main-wrap .table-list-info .table_order {
    font-size: 16px;
  }

  /************* END SPEC **************/
}
@media (max-width: 320px) {
  /******** SPEC *******/
  #info-prod #grip_spec #list-grip .list-grip-block ul li label {
    width: 175px;
  }

  /******** END SPEC *******/
}
/* Max 414px */
@media (max-width: 414px) {
  /*SLIDER*/
  .map-slider {
    padding: 50px 0;
  }

  /*END SLIDER*/
  /*HOME*/
  .main-wrap .main-menu .mmenu-wrap .btn-st {
    width: 85px;
    height: 30px;
    line-height: 29px;
  }

  /*END HOME*/
}
/* Max 768px */
@media (max-width: 768px) {
  /*SLIDER*/
  .slider_wrap .slider-block {
    width: 100%;
  }

  .slider_wrap #next-slider {
    right: 10px;
    bottom: 50px;
  }

  .slider_wrap #prev-slider {
    left: 10px;
    bottom: 50px;
  }

  .full-screen #prev-slider {
    left: 50px;
  }

  /*END SLIDER*/
  /*HOME*/
  .main-wrap .logo {
    display: none;
  }
  .main-wrap #show-price-notice-sp {
    display: block;
  }

  /*END HOME*/
  /************* SPEC **************/
  .IE #main-order-detail {
    height: auto;
    position: static;
  }
  .IE #main-order-detail .main-wrap .content #content-order {
    overflow: visible;
  }

  #main-order-detail {
    height: auto;
    position: unset;
  }

  #main-order-detail .main-wrap .content .item_ {
    width: calc(100%);
  }

  #main-order-detail .main-wrap .content #content-order {
    overflow-y: unset;
  }

  #main-order-detail .main-wrap .table-list-info .table_order {
    font-size: 14px;
  }

  .show-img-all {
    height: 450px;
  }

  .show-img-all img {
    height: 450px;
  }

  .price_item span {
    font-size: 18px;
  }
  .price_item span.tax-mb {
    display: block;
  }

  #info-prod #grip_spec #list-grip .list-grip-block ul li #block-bg-img {
    width: calc(100% - 130px);
  }

  #info-prod #grip_spec #list-grip .list-grip-block ul li .select-wrap {
    margin-left: 15px;
  }

  #image-prod-block #show-detail-img img {
    transform: unset;
  }

  #image-prod-block-order-detail #show-detail-img-order-detail {
    height: 400px;
  }
  #image-prod-block-order-detail #show-detail-img-order-detail img {
    height: 400px;
    transform: unset;
  }

  #info-prod #group_send_link .btn-form .share-btn {
    width: calc(100%);
  }
  #info-prod #group_send_link .btn-form .share-btn:not(:last-child) {
    margin-bottom: 25px;
  }

  #info-prod #selected_parts .selected_prod .selected-wrap .selected-item {
    font-size: 15px;
  }

  /************* END SPEC **************/
}
/* Max 992px */
@media (max-width: 992px) {
  /******** SPEC *********/
  .IE #info-prod {
    height: auto;
    overflow-y: visible;
  }
  .IE .wrap-spec {
    height: auto;
    position: static;
    overflow: visible;
  }

  #info-prod {
    height: auto;
    overflow-y: unset;
  }

  .list_customize, .spec-footer {
    display: none;
  }

  .wrap-spec {
    height: auto;
    position: unset;
    overflow: unset;
  }

  .spec__ {
    display: block;
  }

  .spec__ .spec-item {
    width: calc(100%);
  }

  /************* END SPEC **************/
}