:root {
  /* Primaty Colors */
  --color-primary: #718e98;
  --color-primary-light: #a2c7cb;
  --color-primary-light2: #e3eff0;
  /* Accent Colors */
  --color-accent-1: #e4c6ca;
  --color-green: #06c755;
  --color-green2: #70ab4f;
  --color-green3: #e0ffc7;
  --color-yellow: #eeff02;
  --color-yellow2: #c7cc00;
  --color-blue: #80b6d4;
  --color-pink: #f09bc6;
  --color-pink2: #fae8f2;
  /* Gray Base Colors */
  --color-gray-100: #f1f1f1;
  --color-gray-200: #ededed;
  --color-gray-300: #e6e5e5;
  --color-gray-400: #e2e2e2;
  --color-gray-500: #bdbdbd;
  --color-gray-600: #989898;
  --color-gray-700: #5f6060;
  --color-gray-logo: #808080;
  --color-white: #ffffff;
  /* Text Colors */
  --text-color-primary: var(--color-gray-700);
  --text-color-inverse: var(--color-white);
}

:root {
  /* Repair Colors */
  --color-primary: #71a2a3;
  --color-secondary: #3b7492;
  --color-tertiary: #c5d8e2;
  --color-light: #f2f9f9;
  --color-repair-xtra-light: #edf2f5;
  --color-repair-gray-light: #f4f4f4;
  --color-repair-gray-dark: #333333;
  --text-color-primary: var(--color-repair-gray-dark);
}

.s-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  right: 0;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding-left: 14px;
  z-index: 100;
  transition: all 0.6s;
}
.s-header._hide {
  transform: translateY(-100%);
}

.c-logo {
  width: 100%;
  height: 100%;
  display: block;
  fill: var(--color-gray-logo);
}
.c-logo.-gray {
  fill: var(--color-gray-logo);
}
.c-logo.-white {
  fill: var(--color-white);
}

.c-button {
  display: block;
  position: relative;
  width: 70px;
  height: 100%;
  background-color: var(--color-primary);
  align-items: center;
  transition: all 0.6s;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  z-index: 1000;
}
.c-button:before {
  content: "";
  display: block;
  width: 38px;
  position: absolute;
  top: 25px;
  left: 50%;
  height: 3px;
  border-radius: 3px;
  background-color: var(--color-white);
  margin-bottom: 14px;
  transition: all 0.6s;
  transform-origin: 0 0;
  transform: rotate(0) translateX(-50%);
}
.c-button:after {
  content: "";
  display: block;
  position: absolute;
  top: 38px;
  left: 50%;
  width: 38px;
  height: 3px;
  border-radius: 3px;
  background-color: var(--color-white);
  transition: all 0.6s;
  transform-origin: 0 0;
  transform: rotate(0) translateX(-50%);
}
.c-button.is-active {
  background-color: var(--color-white);
}
.c-button.is-active:before {
  width: 28px;
  top: 34px;
  left: 52%;
  background-color: var(--color-primary);
  transform: rotate(45deg) translateX(-48%);
}
.c-button.is-active:after {
  width: 28px;
  top: 34px;
  background-color: var(--color-primary);
  transform: rotate(-45deg) translateX(-50%);
}
@media (min-width: 1080px) {
  .c-button {
    display: none;
  }
}

@media (min-width: 960px) {
  html {
    font-size: 62.5%;
  }
}

body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-size: calc(16 * 100vw / 390);
  font-weight: 400;
  color: #333333;
  letter-spacing: 0.075em;
}
@media (min-width: 960px) {
  body {
    font-size: 1.6rem;
  }
}

em {
  font-style: normal;
}

dt {
  font-weight: 400;
}

strong {
  font-weight: normal;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

@keyframes scale-line {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  46% {
    transform: scaleY(1);
    transform-origin: top;
  }
  54% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
.repair {
  width: 100%;
  position: relative;
}

.repair-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  right: 0;
  height: 70px;
  z-index: 100;
  transition: all 0.6s;
}
.repair-header.is-hide {
  transform: translateY(-120%);
}
.repair-header__inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding-left: 14px;
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.1));
}
.repair-header__logo {
  width: 158.33px;
  height: 25.17px;
}
.repair-header__logo--icon {
  width: 100%;
  height: 100%;
  display: block;
}
.repair-header__list {
  display: none;
}
@media (min-width: 1080px) {
  .repair-header {
    max-width: 1518px;
    height: 60px;
    padding-left: 40px;
    padding-right: 40px;
    top: 14px;
    left: 50%;
    transform: translateX(-50%) translateY(0);
  }
  .repair-header__inner {
    padding-left: 40px;
    padding-right: 40px;
    border-radius: 40px;
  }
  .repair-header.is-hide {
    top: 0;
    transform: translateX(-50%) translateY(-100%);
  }
  .repair-header__logo {
    width: 150px;
    height: 24px;
  }
  .repair-header__logo--icon {
    width: 100%;
    height: 100%;
    display: block;
  }
  .repair-header__list {
    display: flex;
    height: 100%;
  }
  .repair-header__list--link {
    transition: all 0.6s;
  }
  .repair-header__list--link:hover {
    opacity: 0.6;
  }
  .repair-header__menu {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .repair-header__menu--item {
    display: block;
    height: 100%;
    font-size: 1.2rem;
    font-weight: 500;
  }
  .repair-header__menu--link {
    height: 100%;
    display: flex;
    align-items: center;
  }
  .repair-header__menu--link.-adj {
    padding-left: 20px;
  }
  .repair-header__extramenu {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
  }
  .repair-header__extramenu--item {
    font-size: 1.2rem;
    font-weight: 500;
  }
  .repair-header__extramenu--item.-store {
    display: block;
    height: 100%;
    color: var(--color-secondary);
  }
  .repair-header__extramenu--item.-store > a {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 16px;
    padding-right: 16px;
  }
  .repair-header__extramenu--item.-store > a::before {
    content: "";
    display: block;
    width: 14px;
    height: 20px;
    margin-right: 10px;
    background-image: url(../../assets/images/repair/ico-header-pin.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }
  .repair-header__extramenu--item.-store > a::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 34px;
    background-color: var(--color-gray-500);
    transform: translateY(-50%);
  }
  .repair-header__extramenu--item.-tel {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding-left: 16px;
    padding-right: 16px;
    color: var(--color-secondary);
  }
  .repair-header__extramenu--item.-tel::before {
    content: "";
    display: block;
    width: 13px;
    height: 19px;
    margin-right: 10px;
    background-image: url(../../assets/images/repair/ico-tel.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }
  .repair-header__extramenu--item.-tel::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 34px;
    background-color: var(--color-gray-500);
    transform: translateY(-50%);
  }
  .repair-header__extramenu--item.-line {
    position: relative;
    display: block;
    height: 100%;
    padding-left: 16px;
  }
  .repair-header__extramenu--item.-line::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 34px;
    background-color: var(--color-gray-500);
    transform: translateY(-50%);
  }
  .repair-header__extramenu--item.-line > a {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-green);
  }
  .repair-header__extramenu--item.-line > a::before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    background-image: url(../../assets/images/repair/ico-line-logo.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }
}
@media (min-width: 1200px) {
  .repair-header {
    height: 80px;
  }
  .repair-header__logo {
    width: 169px;
    height: 27px;
  }
  .repair-header__menu--item {
    font-size: 1.5rem;
  }
  .repair-header__extramenu--item {
    font-size: 1.5rem;
  }
}
@media (min-width: 1340px) {
  .repair-header__logo {
    width: 188px;
    height: 30px;
  }
  .repair-header__menu--item {
    font-size: 1.8rem;
  }
  .repair-header__extramenu--item {
    font-size: 1.8rem;
  }
}

.repair-drawer {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-primary);
  visibility: hidden;
  opacity: 0;
  scale: 0.99;
  transform-origin: center;
  transition: all 0.6s;
}
.repair-drawer.is-open {
  visibility: visible;
  opacity: 1;
  scale: 1;
}
.repair-drawer__inner {
  width: 100%;
  height: calc(100vh - 70px);
  pointer-events: auto;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  -ms-ovewrflow-style: none;
  scrollbar-width: none;
}
.repair-drawer__content {
  display: block;
  padding-top: calc(48 * 100vw / 390);
  padding-left: calc(48 * 100vw / 390);
  padding-right: calc(48 * 100vw / 390);
}
.repair-drawer__menu {
  border-bottom: 1px solid var(--color-white);
}
.repair-drawer__menu--link {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: calc(30 * 100vw / 390);
  padding-bottom: calc(30 * 100vw / 390);
  font-size: 18px;
  font-size: calc(18 * 100vw / 390);
  color: var(--color-white);
  font-weight: 600;
}
@media (min-width: 960px) {
  .repair-drawer {
    display: none;
  }
}

.repair-hero {
  width: 100%;
  height: calc(520 * 100vw / 390);
  margin-top: 70px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../images/repair/hero-sp.webp);
}
.repair-hero__inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.repair-hero__content {
  width: 100%;
  padding-top: calc(56 * 100vw / 390);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.repair-hero__content--title {
  font-size: 20px;
  font-size: calc(20 * 100vw / 390);
  color: var(--color-white);
  font-weight: 500;
}
.repair-hero__content--logo {
  width: calc(234 * 100vw / 390);
  margin-top: calc(24 * 100vw / 390);
}
.repair-hero__content--badge {
  position: relative;
  width: calc(318 * 100vw / 390);
  margin-top: calc(24 * 100vw / 390);
}
.repair-hero__content--badge > img {
  width: 100%;
  height: auto;
  filter: drop-shadow(5px 5px 5px #210600);
}
.repair-hero__content--badge .-note {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 0;
  font-size: 14px;
  font-size: calc(14 * 100vw / 390);
  color: var(--color-white);
  filter: drop-shadow(5px 5px 5px #210600);
}
@media (min-width: 768px) {
  .repair-hero {
    width: 100%;
    height: 520px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../images/repair/hero-pc.webp);
  }
  .repair-hero__content {
    position: absolute;
    width: -moz-max-content;
    width: max-content;
    top: 50%;
    right: 40px;
    padding-top: 0;
    transform: translateY(-50%);
  }
  .repair-hero__content--title {
    font-size: 2.8rem;
  }
  .repair-hero__content--logo {
    width: 280px;
    margin-top: 22px;
  }
  .repair-hero__content--badge {
    position: relative;
    width: 460px;
    margin-top: 24px;
  }
  .repair-hero__content--badge > img {
    filter: drop-shadow(5px 5px 5px #210600);
  }
  .repair-hero__content--badge .-note {
    font-size: 2rem;
  }
}
@media (min-width: 820px) {
  .repair-hero__content--title {
    font-size: 1.8rem;
  }
  .repair-hero__content--logo {
    width: 280px;
    margin-top: 18px;
  }
  .repair-hero__content--badge {
    width: 400px;
    margin-top: 20px;
  }
  .repair-hero__content--badge .-note {
    font-size: 1.2rem;
  }
}
@media (min-width: 960px) {
  .repair-hero {
    margin-top: 0;
    height: 700px;
  }
  .repair-hero__inner {
    max-width: 960px;
    margin: 0 auto;
  }
  .repair-hero__content {
    top: auto;
    right: 20px;
    bottom: 120px;
    transform: translateY(0);
  }
  .repair-hero__content--title {
    font-size: 3.2rem;
  }
  .repair-hero__content--logo {
    width: 336px;
    margin-top: 30px;
  }
  .repair-hero__content--badge {
    width: 510px;
    margin-top: 40px;
  }
  .repair-hero__content--badge > img {
    filter: drop-shadow(5px 5px 5px #210600);
  }
  .repair-hero__content--badge .-note {
    font-size: 1.8rem;
  }
}

.repair-problem {
  width: 100%;
  padding-top: calc(68 * 100vw / 390);
  padding-bottom: calc(80 * 100vw / 390);
}
.repair-problem__title {
  font-size: 20px;
  font-size: calc(20 * 100vw / 390);
  font-weight: 600;
  color: var(--color-secondary);
  text-align: center;
}
.repair-problem__content {
  position: relative;
  width: 100%;
  height: calc(424 * 100vw / 390);
  margin-top: calc(38 * 100vw / 390);
  padding-left: calc(20 * 100vw / 390);
  padding-right: calc(20 * 100vw / 390);
}
.repair-problem__card {
  position: absolute;
  width: calc(102 * 100vw / 390);
  height: calc(124 * 100vw / 390);
}
.repair-problem__card:nth-of-type(1) {
  top: 0;
  left: calc(80 * 100vw / 390);
}
.repair-problem__card:nth-of-type(2) {
  top: 0;
  right: calc(80 * 100vw / 390);
}
.repair-problem__card:nth-of-type(3) {
  top: calc(150 * 100vw / 390);
  left: calc(20 * 100vw / 390);
}
.repair-problem__card:nth-of-type(4) {
  top: calc(150 * 100vw / 390);
  left: 50%;
  transform: translateX(-50%);
}
.repair-problem__card:nth-of-type(5) {
  top: calc(150 * 100vw / 390);
  right: calc(20 * 100vw / 390);
}
.repair-problem__card:nth-of-type(6) {
  bottom: 0;
  left: calc(80 * 100vw / 390);
}
.repair-problem__card:nth-of-type(7) {
  bottom: 0;
  right: calc(80 * 100vw / 390);
}
.repair-problem__card::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: calc(102 * 100vw / 390);
  border-radius: 50%;
  background-color: var(--color-light);
}
.repair-problem__card--inner {
  position: relative;
}
.repair-problem__card--ico {
  position: absolute;
}
.repair-problem__card--ico.-ico01 {
  width: calc(50 * 100vw / 390);
  top: calc(8 * 100vw / 390);
  left: calc(22 * 100vw / 390);
}
.repair-problem__card--ico.-ico02 {
  width: calc(72 * 100vw / 390);
  top: calc(8 * 100vw / 390);
  left: calc(8 * 100vw / 390);
}
.repair-problem__card--ico.-ico03 {
  width: calc(65 * 100vw / 390);
  top: calc(28 * 100vw / 390);
  left: 50%;
  transform: translateX(-50%);
}
.repair-problem__card--ico.-ico04 {
  width: calc(58 * 100vw / 390);
  top: calc(6 * 100vw / 390);
  left: calc(24 * 100vw / 390);
}
.repair-problem__card--ico.-ico05 {
  width: calc(66 * 100vw / 390);
  top: calc(24 * 100vw / 390);
  left: 50%;
  transform: translateX(-50%);
}
.repair-problem__card--ico.-ico06 {
  width: calc(65 * 100vw / 390);
  top: calc(28 * 100vw / 390);
  left: 50%;
  transform: translateX(-50%);
}
.repair-problem__card--ico.-ico07 {
  width: calc(52 * 100vw / 390);
  top: calc(-4 * 100vw / 390);
  left: 50%;
  transform: translateX(-50%);
}
.repair-problem__card--text {
  width: 110%;
  position: absolute;
  left: 50%;
  bottom: 0;
  font-size: calc(14 * 100vw / 390);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: normal;
  color: var(--color-secondary);
  text-align: center;
  transform: translateX(-50%);
}
@media (min-width: 960px) {
  .repair-problem {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .repair-problem__title {
    font-size: 3rem;
  }
  .repair-problem__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px 40px;
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    height: auto;
    margin-top: 60px;
    padding-left: 40px;
    padding-right: 40px;
  }
  .repair-problem__card {
    position: relative;
    width: 200px;
    height: 200px;
  }
  .repair-problem__card:nth-of-type(1) {
    top: auto;
    left: auto;
  }
  .repair-problem__card:nth-of-type(2) {
    top: auto;
    right: auto;
  }
  .repair-problem__card:nth-of-type(3) {
    top: auto;
    left: auto;
  }
  .repair-problem__card:nth-of-type(4) {
    top: auto;
    left: auto;
    transform: translateX(0);
  }
  .repair-problem__card:nth-of-type(5) {
    top: auto;
    right: auto;
  }
  .repair-problem__card:nth-of-type(6) {
    bottom: auto;
    left: auto;
  }
  .repair-problem__card:nth-of-type(7) {
    bottom: auto;
    right: auto;
  }
  .repair-problem__card::before {
    height: 200px;
  }
  .repair-problem__card--inner {
    position: relative;
  }
  .repair-problem__card--ico {
    position: relative;
  }
  .repair-problem__card--ico.-ico01 {
    width: 84px;
    margin-left: 50px;
    top: auto;
    left: auto;
  }
  .repair-problem__card--ico.-ico02 {
    width: 120px;
    margin-top: 4px;
    margin-left: 30px;
    top: auto;
    left: auto;
  }
  .repair-problem__card--ico.-ico03 {
    width: 108px;
    margin-top: 44px;
    margin-left: 46px;
    top: auto;
    left: auto;
    transform: translateX(0);
  }
  .repair-problem__card--ico.-ico04 {
    width: 96px;
    margin-top: 6px;
    margin-left: 56px;
    top: auto;
    left: auto;
  }
  .repair-problem__card--ico.-ico05 {
    width: 116px;
    margin-top: 20px;
    margin-left: 44px;
    top: auto;
    left: auto;
    transform: translateX(0);
  }
  .repair-problem__card--ico.-ico06 {
    width: 108px;
    margin-top: 34px;
    margin-left: 46px;
    top: auto;
    left: auto;
    transform: translateX(0);
  }
  .repair-problem__card--ico.-ico07 {
    width: 76px;
    margin-left: 66px;
    top: auto;
    left: auto;
    transform: translateX(0);
  }
  .repair-problem__card--text {
    bottom: 20px;
    font-size: 2.0rem;
    line-height: 1.4;
  }
  .repair-problem__card--text .-sp {
    display: none;
  }
}

.repair-menu {
  background-color: var(--color-repair-gray-light);
}
.repair-menu__header {
  display: flex;
  justify-content: center;
  position: relative;
  padding-top: calc(18 * 100vw / 390);
  padding-bottom: calc(18 * 100vw / 390);
  background-color: var(--color-primary);
}
.repair-menu__featured-text {
  text-align: center;
  color: var(--color-white);
  font-weight: 500;
  line-height: 1.6;
}
.repair-menu__featured-text > span {
  font-size: 16px;
  font-size: calc(16 * 100vw / 390);
}
.repair-menu__featured-text > em {
  font-size: 20px;
  font-size: calc(20 * 100vw / 390);
}
.repair-menu__inner {
  padding-top: calc(48 * 100vw / 390);
  padding-left: calc(40 * 100vw / 390);
  padding-right: calc(40 * 100vw / 390);
  padding-bottom: calc(80 * 100vw / 390);
}
.repair-menu__title {
  display: flex;
  justify-content: center;
  align-items: center;
}
.repair-menu__title > span {
  display: inline-block;
  padding-bottom: calc(8 * 100vw / 390);
  font-size: calc(24 * 100vw / 390);
  font-weight: 500;
  border-bottom: 1px solid var(--color-secondary);
}
.repair-menu__text {
  padding-top: calc(18 * 100vw / 390);
}
.repair-menu__text .-pc {
  display: none;
}
.repair-menu__content {
  display: flex;
  justify-content: center;
  gap: calc(28 * 100vw / 390) calc(36 * 100vw / 390);
  flex-wrap: wrap;
  padding-top: calc(36 * 100vw / 390);
}
.repair-menu__card {
  width: calc(120 * 100vw / 390);
}
.repair-menu__card--thumb {
  width: 100%;
  height: auto;
}
.repair-menu__card--info {
  padding-top: calc(12 * 100vw / 390);
  text-align: center;
}
.repair-menu__card--menu {
  margin-bottom: calc(4 * 100vw / 390);
  font-size: 16px;
}
.repair-menu__card--price {
  font-size: 20px;
  font-size: calc(20 * 100vw / 390);
  color: var(--color-secondary);
}
.repair-menu__card--price > span {
  display: inline-block;
  padding-left: calc(1 * 100vw / 390);
  padding-right: calc(1 * 100vw / 390);
  font-size: 14px;
  font-size: calc(14 * 100vw / 390);
  vertical-align: calc(1 * 100vw / 390);
}
@media (min-width: 960px) {
  .repair-menu__header {
    padding-top: 24px;
    padding-bottom: 26px;
  }
  .repair-menu__featured-text > span {
    font-size: 2.4rem;
  }
  .repair-menu__featured-text > em {
    font-size: 3rem;
  }
  .repair-menu__inner {
    width: 100%;
    max-width: 1040px;
    padding-top: 100px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 100px;
    margin: 0 auto;
  }
  .repair-menu__title > span {
    display: inline-block;
    padding-bottom: 12px;
    font-size: 3rem;
  }
  .repair-menu__text {
    padding-top: 46px;
    line-height: 2;
    text-align: center;
  }
  .repair-menu__text .-pc {
    display: block;
  }
  .repair-menu__content {
    gap: 50px 40px;
    padding-top: 50px;
  }
  .repair-menu__card {
    width: 210px;
  }
  .repair-menu__card--info {
    padding-top: 12px;
  }
  .repair-menu__card--menu {
    margin-bottom: 4px;
    font-size: 2.0rem;
  }
  .repair-menu__card--price {
    font-size: 2.4rem;
    color: var(--color-secondary);
  }
  .repair-menu__card--price > span {
    padding-left: 1px;
    padding-right: 1px;
    font-size: 1.4rem;
    vertical-align: 0;
  }
}

.repair-store {
  padding-top: calc(80 * 100vw / 390);
  padding-left: calc(15 * 100vw / 390);
  padding-right: calc(15 * 100vw / 390);
  padding-bottom: calc(64 * 100vw / 390);
  background-color: var(--color-white);
}
.repair-store__inner {
  position: relative;
  padding-top: calc(48 * 100vw / 390);
  padding-left: calc(20 * 100vw / 390);
  padding-right: calc(20 * 100vw / 390);
  padding-bottom: calc(48 * 100vw / 390);
  background-color: var(--color-light);
}
.repair-store__inner::before {
  content: "";
  position: absolute;
  top: calc(-26 * 100vw / 390);
  right: calc(24 * 100vw / 390);
  display: block;
  width: calc(12 * 100vw / 390);
  height: calc(60 * 100vw / 390);
  background-image: url(../images/repair/en-access.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.repair-store__inner:after {
  content: "";
  position: absolute;
  top: calc(-26 * 100vw / 390);
  right: calc(18 * 100vw / 390);
  display: block;
  width: 1px;
  height: calc(120 * 100vw / 390);
  background-color: var(--color-primary);
  transform: scaleY(0);
  transform-origin: top;
  animation: scale-line 2.6s ease-in-out infinite;
}
.repair-store__title {
  position: absolute;
  top: calc(-20 * 100vw / 390);
  left: calc(18 * 100vw / 390);
  padding-bottom: calc(8 * 100vw / 390);
  font-size: 28px;
  font-size: calc(28 * 100vw / 390);
  font-weight: 500;
  border-bottom: 1px solid var(--color-secondary);
}
.repair-store__subtitle {
  display: inline-block;
  font-size: 18px;
  padding-top: calc(4 * 100vw / 390);
  padding-left: calc(16 * 100vw / 390);
  padding-right: calc(16 * 100vw / 390);
  padding-bottom: calc(12 * 100vw / 390);
  margin-bottom: calc(38 * 100vw / 390);
  background-color: var(--color-white);
}
.repair-store__subtitle > em {
  display: inline-block;
  padding-left: calc(4 * 100vw / 390);
  font-size: 28px;
  font-size: calc(30 * 100vw / 390);
  color: var(--color-secondary);
}
.repair-store__info:nth-of-type(2) {
  padding-top: calc(48 * 100vw / 390);
}
.repair-store__info--img {
  display: block;
  width: calc(250 * 100vw / 390);
  height: auto;
  margin: 0 auto;
}
.repair-store__info--title {
  display: block;
  padding-top: calc(28 * 100vw / 390);
  padding-left: calc(30 * 100vw / 390);
  padding-bottom: calc(8 * 100vw / 390);
  font-size: 22px;
  font-size: calc(22 * 100vw / 390);
  color: var(--color-secondary);
  font-weight: 500;
  border-bottom: 1px solid var(--color-secondary);
}
.repair-store__info--title > span {
  padding-left: calc(12 * 100vw / 390);
}
.repair-store__details {
  padding-top: calc(18 * 100vw / 390);
}
.repair-store__details--title {
  display: flex;
  align-items: center;
  font-weight: 500;
  color: var(--color-secondary);
}
.repair-store__details--title::before {
  content: "";
  width: calc(24 * 100vw / 390);
  height: calc(24 * 100vw / 390);
  margin-right: calc(4 * 100vw / 390);
}
.repair-store__details--title.-access::before {
  background-image: url(../images/repair/ico-store-access.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.repair-store__details--title.-address::before {
  background-image: url(../images/repair/ico-store-address.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.repair-store__details--direction {
  font-size: 18px;
  display: inline-block;
  padding-top: calc(8 * 100vw / 390);
  line-height: 1.5;
}
.repair-store__details--map {
  padding-top: calc(8 * 100vw / 390);
  width: calc(114 * 100vw / 390);
  margin-left: auto;
}
@media (min-width: 960px) {
  .repair-store {
    padding-top: 120px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 90px;
  }
  .repair-store__inner {
    width: 100%;
    max-width: 1200px;
    padding-top: 60px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 60px;
    margin: 0 auto;
  }
  .repair-store__inner::before {
    top: -40px;
    right: 60px;
    width: 14px;
    height: 64px;
  }
  .repair-store__inner:after {
    top: -40px;
    right: 32px;
    width: 1px;
    height: 208px;
  }
  .repair-store__title {
    top: -25px;
    left: 170px;
    padding-bottom: 12px;
    font-size: 4rem;
  }
  .repair-store__subtitle {
    font-size: 20px;
    padding-top: 4px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 10px;
    margin-bottom: 0;
  }
  .repair-store__subtitle > em {
    display: inline-block;
    padding-left: 10px;
    font-size: 3.4rem;
  }
  .repair-store__content {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding-top: 34px;
  }
  .repair-store__info {
    width: 500px;
  }
  .repair-store__info:nth-of-type(2) {
    padding-top: 0;
  }
  .repair-store__info--img {
    display: block;
    width: 100%;
    margin: 0;
  }
  .repair-store__info--title {
    display: block;
    padding-top: 40px;
    padding-left: 0;
    padding-bottom: 12px;
    font-size: 3rem;
  }
  .repair-store__info--title > span {
    padding-left: 18px;
  }
  .repair-store__details {
    padding-top: 24px;
  }
  .repair-store__details--title::before {
    content: "";
    width: 24px;
    height: 24px;
    margin-right: 8px;
  }
  .repair-store__details--direction {
    padding-top: 12px;
  }
  .repair-store__details--map {
    padding-top: 12px;
    width: 140px;
   
  }
}

.repair-reasons {
  position: relative;
  width: 100%;
  height: 100svh;
  overflow: hidden;
}
.repair-reasons::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(51, 51, 51, 0.7);
  z-index: 2;
}
.repair-reasons__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  will-change: opacity;
  z-index: 1;
  background-size: cover;
  background-repeat: no-repeat;
}
.repair-reasons__background.bg-1 {
  background-image: url(../images/repair/reasons-img01.webp);
  background-position: center;
}
.repair-reasons__background.bg-2 {
  background-image: url(../images/repair/reasons-img02.webp);
  background-position: center;
}
.repair-reasons__background.bg-3 {
  background-image: url(../images/repair/reasons-img03.webp);
  background-position: right 36% bottom 0;
}
.repair-reasons__inner {
  position: relative;
  padding-top: calc(48 * 100vw / 390);
  width: 100%;
  z-index: 5;
}
.repair-reasons__title {
  display: inline-flex;
  flex-direction: column;
  padding-left: calc(40 * 100vw / 390);
  padding-bottom: calc(8 * 100vw / 390);
  border-bottom: 1px solid var(--color-white);
  color: var(--color-white);
  font-weight: 500;
}
.repair-reasons__title > strong {
  letter-spacing: normal;
  margin-top: calc(2 * 100vw / 390);
  font-size: calc(20 * 100vw / 390);
}
.repair-reasons__title > strong > span {
  font-size: calc(28 * 100vw / 390);
  line-height: 1;
}
.repair-reasons__contents {
  position: relative;
  width: 100%;
  padding-bottom: calc(150 * 100vw / 390);
  z-index: 3;
}
.repair-reasons__contents[data-section="1"] {
  padding-top: calc(58 * 100vw / 390);
}
.repair-reasons__contents--inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: calc(15 * 100vw / 390);
  padding-right: calc(15 * 100vw / 390);
}
.repair-reasons__contents--img {
  width: calc(300 * 100vw / 390);
  height: calc(240 * 100vw / 390);
  -o-object-fit: cover;
     object-fit: cover;
}
.repair-reasons__contents--img.img01 {
  -o-object-position: 70% 0;
     object-position: 70% 0;
}
.repair-reasons__contents--title {
  margin-top: calc(36 * 100vw / 390);
  font-size: calc(24 * 100vw / 390);
  color: var(--color-white);
  line-height: 1.4;
}
.repair-reasons__contents--text {
  margin-top: calc(20 * 100vw / 390);
  color: var(--color-white);
  line-height: 1.6;
}
@media (min-width: 960px) {
  .repair-reasons::after {
    content: "";
    display: block;
    position: absolute;
    top: 70px;
    right: 50px;
    width: 442px;
    height: 97px;
    background-image: url(../images/repair/en-reasons.webp);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 2;
  }
  .repair-reasons__inner {
    padding-top: 5%;
  }
  .repair-reasons__title {
    padding-left: 140px;
    padding-bottom: 12px;
  }
  .repair-reasons__title > span {
    font-size: 2rem;
  }
  .repair-reasons__title > strong {
    letter-spacing: normal;
    margin-top: 2px;
    font-size: 5rem;
  }
  .repair-reasons__title > strong > span {
    font-size: 6rem;
  }
  .repair-reasons__contents {
    width: 100%;
    transform: translateY(0);
    padding-bottom: 0;
  }
  .repair-reasons__contents[data-section="1"] {
    padding-top: 0;
  }
  .repair-reasons__contents--inner {
    max-width: 100%;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .repair-reasons__contents--img {
    width: 600px;
    height: 600px;
  }
  .repair-reasons__contents--img.img01 {
    -o-object-position: 70% 0;
       object-position: 70% 0;
  }
  .repair-reasons__contents--title {
    margin-top: 0;
    font-size: 4rem;
  }
  .repair-reasons__contents--text {
    margin-top: 40px;
    font-size: 1.8rem;
    line-height: 46px;
  }
  .repair-reasons__contents--second {
    margin-top: 48px;
    width: 600px;
  }
}
@media (min-width: 1180px) {
  .repair-reasons__title {
    padding-left: 110px;
    padding-bottom: 12px;
  }
  .repair-reasons__title > span {
    font-size: 1.8rem;
  }
  .repair-reasons__title > strong {
    font-size: 3rem;
  }
  .repair-reasons__title > strong > span {
    font-size: 5rem;
  }
  .repair-reasons__contents--inner {
    max-width: 1000px;
    margin: 0 auto;
    flex-direction: row;
    justify-content: space-between;
  }
  .repair-reasons__contents--img {
    width: 400px;
    height: 400px;
  }
  .repair-reasons__contents--title {
    font-size: 3.4rem;
  }
  .repair-reasons__contents--text {
    margin-top: 36px;
    font-size: 1.6rem;
  }
  .repair-reasons__contents--second {
    width: 500px;
  }
}
@media (min-width: 1280px) {
  .repair-reasons__title {
    padding-left: 168px;
  }
}
@media (min-width: 1366px) {
  .repair-reasons::after {
    width: 506px;
    height: 110px;
  }
  .repair-reasons__title {
    padding-left: 216px;
  }
}
@media (min-width: 1440px) {
  .repair-reasons__title {
    padding-left: 288px;
  }
  .repair-reasons__contents--inner {
    max-width: 1300px;
  }
  .repair-reasons__contents--img {
    width: 500px;
    height: 500px;
  }
  .repair-reasons__contents--title {
    margin-top: 0;
    font-size: 4rem;
  }
  .repair-reasons__contents--text {
    margin-top: 40px;
    font-size: 1.8rem;
  }
  .repair-reasons__contents--second {
    width: 600px;
  }
  .repair-reasons--title {
    margin-top: 0;
  }
  .repair-reasons--title > span {
    font-size: 2rem;
  }
  .repair-reasons--title > strong {
    font-size: 5rem;
  }
  .repair-reasons--title > strong > span {
    font-size: 6rem;
  }
  .repair-reasons--text {
    margin-top: 40px;
    font-size: 1.8rem;
  }
  .repair-reasons--second {
    width: 500px;
  }
}
@media (min-width: 1536px) {
  .repair-reasons__title {
    padding-left: 344px;
  }
}
@media (min-width: 1537px) {
  .repair-reasons::after {
    top: 80px;
    width: 632px;
    height: 138px;
  }
  .repair-reasons__title {
    padding-left: 440px;
  }
  .repair-reasons__title > span {
    font-size: 2rem;
  }
  .repair-reasons__title > strong {
    font-size: 3rem;
  }
  .repair-reasons__title > strong > span {
    font-size: 5rem;
  }
}

.repair-contact {
  padding-top: calc(48 * 100vw / 390);
  padding-bottom: calc(50 * 100vw / 390);
  background-color: var(--color-secondary);
}
.repair-contact__title {
  font-size: 20px;
  font-size: calc(20 * 100vw / 390);
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-white);
  text-align: center;
}
.repair-contact__inner {
  padding-left: calc(20 * 100vw / 390);
  padding-right: calc(20 * 100vw / 390);
}
.repair-contact__tel {
  padding-top: calc(24 * 100vw / 390);
}
.repair-contact__tel--link {
  width: 100%;
  height: calc(98 * 100vw / 390);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
  border-radius: calc(8 * 100vw / 390);
  color: var(--color-secondary);
  font-weight: 600;
}
.repair-contact__tel--link .-number {
  display: flex;
  padding-top: calc(2 * 100vw / 390);
  font-size: 30px;
  font-size: calc(30 * 100vw / 390);
}
.repair-contact__tel--link .-number:before {
  content: "";
  display: block;
  width: calc(25 * 100vw / 390);
  height: calc(35 * 100vw / 390);
  margin-right: calc(8 * 100vw / 390);
  background-image: url(../images/repair/ico-tel.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.repair-contact__tel--note {
  margin-top: calc(8 * 100vw / 390);
  font-size: 14px;
  font-size: calc(14 * 100vw / 390);
  color: var(--color-white);
  text-align: center;
  letter-spacing: normal;
}
.repair-contact__line {
  padding-top: calc(24 * 100vw / 390);
}
.repair-contact__line--link {
  width: 100%;
  height: calc(75 * 100vw / 390);
  padding-top: calc(4 * 100vw / 390);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--color-green);
  border-radius: calc(8 * 100vw / 390);
  font-weight: 600;
}
.repair-contact__line--badge {
  padding-top: calc(4 * 100vw / 390);
  padding-left: calc(40 * 100vw / 390);
  padding-right: calc(40 * 100vw / 390);
  padding-bottom: calc(4 * 100vw / 390);
  background-color: var(--color-white);
  border-radius: calc(12 * 100vw / 390);
  font-size: 14px;
  font-size: calc(14 * 100vw / 390);
  font-weight: 600;
  color: var(--color-green);
}
.repair-contact__line--highlight {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  font-size: calc(22 * 100vw / 390);
  color: var(--color-white);
  font-weight: 600;
  line-height: 1;
}
.repair-contact__line--highlight::before {
  content: "";
  display: block;
  width: calc(25 * 100vw / 390);
  height: calc(34 * 100vw / 390);
  margin-right: calc(8 * 100vw / 390);
  background-image: url(../images/repair/ico-line.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.repair-contact__store {
  padding-top: calc(24 * 100vw / 390);
}
.repair-contact__store--link {
  width: 100%;
  height: calc(75 * 100vw / 390);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--color-secondary);
  border-radius: calc(8 * 100vw / 390);
  outline: calc(2 * 100vw / 390) solid var(--color-white);
  outline-offset: calc(-2 * 100vw / 390);
  font-size: 20px;
  font-size: calc(20 * 100vw / 390);
  color: var(--color-white);
  font-weight: 600;
}
@media (min-width: 960px) {
  .repair-contact {
    padding-top: 68px;
    padding-bottom: 68px;
  }
  .repair-contact__title {
    font-size: 3rem;
  }
  .repair-contact__inner {
    max-width: 1040px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
  }
  .repair-contact__content {
    max-width: 760px;
    margin: 0 auto;
  }
  .repair-contact__tel {
    padding-top: 30px;
  }
  .repair-contact__tel--link {
    width: 100%;
    height: 140px;
    border-radius: 20px;
    outline: 2px solid var(--color-white);
    outline-offset: -2px;
    cursor: default;
    pointer-events: none;
  }
  .repair-contact__tel--link .-title {
font-size: 20px;
  }
  .repair-contact__tel--link .-number {
    position: relative;
    align-items: center;
    padding-top: 0;
    font-size: 6rem;
  }
  .repair-contact__tel--link .-number:before {
    width: 44px;
    height: 60px;
    margin-right: 20px;
    opacity: 1;
  }
  .repair-contact__tel--note {
    margin-top: 12px;
    font-size: 1.4rem;
  }
  .repair-contact__extra {
    display: flex;
    gap: 30px;
    padding-top: 30px;
  }
  .repair-contact__line {
    padding-top: 0;
    width: 100%;
  }
  .repair-contact__line--link {
    height: 90px;
    padding-top: 0;
    border-radius: 20px;
    transition: all 0.6s;
  }
  .repair-contact__line--link:hover {
    filter: brightness(105%) drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.4));
  }
  .repair-contact__line--badge {
    padding-top: 4px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 4px;
    background-color: var(--color-white);
    border-radius: 20px;
    font-size: 1.4rem;
  }
  .repair-contact__line--highlight {
    padding-top: 6px;
    font-size: 2.8rem;
  }
  .repair-contact__line--highlight::before {
    width: 31px;
    height: 30px;
    margin-right: 16px;
  }
  .repair-contact__store {
    padding-top: 0;
    width: 100%;
  }
  .repair-contact__store--link {
    height: 90px;
    border-radius: 20px;
    outline: 2px solid var(--color-white);
    outline-offset: -2px;
    font-size: 2.6rem;
    transition: all 0.6s;
  }
  .repair-contact__store--link:hover {
    background-color: var(--color-white);
    outline: 2px solid var(--color-secondary);
    color: var(--color-secondary);
  }
}

.repair-record {
  position: relative;
  padding-top: calc(68 * 100vw / 390);
  padding-bottom: calc(80 * 100vw / 390);
}
.repair-record::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(84 * 100vw / 390);
  right: 0;
  width: calc(214 * 100vw / 390);
  height: calc(30 * 100vw / 390);
  background-image: url(../images/repair/en-record.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.repair-record__title {
  display: inline-block;
  padding-bottom: calc(8 * 100vw / 390);
  padding-left: calc(20 * 100vw / 390);
  padding-right: calc(140 * 100vw / 390);
  font-size: 28px;
  font-size: calc(28 * 100vw / 390);
  font-weight: 500;
  border-bottom: 1px solid var(--color-secondary);
}
.repair-record__inner {
  padding-top: calc(38 * 100vw / 390);
  padding-left: calc(15 * 100vw / 390);
  padding-right: calc(15 * 100vw / 390);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: calc(28 * 100vw / 390) calc(16 * 100vw / 390);
}
.repair-record__content {
  width: calc(170 * 100vw / 390);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(12 * 100vw / 390);
}
.repair-record__content > img {
  width: 100%;
}
@media (min-width: 960px) {
  .repair-record {
    padding-top: 140px;
    padding-bottom: 90px;
    position: relative;
  }
  .repair-record::before {
    top: 120px;
    right: 0;
    width: 683px;
    height: 98px;
  }
  .repair-record__title {
    padding-bottom: 12px;
    padding-left: 0;
    padding-right: 0;
    font-size: 4rem;
    border-bottom: none;
    display: block;
    max-width: 1040px;
    padding-left: 40px;
    padding-right: 40px;
    margin: 0 auto;
  }
  .repair-record__title:after {
    content: "";
    display: block;
    position: absolute;
    top: 200px;
    left: 0;
    width: 75%;
    height: 1px;
    background-color: var(--color-secondary);
  }
  .repair-record__inner {
    max-width: 1040px;
    padding-top: 50px;
    padding-left: 40px;
    padding-right: 40px;
    margin: 0 auto;
    justify-content: space-between;
    gap: 30px 0;
  }
  .repair-record__content {
    width: 450px;
    gap: 12px 0;
  }
  .repair-record__content--text {
    font-size: 2.0rem;
  }
}
@media (min-width: 960px) and (min-width: 1280px) {
  .repair-record__content {
    width: 308px;
    gap: 12px 0;
  }
}
@media (min-width: 960px) and (min-width: 1366px) {
  .repair-record::before {
    top: 110px;
    right: 0;
    width: 780px;
    height: 112px;
  }
}
@media (min-width: 960px) and (min-width: 1537px) {
  .repair-record::before {
    top: 88px;
    right: 0;
    width: 975px;
    height: 140px;
  }
}

.repair-review {
  overflow: hidden;
  position: relative;
  padding-top: calc(68 * 100vw / 390);
  padding-bottom: calc(63 * 100vw / 390);
  background-color: var(--color-repair-gray-light);
}
.repair-review::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(40 * 100vw / 390);
  left: calc(20 * 100vw / 390);
  width: calc(70 * 100vw / 390);
  height: calc(70 * 100vw / 390);
  border-top-left-radius: 8px;
  border-top: 3px solid var(--color-secondary);
  border-left: 3px solid var(--color-secondary);
  z-index: 2;
}
.repair-review::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(40 * 100vw / 390);
  right: calc(20 * 100vw / 390);
  width: calc(70 * 100vw / 390);
  height: calc(70 * 100vw / 390);
  border-top-right-radius: 8px;
  border-top: 3px solid var(--color-secondary);
  border-right: 3px solid var(--color-secondary);
  z-index: 2;
}
.repair-review__inner {
  width: 100%;
  height: 100%;
}
.repair-review__inner::before {
  content: "";
  display: block;
  position: absolute;
  left: calc(20 * 100vw / 390);
  bottom: calc(40 * 100vw / 390);
  width: calc(70 * 100vw / 390);
  height: calc(70 * 100vw / 390);
  border-bottom-left-radius: 8px;
  border-left: 3px solid var(--color-secondary);
  border-bottom: 3px solid var(--color-secondary);
  z-index: 2;
}
.repair-review__inner::after {
  content: "";
  display: block;
  position: absolute;
  right: calc(20 * 100vw / 390);
  bottom: calc(40 * 100vw / 390);
  width: calc(70 * 100vw / 390);
  height: calc(70 * 100vw / 390);
  border-bottom-right-radius: 8px;
  border-right: 3px solid var(--color-secondary);
  border-bottom: 3px solid var(--color-secondary);
  z-index: 2;
}
.repair-review__title {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.repair-review__title > span {
  font-weight: 500;
  line-height: 1.4;
}
.repair-review__title > strong {
  margin-top: calc(8 * 100vw / 390);
  font-size: 28px;
  font-size: calc(28 * 100vw / 390);
  font-weight: 600;
}
.repair-review__title:after {
  content: "";
  display: block;
  width: calc(172 * 100vw / 390);
  height: calc(28 * 100vw / 390);
  margin-top: calc(8 * 100vw / 390);
  background-image: url(../images/repair/ico-stars.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.repair-review__content {
  padding-top: calc(28 * 100vw / 390);
  padding-left: calc(40 * 100vw / 390);
  padding-right: calc(40 * 100vw / 390);
}
@media (min-width: 960px) {
  .repair-review {
    padding-top: 0;
    padding-bottom: 0;
    min-height: 600px;
  }
  .repair-review::before {
    content: none;
    display: block;
    position: absolute;
    top: calc(40 * 100vw / 390);
    left: calc(20 * 100vw / 390);
    width: calc(70 * 100vw / 390);
    height: calc(70 * 100vw / 390);
    border-top-left-radius: 8px;
    border-top: 3px solid var(--color-secondary);
    border-left: 3px solid var(--color-secondary);
    z-index: 2;
  }
  .repair-review::after {
    content: none;
    display: block;
    position: absolute;
    top: calc(40 * 100vw / 390);
    right: calc(20 * 100vw / 390);
    width: calc(70 * 100vw / 390);
    height: calc(70 * 100vw / 390);
    border-top-right-radius: 8px;
    border-top: 3px solid var(--color-secondary);
    border-right: 3px solid var(--color-secondary);
    z-index: 2;
  }
  .repair-review__inner {
    display: flex;
  }
  .repair-review__inner::before {
    content: none;
  }
  .repair-review__inner::after {
    content: none;
    display: block;
    position: absolute;
    right: calc(20 * 100vw / 390);
    bottom: calc(40 * 100vw / 390);
    width: calc(70 * 100vw / 390);
    height: calc(70 * 100vw / 390);
    border-bottom-right-radius: 8px;
    border-right: 3px solid var(--color-secondary);
    border-bottom: 3px solid var(--color-secondary);
    z-index: 2;
  }
  .repair-review__header {
    position: relative;
    align-self: stretch;
    width: 100%;
    min-height: 100%;
    padding-top: 52px;
    padding-left: 52px;
    padding-right: 52px;
    padding-bottom: 52px;
  }
  .repair-review__header::before {
    content: "";
    display: block;
    position: absolute;
    top: 52px;
    left: 52px;
    width: 86px;
    height: 86px;
    border-top-left-radius: 8px;
    border-top: 3px solid var(--color-secondary);
    border-left: 3px solid var(--color-secondary);
    z-index: 2;
  }
  .repair-review__header::after {
    content: "";
    display: block;
    position: absolute;
    top: 52px;
    right: 52px;
    width: 86px;
    height: 86px;
    border-top-right-radius: 8px;
    border-top: 3px solid var(--color-secondary);
    border-right: 3px solid var(--color-secondary);
    z-index: 2;
  }
  .repair-review__header--inner {
    width: 100%;
    height: 100%;
    padding-left: 24px;
    padding-right: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .repair-review__header--inner::before {
    content: "";
    display: block;
    position: absolute;
    left: 52px;
    bottom: 52px;
    width: 86px;
    height: 86px;
    border-bottom-left-radius: 8px;
    border-left: 3px solid var(--color-secondary);
    border-bottom: 3px solid var(--color-secondary);
    z-index: 2;
  }
  .repair-review__header--inner::after {
    content: "";
    display: block;
    position: absolute;
    right: 52px;
    bottom: 52px;
    width: 86px;
    height: 86px;
    border-bottom-right-radius: 8px;
    border-right: 3px solid var(--color-secondary);
    border-bottom: 3px solid var(--color-secondary);
    z-index: 2;
  }
  .repair-review__title {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .repair-review__title > span {
    font-weight: 500;
    line-height: 1.4;
  }
  .repair-review__title > strong {
    white-space: nowrap;
    margin-top: 30px;
    font-size: 2.8rem;
  }
  .repair-review__title:after {
    width: 216px;
    height: 35px;
    margin-top: 30px;
  }
  .repair-review__content {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

.repair-slider {
  width: 100%;
  overflow: visible !important;
}
.repair-slider__item {
  height: auto !important;
  padding-top: calc(28 * 100vw / 390);
  padding-right: calc(20 * 100vw / 390);
  padding-left: calc(20 * 100vw / 390);
  padding-bottom: calc(32 * 100vw / 390);
  background-color: var(--color-white);
  border-radius: calc(8 * 100vw / 390);
  height: 100%;
  box-shadow: 0 0 calc(20 * 100vw / 390) rgba(0, 0, 0, 0.1);
}
.repair-slider__title {
  font-weight: 500;
  line-height: 1.4;
}
.repair-slider__imgbox {
  display: flex;
  align-items: center;
  margin-top: calc(16 * 100vw / 390);
  gap: calc(16 * 100vw / 390);
}
.repair-slider__imgbox .-mysteryman {
  width: calc(34 * 100vw / 390);
  height: calc(34 * 100vw / 390);
}
.repair-slider__imgbox .-stars {
  width: calc(148 * 100vw / 390);
  height: calc(24 * 100vw / 390);
}
.repair-slider__text {
  font-size: 14px;
  font-size: calc(14 * 100vw / 390);
  margin-top: calc(16 * 100vw / 390);
  display: block;
  font-weight: 500;
  line-height: 1.4;
}
@media (min-width: 960px) {
  .repair-slider {
    overflow: hidden !important;
  }
  .repair-slider__wrapper {
    position: relative;
    padding-top: 52px !important;
    padding-bottom: 52px !important;
  }
  .repair-slider__item {
    width: 24% !important;
    height: auto !important;
    padding-top: 40px;
    padding-right: 24px;
    padding-left: 24px;
    padding-bottom: 40px;
    margin-left: 24px;
    background-color: var(--color-white);
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }
  .repair-slider__title {
    font-size: 2rem;
  }
  .repair-slider__imgbox {
    display: flex;
    align-items: center;
    margin-top: 16px;
    gap: 12px;
  }
  .repair-slider__imgbox .-mysteryman {
    width: 34px;
    height: 34px;
  }
  .repair-slider__imgbox .-stars {
    width: 148px;
    height: 24px;
  }
  .repair-slider__text {
    margin-top: 16px;
    font-size: 1.6rem;
    display: block;
    font-weight: 500;
    line-height: 1.75;
  }
}

.repair-flow {
  position: relative;
  padding-top: calc(68 * 100vw / 390);
  min-height: 100%;
}
.repair-flow::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(84 * 100vw / 390);
  right: 0;
  width: calc(170 * 100vw / 390);
  height: calc(24 * 100vw / 390);
  background-image: url(../images/repair/en-flow.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.repair-flow__title {
  display: inline-block;
  padding-bottom: calc(8 * 100vw / 390);
  padding-left: calc(20 * 100vw / 390);
  padding-right: calc(140 * 100vw / 390);
  font-size: 28px;
  font-size: calc(28 * 100vw / 390);
  font-weight: 500;
  border-bottom: 1px solid var(--color-secondary);
}
.repair-flow__text {
  margin-top: calc(28 * 100vw / 390);
  margin-bottom: calc(28 * 100vw / 390);
  text-align: center;
  font-weight: 500;
  line-height: 1.4;
}
.repair-flow__inner {
  width: 100%;
  height: 100%;
  min-height: 100%;
  position: relative;
  display: flex;
  padding-left: calc(10 * 100vw / 390);
  padding-right: calc(10 * 100vw / 390);
}
.repair-flow__navigation {
  position: sticky;
  top: 0;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: calc(10 * 100vw / 390);
  gap: calc(20 * 100vw / 390);
  transition: all 0.6s;
}
.repair-flow__navigation.-secondtab {
  display: none;
}
.repair-flow__navigation.is-active {
  top: calc(80 * 100vw / 390);
}
.repair-flow__navigation::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: calc(188 * 100vw / 390);
  background-color: var(--color-secondary);
  transform: translateX(-50%);
}
.repair-flow__navigation--item {
  position: relative;
  width: calc(32 * 100vw / 390);
  height: calc(32 * 100vw / 390);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--color-white);
  outline: 1px solid var(--color-secondary);
  transition: all 0.6;
  font-size: 14px;
  font-size: calc(14 * 100vw / 390);
  color: var(--color-secondary);
  font-weight: 500;
  letter-spacing: normal;
}
.repair-flow__navigation--item.is-active {
  background-color: var(--color-secondary);
  color: var(--color-white);
}
.repair-flow__navigation--item > span {
  display: none;
}
.repair-flow__content {
  max-width: 100%;
}
.repair-flow__content--wrap {
  position: relative;
  padding-top: calc(28 * 100vw / 390);
  padding-left: calc(20 * 100vw / 390);
  padding-right: calc(20 * 100vw / 390);
  padding-bottom: calc(48 * 100vw / 390);
  background-color: var(--color-light);
  overflow: hidden;
}
.repair-flow__content--wrap::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-left: calc(2 * 100vw / 390) solid var(--color-secondary);
  border-right: calc(2 * 100vw / 390) solid var(--color-secondary);
  border-bottom: calc(2 * 100vw / 390) solid var(--color-secondary);
}
.repair-flow__tab {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: calc(8 * 100vw / 390);
}
.repair-flow__tab::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(53 * 100vw / 390);
  left: 0;
  width: 100%;
  height: calc(2 * 100vw / 390);
  background-color: var(--color-secondary);
}
.repair-flow__tab--button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: var(--color-secondary);
  font-weight: 500;
  color: var(--color-white);
}
.repair-flow__tab--button > p {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: calc(18 * 100vw / 390);
  padding-bottom: calc(18 * 100vw / 390);
}
.repair-flow__tab--button > p > span {
  display: none;
}
.repair-flow__tab--button:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-top: calc(2 * 100vw / 390) solid var(--color-secondary);
  border-left: calc(2 * 100vw / 390) solid var(--color-secondary);
  border-right: calc(2 * 100vw / 390) solid var(--color-secondary);
}
.repair-flow__tab--button.is-active {
  background-color: var(--color-light);
  color: var(--color-secondary);
}
.repair-flow__process {
  position: relative;
  display: none;
  opacity: 0;
  backface-visibility: hidden;
}
.repair-flow__process.is-active {
  display: block;
  opacity: 1;
}
.repair-flow__info {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.repair-flow__info:not(:first-of-type) {
  margin-top: calc(28 * 100vw / 390);
}
.repair-flow__info:not(:last-of-type) {
  padding-bottom: calc(56 * 100vw / 390);
}
.repair-flow__info:not(:last-of-type)::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  border-left: calc(28 * 100vw / 390) solid transparent;
  border-right: calc(28 * 100vw / 390) solid transparent;
  border-bottom: calc(28 * 100vw / 390) solid var(--color-tertiary);
  transform: translateX(-50%) rotate(-180deg);
  transform-origin: center;
}
.repair-flow__info--title {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-size: calc(20 * 100vw / 390);
  font-weight: 500;
  color: var(--color-secondary);
}
.repair-flow__info--title::before {
  content: "";
  display: block;
  width: calc(32 * 100vw / 390);
  height: calc(32 * 100vw / 390);
  margin-right: calc(8 * 100vw / 390);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.repair-flow__info--title.-store:before {
  background-image: url(../images/repair/ico-flow-store.svg);
}
.repair-flow__info--title.-pay:before {
  background-image: url(../images/repair/ico-flow-pay.svg);
}
.repair-flow__info--title.-repair:before {
  background-image: url(../images/repair/ico-flow-repair.svg);
}
.repair-flow__info--title.-jewelry:before {
  background-image: url(../images/repair/ico-flow-jewelry.svg);
}
.repair-flow__info--title.-search:before {
  background-image: url(../images/repair/ico-flow-search.svg);
}
.repair-flow__info--title.-car:before {
  background-image: url(../images/repair/ico-flow-car.svg);
}
.repair-flow__info--img {
  width: calc(200 * 100vw / 390);
  height: calc(147 * 100vw / 390);
}
.repair-flow__info--inner {
  margin-top: calc(28 * 100vw / 390);
}
.repair-flow__info--text {
  margin-top: calc(18 * 100vw / 390);
  line-height: 1.4;
}
.repair-flow__info--apply {
  display: flex;
  width: 100%;
  padding-top: calc(28 * 100vw / 390);
  gap: calc(8 * 100vw / 390);
}
.repair-flow__info--apply .-button {
  width: 100%;
}
.repair-flow__info--apply .-button > a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: calc(8 * 100vw / 390);
  padding-bottom: calc(8 * 100vw / 390);
  background-color: var(--color-secondary);
  font-size: 12px;
  font-size: calc(12 * 100vw / 390);
  color: var(--color-white);
  font-weight: 500;
  text-align: center;
  letter-spacing: normal;
  border-radius: calc(48 * 100vw / 390);
}
.repair-flow__info--apply .-button > a::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: calc(10 * 100vw / 390);
  width: calc(6 * 100vw / 390);
  height: calc(6 * 100vw / 390);
  border-right: calc(2 * 100vw / 390) solid var(--color-white);
  border-bottom: calc(2 * 100vw / 390) solid var(--color-white);
  transform: translateY(-50%) rotate(-45deg);
}
.repair-flow__info--address {
  padding-top: calc(20 * 100vw / 390);
  padding-left: calc(16 * 100vw / 390);
  padding-right: calc(16 * 100vw / 390);
  padding-bottom: calc(20 * 100vw / 390);
  margin-top: calc(28 * 100vw / 390);
  background-color: var(--color-white);
}
@media (min-width: 960px) {
  .repair-flow {
    padding-top: 140px;
    padding-top: 100px;
  }
  .repair-flow::before {
    top: 80px;
    right: 0;
    width: 554px;
    height: 80px;
  }
  .repair-flow__title {
    padding-bottom: 12px;
    padding-left: 0;
    padding-right: 0;
    font-size: 4rem;
    border-bottom: none;
    display: block;
    max-width: 1040px;
    padding-left: 40px;
    padding-right: 40px;
    margin: 0 auto;
  }
  .repair-flow__title:after {
    content: "";
    display: block;
    position: absolute;
    top: 158px;
    left: 0;
    width: 75%;
    height: 1px;
    background-color: var(--color-secondary);
  }
  .repair-flow__text {
    margin-top: 40px;
    margin-bottom: 0;
    font-size: 2.0rem;
  }
  .repair-flow__text > br {
    display: none;
  }
  .repair-flow__inner {
    justify-content: space-between;
    max-width: 1170px;
    padding-top: 50px;
    padding-left: 40px;
    padding-right: 40px;
    margin: 0 auto;
  }
  .repair-flow__navigation {
    flex: inherit;
    margin-right: 0;
    gap: 40px;
  }
  .repair-flow__navigation.is-active {
    top: 94px;
  }
  .repair-flow__navigation.is-hidden {
    display: none;
    opacity: 0;
  }
  .repair-flow__navigation.is-visible {
    display: flex;
    opacity: 1;
  }
  .repair-flow__navigation.-secondtab {
    display: none;
    opacity: 0;
  }
  .repair-flow__navigation.-secondtab.is-visible {
    display: flex;
    opacity: 1;
  }
  .repair-flow__navigation::before {
    left: 28px;
    height: 100%;
    transform: translateX(0);
  }
  .repair-flow__navigation--item {
    position: relative;
    width: 100%;
    height: 100%;
    justify-content: flex-start;
    border-radius: 0;
    background-color: transparent;
    outline: none;
    font-size: 1.6rem;
  }
  .repair-flow__navigation--item > span {
    display: inline-block;
    padding-left: 8px;
  }
  .repair-flow__navigation--item::before {
    content: "";
    display: block;
    width: 56px;
    height: 56px;
    margin-right: 8px;
    border-radius: 50%;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    outline: 1px solid var(--color-secondary);
    outline-offset: -1px;
  }
  .repair-flow__navigation--item.-store::before {
    background-image: url(../images/repair/ico-flow-store-neg.svg);
  }
  .repair-flow__navigation--item.-pay::before {
    background-image: url(../images/repair/ico-flow-pay-neg.svg);
  }
  .repair-flow__navigation--item.-repair::before {
    background-image: url(../images/repair/ico-flow-repair-neg.svg);
  }
  .repair-flow__navigation--item.-jewelry::before {
    background-image: url(../images/repair/ico-flow-jewelry-neg.svg);
  }
  .repair-flow__navigation--item.-search::before {
    background-image: url(../images/repair/ico-flow-search-neg.svg);
  }
  .repair-flow__navigation--item.-car::before {
    background-image: url(../images/repair/ico-flow-car-neg.svg);
  }
  .repair-flow__navigation--item.is-active {
    background-color: transparent;
    color: var(--color-secondary);
  }
  .repair-flow__navigation--item.is-active::before {
    margin-right: 18px;
    transform: scale(1.2);
  }
  .repair-flow__navigation--item.is-active.-store::before {
    background-image: url(../images/repair/ico-flow-store.svg);
  }
  .repair-flow__navigation--item.is-active.-pay::before {
    background-image: url(../images/repair/ico-flow-pay.svg);
  }
  .repair-flow__navigation--item.is-active.-repair::before {
    background-image: url(../images/repair/ico-flow-repair.svg);
  }
  .repair-flow__navigation--item.is-active.-jewelry::before {
    background-image: url(../images/repair/ico-flow-jewelry.svg);
  }
  .repair-flow__navigation--item.is-active.-search::before {
    background-image: url(../images/repair/ico-flow-search.svg);
  }
  .repair-flow__navigation--item.is-active.-car::before {
    background-image: url(../images/repair/ico-flow-car.svg);
  }
  .repair-flow__content {
    max-width: 740px;
  }
  .repair-flow__content--wrap {
    padding-top: 48px;
    padding-left: 48px;
    padding-right: 48px;
    padding-bottom: 64px;
  }
  .repair-flow__content--wrap::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-left: 2px solid var(--color-secondary);
    border-right: 2px solid var(--color-secondary);
    border-bottom: 2px solid var(--color-secondary);
  }
  .repair-flow__tab {
    gap: 24px;
  }
  .repair-flow__tab::before {
    top: 96px;
    height: 2px;
    background-color: var(--color-secondary);
  }
  .repair-flow__tab--button > p {
    padding-top: 37px;
    padding-bottom: 37px;
    font-size: 2.2rem;
  }
  .repair-flow__tab--button > p > span {
    display: inline;
  }
  .repair-flow__tab--button:before {
    border-top: 2px solid var(--color-secondary);
    border-left: 2px solid var(--color-secondary);
    border-right: 2px solid var(--color-secondary);
  }
  .repair-flow__info {
    flex-direction: row;
    align-items: flex-start;
  }
  .repair-flow__info:not(:first-of-type) {
    margin-top: 52px;
  }
  .repair-flow__info:not(:last-of-type) {
    padding-bottom: 84px;
  }
  .repair-flow__info:not(:last-of-type)::after {
    border-left: 32px solid transparent;
    border-right: 32px solid transparent;
    border-bottom: 32px solid var(--color-tertiary);
  }
  .repair-flow__info--title {
    display: flex;
    align-items: center;
    font-size: 20px;
  }
  .repair-flow__info--title > br {
    display: none;
  }
  .repair-flow__info--title::before {
    width: 40px;
    height: 40px;
    margin-right: 12px;
  }
  .repair-flow__info--img {
    width: 300px;
    height: 220px;
    margin-top: 0;
  }
  .repair-flow__info--inner {
    margin-top: 0;
    padding-left: 36px;
  }
  .repair-flow__info--text {
    margin-top: 16px;
    line-height: 1.75;
  }
  .repair-flow__info--apply {
    padding-top: 16px;
    gap: 12px;
  }
  .repair-flow__info--apply .-button > a {
    padding-top: 8px;
    padding-bottom: 8px;
    outline: 2px solid var(--color-secondary);
    outline-offset: -2px;
    background-color: var(--color-secondary);
    font-size: 1.4rem;
    border-radius: 24px;
    transition: all 0.6s;
  }
  .repair-flow__info--apply .-button > a::before {
    right: 12px;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--color-white);
    border-bottom: 2px solid var(--color-white);
    transition: all 0.6s;
  }
  .repair-flow__info--apply .-button > a:hover {
    background-color: var(--color-white);
    color: var(--color-secondary);
  }
  .repair-flow__info--apply .-button > a:hover::before {
    border-right: 2px solid var(--color-secondary);
    border-bottom: 2px solid var(--color-secondary);
  }
  .repair-flow__info--address {
    padding-top: 16px;
    padding-left: 32px;
    padding-right: 32px;
    padding-bottom: 16px;
    margin-top: 16px;
    line-height: 1.4;
  }
}
@media (min-width: 1280px) {
  .repair-flow__content {
    max-width: 900px;
  }
}
@media (min-width: 1366px) {
  .repair-flow::before {
    top: 70px;
    right: 0;
    width: 634px;
    height: 91px;
  }
}
@media (min-width: 1537px) {
  .repair-flow::before {
    top: 46px;
    right: 0;
    width: 792px;
    height: 114px;
  }
}

.repair-qa {
  position: relative;
  padding-top: calc(80 * 100vw / 390);
  padding-bottom: calc(68 * 100vw / 390);
}
.repair-qa::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(76 * 100vw / 390);
  right: 0;
  width: calc(118 * 100vw / 390);
  height: calc(51 * 100vw / 390);
  background-image: url(../images/repair/en-qa.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.repair-qa__title {
  display: inline-block;
  padding-bottom: calc(8 * 100vw / 390);
  padding-left: calc(20 * 100vw / 390);
  padding-right: calc(140 * 100vw / 390);
  font-size: 28px;
  font-size: calc(28 * 100vw / 390);
  font-weight: 500;
  border-bottom: 1px solid var(--color-secondary);
}
.repair-qa__inner {
  padding-top: calc(32 * 100vw / 390);
  padding-left: calc(15 * 100vw / 390);
  padding-right: calc(15 * 100vw / 390);
}
.repair-qa__content {
  border-bottom: 1px solid var(--color-secondary);
}
.repair-qa__question {
  position: relative;
  display: block;
  width: 100%;
  padding-top: calc(20 * 100vw / 390);
  padding-left: calc(44 * 100vw / 390);
  padding-right: calc(24 * 100vw / 390);
  padding-bottom: calc(20 * 100vw / 390);
 
  font-size: calc(16 * 100vw / 390);
  font-weight: 500;
  line-height: 1.3;
}
.repair-qa__question::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: calc(34 * 100vw / 390);
  height: calc(34 * 100vw / 390);
  background-image: url(../images/repair/ico-question.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}
.repair-qa__question::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: calc(20 * 100vw / 390);
  height: calc(20 * 100vw / 390);
  background-image: url(../images/repair/ico-arrow-closed.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transform: translateY(-50%) rotate(0);
  transition: all 0.6s;
}
.repair-qa__question.is-open::after {
  background-image: url(../images/repair/ico-arrow-opened.svg);
  transform: translateY(-50%) rotate(-180deg);
}
.repair-qa__answer {
  position: relative;
  display: block;
  padding-left: calc(44 * 100vw / 390);
  padding-right: calc(24 * 100vw / 390);
  line-height: 1.3;
}
.repair-qa__answer::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(12 * 100vw / 390);
  left: 0;
  width: calc(34 * 100vw / 390);
  height: calc(34 * 100vw / 390);
  background-image: url(../images/repair/ico-answer.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.repair-qa__answer > p {
  padding-bottom: calc(20 * 100vw / 390);
  line-height: 24px;
}
@media (min-width: 960px) {
  .repair-qa {
    padding-top: 140px;
    padding-bottom: 90px;
  }
  .repair-qa::before {
    top: 120px;
    right: 0;
    width: 221px;
    height: 96px;
  }
  .repair-qa__title {
    padding-bottom: 12px;
    padding-left: 0;
    padding-right: 0;
    font-size: 4rem;
    border-bottom: none;
    display: block;
    max-width: 1040px;
    padding-left: 40px;
    padding-right: 40px;
    margin: 0 auto;
  }
  .repair-qa__title:after {
    content: "";
    display: block;
    position: absolute;
    top: 200px;
    left: 0;
    width: 75%;
    height: 1px;
    background-color: var(--color-secondary);
  }
  .repair-qa__inner {
    max-width: 1040px;
    padding-top: 50px;
    padding-left: 40px;
    padding-right: 40px;
    margin: 0 auto;
  }
  .repair-qa__content {
    border-bottom: 1px solid var(--color-secondary);
  }
  .repair-qa__question {
    position: relative;
    display: block;
    width: 100%;
    font-size: 18px;
    padding-top: 30px;
    padding-left: 54px;
    padding-right: 40px;
    padding-bottom: 30px;
    transition: all 0.6s;
  }
  .repair-qa__question:hover {
    opacity: 0.6;
  }
  .repair-qa__question::before {
    width: 36px;
    height: 36px;
    background-image: url(../images/repair/ico-question.svg);
    transform: translateY(-50%);
  }
  .repair-qa__question::after {
    width: 24px;
    height: 24px;
  }
  .repair-qa__question.is-open::after {
    background-image: url(../images/repair/ico-arrow-opened.svg);
    transform: translateY(-50%) rotate(-180deg);
  }
  .repair-qa__answer {
    padding-left: 54px;
    padding-right: 0;
  }
  .repair-qa__answer::before {
    content: "";
    display: block;
    position: absolute;
    top: 18px;
    width: 36px;
    height: 36px;
  }
  .repair-qa__answer > p {
    margin-top: 10px;
    padding-bottom: 30px;
    font-size: 1.6rem;
    line-height: 2.6rem;
  }
}
@media (min-width: 1366px) {
  .repair-qa::before {
    top: 110px;
    width: 253px;
    height: 110px;
  }
}
@media (min-width: 1537px) {
  .repair-qa::before {
    top: 84px;
    width: 316px;
    height: 137px;
  }
}

.repair-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: calc(48 * 100vw / 390);
  padding-left: calc(20 * 100vw / 390);
  padding-right: calc(20 * 100vw / 390);
}
.repair-banner__link {
  width: 100%;
}
.repair-banner__link--img > img {
  display: block;
  width: 100%;
}
@media (min-width: 960px) {
  .repair-banner {
    max-width: 1480px;
    padding-top: 100px;
    padding-left: 40px;
    padding-right: 40px;
    margin: 0 auto;
    transition: all 0.6s;
  }
  .repair-banner:hover {
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.4));
  }
}

.repair-footer {
  display: block;
  padding-top: calc(48 * 100vw / 390);
}
.repair-footer__menu {
  padding-left: calc(20 * 100vw / 390);
  padding-right: calc(20 * 100vw / 390);
}
.repair-footer__menu--item:first-of-type {
  border-top: 1px solid var(--color-secondary);
}
.repair-footer__menu--item .-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: calc(20 * 100vw / 390);
  padding-bottom: calc(20 * 100vw / 390);
  border-bottom: 1px solid var(--color-secondary);
  font-weight: 500;
}
.repair-footer__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: calc(48 * 100vw / 390);
  padding-bottom: calc(48 * 100vw / 390);
}
.repair-footer__logo--icon {
  width: calc(180 * 100vw / 390);
  height: calc(28 * 100vw / 390);
  fill: #333333;
}
.repair-footer__copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: calc(12 * 100vw / 390);
  padding-bottom: calc(12 * 100vw / 390);
  background-color: var(--color-secondary);
  font-size: calc(12 * 100vw / 390);
  font-weight: 500;
  color: var(--color-white);
}
@media (min-width: 960px) {
  .repair-footer {
    padding-top: 0;
  }
  .repair-footer__inner {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    max-width: 1480px;
    padding-top: 100px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 40px;
    margin: 0 auto;
  }
  .repair-footer__menu {
    width: 100%;
    height: 230px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 0 40px;
    padding-top: 30px;
    padding-left: 96px;
    padding-right: 0;
    padding-bottom: 30px;
  }
  .repair-footer__menu--item:first-of-type {
    border-top: none;
  }
  .repair-footer__menu--item .-link {
    justify-content: flex-start;
    max-width: 100%;
    width: 100%;
    padding-top: 0;
    padding-left: 0;
    padding-bottom: 20px;
    transition: all 0.6s;
  }
  .repair-footer__menu--item .-link.-adj {
    padding-top: 20px;
  }
  .repair-footer__menu--item .-link:hover {
    opacity: 0.6;
  }
  .repair-footer__logo {
    width: 460px;
    /* justify-content: flex-start; */
    padding-top: 0;
    padding-bottom: 0;
    border-right: 1px solid var(--color-secondary);
  }
  .repair-footer__logo--icon {
    width: 200px;
    height: 38px;
  }
  .repair-footer__copyright {
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: var(--color-secondary);
    font-size: 14px;
  }
}
@media (min-width: 1280px) {
  .repair-footer__menu {
    width: auto;
  }
  .repair-footer__menu--item .-link {
    width: 300px;
    padding-left: 20px;
  }
}