@charset "UTF-8";
.page-catch {
  font-weight: bold;
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  display: block;
  line-height: 1.5;
  padding: 0;
  color: #333;
}
.page-catch--26 {
  font-size: 1.625rem;
}

/* カード */
.link-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  box-sizing: border-box;
  flex-direction: column;
}

.link-card {
  width: 100%;
  background: #f5f9ff;
  border: 1px solid #0068E6;
  border-radius: 4px;
  transition: all 0.3s;
  text-decoration: none;
  padding: 0.875rem 1rem;
  box-sizing: border-box;
}

.link-card:hover {
  background-color: #ffe5e5;
  border-color: #e60c10;
  text-decoration: none;
}

.link-card:hover .link-card-title {
  color: #e60c10;
}

.link-card-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #0068E6;
  display: flex;
  width: 100%;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.link-card-title:after {
  content: url("../guide/express-delivery/img/link-card-arrow.svg");
  display: inline-block;
  transform: translateY(-1px);
}

.link-card-description {
  font-size: 1rem;
}

.page-title {
  font-size: 1.75rem;
  line-height: 1.5;
  padding: 0 0 10px;
  border-bottom: 1px solid #E6E6E6;
  font-weight: 300;
  display: block;
  margin: 60px 0 1rem;
  color: #333;
  text-align: center;
}
.page-title + .page-subtitle {
  margin-top: 0;
}

.page-title ~ p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.5rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  margin-top: 60px;
  padding: 0.875rem 1rem;
  font-weight: 300;
  display: block;
  background-image: repeating-linear-gradient(-45deg, #fff 0 2px, rgba(230, 230, 230, 0.5) 2px 4px);
}
.page-subtitle--has-prefix {
  display: flex;
  align-items: center;
}
.page-subtitle--has-count::before {
  counter-increment: page-subtitle-count;
  content: counter(page-subtitle-count) "、";
  font-size: 1.75rem;
  font-weight: 300;
  color: #333;
}

body:has(.page-subtitle--has-count) {
  counter-reset: page-subtitle-count;
}

.page-subtitle ~ p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.toc-link {
  display: grid;
  border: 1px solid #CCCCCC;
  background-color: #FFFFFF;
  border-radius: 4px;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
}
.toc-link > *:not(:nth-last-child(1), :nth-last-child(2)) {
  border-bottom: 1px solid #CCCCCC;
}
.toc-link > *:nth-child(odd) {
  border-right: 1px solid #CCCCCC;
}
.toc-link li {
  display: block;
  width: 100%;
}
.toc-link a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  gap: 10px;
  padding-top: 18px;
  padding-bottom: 18px;
  box-sizing: border-box;
  transition: 0.15s;
}
.toc-link a:hover {
  text-decoration: none;
  background-color: #F5F5F5;
}
.toc-link span {
  font-size: 1rem;
  color: #333;
  line-height: 1;
}

.bg-box {
  padding: 24px 1rem;
  background-color: #F5F5F5;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bg-box__title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  display: block;
}
.bg-box--white {
  background-color: #fff;
}

.common-card {
  display: flex;
  flex-direction: column;
  position: relative;
}
.common-card:has(.common-card__rank) {
  overflow: hidden;
  border-radius: 4px;
}
.common-card__link {
  display: flex;
  flex-direction: column;
  position: relative;
}
.common-card__rank {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 50px 50px 0 0;
  border-color: #EBB74C transparent transparent transparent;
}
.common-card__rank[data-ranking="2"] {
  border-color: #798B8C transparent transparent transparent;
}
.common-card__rank[data-ranking="3"] {
  border-color: #A86E53 transparent transparent transparent;
}
.common-card__rank-text {
  position: absolute;
  top: -41px;
  left: 8px;
  font-size: 1rem;
  color: white;
  font-weight: 600;
}
.common-card__image {
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  overflow: hidden;
}
.common-card__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.common-card__caption {
  font-size: 0.875rem;
  color: white;
  background-color: #00963A;
  padding: 0.5rem 0;
  display: flex;
  justify-content: center;
  line-height: 1;
  font-weight: 600;
}
.common-card__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 13px;
}
.common-card__title {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25;
  color: #333;
  margin: 0;
  padding: 0;
  display: block;
}
.common-card__description {
  font-size: 1rem;
  color: #333;
  margin: 0;
  padding: 0;
  line-height: 1.25;
  letter-spacing: 0.05em;
}

.grid-box {
  display: grid;
}
.grid-box > * {
  box-sizing: border-box;
}
.grid-box--column-1 {
  grid-template-columns: 1fr;
}
.grid-box--column-1 > * {
  width: 100%;
}
.grid-box--column-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-box--column-2 > * {
  width: 100%;
}

.common-button {
  font-size: 1.125rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1F74E1;
  background-color: #fff;
  border: 1px solid #1F74E1;
  padding: 14px 0;
  border-radius: 30px;
  transition: 0.3s;
  max-width: 342px;
  position: relative;
  width: 100%;
}
.common-button:hover {
  background-color: #1F74E1;
  color: #fff;
  text-decoration: none;
}
.common-button__icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.common-button-container {
  display: flex;
  justify-content: center;
}

.marker {
  background: linear-gradient(transparent 50%, #21ff00 50%);
  font-weight: 600;
  display: inline-block;
  line-height: 1;
}
.marker--yellow {
  background: linear-gradient(transparent 50%, #f8fe7b 50%);
}

.ranking-box {
  background-color: #FCFFDD;
  padding-right: 1rem;
  padding-left: 1rem;
}
.ranking-box__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 22px;
}
.ranking-box__header p {
  margin-bottom: 0;
}
.ranking-box__title {
  font-size: 2rem;
  font-weight: 600;
  display: block;
  margin: 0;
  line-height: 1.5;
  text-align: center;
}
.ranking-box__sub-title {
  font-size: 1.125rem;
}

.ranking-list {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.ranking-list > * {
  box-sizing: border-box;
  padding: 0 26px;
}
.ranking-list > *:not(:first-child) {
  margin-top: 21px;
}
.ranking-list > *:not(:last-child) {
  padding-bottom: 21px;
  border-bottom: 1px solid #e6e6e6;
}
.ranking-list .common-card__rank {
  /* left: 26px; */
  border-top-left-radius: 4px;
}
.ranking-list .common-card__description {
  font-size: 0.875rem;
}
.ranking-list .common-card__title {
  font-size: 1.25rem;
  line-height: 1;
}
.ranking-list .common-card__body {
  gap: 13px;
}

.postit {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
  max-width: 280px;
  margin: 0 auto;
}
.postit--no-padding .postit__inner {
  padding: 0;
}
.postit--no-arrow .postit__arrow {
  display: none;
}
.postit--no-border {
  border: none;
}
.postit--column .postit__inner {
  flex-direction: column;
}
.postit--image-width-80 .postit__image {
  width: 80px;
}
.postit:not(.postit--no-border):hover {
  border: 1px solid #e60c10;
}
.postit__inner {
  display: flex;
  padding: 4px 10px;
  position: relative;
  align-items: center;
  gap: 10px;
  transition: 0.15s;
  min-height: 48px;
  box-sizing: border-box;
}
.postit__inner:hover {
  text-decoration: none;
  background-color: #ffe5e5;
}
.postit__inner:hover .postit__title {
  color: #e60c10;
}
.postit__inner:hover .postit__sub-title {
  color: #e60c10;
}
.postit__inner:not(:has(.postit__image)) {
  padding: 8px 16px;
}
.postit__inner:not(:has(.postit__image)) .postit__body {
  padding-left: 0;
  border-left: none;
}
.postit__image {
  width: 31px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.postit__image img {
  width: 100%;
  height: auto;
}
.postit__image ~ .postit__arrow {
  display: none;
}
.postit__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid #F0F0F0;
  padding-left: 5px;
}
.postit__title {
  color: #333;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
}
.postit__sub-title {
  color: #333;
  font-size: 11px;
  line-height: 1.25;
  white-space: nowrap;
}
.postit__arrow {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}

.postit-list {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr;
}
.postit-list .postit {
  box-sizing: border-box;
}

.circle-prefix {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.circle-prefix:after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background-color: #00963A;
  border-radius: 50%;
  order: -1;
  flex-shrink: 0;
  transform: translateY(3px);
}

.purpose-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
  width: 100%;
}

.purpose-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
.purpose-item__body {
  display: flex;
  flex-direction: column;
  gap: 13px;
  flex-grow: 1;
  width: 100%;
}
.purpose-item__title {
  font-size: 22px;
  font-weight: 600;
  background-color: #00963A;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 160px;
  flex-shrink: 0;
  line-height: 28px;
  color: white;
  min-height: 98px;
}
.purpose-item__catch {
  font-size: 1.125rem;
  font-weight: 600;
}
.purpose-item__description {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

.image-contents {
  display: grid;
  gap: 20px 38px;
  grid-template-columns: 1fr;
}
.image-contents--right:not(:has(.image-contents__body--second)) .image-contents__image {
  grid-area: 2/1/3/2;
}
.image-contents--right:not(:has(.image-contents__body--second)) .image-contents__body--first {
  grid-area: 1/1/2/2;
}
.image-contents--right .image-contents__image {
  grid-area: 2/1/3/2;
}
.image-contents--right .image-contents__body--first {
  grid-area: 1/1/2/2;
}
.image-contents--right .image-contents__body--second {
  grid-area: 3/1/4/2;
}
.image-contents:not(:has(.image-contents__body--second)) .image-contents__image {
  grid-area: 1/1/2/2;
}
.image-contents:not(:has(.image-contents__body--second)) .image-contents__body--first {
  grid-area: 2/1/3/2;
}
.image-contents__image {
  width: 100%;
  grid-area: 1/1/2/2;
  margin: 0;
  text-align: center;
}
.image-contents__body--first {
  grid-area: 2/1/3/2;
}
.image-contents__body--second {
  grid-area: 3/1/4/2;
}
.image-contents p:not(:last-child) {
  margin-bottom: 1rem;
}
.image-contents .page-catch {
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.image-contents .postit__title {
  color: #0068E6;
}

.image-contents-list {
  display: flex;
  flex-direction: column;
}
.image-contents-list > * {
  padding-bottom: 26px;
  border-bottom: 1px dashed transparent;
  border-image: repeating-linear-gradient(90deg, #CCCCCC 0, #CCCCCC 1px, transparent 1px, transparent 5px) 5;
}
.image-contents-list > *:not(:first-child) {
  margin-top: 26px;
}

.compare-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.compare-box__item {
  border: 1px solid #E6E6E6;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.compare-box__item * {
  box-sizing: border-box;
}
.compare-box__title {
  background: #E6E6E6;
  padding: 1.125rem 1rem;
}
.compare-box__title-text {
  font-weight: bold;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 1.25rem;
  line-height: 1;
}
.compare-box__link {
  transition: 0.3s;
  color: #0068E6;
  font-weight: bold;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 1.25rem;
  line-height: 1;
  transition: 0.15s;
}
.compare-box__link:hover {
  color: #e60c10;
  text-decoration: none;
}
.compare-box__link:after {
  content: url("../guide/express-delivery/img/link-card-arrow.svg");
  display: inline-block;
  transform: translateY(-1px);
  margin-left: 0.5rem;
}
.compare-box__contents {
  padding: 1rem;
  height: 100%;
}

.circle-list {
  padding: 0 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.circle-list li {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: bold;
  position: relative;
}
.circle-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1rem;
  transform: translate(-50%, -50%);
  width: 1rem;
  height: 1rem;
  background-color: #00963A;
  border-radius: 50%;
}
.circle-list--red li::before {
  background-color: #E50311;
}
.circle-list--check li:before {
  width: 1.25rem;
  height: 1.25rem;
}
.circle-list--check li:after {
  content: "";
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  position: absolute;
  top: calc(50% + 1px);
  left: -1rem;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 0.75rem;
}

.qa {
  margin-bottom: 20px;
}
.qa dt {
  display: inline-block;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1rem 10px 1rem;
}
.qa dt::before {
  content: "";
  background-image: url(/wp-content/themes/vinypro/majikiri/img/qa-q.png);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 39px;
  position: relative;
  flex-shrink: 0;
  transform: translateY(-13px);
}
.qa dd {
  display: flex;
  gap: 1rem;
  padding-left: 10px;
}
.qa__answer-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.qa__answer-inner > *:nth-child(1) {
  display: flex;
  gap: 1rem;
}
.qa__answer-inner > *:nth-child(1)::before {
  content: "";
  background-image: url(/wp-content/themes/vinypro/majikiri/img/qa-a.png);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 39px;
  position: relative;
  flex-shrink: 0;
}
.qa__answer-inner b {
  font-weight: 600;
  background: linear-gradient(transparent 50%, #FAFFB9 50%);
  display: inline;
}

.page-title + .qa dt {
  margin-top: 0;
}

.cta {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.cta .inner {
  border: solid 6px #F0F0F0;
  border-top: none;
  position: relative;
  margin: 0 10px;
}

.cta > p:nth-child(1) {
  background-color: #529D5B;
  border-top: solid 1px #fff;
  border-bottom: solid 1px #fff;
  color: #fff;
  position: relative;
  padding: 20px;
  font-weight: bold;
  font-size: 18px;
  height: 157px;
  margin-top: 70px;
}

.cta > p:nth-child(1) span {
  color: #FFEB00;
}

.cta > p:nth-child(1):before,
.cta > p:nth-child(1):after {
  position: absolute;
  left: 0;
  width: 100%;
  content: "";
  border-top: 1px solid #fff;
}

.cta > p:nth-child(1):before {
  top: 5px;
}

.cta > p:nth-child(1):after {
  bottom: 5px;
}

.cta .inner > div {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 20px;
}

.contact-product,
.contact-construction {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  margin-top: 10px;
}

.contact-product p,
.contact-construction p {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.contact-product p.sp-only,
.contact-construction p.sp-only {
  font-size: 16px;
  font-weight: normal;
}

.contact-product .button,
.contact-construction .button {
  width: 90%;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  display: block;
  border-radius: 50px;
  padding: 20px 40px 16px 32px;
  position: relative;
  margin: 10px auto;
  transition: 0.1s;
  max-width: 340px;
  min-width: 290px;
}

.contact-product .button {
  box-shadow: 0px 4px 0px 0px #900009;
}

.contact-construction .button {
  box-shadow: 0px 4px 0px 0px #224989;
}

.contact-product .button:hover,
.contact-construction .button:hover {
  opacity: 0.7;
  text-decoration: none;
}

.contact-product {
  border-bottom: solid 1px #C6C6C6;
}

.contact-product .button {
  background-color: #E50311;
}

.contact-construction .button {
  background-color: #3774DA;
}

.cta .button div:nth-child(1) {
  background: url("../../vinypro/point5/img/mail.png") no-repeat;
  padding-left: 34px;
  line-height: 20px;
  background-position: 0px center;
  width: 220px;
  margin: 0 auto;
}

.cta .button::after {
  position: absolute;
  top: 50%;
  right: 1em;
  width: 0.5em;
  height: 0.5em;
  transform: translateY(-50%) rotate(45deg);
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  content: "";
}

.cta .button div:nth-child(2) {
  background-color: #fff;
  color: #E50311;
  font-size: 13px;
  font-weight: bold;
  border-radius: 25px;
  padding: 0px 10px 0px 0px;
  margin-top: 12px;
}

.cta .button div:nth-child(2) span {
  background-color: #FFEB00;
  color: #E50311;
  padding: 6px 6px 7px 10px;
  margin-right: 8px;
  border-radius: 25px 0 0 25px;
}

.cta picture {
  position: absolute;
  top: -220px;
  right: 0;
}

.cta picture img {
  width: 198px !important;
  height: auto;
}

i.fas.fa-phone.fa-xs.fa-flip-horizontal {
  vertical-align: 3px;
  padding-left: 5px;
  font-size: 0.9em;
  color: #e40711;
}

.cta .tel {
  margin: 30px auto 20px;
  font-size: 30px;
  font-weight: bold;
  color: #333333;
  text-align: center;
  display: block;
  width: 300px;
}

.pc-only {
  display: none;
}

.sp-only {
  display: inline;
}

p.sp-only {
  display: block;
}

@keyframes scroll-hint-appear {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    transform: translateX(-40px);
    opacity: 0;
  }
}
.scroll-hint.is-right-scrollable {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-right-scrollable.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0)), linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint-icon {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 60px);
  box-sizing: border-box;
  width: 120px;
  height: auto;
  border-radius: 5px;
  transition: opacity 0.3s;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 20px 10px 10px 10px;
}

.scroll-hint-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  pointer-events: none;
}

.scroll-hint-text {
  font-size: 10px;
  color: #FFF;
  margin-top: 5px;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: 0.8;
}

.scroll-hint-icon:before {
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #FFF;
  vertical-align: middle;
  text-align: center;
  content: "";
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon:after {
  content: "";
  width: 34px;
  height: 14px;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -20px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
  opacity: 0;
  transition-delay: 2.4s;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
  opacity: 1;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
  animation: scroll-hint-appear 1.2s linear;
  animation-iteration-count: 2;
}

.scroll-hint-icon-white {
  background-color: #FFF;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
}

.scroll-hint-icon-white:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDQ8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon-white:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDI8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiLz48L2c+PC9nPjwvc3ZnPg==);
}

.scroll-hint-icon-white .scroll-hint-text {
  color: #000;
}

.page-subsubtitle {
  display: block;
  padding: 16px 0;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 33px;
  border-top: 4px solid #E6E6E6;
  border-bottom: 1px solid #E6E6E6;
  margin-bottom: 1rem;
  margin-top: 64px;
  text-align: center;
}

.page-subtitle + .page-subsubtitle {
  margin-top: 1.5rem;
}

.order-flow {
  background-color: #F2F5FE;
  display: flex;
  width: calc(375px - 2rem);
  margin: 0 auto;
}
.order-flow__inner {
  padding: 19px 10px 21px;
  position: relative;
}
.order-flow__flow {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.order-flow__titles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.order-flow__title {
  padding: 7px;
  background-color: #7F7F7F;
  color: #fff;
  font-weight: 600;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
.order-flow__body {
  display: grid;
  grid-template-columns: repeat(2, 132px);
  grid-template-rows: 226px 143px 160px 194px 137px;
  gap: 20px 23px;
}
.order-flow__separator {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  transform: translateX(-50%);
  border-right: 1px dashed;
  border-image: repeating-linear-gradient(to bottom, #ccc 0, #ccc 4px, transparent 4px, transparent 8px) 1;
  margin: 0;
}
.order-flow__card--order {
  grid-area: 1/1/2/3;
}
.order-flow__card--order .order-flow-card__body {
  display: flex;
  gap: 10px;
}
.order-flow__card--order .order-flow-card__image {
  width: 149px;
  height: auto;
  flex: 0 0 149px;
  object-fit: cover;
}
.order-flow__card--order .order-flow-card__catch {
  text-align: left;
  font-size: 15px;
  line-height: 1;
  padding-left: 10px;
}
.order-flow__card--order .order-flow-card__inner {
  padding-top: 0;
  padding-left: 10px;
}
.order-flow__card--estimate {
  grid-area: 2/1/4/2;
}
.order-flow__card--estimate-overview {
  grid-area: 2/2/3/3;
}
.order-flow__card--estimate-overview .order-flow-card__catch {
  padding-left: 7px;
  padding-right: 7px;
}
.order-flow__card--estimate-overview .order-flow-card__inner {
  padding-top: 0;
  padding-bottom: 6px;
  padding-left: 7px;
  padding-right: 7px;
}
.order-flow__card--estimate-right {
  grid-area: 3/2/4/3;
}
.order-flow__card--estimate-right .order-flow-card__catch {
  padding-left: 7px;
  padding-right: 7px;
}
.order-flow__card--estimate-right .order-flow-card__inner {
  padding-top: 0;
  padding-bottom: 3px;
  padding-left: 7px;
  padding-right: 7px;
}
.order-flow__card--payment {
  grid-area: 4/1/5/3;
}
.order-flow__card--payment .order-flow-card__body {
  display: flex;
  gap: 10px;
}
.order-flow__card--payment .order-flow-card__image {
  width: 149px;
  height: auto;
  flex: 0 0 149px;
  object-fit: cover;
}
.order-flow__card--payment .order-flow-card__catch {
  font-size: 15px;
  line-height: 1;
  padding-left: 10px;
}
.order-flow__card--payment .order-flow-card__inner {
  padding-top: 0;
  padding-left: 10px;
  padding-bottom: 4px;
}
.order-flow__card--deliver {
  grid-area: 5/1/6/2;
}
.order-flow__card--construction {
  grid-area: 5/2/6/3;
}
.order-flow__ranges {
  display: flex;
  flex-direction: column;
  gap: 23px;
  flex-grow: 1;
  padding: 69px 10px 21px 6px;
}
.order-flow__range {
  display: flex;
  justify-content: center;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  position: relative;
  align-items: center;
  width: 18px;
}
.order-flow__range-text {
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: inline-block;
  background-color: #F2F5FE;
  line-height: 1;
  font-size: 1.125rem;
  font-weight: 600;
  position: relative;
  z-index: 2;
  padding: 8px 0;
}
.order-flow__range-text span {
  color: #E50311;
}
.order-flow__range:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  border-right: 1px solid #ccc;
  transform: translateX(-50%);
}
.order-flow__range:first-child {
  flex-grow: 1;
}
.order-flow__range:last-child {
  height: 351px;
  flex: 0 0 351px;
}

.order-flow-card {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
.order-flow-card--finish .order-flow-card__title {
  background-color: #E50311;
}
.order-flow-card--finish .order-flow-card__image {
  width: 148px;
  height: 105px;
  object-fit: cover;
}
.order-flow-card--finish .order-flow-card__body {
  border: none;
}
.order-flow-card__title {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  font-weight: 600;
  color: #fff;
  font-size: 1rem;
  background-color: #204FA8;
  line-height: 1;
}
.order-flow-card__body {
  border: 1px solid #ccc;
  border-top: none;
  flex-grow: 1;
}
.order-flow-card__catch {
  padding: 7px 10px 4px;
  color: #204FA8;
  font-weight: 600;
  font-size: 15px;
  display: block;
  line-height: 1.15;
}
.order-flow-card__image {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.order-flow-card__inner {
  padding: 0 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.order-flow-card__wrapper {
  display: flex;
  flex-direction: column;
}
.order-flow-card__description {
  font-size: 13px;
  color: #333;
  line-height: 1.15;
}
.order-flow-card__howto {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: center;
}
.order-flow-card__howto-text {
  display: inline-flex;
  padding: 3px 10px;
  font-size: 13px;
  background-color: #204FA8;
  color: #fff;
  z-index: 2;
  position: relative;
  align-items: center;
  line-height: 1.1;
}
.order-flow-card__howto:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  border-bottom: 1px dashed;
  border-image: repeating-linear-gradient(to right, #ccc 0, #ccc 4px, transparent 4px, transparent 8px) 1;
  z-index: 1;
}
.order-flow-card__list {
  font-size: 13px;
  color: #333;
  line-height: 1.15;
}
.order-flow-card__arrow {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
}
.order-flow-card__arrow--before {
  top: -6px;
}
.order-flow-card__arrow--after {
  bottom: -43px;
}

.qa-slim-list {
  display: flex;
  flex-direction: column;
}

.qa-slim {
  display: flex;
  flex-direction: column;
  border-radius: 4px;
}
.qa-slim.ac {
  border: none;
  background-color: #FAFAFA;
}
.qa-slim:not(.is-active) .qa-slim__title {
  border-bottom: none;
}
.qa-slim.is-active .ac-trigger:after {
  content: "\f068";
  transform: translate(0, -50%) rotate(-180deg);
}
.qa-slim__title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 21px;
  font-weight: 600;
  border-bottom: 1px solid #E6E6E6;
  padding: 1rem 1rem 10px;
  line-height: 2;
}
.qa-slim__title:before {
  content: "Q";
  font-size: 26px;
  color: #3989B9;
  line-height: 42px;
  display: inline-block;
}
.qa-slim__answer {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.qa-slim__answer-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 1rem 0;
  line-height: 2;
}
.qa-slim__answer-title:before {
  content: "A";
  font-size: 26px;
  color: #CC0000;
  line-height: 42px;
  display: inline-block;
}
.qa-slim__answer-content {
  padding: 0 1rem 20px 54px;
  font-size: 1rem;
  line-height: 1.5;
}
.qa-slim.ac .ac-trigger {
  padding-right: 44px;
}
.qa-slim.ac .ac-trigger:after {
  font-family: "Font Awesome 5 Free";
  transition: 0.4s ease;
  content: "\f067";
  font-size: 1rem;
}
.qa-slim.ac .ac-header {
  padding-left: 16px;
}

.product-search {
  padding: 1rem;
  width: 100%;
  box-sizing: border-box;
}
.product-search__title {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
  justify-content: center;
  width: 100%;
  margin-bottom: 1rem;
}
.product-search__description {
  display: none;
}
.product-search__form {
  display: flex;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #ccc;
}
.product-search__form input {
  padding: 0 0.5em;
  width: 100%;
  height: 30px;
  border: none;
  font-size: 1rem;
  box-sizing: border-box;
  flex: 1;
}
.product-search__form button {
  margin: 0;
  padding: 0 0.75em;
  height: 30px;
  border: 0 none;
  background: #333;
  background: linear-gradient(to top, #222 20%, #666);
  border-radius: 0 2px 2px 0;
  font-size: 13px;
  color: #fff;
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
}

.main-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}
.main-categories__title {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
  display: block;
  text-align: center;
}
.main-categories * {
  box-sizing: border-box;
}

.main-category-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 8px;
  width: 100%;
}

.main-category-item__link {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 10px;
  display: flex;
  gap: 6px;
  transition: 0.15s;
  background-color: #fff;
}

.main-category-item__link:hover {
  text-decoration: none;
  background-color: #ffe5e5;
  border-color: #e60c10;
}

.main-category-item__image {
  width: 80px;
  height: 80px;
  overflow: hidden;
  margin: 0;
}

.main-category-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-category-item__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.main-category-item__title {
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 600;
  color: #0068E6;
  display: flex;
  padding-right: 6px;
  align-items: center;
  justify-content: space-between;
  transition: 0.15s;
}

.main-category-item__title:after {
  content: url("../components/img/category-list/arrow.svg");
  display: inline-block;
  transform: translateY(-1px);
}

.main-category-item__link:hover .main-category-item__title {
  color: #e60c10;
}

.main-category-item__description {
  font-size: 0.875rem;
  line-height: 1.5;
}

.vinypro-strength {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
  align-items: center;
  padding: 0 10px;
}
.vinypro-strength__item {
  border-radius: 10px;
  background-color: #F9F8F6;
  height: 100%;
  position: relative;
}
.vinypro-strength__item a {
  display: flex;
  flex-direction: column;
  gap: 7px;
  height: 100%;
  padding: 14px 14px 12px;
}
.vinypro-strength__item:after {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  color: #333;
  font-weight: 600;
}
.vinypro-strength__title {
  font-size: 1rem;
  color: #333333;
  font-weight: 600;
  display: block;
  text-align: center;
  white-space: nowrap;
  line-height: 1;
}
.vinypro-strength__image {
  display: flex;
  justify-content: center;
  margin: 0;
}
.vinypro-strength__image img {
  width: 64px;
  height: 47px;
}

.customer-voice-list {
  display: flex;
  flex-direction: column;
  gap: 38px;
}
.customer-voice-list--insert {
  background-color: #F9F8F6;
  gap: 0px;
  max-height: 540px;
  overflow-y: auto;
}
.customer-voice-list--insert::-webkit-scrollbar {
  width: 24px;
}
.customer-voice-list--insert::-webkit-scrollbar-thumb {
  background-color: #CCC;
  border-radius: 20px;
  width: 24px;
  border: 4px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
}
.customer-voice-list--insert::-webkit-scrollbar-track {
  background-color: #EFEFEF;
}

.customer-voice {
  padding: 15px 24px 23px 8px;
  background-color: #F9F8F6;
}
.customer-voice--insert .customer-voice-balloon--customer {
  margin-bottom: 0;
}
.customer-voice--insert .customer-voice-balloon-body-item-header {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 5px 10px;
}
/*カーテンカテゴリ内*/
.vinylListBox .customer-voice--insert .customer-voice-balloon-body-item-header h3 {
  background: none;
  font-weight: bold;
    font-size: 0.875rem;
    line-height: 1.5;
  line-height: 1.3em;
  padding: 0px;
  margin: 0px;

}
.customer-voice--insert .customer-voice-balloon-body-item-header__category {
  width: auto;
  grid-column: 1/3;
  justify-content: center;
}
.customer-voice--insert .customer-voice-balloon__target-date {
  display: none;
}
.customer-voice--insert .customer-voice-balloon-body-item-header__category {
  display: none;
}

.customer-voice-header {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 20px;
}
.customer-voice-header__category {
  padding: 0 8px;
  font-size: 0.75rem;
  line-height: 1.5;
  font-weight: bold;
  background-color: #E7E7E7;
  display: inline-flex;
  align-items: center;
}
.customer-voice-header__date {
  font-size: 0.75rem;
  line-height: 1.5;
}

.customer-voice-category--voice_viny {
  color: #e50012;
}
.customer-voice-category--voice_booth {
  color: #e50012;
}
.customer-voice-category--voice_shutter {
  color: #e50012;
}
.customer-voice-category--voice_sheet {
  color: #094699;
}
.customer-voice-category--voice_truck {
  color: #238059;
}
.customer-voice-category--voice_cover {
  color: #1287d4;
}
.customer-voice-category--voice_tent {
  color: #AE0C3C;
}
.customer-voice-category--voice_net {
  color: #076447;
}
.customer-voice-category--voice_kanagu {
  color: #e50012;
}
.customer-voice-category--voice_rail {
  color: #e50012;
}
.customer-voice-category--voice_bosai {
  color: #5fa423;
}

.customer-voice-balloon {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.t-voiceM{
  font-weight: normal;
}
.top-section h2.t-voiceM{
  border-bottom:none !important;
  margin-bottom:0px !important;
  font-size: 100% !important;
  line-height: 1.5 !important;
    padding: 0px !important;
    font-weight: normal !important;
}
.customer-voice-balloon-body-item-header__category a,
.customer-voice-category{
  text-decoration: underline;
}

.customer-voice-header a .customer-voice-header__category {
  text-decoration: underline;
}
.customer-voice-balloon--customer:has(+ .customer-voice-balloon) {
  margin-bottom: 22px;
}
.customer-voice-balloon__target {
  flex: 0 0 51px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.customer-voice-balloon__target-pref {
  font-size: 0.75rem;
  line-height: 1.5;
}
.customer-voice-balloon__target a {
  color: #1F74E1;
  text-decoration: underline;
}
.customer-voice-balloon__target a:hover {
  color: #e00;
}
.customer-voice-balloon__target-image {
  width: 51px;
  height: 51px;
  border-radius: 50%;
  object-fit: cover;
}
.customer-voice-balloon__target-label {
  display: flex;
  align-items: flex-end;
  line-height: 1.5;
  font-weight: bold;
}
.customer-voice-balloon__target-label-text {
  font-size: 1.125rem;
}
.customer-voice-balloon__target-label-unit {
  font-size: 15px;
}
.customer-voice-balloon__target-date {
  font-size: 0.75rem;
  line-height: 1.5;
}
.customer-voice-balloon--vinypro {
  gap: 24px;
  align-items: flex-end;
}
.customer-voice-balloon--vinypro .customer-voice-balloon__target {
  order: 2;
}
.customer-voice-balloon--vinypro .customer-voice-balloon__target-label {
  font-weight: normal;
  font-size: 0.75rem;
}
.customer-voice-balloon--vinypro .customer-voice-balloon-body:before {
  left: auto;
  bottom: 14px;
  top: auto;
  right: 8px;
  border-width: 15.5px 0 15.5px 25px;
  border-color: transparent transparent transparent rgba(0, 0, 0, 0.16);
  transform: translate(100%, 0);
}
.customer-voice-balloon--vinypro .customer-voice-balloon-body__inner {
  background-color: #F1FBFC;
}
.customer-voice-balloon--vinypro .customer-voice-balloon-body__inner:before {
  left: auto;
  top: auto;
  bottom: 18px;
  right: 9px;
  border-width: 15.5px 0 15.5px 25px;
  border-color: transparent transparent transparent #F1FBFC;
  transform: translate(100%, 0);
}

.customer-voice-balloon-body {
  position: relative;
  width: 100%;
}
.customer-voice-balloon-body:before {
  content: "";
  position: absolute;
  top: 29px;
  left: 14px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15.5px 25px 15.5px 0;
  border-color: transparent rgba(0, 0, 0, 0.16) transparent transparent;
  transform: translate(-100%, 0);
  filter: blur(1px);
}
.customer-voice-balloon-body__inner {
  background-color: #fff;
  padding: 18px 14px 18px 21px;
  position: relative;
  box-shadow: 3px 3px 1px 0 rgba(0, 0, 0, 0.16);
  border-radius: 5px;
  min-height: 80px;
}
.customer-voice-balloon-body__inner:before {
  content: "";
  position: absolute;
  top: 24px;
  left: 11px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15.5px 25px 15.5px 0;
  border-color: transparent #FFFFFF transparent transparent;
  transform: translate(-100%, 0);
  z-index: 3;
}

.customer-voice-balloon-list > *:nth-child(2) {
  margin-top: 17px;
  padding-top: 17px;
  border-top: 1px solid transparent;
  border-image: repeating-linear-gradient(to right, #A4A4A4 0, #A4A4A4 3px, transparent 3px, transparent 6px) 6;
}

.customer-voice-balloon-body-item-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.customer-voice-balloon-body-item-header__q {
  border-radius: 50%;
  display: inline-flex;
  width: 26px;
  height: 26px;
  background-color: #F8AF50;
  color: #fff;
  font-size: 17px;
  font-weight: bold;
  line-height: 1;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.customer-voice-balloon-body-item-header__text {
  font-weight: bold;
  font-size: 0.875rem;
  line-height: 1.5;
}
.customer-voice-balloon-body-item-header__category {
  padding: 0 12px;
  font-size: 0.75rem;
  line-height: 1.5;
  font-weight: bold;
  background-color: #E7E7E7;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.customer-voice-balloon-body-item-review {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.customer-voice-balloon-body-item-review__stars {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  color: #FF9000;
  gap: 0.25rem;
}
.customer-voice-balloon-body-item-review__text {
  font-size: 0.875rem;
  line-height: 1.5;
}

.customer-voice-balloon-body-item-content {
  white-space: pre-line;
  font-size: 0.875rem;
  line-height: 1.5;
}

.main-image-wrapper {
  margin: 0 0 30px 0;
}

.small-caution {
  text-align: right;
  font-size: 12px;
  display: block;
}