/* *{
  border: 1px solid red !important;
} */

/* PC styles */

/* Header */
header {
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 50px;
  background: white;
  box-shadow: 0 4px 4px #00000040;
  position: relative;
  z-index: 10;
}

.header-logo>img {
  width: 228px;
  height: auto;
  cursor: pointer;
}

.header-nav,
.header-cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

/* .header-nav {
  margin-left: auto;
  margin-right: 50px;
} */

.header-nav-button {
  font-size: var(--font-size-nav);
  color: var(--main-color);
  font-weight: 700;
}

.header-cta {
  gap: 10px;
}

.cta-button {
  color: white;
  padding: 11px 22px;
  border-radius: 100px;
  font-weight: 700;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.cta-button.blue {
  background: var(--main-color);
}

.cta-button.line {
  background: var(--line-color);
}

.cta-button.blue>img {
  width: 22px;
  height: auto;
  margin-top: 2px;
}

.cta-button.line>img {
  width: 28px;
  height: 28px;
  margin: -5px 0px;
}

.fixed-cta-container {
  position: fixed;
  top: 215px;
  right: 0;
  z-index: 1000;
}

.fixed-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-end;
  width: 130px;
}

.fixed-cta-button {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border: 3px solid white;
  border-right: none;
  padding: 23px 13px 23px 0px;
  border-radius: 10px 0 0 10px;
}

.fixed-cta-button-absolute {
  position: absolute;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  top: -100%;
  right: 3px;
}

.fixed-cta-button.yellow {
  background: var(--sub-gradient-color);
  padding: 35px 13px 7px 0px;
}

.fixed-cta-button.green {
  background: var(--line-gradient-color);
}

.cta-character {
  height: 124px;
  width: auto;
  margin-right: -21px;
}

.green-cta-text {
  width: 91px;
}

.cta-blue-text {
  font-size: 10px;
  display: flex;
  flex-direction: column;
  white-space: nowrap;
  width: 51px;
  height: 51px;
  border-radius: 100px;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  background: var(--main-gradient-color);
  color: white;
}

.cta-blue-text>span {
  font-weight: 700;
  line-height: 1.1;
}

.cta-blue-text>span.bigger {
  font-size: var(--font-size-small);
}

.yellow-cta-text {
  width: 108px;
  height: auto;
}

/* MV section */

.mv-image {
  width: 100%;
  height: auto;
}

.mv-badges {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 68px 0 56px;
  gap: 25px;
}

.mv-badge {
  width: 292px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 130px;
  padding-top: 19px;
  color: var(--main-color);
  background-image: url(../assets/backgrounds/badge_golden_back_left.png), url(../assets/backgrounds/badge_golden_back_right.png);
  position: relative;
  background-size: auto 100%;
  background-position: left center, right center;
  background-repeat: no-repeat;
}

.mv-badge>p {
  font-weight: 700;
  font-size: var(--font-size-sub-title);
}

.mv-badge>p.biggest {
  font-size: 36px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  line-height: 1;
}

.mv-badge>p.smaller {
  font-size: var(--font-size-bigger-text);
}

.mv-badge>p.bigger {
  font-size: var(--font-size-title);
}

.mv-badge>p.biggest>img {
  margin-top: 4px;
}

.mv-badge>p.comment {
  font-size: var(--font-size-small);
  font-weight: 400;
  margin-top: 4px;
}

.badge-logo {
  position: absolute;
  bottom: 0;
  transform: translate(-2%, 40%);
  width: 135px;
  height: 50px;
}

/* Risk section */

.risk-header,
.risk-footer {
  position: relative;
}

.risk-header::before,
.risk-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../assets/backgrounds/wavy_background_blue3.png);
  background-size: 100% 100%;
  background-position: center;
  z-index: -1;
}

.risk-footer::before {
  transform: scaleY(-1);
  top: -20px;
}

.risk-header {
  padding: 15px 0 90px;
  margin-top: 110px;
}

.risk-header .note-underline-text {
  margin-bottom: 5px;
  padding: 0px 15px 5px;
  letter-spacing: 10%;
}

.risk-header .note-underline-text {
  font-size: var(--font-size-bigger-text);
}

.risk-header .note-underline-text>.highlight>.bigger {
  font-size: var(--font-size-title);
}

.risk-header .note-underline-text>.highlight.bigger {
  font-size: var(--font-size-sub-title);
}

.risk-header .note-underline-text .highlight {
  padding: 0 10px;
  margin: 0 10px;
}

.risk-content {
  background: var(--main-background-color);
}

.risk-title {
  background-image: url(../assets/backgrounds/title_top_drops.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100%;
  width: fit-content;
  margin: auto;
  padding: 30px 52px 0px;
  letter-spacing: 5%;
}

.risk-list {
  display: flex;
  flex-direction: row;
  height: 660px;
  justify-content: center;
  margin: 33px auto 0;
  width: fit-content;
  background: url(../assets/backgrounds/blue_dots.png), url(../assets/backgrounds/blue_dots.png);
  background-repeat: no-repeat;
  background-position: 22% 21%, 74% 77%;
}

.risk-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  width: 330px;
  height: 490px;
  padding: 0 40px 20px;
  background-image: url(../assets/backgrounds/risk_item_back.png);
  background-size: 100% 100%;
}

.risk-item-title {
  font-size: var(--font-size-bigger-text);
  line-height: 1.3;
  padding-bottom: 15px;
  background-image: url(../assets/backgrounds/text_underline.png);
  background-repeat: repeat-x;
  background-position: bottom;
  text-align: center;
  width: 90%;
}

.risk-item-title>span.bigger {
  font-size: var(--font-size-sub-title);
  display: block;
}

.risk-item-number {
  font-size: var(--font-size-sub-title);
  color: white;
  font-weight: 700;
  width: 80px;
  height: auto;
  aspect-ratio: 1;
  background: var(--main-color);
  border-radius: 100%;
  text-align: center;
  align-content: center;
  line-height: 1;
}

.risk-list>.risk-item:nth-child(even) {
  margin-top: auto;
}

.risk-list>.risk-item:nth-child(even)>.risk-item-number {
  background: var(--light-main-color);
}

.risk-item-text {
  line-height: 2;
}

.risk-footer {
  padding: 100px 0 0;
}

.risk-footer>.note-container {
  width: 1240px;
}

.risk-footer .note-underline-text {
  font-size: var(--font-size-title);
  padding-bottom: 10px;
  text-align: center;
  letter-spacing: 5%;
}

.risk-footer .note-underline-text>span.bigger {
  font-size: 40px;
}

/* Confirm section */

.confirm-inner {
  padding: 150px 0 80px;
}

.confirm-title {
  color: var(--sub-color);
}


.confirm-title>.circle-text {
  color: white;
  width: 70px;
  height: auto;
  display: inline-block;
  aspect-ratio: 1;
  border-radius: 100%;
  background: var(--sub-color);
  line-height: 1.35;
  letter-spacing: 0;
}

.confirm-title>.circle-text:nth-child(even) {
  margin-left: -1px;
}

.confirm-title>.circle-text:nth-child(odd) {
  margin-right: -1px;
}

.confirm-header {
  padding: 50px 0px 50px 290px;
  width: fit-content;
  margin: auto;
}

.confirm-header.has-down-arrow {
  margin-bottom: 112px;
}

.confirm-header::before {
  content: '';
  position: absolute;
  bottom: -29px;
  left: -51px;
  width: 190px;
  height: 190px;
  background-image: url(../assets/backgrounds/orange_dots.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.confirm-header>img {
  position: absolute;
  left: 0;
  top: calc(50%);
  transform: translateY(-50%);
  width: 320px;
  height: auto;
  aspect-ratio: 1;
  z-index: 2;
}

.confirm-intro-content {
  padding: 45px 90px;
  background: var(--sub-background-color);
  border: 5px solid var(--sub-color);
  border-radius: 20px;
  font-size: var(--font-size-bigger-text);
  position: relative;
}

.confirm-intro-content>p {
  font-weight: 700;
  letter-spacing: 5%;
}

.confirm-intro-content>p:first-child {
  padding-bottom: 10px;
  margin-bottom: 19px;
  border-bottom: 2px dashed var(--sub-color);
  width: fit-content;
}

.confirm-intro-content>p>span.bigger {
  font-size: var(--font-size-sub-title);
  font-weight: 700;
}

.confirm-intro-content>p>span.highlight.taller {
  padding: 0;
}

.confirm-intro-content .tag {
  margin-right: 10px;
  padding: 10px 16px;
  line-height: 1;
  display: inline-block;
  color: white;
  font-weight: 700;
  border-radius: 5px;
}

.lightblue-tag {
  background: var(--light-main-color);
}

.orange-tag {
  background: var(--sub-color);
}

.darkblue-tag {
  background: var(--main-color);
}

.confirm-intro-content>p:last-child {
  margin-top: 5px;
}

.confirm-intro-content>p:nth-child(2)>span.bigger {
  font-size: var(--font-size-title);
}

.confirm-intro-content::before {
  content: '';
  position: absolute;
  top: -20px;
  right: 20px;
  width: 118px;
  height: 144px;
  background-image: url(../assets/backgrounds/magnify_glass_filled.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.confirm-steps-container {
  background: var(--sub-background-color);
  position: relative;
  margin: 230px 0 145px;
  padding: 50px calc((100vw - 1300px) / 2);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.confirm-steps-container::before,
.confirm-steps-container::after {
  content: '';
  position: absolute;
  top: -140px;
  left: 0;
  width: 100%;
  height: 150px;
  background-image: url(../assets/backgrounds/wavy_background_orange.png);
  background-size: 100%;
  z-index: -1;
}

.confirm-steps-container::after {
  bottom: -140px;
  top: unset;
  transform: scale(-1);
}

.confirm-steps-title {
  color: var(--text-color);
  font-size: 48px;
  letter-spacing: 10%;
  width: fit-content;
  margin: 0 auto 40px;
  position: relative;
}

.confirm-steps-title>.bigger-for-sp {
  font-weight: 700;
}

.confirm-steps-title::before,
.confirm-steps-title::after {
  content: '';
  position: absolute;
  top: -10px;
  left: 0px;
  width: calc(100% + 40px);
  height: 100%;
  background-image: url(../assets/backgrounds/title_yellow_rays.png);
  background-repeat: no-repeat;
  background-position: top right;
}

.confirm-steps-title::after {
  left: -40px;
  transform: scaleX(-1);
}

.confirm-steps-title>span.bigger {
  font-size: 64px;
}

.confirm-steps {
  margin: auto;
  background: white;
  border-radius: 20px;
}

.confirm-step-title {
  color: white;
  height: 75px;
  line-height: 1;
  padding-bottom: 7px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.confirm-step-title>img {
  margin-left: 10px;
  max-width: 66px;
  max-height: 50px;
  object-fit: contain;
}

.confirm-step-list {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 30px;
  position: relative;
}

.confirm-step-list::after {
  content: '';
  position: absolute;
  top: 60px;
  left: 160px;
  width: calc(100% - 320px);
  height: 1px;
  border-bottom: 2px dashed var(--light-main-color);
}

.valve-steps .confirm-step-list::after,
.electric-steps .confirm-step-list::after {
  left: 115px;
  width: calc(100% - 230px);
}

.valve-steps .confirm-step-list::after {
  border-bottom: 2px dashed var(--sub-color);
}

.electric-steps .confirm-step-list::after {
  border-bottom: 2px dashed var(--main-color);
}

.confirm-step-item {
  width: 160px;
  position: relative;
  z-index: 2;
}

.confirm-step-item>p {
  line-height: 1.7;
  font-size: 16px;
}

.confirm-step-item-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  width: fit-content;
  margin: 0 auto 16px;
}

.confirm-step-item-header {
  font-size: var(--font-size-small);
  font-weight: 700;
}

.confirm-step-number {
  color: white;
  font-size: 15px;
  width: 45px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 100%;
  text-align: center;
  align-content: center;
  font-weight: 700;
}

.water-steps {
  border: 5px solid var(--light-main-color);
  width: 1240px;
  margin-bottom: 24px;
}

.water-steps .confirm-step-title,
.water-steps .confirm-step-number {
  background: var(--light-main-color);
}

.confirm-step-title {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-top: -1px;
  margin-left: -1px;
  width: calc(100% + 2px);
}

.water-steps .confirm-step-item-header {
  color: var(--light-main-color);
}

.water-steps .confirm-step-list {
  padding: 20px 86px;
}

.valve-steps,
.electric-steps {
  width: 600px;
}

.valve-steps .confirm-step-list,
.electric-steps .confirm-step-list {
  padding: 20px 40px 35px;
}

.valve-steps {
  border: 5px solid var(--sub-color);
}

.valve-steps .confirm-step-title,
.valve-steps .confirm-step-number {
  background: var(--sub-color);
}

.valve-steps .confirm-step-item-header {
  color: var(--sub-color);
}

.electric-steps {
  border: 5px solid var(--main-color);
}

.electric-steps .confirm-step-title,
.electric-steps .confirm-step-number {
  background: var(--main-color);
}

.electric-steps .confirm-step-item-header {
  color: var(--main-color);
}

.confirm-warning-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  color: var(--text-color);
  margin-top: -88px;
  letter-spacing: 5%;
}

.confirm-warning-title>img {
  width: 98px;
}

.confirm-warning-title>span {
  display: contents;
}

.confirm-warning-list {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  margin: 30px 0;
}

.confirm-warning-item {
  width: 360px;
  height: 460px;
  border: 5px solid var(--red-color);
  border-radius: 20px;
}

.confirm-warning-item-title {
  color: white;
  font-size: var(--font-size-sub-title);
  background: var(--red-color);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-left: -1px;
  margin-top: -1px;
  width: calc(100% + 2px);
  height: 115px;
  align-content: center;
  padding-bottom: 5px;
  line-height: 1.3;
}

.confirm-warning-item-content {
  padding: 24px 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.confirm-warning-item-content>p {
  line-height: 1.7;
  letter-spacing: 5%;
}

.confirm-warning-list>.confirm-warning-item:nth-child(even) .confirm-warning-item-content>img {
  margin-top: -25px;
}

.confirm-warning-item-title>.smaller {
  font-size: var(--font-size-bigger-text);
  font-weight: 700;
}

.confirm-warning-container {
  margin-bottom: 110px;
  padding-bottom: 20px;
}

.confirm-footer>.note-container {
  padding: 50px 55px;
  justify-content: flex-start;
}

.confirm-footer .note-underline-text {
  font-size: var(--font-size-title);
  padding-bottom: 10px;
  width: fit-content;
}

.confirm-footer .note-underline-text span.bigger {
  font-size: 48px;
  background-position: left 89%, center 89%, right 89%;
}

.confirm-footer .note-container.left .note-image {
  right: -20px;
}

/* Why free section */

.why-free-inner {
  background-image: url(../assets/backgrounds/wavy_background_blue4.png), linear-gradient(180deg, white 200px, var(--main-background-color) 200px);
  background-size: 100% 339px, auto;
  background-repeat: no-repeat;
  padding: 175px 0 110px;
}

.why-free-title.smaller {
  font-size: var(--font-size-bigger-text);
}

.why-free-title.smaller>span.bigger {
  font-size: var(--font-size-title);
}

.why-free-title.bigger {
  margin-bottom: 37px;
  letter-spacing: 5%;
  line-height: 1;
}

.note-container.no-character {
  width: 1240px;
  padding: 50px 100px;
}

.showroom-title.note-underline-text {
  padding-bottom: 20px;
}

.showroom-title {
  text-align: center;
  margin-top: 20px;
  padding-bottom: 0;
  font-size: var(--font-size-title);
  letter-spacing: 5%;
}

.note-container.no-character>.note-content {
  display: flex;
  flex-direction: column;
}

.note-content>.note-underline-auto-text {
  line-height: 3;
  font-size: var(--font-size-bigger-text);
  color: var(--text-color);
}

.note-container.no-character>.note-content>.note-underline-auto-text {
  letter-spacing: 5%;
}

.note-underline-auto-text {
  text-decoration-line: underline;
  text-decoration-style: dashed;
  text-decoration-color: var(--main-color);
  text-decoration-thickness: 2px;
  text-underline-offset: 20px;
  text-decoration-skip-ink: none;
}

.note-orange-back-text {
  margin: 10px auto 20px;
  color: white;
  background: var(--sub-color);
  padding: 10px 40px;
  border-radius: 100px;
}

.showroom-images {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.showroom-images>img {
  width: 285px;
  height: auto;
  aspect-ratio: 1;
}

.why-free-title.diagonal-dashed::before,
.why-free-title.diagonal-dashed::after {
  background-image: url(../assets/backgrounds/blue_title_frame.png);
}

.why-free-inner .highlight.taller {
  background-size: 10px 13px, calc(100% - 18px) 13px, 10px 13px;
}

/* Inspection section */

.body-cta-container {
  position: relative;
  height: fit-content;
}

.body-cta-top {
  background: var(--light-main-color);
  padding: 44px calc((100vw - 1500px) / 2) 18px 0;
}

.body-cta-bottom {
  background: #9EDAFF;
  padding: 26px calc((100vw - 1500px) / 2) 26px 0;
}

.body-cta-top>h1 {
  font-size: 28px;
  letter-spacing: 10%;
  padding-bottom: 14px;
  border-bottom: 2px dashed white;
  margin: 0 auto 21px calc((100vw - 1150px) / 2);
  width: 950px;
}

.body-cta-top>h1>span.bigger {
  font-size: 40px;
  letter-spacing: 2%;
  margin-left: 5px;
}

.body-cta-badges,
.body-cta-bottom-content {
  width: 950px;
  margin: 0 auto 0px calc((100vw - 1150px) / 2);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.body-cta-badges>p {
  background: var(--light-sub-color);
  color: var(--sub-color);
  font-size: var(--font-size-sub-title);
  font-weight: 700;
  width: 281px;
  height: 51px;
  align-content: center;
  text-align: center;
  border-radius: 20px;
  padding-bottom: 4px;
}

.body-cta-bottom-content .cta-button {
  font-size: var(--font-size-sub-title);
  padding: 20px 35px;
  box-shadow: 0px 4px 4px #00000040;
}

.body-cta-bottom-content .cta-button.blue>img {
  width: 28px;
}

.body-cta-bottom-content .cta-button.line>img {
  width: 36px;
  height: 36px;
}

.body-cta-container>img {
  position: absolute;
  bottom: 6px;
  left: calc((100vw - 1150px) / 2 + 950px);
  width: 354px;
  height: auto;
}

.maintenance-inner {
  background: var(--sub-background-color);
  padding: 100px 0 94px;
}

.maintenance-title {
  letter-spacing: 5%;
  width: fit-content;
  margin: auto;
  position: relative;
  margin-bottom: 50px;
}

.maintenance-title span.bigger {
  letter-spacing: -4%;
}

.maintenance-header {
  padding: 28px 66px;
  background: white;
  width: fit-content;
  margin: auto;
  margin-bottom: 50px;
  border: 5px solid var(--sub-color);
  border-radius: 20px;
  text-align: center;
}

.maintenance-header>p {
  font-weight: 700;
  font-size: var(--font-size-bigger-text);
}

.maintenance-header>p span {
  font-weight: 700;
}

.maintenance-header>p span.biggest {
  font-size: 36px;
}

.maintenance-header>p span.bigger {
  font-size: var(--font-size-sub-title);
}

.maintenance-title:before,
.maintenance-title:after {
  content: '';
  position: absolute;
  background-size: 100% 100%;
  background-position: center;
}

.maintenance-title:before {
  bottom: 40px;
  left: -45px;
  width: 48px;
  height: 46px;
  background-image: url(../assets/backgrounds/title_flash.png);
}

.maintenance-title:after {
  bottom: -7px;
  right: -65px;
  width: 58px;
  height: 72px;
  background-image: url(../assets/backgrounds/magnify_glass.png);
}

.maintenance-item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.maintenance-list>.maintenance-item:nth-child(even) {
  flex-direction: row-reverse;
}

.maintenance-item-content {
  background-image: url(../assets/backgrounds/maintenance_odd_back.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 42px 56px 42px 76px;
  width: 784px;
  height: 242px;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.maintenance-list>.maintenance-item:nth-child(even) .maintenance-item-content {
  background-image: url(../assets/backgrounds/maintenance_even_back.png);
  padding: 20px 56px 42px 76px;
}

.maintenance-item-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin-bottom: 10px;
  padding-bottom: 7px;
  border-bottom: 2px dashed var(--light-main-color);
}

.maintenance-list>.maintenance-item:nth-child(even) .maintenance-item-header {
  border-bottom: 2px dashed var(--sub-color);
}

.maintenance-number {
  width: 60px;
  height: auto;
  aspect-ratio: 1;
  align-content: center;
  text-align: center;
  background: var(--light-main-color);
  border-radius: 100%;
  color: white;
  font-weight: 700;
  font-size: var(--font-size-sub-title);
}

.maintenance-list>.maintenance-item:nth-child(even) .maintenance-number {
  background: var(--sub-color);
}

.maintenance-item-title {
  font-size: var(--font-size-bigger-text);
  letter-spacing: 5%;
  color: var(--light-main-color);
}

.maintenance-list>.maintenance-item:nth-child(even) .maintenance-item-title {
  color: var(--sub-color);
}

.maintenance-item-title>span.bigger {
  font-size: var(--font-size-sub-title);
}

.maintenance-item-text {
  line-height: 2;
  font-weight: 500;
}

.maintenance-item-text>span {
  font-weight: 500;
  padding: 0;
}

.maintenance-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.first-maintenance-item .yellow-outline {
  left: 3px;
  top: unset;
  bottom: 32px;
  border: 5px solid var(--light-sub-color);
}

.first-maintenance-item .orange-filled {
  right: unset;
  bottom: unset;
  top: -18px;
  left: 141px;
}

.second-maintenance-item .orange-dotted {
  left: -100px;
  top: 45px;
}

.third-maintenance-item .blue-dotted {
  left: unset;
  right: -100px;
  top: 31px;
}

.fourth-maintenance-item .yellow-filled {
  bottom: unset;
  right: -60px;
  top: 29px;
}

.fourth-maintenance-item .blue-outline {
  top: unset;
  bottom: 39px;
  right: -60px;
}

.maintenance-footer {
  padding-top: 150px;
}

.maintenance-footer .note-container {
  padding: 42px 55px 40px;
  padding-right: 290px;
}

.maintenance-footer .note-content {
  text-align: center;
  width: 100%;
}

.maintenance-footer .note-underline-text {
  padding-bottom: 10px;
  margin-bottom: 7px;
  font-size: var(--font-size-bigger-text);
}

.maintenance-footer .note-underline-text span.bigger {
  font-size: var(--font-size-sub-title);
}

.maintenance-footer-absolute {
  position: absolute;
  top: -6px;
  transform: translateY(-50%);
  font-size: var(--font-size-bigger-title);
  left: 150px;
}

.maintenance-footer-absolute>p {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1px;
}

.maintenance-footer-absolute .white-stroke-special::before {
  -webkit-text-stroke: 15px var(--light-sub-color);
}

.maintenance-footer-absolute img {
  position: relative;
  z-index: 5;
  width: 63px;
  height: auto;
  aspect-ratio: 1;
}

/* About section */

.about-title {
  letter-spacing: 5%;
  width: fit-content;
  margin: auto;
  position: relative;
}

.about-title::before,
.about-title::after {
  content: '';
  position: absolute;
  background-size: 48px 65px;
  width: calc(100% + 120px);
  height: 100%;
  top: -20px;
  left: -60px;
  background-image: url(../assets/backgrounds/title_blue_rays.png);
  background-repeat: no-repeat;
  background-position: center left;
}

.about-title::before {
  transform: scaleX(-1);
}

.about-inner {
  background-image: url(../assets/backgrounds/about_back.webp);
  background-size: 100% 100%;
  padding: 107px 0 83px;
}

.about-inner>p {
  text-align: center;
  font-size: var(--font-size-bigger-text);
  color: var(--main-color);
  font-weight: 700;
  margin: 20px 0 40px;
}

.achievement-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
  width: 1000px;
  margin: auto;
  row-gap: 35px;
}

.achievement-item {
  background: white;
  width: 320px;
  height: 370px;
  border-radius: 25px;
  border-width: 5px;
  border-style: solid;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 29px 25px 35px;
  position: relative;
}

.achievement-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 115px;
  height: 56px;
  transform: translate(-50%, -60%);
  background-size: 100%;
  background-repeat: no-repeat;
}

.yellow-achievement-item {
  border-color: var(--light-sub-color);
}

.yellow-achievement-item::before {
  background-image: url(../assets/backgrounds/parter_yellow_ribbon.png);
  transform: translate(-50%, -54%);
}

.blue-achievement-item::before {
  background-image: url(../assets/backgrounds/parter_lightblue_ribbon.png);
}

.orange-achievement-item::before {
  background-image: url(../assets/backgrounds/parter_darkblue_ribbon.png);
}

.blue-achievement-item {
  border-color: var(--light-main-color);
}

.orange-achievement-item {
  border-color: var(--sub-color);
}

.achievement-item>h2 {
  font-size: 18px;
  margin-bottom: 10px;
  padding-bottom: 7px;
  border-bottom: 2px dashed var(--main-color);
  width: 100%;
  line-height: 1.7;
}

.achievement-item>h2>span.comment {
  display: block;
  margin-top: 4px;
}

.achievement-item>p {
  height: 72px;
}

.achievement-image {
  margin-bottom: 24px;
  height: -webkit-fill-available;
  align-content: center;
  max-width: 240px;
}

.achievement-image>img {
  width: 100%;
}

/* Voice section */

.voice-title {
  letter-spacing: 5%;
  margin-top: 60px;
}

.voice-list {
  display: flex;
  width: 1180px;
  margin: 130px auto 0;
  gap: 30px;
  justify-content: center;
}

.voice-item {
  width: 360px;
  height: 450px;
  background: white;
  border-radius: 20px;
  border: 5px solid var(--main-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 35px 50px;
}

.voice-item>img {
  width: 198px;
  height: auto;
  aspect-ratio: 1;
  margin-top: -99px;
  margin-bottom: 15px;
}

.voice-item>h3 {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 13px;
  padding: 0 0 8px;
  border-bottom: 2px dashed var(--main-color);
  width: 100%;
}

.voice-info {
  font-size: var(--font-size-nav);
  color: var(--main-color);
  font-weight: 700;
  margin-bottom: 14px;
}

.voice-text {
  line-height: 30px;
}

/* FAQ section */

.faq-inner {
  padding: 100px 0;
}

.faq-list {
  width: 950px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.faq-item {
  padding-bottom: 25px;
  border-bottom: 2px dashed var(--main-color);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item-question,
.faq-item-answer {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  color: var(--text-color);
}

.faq-item-question {
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  font: inherit;
  text-align: left;
  width: 100%;
}

.faq-item-answer {
  display: none;
}

.faq-item.is-open .faq-item-answer {
  display: flex;
}

.faq-item-header {
  width: 40px;
  height: auto;
  aspect-ratio: 1;
  color: white;
  border-radius: 100%;
  text-align: center;
  align-content: center;
  padding-bottom: 4px;
  font-weight: 700;
}

.faq-item-header.dark-blue-background {
  background: var(--main-color);
}

.faq-item-header.light-blue-background {
  background: var(--light-main-color);
}

.faq-item-question-text {
  font-size: var(--font-size-bigger-text);
  font-weight: 700;
}

.faq-item-question>img {
  margin-left: auto;
  transition: transform 0.3s ease;
}

.faq-item.is-open .faq-item-question>img {
  transform: rotate(180deg);
}

.faq-list>.faq-item:last-child {
  border-bottom: none;
}

/* Staff section */

.staff-message-inner {
  background-image: url(../assets/backgrounds/wavy_background_darkblue.png);
  background-repeat: no-repeat;
  background-size: 100% 324px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 56px;
  padding: 112px 0 124px;
}

.staff-message-content {
  width: 564px;
}

.staff-message-title {
  color: white;
  text-align: left;
  margin-bottom: 140px;
}

.staff-message-content>p {
  line-height: 1.7;
}

.staff-message-name {
  margin-top: 50px;
}

.staff-message-name>span.bigger {
  font-size: var(--font-size-sub-title);
}

.staff-message-image>img {
  width: 666px;
  height: auto;
  aspect-ratio: 1;
  position: relative;
  z-index: 1;
}

.staff-message-image {
  position: relative;
  z-index: 2;
}

.staff-message-image .light-blue-filled {
  top: unset;
  bottom: 95px;
  width: 100px;
  z-index: 2;
  left: -4px;
  background: #E1F8F6;
}

.staff-message-image .blue-filled {
  top: unset;
  bottom: 213px;
  left: unset;
  right: -3px;
  z-index: 2;
  background: #33C2DE;
}

.staff-message-image .blue-dotted {
  z-index: 2;
  top: unset;
  bottom: -22px;
  right: -25px;
  left: unset;
  background-image: url(../assets/backgrounds/bright_blue_dots.png);
  background-size: 100%;
}

.staff-message-image .yellow-dotted {
  left: -50px;
  top: 23px;
}

.staff-message-image .blue-outline {
  top: unset;
  bottom: -46px;
  right: 174px;
  width: 50px;
  border-color: #00B3D6;
}

/* Contact section */

.contact-inner {
  padding: 100px 0 84px;
  background: var(--main-background-color);
}

.contact-badge-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  margin: 20px 0 40px;
}

.contact-badge {
  color: white;
  background: var(--main-color);
  font-weight: 700;
  width: 160px;
  height: 38px;
  align-content: center;
  text-align: center;
  border-radius: 10px;
  padding-bottom: 2px;
}

.contact-form {
  background: white;
  width: 640px;
  margin: 0 auto 25px;
  padding: 50px;
  border-radius: 20px;
}

.contact-form-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 10px;
}

.contact-form-label {
  font-size: var(--font-size-nav);
  color: var(--main-color);
}

.contact-form-label-text {
  font-weight: 700;
}

.contact-form-required-badge {
  color: white;
  background: var(--darker-sub-color);
  width: 48px;
  display: inline-block;
  margin-left: 10px;
  height: 20px;
  text-align: center;
  align-content: center;
  border-radius: 5px;
}

.contact-form-input,
.contact-form-select,
.contact-form-textarea {
  border: 1px solid var(--main-color);
  border-radius: 5px;
  padding: 8px 19px;
}

.contact-form-input::placeholder,
.contact-form-select>option:nth-child(1),
.contact-form-select.null-value-option,
.contact-form-textarea::placeholder {
  color: #C3C3C3;
  opacity: 1;
  /* Firefox uses opacity by default */
}

.contact-form-select>option:not(:nth-child(1)) {
  color: var(--text-color);
}

.contact-form-select-wrapper {
  position: relative;
}

.contact-form-address {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.contact-form-address-postal {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.contact-form-address-postal-label {
  flex-shrink: 0;
  font-weight: 700;
}

.contact-form-address-postal-inputs {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-form-address-postal-inputs>.contact-form-input {
  width: 100px;
}

.contact-form-address-hyphen {
  font-weight: 700;
}

.contact-form-address-autofill {
  background: linear-gradient(to bottom, #f9f9f9, #dfdfdf);
  border-radius: 5px;
  padding: 8px 12px;
  border: 1px solid #cccccc;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.contact-form-address-autofill:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.contact-form-address>.contact-form-input {
  width: 100%;
}

.contact-form-select {
  appearance: none;
  background: white;
  background-image: url(../assets/images/chevron_down.png);
  background-repeat: no-repeat;
  background-position: right 19px center;
  padding-right: 50px;
  width: 50%;
}

.contact-form-year-input {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.contact-form-checkbox {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 10px;
  gap: 7px;
}

.contact-form-checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border: 1px solid var(--main-color);
  margin: 0;
  flex-shrink: 0;
  background: #fff;
  cursor: pointer;
  border-radius: 2px;
}

.contact-form-checkbox input[type="checkbox"]:checked {
  background: var(--main-color);
}

.contact-form-date-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form-sub-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.contact-form-date-field {
  position: relative;
  flex: 1;
  cursor: pointer;
}

.contact-form-date-display {
  width: 100%;
  background: #fff;
  pointer-events: none;
}

.contact-form-date-native {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 8px 19px;
  border: 1px solid transparent;
  border-radius: 5px;
  background: transparent;
  color: transparent;
  cursor: pointer;
  z-index: 2;
}

.contact-form-date-native::-webkit-calendar-picker-indicator {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  cursor: pointer;
  opacity: 0;
}

.contact-form-privacy>.contact-form-checkbox {
  justify-content: center;
}

.contact-form-privacy>label>span {
  color: var(--main-color);
  font-weight: 700;
}

.form-actions {
  width: fit-content;
  margin: 20px auto 0;
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.contact-form:not(.is-confirm-step) .form-actions--confirm {
  display: none;
}

.contact-form.is-confirm-step .form-actions--input {
  display: none;
}

.contact-form-submit,
.contact-form-back {
  color: white;
  background: var(--darker-sub-color);
  width: 220px;
  height: 48px;
  border-radius: 50px;
}

.contact-form-back {
  background: none;
  border: 1px solid var(--darker-sub-color);
  color: var(--darker-sub-color);
}

.form-errors>ul {
  padding: 0 20px;
  font-size: 14px;
  background: #ffe9e9;
  border-radius: 20px;
  color: red;
  margin-bottom: 30px;
}

.form-errors>ul>li {
  padding: 10px 0;
}

.form-confirm>p {
  font-size: var(--font-size-bigger-text);
  font-weight: 700;
  color: var(--main-color);
  text-align: center;
}

.form-confirm-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-confirm-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 2px dashed var(--main-color);
}

.form-confirm-label {
  font-weight: 700;
  color: var(--main-color);
  white-space: nowrap;
}

.contact-inner>.cta-button.line {
  margin: 25px auto 0;
  font-size: var(--font-size-sub-title);
  width: 320px;
  height: 74px;
  justify-content: center;
}

.contact-inner>.cta-button.line>img {
  width: 36px;
  height: 36px;
}

/* Footer */

.footer-inner {
  padding: 20px 100px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo>img {
  width: 228px;
  height: auto;
}

.footer-info {
  display: flex;
  flex-direction: row;
  gap: 40px;
  margin-bottom: 65px;
}

.footer-links {
  text-align: right;
  margin-bottom: 14px;
}

.footer-copyright {
  text-align: right;
}

.form-comment {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 20px 0 0;
}

.form-comment>p>b {
  width: 115px;
  display: inline-block;
}

.form-comment>p:first-child {
  text-align: center;
}

/* Thanks page */

.thanks-header-inner {
  justify-content: space-between;
}

.thanks-main {
  padding: 4rem 1rem;
  text-align: center;
  min-height: calc(100vh - 110px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks-inner {
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.thanks-inner>h1 {
  font-size: 50px;
  font-weight: 700;
  margin: 50px 0;
  color: var(--main-color);
}

.thanks-inner>p {
  line-height: 1.8;
}

.thanks-back-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 48px;
  margin: 50px auto 0;
  border-radius: 50px;
  color: white;
  background: var(--main-color);
  font-weight: 700;
}

.thanks-back-button.cta-button.line {
  margin: 20px auto 0;
  font-size: 16px;
}

.thanks-footer {
  text-align: center;
  padding: 20px;
}

.thanks-footer>p {
  font-size: 14px;
  color: #aaaaaa;
}

#inspection-section {
  scroll-margin-top: 78px;
}

#about-section {
  scroll-margin-top: 78px;
}

#faq-section,
#contact-section {
  scroll-margin-top: 50px;
}


/* Laptop styles */

/* @media (min-width: 1930px) {
  .header-nav {
    gap: 40px;
  }

  .header-nav-button{
    font-size: 16px;
  }
}

@media (max-width: 1400px) {
  .header-nav {
    margin-right: 20px;
  }
} */

.form-comment > p > a{
  color: var(--main-color);
  font-weight: 700;
  text-decoration: underline;
}

@media (max-width: 1350px) {
  .header-inner {
    padding: 14px 30px;
  }

  .header-logo>img {
    width: 145px;
  }

  .header-nav,
  .header-cta {
    gap: 8px;
  }

  .cta-button {
    padding: 7px 14px;
    font-size: var(--font-size-nav);
    gap: 6px;
  }

  .cta-button.blue>img {
    width: 16px;
  }

  .cta-button.line>img {
    width: 20px;
    height: auto;
  }

  .mv-badges {
    gap: 15px;
    margin: 58px 0 50px;
  }

  .mv-badge {
    width: 260px;
    height: 121px;
  }

  .mv-badge>p.biggest {
    font-size: 28px;
  }

  .mv-badge>p.biggest>img {
    width: 28px;
  }

  .badge-logo {
    width: 113px;
    height: auto;
    transform: translate(-2%, 30%);
  }

  .body-cta-top {
    padding: 18px calc((100vw - 450px) / 2) 8px 0;
  }

  .body-cta-top>h1 {
    font-size: 20px;
    width: 690px;
    margin: 0 auto 10px calc((100vw - 950px) / 2);
  }

  .body-cta-top>h1>span.bigger {
    font-size: 30px;
  }

  .body-cta-badges,
  .body-cta-bottom-content {
    width: 690px;
    margin: 0 auto 10px calc((100vw - 950px) / 2);
  }

  .body-cta-bottom {
    padding: 16px calc((100vw - 1500px) / 2) 7px 0;
  }

  .body-cta-bottom-content .cta-button {
    padding: 15px 30px;
  }

  .body-cta-container>img {
    left: calc((100vw - 1150px) / 2 + 800px);
    width: 261px;
  }

  .note-container.left {
    width: 800px;
    padding: 42px 40px 40px;
    padding-right: 245px;
  }

  .risk-list {
    flex-wrap: wrap;
    gap: 20px;
    height: auto;
    background-position: 7% 14%, 90% 100%;
  }

  .risk-footer>.note-container {
    width: 900px;
    padding: 42px 22px 40px 130px;
  }

  .risk-footer .note-underline-text>span.bigger {
    font-size: 30px;
  }

  .note-container.right .note-image {
    left: -30px;
  }

  .note-container.right .note-image>img {
    width: 85%;
  }

  .confirm-title>.circle-text {
    width: 58px;
  }

  .confirm-header.has-down-arrow {
    padding: 50px 20px 50px 195px;
  }

  .confirm-header>img {
    width: 215px;
  }

  .confirm-intro-content {
    padding: 25px 10px 25px 30px;
  }

  .confirm-intro-content .tag {
    padding: 8px 11px;
    margin-right: 7px;
  }

  .confirm-intro-content::before {
    top: -14px;
    right: 20px;
    width: 72px;
    height: 90px;
  }

  .water-steps .confirm-step-list {
    padding: 20px 30px;
  }

  .confirm-step-list::after {
    left: 87px;
    width: calc(100% - 175px);
  }

  .confirm-steps-container {
    padding: 0px calc((100vw - 1300px) / 2);
  }

  .valve-steps {
    margin: unset;
    margin-left: auto;
    width: 440px;
  }

  .electric-steps {
    margin: unset;
    margin-right: auto;
    margin-left: 20px;
    width: 440px;
  }

  .valve-steps .confirm-step-list,
  .electric-steps .confirm-step-list {
    padding: 20px 20px 35px;
    gap: 20px;
  }

  .valve-steps .confirm-step-list::after,
  .electric-steps .confirm-step-list::after {
    left: 83px;
    width: calc(100% - 166px);
  }

  .water-steps {
    width: 900px;
  }

  .confirm-warning-list {
    width: 940px;
    margin: 30px auto;
  }

  .confirm-warning-item {
    height: 500px;
  }

  .confirm-warning-item-content {
    justify-content: space-between;
    height: 370px;
  }

  .confirm-footer>.note-container {
    padding-right: 175px;
  }

  .confirm-footer .note-underline-text span.bigger {
    font-size: 36px;
  }

  .blue-outline {
    top: 18px;
  }

  .note-container.no-character {
    width: 900px;
    padding: 35px 30px;
  }

  .note-container.no-character>.note-content {
    width: 100%;
  }

  .note-content>.note-underline-auto-text {
    letter-spacing: 5%;
  }

  .note-orange-back-text {
    margin: 20px auto 25px;
  }

  .showroom-images {
    width: 100%;
  }

  .showroom-images>img {
    width: 235px;
  }

  .maintenance-title {
    letter-spacing: 0%;
  }

  .maintenance-title span.bigger {
    letter-spacing: -6%;
  }

  .maintenance-title:before {
    bottom: 30px;
    left: -35px;
    width: 40px;
    height: 40px;
  }

  .maintenance-title:after {
    bottom: 0px;
    right: -48px;
    width: 45px;
    height: 55px;
  }

  .maintenance-header {
    padding: 20px 66px;
    margin-bottom: 30px;
  }

  .maintenance-header>p span.biggest {
    line-height: 1.2;
  }

  .maintenance-list {
    contain: content;
    padding-top: 20px;
  }

  .maintenance-item {
    width: 900px;
  }

  .maintenance-item-content {
    padding: 42px 40px 42px 50px;
  }

  .maintenance-number {
    width: 45px;
    padding-bottom: 2px;
  }

  .maintenance-list>.maintenance-item:nth-child(even) .maintenance-item-content {
    padding: 20px 50px 42px 65px;
  }

  .achievement-list {
    width: 90%;
  }

  .voice-list {
    width: 900px;
    gap: 20px;
  }

  .voice-item {
    height: auto;
    padding: 0px 15px 35px;
  }

  .voice-item>img {
    width: 170px;
  }

  .voice-item>h3 {
    font-size: 16px;
  }

  .faq-list {
    width: 900px;
  }

  .staff-message-inner {
    contain: content;
    display: grid;
    grid-template-areas: "title image" "text text" "footer footer";
    padding: 55px 0 124px;
    gap: 20px;
  }

  .staff-message-image>img {
    width: 300px;
  }

  .staff-message-content {
    display: contents;
  }

  .staff-message-image {
    grid-area: image;
    margin-top: -30px;
  }

  .staff-message-title {
    grid-area: title;
  }

  .staff-message-content>p {
    grid-area: text;
  }

  .staff-message-content>p.staff-message-name {
    grid-area: footer;
  }
}


/* Tablet styles */
@media (max-width: 1000px) {
  .risk-list {
    flex-wrap: wrap;
    gap: 20px;
  }

  .header-cta.pc-only {
    display: none;
  }

  .mv-badges {
    gap: 10px;
  }

  .mv-badge {
    width: 200px;
    height: 95px;
    padding-top: 10px;
  }

  .badge-logo {
    transform: translate(-2%, 20%);
    width: 88px;
  }

  .mv-badge>p.biggest>img {
    width: 24px;
  }

  .mv-badge>p.biggest {
    font-size: 24px;
  }

  .note-container.left {
    width: 650px;
    padding: 30px 15px 25px;
    padding-right: 160px;
  }

  .note-container::before {
    width: 75px;
    height: 75px;
    background-size: 100%;
  }

  .note-container.left .note-image {
    right: 10px;
  }

  .note-container.left .note-image>img {
    width: 150px;
  }

  .risk-header {
    margin-top: 70px;
    padding: 15px 0 70px;
  }

  .risk-item-number {
    width: 55px;
  }

  .risk-list {
    padding: 100px 0;
    margin-top: -50px;
    background-position: 2% 2%, 70% 98%;
  }

  .risk-footer {
    padding: 0;
  }

  .risk-footer>.note-container {
    width: 650px;
    padding: 35px 25px 25px 228px;
  }

  .note-container.right .note-image>img {
    width: 100%;
  }

  .risk-footer>.note-container>.pc-only {
    display: none;
  }

  .risk-footer .note-underline-text {
    text-align: right;
  }

  .note-container.right .note-image {
    left: 0;
  }

  .diagonal-dashed {
    letter-spacing: 0%;
    padding: 0px 30px 10px;
  }

  .confirm-title>.circle-text {
    width: 49px;
  }

  .confirm-title>.circle-text:nth-child(even) {
    margin-left: 0px;
  }

  .confirm-title>.circle-text:nth-child(odd) {
    margin-right: 0px;
  }

  .diagonal-dashed::before,
  .diagonal-dashed::after {
    width: 25px;
  }

  .confirm-header {
    padding: 30px 0px 45px 188px;
    width: 660px;
  }

  .confirm-intro-content {
    padding: 25px 10px 25px 30px;
  }

  .confirm-intro-content::before {
    width: 91px;
    height: 110px;
  }

  .confirm-intro-content .tag {
    margin-right: 5px;
    padding: 7px 9px;
    font-size: 14px;
  }

  .confirm-steps-title {
    font-size: 36px;
  }

  .confirm-steps-title>span.bigger {
    font-size: 50px;
  }

  .water-steps {
    width: 650px;
  }

  .confirm-step-list {
    flex-direction: column;
  }

  .confirm-step-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 20px;
  }

  .confirm-step-item-header {
    gap: 8px;
    width: auto;
    margin: 0;
    flex-direction: row;
  }

  .confirm-step-item-header>p {
    font-size: 15px;
    font-weight: 700;
  }

  .valve-steps,
  .electric-steps {
    width: 650px;
    margin: auto;
  }

  .valve-steps {
    margin-bottom: 24px;
  }

  .confirm-step-list::after {
    left: 93px;
    width: 1px;
    height: calc(100% - 106px);
    border-bottom: unset;
  }

  .water-steps .confirm-step-list::after {
    border-right: 2px dashed var(--light-main-color);
  }

  .valve-steps .confirm-step-list::after,
  .electric-steps .confirm-step-list::after {
    border-right: 2px dashed var(--sub-color);
    border-bottom: unset;
    width: 1px;
    left: 93px;
  }

  .valve-steps .confirm-step-list::after {
    border-right: 2px dashed var(--sub-color);
  }

  .electric-steps .confirm-step-list::after {
    border-right: 2px dashed var(--main-color);
  }

  .water-steps .confirm-step-list,
  .valve-steps .confirm-step-list,
  .electric-steps .confirm-step-list {
    padding: 20px 25px;
  }

  .confirm-warning-list {
    flex-direction: column;
    width: 450px;
  }

  .confirm-warning-item {
    width: 100%;
    height: auto;
  }

  .confirm-warning-item-title {
    font-size: var(--font-size-title);
  }

  .confirm-warning-item-content {
    height: auto;
  }

  .confirm-warning-item-title>.smaller {
    font-size: var(--font-size-sub-title);
  }

  .confirm-footer>.note-container {
    padding-right: 125px;
  }

  .note-container.no-character {
    width: 650px;
  }

  .why-free-inner .highlight.taller {
    padding: 0 0px;
  }

  .showroom-images>img {
    width: 175px;
  }

  .body-cta-badges>p {
    width: fit-content;
    height: auto;
    padding: 5px 15px 8px;
    border-radius: 5px;
  }

  .body-cta-top>h1 {
    width: 420px;
    margin: 0 auto 10px calc((100vw - 650px) / 2);
  }

  .body-cta-badges,
  .body-cta-bottom-content {
    margin: 0 auto 10px calc((100vw - 650px) / 2);
    width: 420px;
  }

  .body-cta-badges>p {
    width: fit-content;
    height: auto;
    padding: 5px 12px 8px;
    border-radius: 5px;
    font-size: var(--font-size-bigger-text);
  }

  .body-cta-bottom-content .cta-button {
    padding: 10px 20px 11px;
    font-size: var(--font-size-bigger-text);
  }

  .body-cta-bottom-content .cta-button.blue>img {
    width: 22px;
  }

  .body-cta-bottom-content .cta-button {
    font-size: var(--font-size-bigger-text);
  }

  .body-cta-bottom-content .cta-button.line>img {
    width: 26px;
    height: 26px;
  }

  .body-cta-container>img {
    left: calc((100vw - 1150px) / 2 + 660px);
    width: 260px;
  }

  .maintenance-inner {
    padding: 80px 0 74px;
  }

  .maintenance-title:before {
    bottom: unset;
    left: -40px;
    top: -15px;
  }

  .maintenance-title:after {
    width: 66px;
    height: 80px;
  }

  .maintenance-header {
    width: 650px;
    padding: 14px 28px 28px;
  }

  .maintenance-list {
    gap: 30px;
  }

  .maintenance-item {
    width: 650px;
  }

  .maintenance-item>img {
    position: absolute;
    top: 20px;
    z-index: 1;
    left: 15%;
  }

  .maintenance-item-content {
    width: 100%;
    height: fit-content;
    padding: 280px 70px 42px 84px;
  }

  .maintenance-list>.maintenance-item:nth-child(even) .maintenance-item-content {
    padding: 249px 70px 84px 77px;
  }

  .maintenance-list>.maintenance-item:nth-child(even)>img {
    top: 0px;
    left: unset;
    right: 15%;
  }

  .confirm-steps-container {
    margin: 230px 0 65px;
  }

  .confirm-footer {
    padding: 100px 0;
    contain: content;
  }

  .confirm-inner {
    padding: 150px 0 10px;
  }

  .why-free-inner {
    background-size: 100% 180px, auto;
    background-position: 0% 0;
    background-image: url(../assets/backgrounds/wavy_background_blue4.png), linear-gradient(180deg, white 150px, var(--main-background-color) 150px);
    padding: 93px 0 110px;
  }

  .first-maintenance-item .yellow-outline {
    z-index: 0;
    top: 26%;
    bottom: unset;
    left: unset;
    right: 24%;
  }

  .first-maintenance-item .orange-filled {
    z-index: 0;
    top: 5%;
    left: 45%;
  }

  .second-maintenance-item .blue-dotted {
    z-index: 0;
    left: 16%;
    top: 5%;
  }

  .third-maintenance-item .orange-dotted {
    z-index: 0;
    left: unset;
    right: 17%;
    background-repeat: no-repeat;
  }

  .fourth-maintenance-item .yellow-filled {
    z-index: 0;
    right: unset;
    left: 27%;
  }

  .fourth-maintenance-item .blue-outline {
    z-index: 0;
    right: unset;
    left: 17%;
    top: 23%;
    bottom: unset;
  }

  .achievement-list {
    width: 650px;
  }

  .achievement-item {
    width: 310px;
  }

  .voice-list {
    width: 650px;
    flex-wrap: wrap;
    row-gap: 50px;
  }

  .voice-item {
    width: 310px;
  }

  .voice-list>.voice-item:last-child {
    width: 500px;
  }

  .faq-list {
    width: 650px;
  }

  .staff-message-inner {
    grid-template-columns: 300px 350px;
  }

  .staff-message-image .blue-dotted {
    width: 150px;
  }

  .staff-message-image .yellow-dotted {
    left: -80px;
  }

  .staff-message-image .blue-outline {
    bottom: -20px;
  }

  .footer-inner {
    padding: 20px 30px;
  }
}

/* Landscape mobile: phones sideways (max-height excludes desktop/tablet landscape) */
@media screen and (orientation: landscape) and (max-height: 500px) {
  .fixed-cta-container {
    top: unset;
    bottom: 0dvh;
  }
}

/* Mobile styles */
@media (max-width: 700px) {
  .thanks-inner>h1 {
    font-size: 7vw;
    margin: 7vw 0;
  }

  .thanks-inner>p {
    font-size: 3.7vw;
  }

  .thanks-back-button {
    width: 60vw;
  }

  .thanks-main {
    min-height: calc(100vh - 60vw);
  }

  .contact-form-address-postal {
    gap: 3vw;
  }

  .contact-form-address-postal-inputs {
    gap: 2vw;
  }

  .contact-form-address-postal-inputs>.contact-form-input {
    width: 15vw;
  }

  .contact-form-address-autofill {
    padding: 1vw 3.4vw;
    font-size: 3vw;
  }

  body.is-nav-open {
    overflow: hidden;
  }

  .header-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: var(--light-main-color);
    gap: 6.25vw;
    padding: 0 5vw;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    pointer-events: none;
    z-index: 10;
    box-shadow: inset 0px 4px 7px #0000005e;
    transition:
      opacity 0.25s ease,
      visibility 0.25s ease,
      max-height 0.3s ease,
      padding 0.3s ease;
  }

  header.is-nav-open .header-nav {
    max-height: 100vh;
    padding: 8.5vw 5vw;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .header-nav-button {
    color: white;
    font-size: 4vw;
    padding-bottom: 6.25vw;
    border-bottom: 2px dashed #ffffff78;
    width: 100%;
    text-align: left;
  }

  .header-nav>.header-nav-button:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }

  .header-inner {
    padding: 2.985vw 5vw;
  }

  .header-logo>img {
    width: 31.85vw;
  }

  .burger-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.75vw;
    position: relative;
    z-index: 11;
  }

  .burger-button>span {
    width: 7.5vw;
    height: 0.75vw;
    background: var(--main-color);
    border-radius: 8vw;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  header.is-nav-open .burger-button>span:nth-child(1) {
    transform: translateY(2.5vw) rotate(45deg);
  }

  header.is-nav-open .burger-button>span:nth-child(2) {
    opacity: 0;
  }

  header.is-nav-open .burger-button>span:nth-child(3) {
    transform: translateY(-2.5vw) rotate(-45deg);
  }

  .fixed-cta-container {
    top: unset;
    bottom: 0;
    width: 100%;
    padding-bottom: env(safe-area-inset-bottom, 0);
  }

  .fixed-cta-inner {
    flex-direction: row;
    width: 100%;
    gap: 0;
    align-items: flex-start;
  }

  .fixed-cta-button {
    height: 14.926vw;
    width: fit-content;
    border-radius: 0vw;
  }

  .fixed-cta-button.yellow,
  .fixed-cta-button {
    padding: 2.48757vw;
  }

  .fixed-cta-button-absolute {
    top: -2vw;
    right: unset;
    left: unset;
    position: relative;
  }

  .fixed-cta-button-absolute>.cta-character {
    display: none;
  }

  .fixed-cta-button.green {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-end;
    border-radius: 0;
    padding: 2.48757vw 4.4776vw;
  }

  .green-cta-text {
    width: 33.585vw;
    padding-bottom: 0.8vw;
  }

  .cta-character {
    height: 21.395vw;
  }

  .cta-blue-text {
    width: 13.7vw;
    height: 13.7vw;
    font-size: 2.5vw;
  }

  .cta-blue-text>span {
    font-size: 3vw;
  }

  .yellow-cta-text {
    width: 24.89vw;
  }

  .note-container.left {
    width: 90%;
  }

  .risk-footer>.note-container {
    width: 90%;
  }

  .confirm-header {
    width: 90%;
  }

  .note-container.no-character {
    width: 90%;
  }

  .maintenance-header {
    width: 90%;
  }

  .achievement-list {
    width: 90%;
  }

  .voice-list {
    width: 90%;
  }

  .faq-list {
    width: 90%;
  }

  .contact-form {
    width: 90%;
  }

  .body-cta-container>img {
    left: 0;
  }

  .showroom-images>img {
    width: 23vw;
  }

  .confirm-steps-title {
    font-size: 12px;
  }

  .mv-badges {
    flex-wrap: wrap;
    margin: 9.954vw 8vw;
    gap: 6vw;
  }

  .mv-badge {
    width: 38.825vw;
    height: 22.25vw;
    justify-content: center;
    padding: 0;
  }

  .mv-badge>p {
    font-size: var(--font-size-normal-text);
    line-height: 1.2;
  }

  .mv-badge>p:first-child {
    margin-top: -3vw;
  }

  .mv-badge>p.biggest {
    font-size: var(--font-size-title);
    gap: 0.5vw;
  }

  .mv-badge>p.biggest>img {
    width: var(--font-size-title);
    margin-top: 0.3vw;
  }

  .mv-badge>p.smaller {
    font-size: var(--font-size-nav);
  }

  .badge-logo {
    display: none;
  }

  .mv-badge>p.comment {
    margin-top: 0;
    font-size: var(--font-size-smallest);
  }

  .mv-badge>p.bigger {
    font-size: var(--font-size-bigger-text);
  }

  .note-container.left {
    padding: 3.97vw 5.48vw;
    padding-right: 20vw;
    justify-content: flex-start;
  }

  .note-container.left .note-image {
    right: -5vw;
  }

  .note-container.left .note-image>img {
    width: 32.34vw;
  }

  .note-container::before {
    width: 16.17vw;
    height: 16.17vw;
    top: -11vw;
  }

  .note-container.right::before {
    right: 0vw;
  }

  .risk-header .note-underline-text {
    padding: 0 0 1vw;
    margin-bottom: 1vw;
    font-size: var(--font-size-normal-text);
  }

  .risk-header .note-underline-text .highlight {
    padding: 0 1.5vw;
    margin: 0;
  }

  .highlight.taller {
    background-size: 1vw 2.5vw, calc(100% - 1vw) 2.5vw, 1vw 2.5vw;
  }

  .note-container.left .note-image {
    bottom: 2vw;
    margin-left: -4vw;
  }

  .risk-title {
    font-size: var(--font-size-bigger-text);
    padding: 7vw 6vw 0 8vw;
    background-image: url(../assets/backgrounds/title_top_drops_sp.png);
  }

  .risk-item {
    width: 79.604vw;
    padding: 0 8.7vw 14vw;
    gap: 3vw;
    height: auto;
  }

  .risk-item-number {
    width: 15.923vw;
    font-size: var(--font-size-title);
  }

  .risk-item-title {
    font-size: var(--font-size-bigger-text);
    padding-bottom: 3vw;
  }

  .risk-item-title>span.bigger {
    font-size: 5vw;
  }

  .risk-item-text {
    font-size: var(--font-size-normal-text);
  }

  .highlight.shorter {
    background-size: 1vw 2vw, calc(100% - 1vw) 2vw, 1vw 2vw;
  }

  .risk-item>img {
    width: 37.32vw;
  }

  .risk-list>.risk-item:nth-child(3)>img {
    width: 47.32vw;
  }

  .risk-list {
    padding: 23vw 0;
    margin-top: -13vw;
    background-position: 120% 24%, -21% 75%;
  }

  .risk-footer .note-underline-text {
    font-size: var(--font-size-normal-text);
    width: fit-content;
    margin-left: auto;
  }

  .risk-footer .note-underline-text>span.bigger {
    font-size: 5vw;
  }

  .risk-footer>.note-container {
    padding: 5.97vw 6.48vw;
    padding-left: 24vw;
    justify-content: flex-end;
  }

  .risk-footer .note-underline-text {
    font-size: var(--font-size-normal-text);
    padding-bottom: 2vw;
    margin-bottom: 1vw;
  }

  .risk-footer .note-underline-text>span.sp-only {
    display: inline-block;
  }

  .risk-footer .note-underline-text>span.bigger {
    font-size: 5vw;
  }

  .note-container.right .note-image {
    width: 42vw;
    left: -3.5vw;
    bottom: 1vw;
  }

  .risk-header::before,
  .risk-footer::before {
    top: -16%;
    left: -35%;
    width: 170%;
    height: 119%;
    background-image: url(../assets/backgrounds/wavy_background_blue4.png);
    background-size: 160% 100%;
    background-position: 10% 0%;
    transform: rotate(5deg);
  }

  .risk-footer::before {
    transform: rotate(358deg) scale(-1);
    top: 23%;
  }

  .risk-header {
    margin-top: 0;
    padding: 11vw 0 7vw;
  }

  .risk-footer {
    margin-top: -15vw;
  }

  .risk-content {
    padding-top: 10vw;
    margin-top: -7vw;
    padding-bottom: 15vw;
  }

  .confirm-title.diagonal-dashed {
    font-size: var(--font-size-bigger-text);
    text-align: left;
    padding: 0px 5vw 1vw;
  }

  .confirm-title>.circle-text {
    width: 9.5vw;
    text-align: center;
    align-content: center;
  }

  .confirm-title>.circle-text:nth-child(even) {
    margin-left: -2vw;
  }

  .diagonal-dashed::before,
  .diagonal-dashed::after {
    width: 4vw;
    bottom: -3vw;
    top: unset;
  }

  .confirm-header.has-down-arrow {
    padding: 0;
    margin: 2.5vw auto;
  }

  .confirm-header>img {
    top: unset;
    bottom: -2vw;
    transform: unset;
    right: -3vw;
    left: unset;
    width: 45.52vw;
  }

  .confirm-intro-content {
    padding: 6.215vw 4.9vw;
  }

  .confirm-intro-content>p:first-child {
    font-size: var(--font-size-bigger-text);
    width: 100%;
    letter-spacing: 0;
    padding-bottom: 1vw;
    margin-bottom: 1vw;
  }

  .confirm-intro-content>p>span.bigger {
    font-size: 5vw;
  }

  .confirm-intro-content>p:last-child {
    width: 60%;
    margin-top: 1vw;
  }

  .confirm-intro-content>p:nth-child(2) {
    margin-top: 3vw;
    margin-bottom: 1vw;
  }

  .confirm-intro-content .tag {
    margin-right: unset;
    padding: 1.5vw 2vw;
    font-size: var(--font-size-bigger-text);
    letter-spacing: 0px;
    margin: 1vw 0;
  }

  .confirm-intro-content::before {
    display: none;
  }

  .confirm-header::before {
    z-index: 1;
    bottom: 14vw;
    left: unset;
    right: -7vw;
    width: 37vw;
    height: 37vw;
  }

  .confirm-steps-container::before,
  .confirm-steps-container::after {
    content: '';
    top: -18vw;
    width: 172%;
    height: 26vw;
    background-size: 100% auto;
    background-position-x: 34vw;
    transform: scaleX(-1);
  }

  .confirm-steps-container {
    padding: 0px 0 6vw;
    margin: 40vw 0 0vw;
  }

  .confirm-steps-title {
    font-size: var(--font-size-bigger-text);
  }

  .confirm-steps-title>span.bigger,
  .confirm-steps-title>.bigger-for-sp {
    font-size: var(--font-size-title);
  }

  .confirm-steps-title::before,
  .confirm-steps-title::after {
    top: -4vw;
    width: 7vw;
    height: 7vw;
    background-size: 100%;
  }

  .confirm-steps-title::after {
    left: -6vw;
  }

  .confirm-steps-title::before {
    right: -5vw;
    left: unset;
  }

  .water-steps,
  .valve-steps,
  .electric-steps {
    width: 90%;
  }

  .confirm-step-title {
    font-size: var(--font-size-bigger-text);
    height: 10.45vw;
  }

  .confirm-step-title>img {
    max-width: 9.5vw;
    max-height: 7vw;
    margin-left: 1vw;
  }

  .confirm-steps-container::after {
    top: unset;
    bottom: -18vw;
    transform: scale(-1);
  }

  .confirm-warning-title {
    font-size: var(--font-size-bigger-text);
  }

  .confirm-warning-title>span.bigger {
    font-size: 5vw;
  }

  .confirm-warning-list {
    width: 90%;
    width: 90%;
    margin: 4vw auto 0;
  }

  .confirm-warning-item-title {
    font-size: 5vw;
    height: 20vw;
  }

  .confirm-warning-item-title>span.sp-only {
    font-weight: 700;
    display: inline-block;
  }

  .confirm-warning-item-content {
    padding: 5vw 9vw;
  }

  .confirm-warning-item-content>p {
    font-size: var(--font-size-normal-text);
    letter-spacing: 0;
  }

  .confirm-warning-item img {
    width: 39.85vw;
  }

  .confirm-warning-list>.confirm-warning-item:nth-child(even) .confirm-warning-item-content>img {
    margin-top: 0;
  }

  .confirm-warning-container {
    margin-bottom: 25vw;
    padding-bottom: 3vw;
  }

  .confirm-footer .note-underline-text {
    font-size: var(--font-size-bigger-text);
  }

  .confirm-footer .note-underline-text span.bigger {
    font-size: var(--font-size-title);
  }

  .confirm-note-decos {
    display: none;
  }

  .confirm-footer .note-underline-text span.bigger {
    padding: 0;
  }

  .confirm-footer>.note-container {
    padding: 7vw 5.48vw 5.5vw;
  }

  .confirm-footer .note-container.left .note-image {
    right: -3vw;
  }

  .confirm-footer .note-container.left .note-image>img {
    width: 36.34vw;
  }

  .confirm-footer {
    padding: 28vw 0 1vw;
  }

  .confirm-warning-title>img {
    width: 15vw;
  }

  .why-free-inner {
    background-size: 165% 40vw, auto;
    background-image: url(../assets/backgrounds/wavy_background_blue4.png), linear-gradient(180deg, white 40vw, var(--main-background-color) 40vw);
  }

  .diagonal-dashed::before,
  .diagonal-dashed::after {
    width: 6vw;
    bottom: -1vw;
    top: 0vw;
  }

  .diagonal-dashed::before {
    left: -2vw;
  }

  .diagonal-dashed::after {
    right: -2vw;
  }

  .why-free-title.smaller {
    line-height: 1.1;
    padding: 0px 6vw 0;
  }

  .why-free-title.bigger {
    font-size: var(--font-size-bigger-text);
    line-height: 2;
  }

  .why-free-inner .note-container.right::before {
    right: 50%;
    transform: scaleX(-1) translateX(-50%);
  }

  .note-container.no-character {
    padding: 12.45vw 3.1vw 9vw;
  }

  .showroom-title.note-underline-text {
    margin-top: 0;
    padding-bottom: 0;

    background-image: none;
    letter-spacing: -1%;
  }

  .showroom-title.note-underline-text b.tight-spacing {
    margin-left: -2.5%;
  }

  .showroom-title {
    font-size: var(--font-size-bigger-text);
    letter-spacing: 0;
    margin-top: 3.5vw;
  }

  .note-content>.note-underline-auto-text {
    font-size: var(--font-size-normal-text);
    line-height: 2.2;
    text-underline-offset: 2.5vw;
    margin-top: 2vw;
    padding: 0 1vw;
  }

  .note-orange-back-text {
    font-size: var(--font-size-normal-text);
    margin: 0 auto;
    padding: 0;
    align-content: center;
    text-align: center;
    width: 57vw;
    height: 9.5vw;
  }

  .showroom-images {
    margin-top: var(--font-size-bigger-text);
    gap: 0;
  }

  .showroom-images>img {
    width: 30vw;
  }

  .showroom-images>img:nth-child(2) {
    margin: 0 -4vw;
  }

  .body-cta-top,
  .body-cta-bottom {
    padding: 4vw 0;
  }

  .body-cta-top>h1,
  .body-cta-badges,
  .body-cta-bottom-content {
    width: 90%;
    margin: 0 auto;
  }

  .body-cta-top>h1 {
    text-align: left;
  }

  .body-cta-top>h1>span:first-child {
    font-size: var(--font-size-normal-text);
  }

  .body-cta-top>h1>span:nth-child(2) {
    font-size: 5vw;
  }

  .body-cta-top>h1>span:last-child {
    font-size: var(--font-size-bigger-text);
  }

  .body-cta-top>h1>span.bigger {
    margin-left: 0;
    margin-top: 1vw;
    display: inline-block;
    font-size: 7vw;
  }

  .body-cta-top>h1>span.bigger>span {
    margin-right: 0.6vw;
  }

  .top-dots::after {
    top: -0.6vw;
    width: 1.5vw;
    height: 1.5vw;
  }

  .body-cta-badges {
    gap: 1vw;
    margin: 3vw auto 0;
    justify-content: space-between;
  }

  .body-cta-badges>p {
    padding: 1.5vw 3.4vw;
    border-radius: 1.5vw;
    font-size: var(--font-size-normal-text);
  }

  .body-cta-bottom-content {
    flex-direction: column;
    width: 80%;
  }

  .body-cta-bottom-content .cta-button {
    width: 100%;
    justify-content: center;
    height: 15.5vw;
    font-size: 5vw;
  }

  .body-cta-container>img {
    left: unset;
    right: -12vw;
    bottom: unset;
    top: -12vw;
    width: 43vw;
  }

  .body-cta-bottom-content .cta-button.blue>img {
    width: 5.5vw;
  }

  .body-cta-bottom-content .cta-button.line>img {
    width: 7vw;
    height: auto;
    aspect-ratio: 1;
  }

  .maintenance-inner {
    padding: 15vw 0 12.5vw;
  }

  .maintenance-title {
    font-size: var(--font-size-bigger-text);
    letter-spacing: 5%;
    margin: 0 3% 4vw 7%;
  }

  .maintenance-title span.bigger {
    font-size: var(--font-size-title);
    letter-spacing: 5%;
  }

  .maintenance-title:before {
    bottom: unset;
    left: -5.5vw;
    top: -2vw;
    width: 6vw;
    height: 6vw;
  }

  .maintenance-title:after {
    display: none;
  }

  .maintenance-header {
    padding: 4.5vw 2vw 6vw 4vw;
    margin-bottom: 1vw;
  }

  .maintenance-header>p {
    letter-spacing: 5%;
    line-height: 1.8;
  }

  .maintenance-header>p span.biggest {
    font-size: var(--font-size-title);
  }

  .maintenance-header>p span.bigger {
    font-size: var(--font-size-bigger-text);
    padding: 0;
  }

  .maintenance-list {
    padding-top: 20vw;
    gap: 2vw;
  }

  .maintenance-item {
    width: 100%;
  }

  .maintenance-item>img {
    left: 4vw;
    top: -16vw;
    width: 58.5vw;
  }

  .maintenance-item-content,
  .maintenance-list>.maintenance-item:nth-child(even) .maintenance-item-content {
    padding: 32vw 7vw 14vw 8vw;
    background-image: url(../assets/backgrounds/maintenance_back_sp.png);
  }

  .maintenance-item-header {
    gap: 2.5vw;
    margin-bottom: 2vw;
    padding-bottom: 1.5vw;
  }

  .maintenance-number {
    font-size: 5vw;
    width: 12vw;
    min-width: 12vw;
  }

  .maintenance-item-title {
    text-align: left;
    letter-spacing: 0%;
  }

  .maintenance-item-title>span.bigger {
    font-size: 5vw;
  }

  .maintenance-item-text {
    font-size: var(--font-size-normal-text);
    padding-right: 6vw;
    line-height: 1.7;
  }

  .first-maintenance-item .yellow-outline {
    right: 25%;
    width: 11vw;
    top: 7%;
  }

  .first-maintenance-item .orange-filled {
    top: -12%;
    left: 40%;
    width: 29vw;
  }

  .maintenance-list>.maintenance-item:nth-child(even)>img {
    right: 3%;
    top: -10vw;
  }

  .second-maintenance-item .blue-dotted {
    left: 29%;
    top: -6%;
    width: 35vw;
    background-size: 100%;
  }

  .third-maintenance-item {
    margin-top: 5vw;
  }

  .third-maintenance-item .orange-dotted {
    width: 35vw;
    background-size: 100%;
    top: -6vw;
    right: 25%;
  }

  .fourth-maintenance-item {
    margin-top: 6vw;
  }

  .maintenance-list>.maintenance-item.fourth-maintenance-item>img {
    top: -16vw;
    z-index: 2;
  }

  .fourth-maintenance-item .yellow-filled {
    left: 31%;
    top: -8%;
    width: 30vw;
    z-index: 1;
  }

  .fourth-maintenance-item .blue-outline {
    top: -3%;
    left: 24%;
    width: 11vw;
    border-width: 1.5vw;
    z-index: 0;
  }

  .maintenance-footer-absolute .white-stroke-special::before {
    -webkit-text-stroke: 2vw var(--light-sub-color);
  }

  .maintenance-footer-absolute {
    width: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .maintenance-footer-absolute>p {
    justify-content: center;
    font-size: 8vw;
  }

  .maintenance-footer-absolute img {
    width: 13vw;
  }

  .maintenance-footer {
    padding-top: 10vw;
  }

  .maintenance-footer .note-container::before {
    display: none;
  }

  .maintenance-footer>.note-container.left {
    flex-direction: column;
    justify-content: center;
    padding: 7vw 4vw 1vw;
  }

  .maintenance-footer .note-underline-text span.bigger {
    font-size: var(--font-size-bigger-text);
  }

  .maintenance-footer .note-container.left .note-image {
    position: static;
  }

  .maintenance-footer .note-container.left .note-image>img {
    width: 41.34vw;
    margin-top: 2vw;
  }

  .maintenance-footer .note-underline-text>b.sp-only {
    display: inline-block;
  }

  .maintenance-footer .note-underline-text {
    width: fit-content;
    margin: 0 auto 1.5vw;
    letter-spacing: 10%;
    padding-bottom: 1vw;
  }

  .maintenance-footer .highlight.shorter {
    padding: 0;
  }

  .about-title::before,
  .about-title::after {
    background-size: 8vw 11vw;
    width: calc(100% + 22vw);
    height: 12vw;
    top: -20px;
    left: -11vw;
  }

  .about-title {
    font-size: var(--font-size-bigger-text);
  }

  .about-inner {
    padding: 11vw 0 24vw;
  }

  .about-inner>p {
    margin: 5vw 0 10vw;
  }

  .achievement-item {
    width: 100%;
    display: grid;
    grid-template-areas: "image title" "text text";
    grid-template-columns: 50% 50%;
    height: fit-content;
    padding: 7vw 6vw 3vw;
    align-items: center;
    align-content: center;
  }

  .achievement-image {
    grid-area: image;
    margin: 0;
    max-height: 14.8vw;
    max-width: 34vw;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .achievement-image>img {
    height: 100%;
    width: 100%;
    max-height: 14.8vw;
    max-width: 34vw;
    object-fit: scale-down;
    object-position: center;
  }

  .achievement-item>h2 {
    grid-area: title;
    padding: 0;
    margin: 0;
    border: none;
    line-height: 1.2;
    font-size: var(--font-size-bigger-text);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: fit-content;
  }

  .achievement-item>h2>span.comment {
    width: 100%;
  }

  .achievement-item>p {
    grid-area: text;
    font-size: var(--font-size-normal-text);
    height: fit-content;
    font-weight: 500;
    margin-top: 3vw;
    padding-top: 3vw;
    border-top: 2px dashed var(--main-color);
  }

  .voice-title {
    margin-top: 9.8vw;
  }

  .voice-list {
    margin: 26vw auto 0;
    row-gap: 21vw;
  }

  .voice-item {
    width: 100%;
    padding: 0 9.45vw 9vw;
  }

  .voice-item>img {
    width: 33.35vw;
    margin-top: -18.5vw;
    margin-bottom: 2vw;
    border: 2px solid var(--main-color);
    border-radius: 100%;
    background: var(--main-color);
  }

  .voice-item>h3 {
    font-size: var(--font-size-bigger-text);
    line-height: 1.2;
    margin-bottom: 2.5vw;
    padding: 0 0 2.5vw;
  }

  .voice-info {
    font-size: var(--font-size-normal-text);
    margin-top: 0vw;
    margin-bottom: 2.5vw;
  }

  .voice-text {
    font-size: var(--font-size-normal-text);
    font-weight: 500;
    line-height: 1.7;
  }

  .voice-text>span.highlight.shorter {
    font-weight: 500;
    padding: 0;
  }

  .faq-inner {
    padding: 12.5vw 0;
  }

  .faq-title {
    font-size: 5vw;
  }

  .faq-list {
    margin: 5vw auto 0;
    gap: 5vw;
  }

  .faq-item {
    padding-bottom: 5vw;
    gap: 2.5vw;
  }

  .faq-item-question,
  .faq-item-answer {
    gap: 2.5vw;
  }

  .faq-item-header {
    font-size: var(--font-size-bigger-text);
    width: 8.4vw;
    padding-right: 1px;
    min-width: 8.4vw;
  }

  .faq-item-question-text,
  .faq-item-answer-text {
    font-size: var(--font-size-normal-text);
  }

  .staff-message-inner {
    background-position-x: 7%;
    padding: 19.5vw 9% 14vw;
    grid-template-areas: "title" "text" "footer" "image";
    grid-template-columns: 100%;
    gap: 5vw;
    background-size: 216% 54vw;
  }

  .staff-message-title {
    margin-bottom: 15vw;
    font-size: 5vw;
    line-height: 1.7;
    letter-spacing: -5%;
  }

  .staff-message-title>.tablet-only {
    display: none;
  }

  .staff-message-content>p {
    font-size: var(--font-size-normal-text);
    font-weight: 500;
  }

  .staff-message-content>p.staff-message-name {
    margin-top: 0vw;
    font-size: var(--font-size-normal-text);
    font-weight: 500;
  }

  .staff-message-name>span.bigger {
    font-size: 5vw;
    font-weight: 600;
  }

  .staff-message-image {
    margin-top: 3vw;
  }

  .staff-message-image>img {
    width: 100%;
  }

  .staff-message-image .light-blue-filled {
    left: -2vw;
    bottom: 8vw;
    width: 14vw;
  }

  .staff-message-image .blue-filled {
    right: 1vw;
    bottom: 26vw;
    width: 5vw;
  }

  .staff-message-image .blue-dotted {
    width: 29vw;
    background-size: 100%;
    bottom: -7vw;
    right: -1vw;
  }

  .staff-message-image .yellow-dotted {
    width: 35vw;
    background-size: 100%;
    left: -3vw;
    top: -1vw;
  }

  .staff-message-image .blue-outline {
    width: 6vw;
    border-width: 0.8vw;
    bottom: -7vw;
    right: 29vw;
  }

  .contact-inner {
    padding: 12.5vw 0 8.9vw;
  }

  .contact-inner>h1 {
    font-size: 5vw;
    letter-spacing: -5%;
  }

  .contact-badge {
    font-size: var(--font-size-normal-text);
    padding: 1vw 3vw;
    height: 8vw;
    width: fit-content;
  }

  .contact-badge-list {
    gap: 2.5vw;
    margin: 2.5vw 0 5vw;
  }

  .contact-form {
    padding: 5vw 3.25vw;
    border-radius: 5px;
  }

  .contact-form-required-badge {
    width: 9vw;
    height: 5vw;
    margin-left: 1vw;
    padding-bottom: 1px;
  }

  .form-comment>p:first-child {
    font-size: var(--font-size-nav);
  }

  .form-comment>p {
    font-size: var(--font-size-normal-text);
  }

  .contact-inner>.cta-button.line {
    width: 80%;
    height: 15.5vw;
    font-size: 5vw;
  }

  .contact-inner>.cta-button.line>img {
    width: 7vw;
    height: auto;
  }

  .contact-title {
    font-size: 5vw;
  }

  .footer-inner {
    padding: 5vw;
  }

  .footer-logo>img {
    width: 56.75vw;
  }

  .footer-info {
    flex-direction: column;
    gap: 6vw;
  }

  .footer-info>p {
    font-size: var(--font-size-normal-text);
    font-weight: 500;
  }

  .footer-links {
    text-align: center;
    margin-bottom: 1vw;
  }

  .footer-links>a,
  .footer-copyright>p {
    text-align: center;
    font-size: var(--font-size-normal-text);
    font-weight: 500;
  }

  .footer-links>a {
    margin-bottom: 1vw;
  }

  .footer-copyright>p {
    margin-bottom: 15vw;
  }

  .form-errors>ul {
    border-radius: 5px;
    font-size: var(--font-size-normal-text);
    padding: 3vw 5vw;
  }

  .form-errors>ul>li {
    padding: 1vw 0;
  }

  .contact-form-input,
  .contact-form-select,
  .contact-form-textarea {
    padding: 1.5vw 3vw;
  }

  .form-actions {
    flex-direction: column;
  }

  .contact-form-address-postal-label {
    font-size: var(--font-size-nav);
  }

  #inspection-section {
    scroll-margin-top: 13vw;
  }

  #about-section {
    scroll-margin-top: 13vw;
  }

  #faq-section,
  #contact-section {
    scroll-margin-top: 10vw;
  }

  .form-comment>p>b {
    width: 26vw;
  }

  .confirm-step-item>p {
    font-size: var(--font-size-normal-text);
  }
  
  .confirm-step-item>p .tablet-only {
    display: none;
  }

  .confirm-step-item {
    gap: 3.7vw;
  }

  .water-steps .confirm-step-list,
  .valve-steps .confirm-step-list,
  .electric-steps .confirm-step-list {
    padding: 4vw 6vw;
    gap: 5.2vw;
  }

  .confirm-step-list::after {
    left: 20.8vw;
    height: calc(100% - 26vw);
    top: 14vw;
  }

  .valve-steps .confirm-step-list::after,
  .electric-steps .confirm-step-list::after {
    left: 20.8vw;
  }

  .thanks-header-inner .header-logo img {
    width: 40vw;
  }

  .thanks-main {
    width: 100%;
  }

  .confirm-inner {
    padding: 22vw 0px 6vw;
  }

  .confirm-step-item-header>p {
    font-size: var(--font-size-nav);
  }

  .confirm-step-number,
  .valve-steps .confirm-step-number {
    width: 11.2vw;
  }
}