body .shaken {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #ffffff;
  color: #333333;
  margin: 0;
  padding: 0;
  color: var(--text-main);
  line-height: 1.6;
  background-color: var(--text-light);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.shaken .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
.shaken h1, .shaken h2, .shaken h3 {
  line-height: 1.4;
}

.shaken .tab-br {
  display: none;
}
@media (max-width: 768px) {
  .shaken .tab-br {
    display: block;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  object-fit: cover;
  width: 100%;
}

.shaken .footer {
  background-color: var(--text-light);
  padding: 30px 0;
  text-align: center;
}
.shaken .footer .disclaimer {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.8;
}

.shaken .hero {
  position: relative;
  color: #ffffff;
  overflow: hidden;
  height: 100vh;
  max-height: 500px;
  display: flex;
  align-items: center;
}
.shaken .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(../img/shaken-FV.png);
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.shaken .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.shaken .catch-copy {
  font-size: 2rem;
  line-height: 1.8;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background-color: #0d4764;
  width: 100%;
  font-weight: normal;
  padding-block: 30px;
}
@media (max-width: 768px) {
  .shaken .catch-copy {
    font-size: 1.8rem;
  }
}
.shaken .catch-copy .line {
  text-align: center;
}
.shaken .catch-copy .highlight {
  background-color: #0b4b8a;
  color: #ffffff;
  padding: 4px 12px;
  margin-right: 4px;
  display: inline-block;
  line-height: 1.4;
  font-size: 3rem;
  vertical-align: bottom;
  border: 1.5px solid #333;
}
.shaken .catch-copy .plain {
  display: inline-block;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  text-align: center;
}
@media (max-width: 768px) {
  .shaken .catch-copy .plain {
    font-size: clamp(1.5rem, 4vw, 1.8rem);
  }
}

.shaken .car {
  position: relative;
}
.shaken .car::before {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -100px;
  background-image: url(../img/shaken-car.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100px;
  height: 100px;
  z-index: 2;
}
@media (max-width: 768px) {
  .shaken .car::before {
    bottom: -90px;
    right: -10px;
  }
}

.shaken .intro {
  background-color: #fffaf4;
  padding: 60px 0;
  text-align: center;
}

.shaken .section-title {
  font-size: 1.8rem;
  font-weight: normal;
  display: inline-block;
  padding: 10px 40px;
  border: 2px dashed #999;
  border-radius: 10px;
  letter-spacing: 2px;
}
.shaken .section-title-wrapper {
  margin-bottom: 40px;
}
.shaken .section-subtitle {
  margin-top: 15px;
  font-size: 1.1rem;
}

.shaken .problems {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.shaken .problem-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 200px;
}

.shaken .speech-bubble {
  background-color: #cfcccd;
  padding: 15px;
  border-radius: 15px;
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  min-width: 200px;
}
.shaken .speech-bubble::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 10px 10px 0;
  border-style: solid;
  border-color: #cfcccd transparent transparent transparent;
}

.shaken .person-icon {
  font-size: 4rem;
}

.shaken .intro-text {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 30px;
}

.shaken .cta-container {
  margin-top: 20px;
}

.shaken .btn-cta {
  display: inline-block;
  background: linear-gradient(180deg, #ffad2b 0%, #ff9d00 100%);
  color: #ffffff;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 15px 50px;
  border-radius: 40px;
  box-shadow: 0 6px 0 #cc7e00, 0 10px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.2s;
  letter-spacing: 2px;
}
.shaken .btn-cta:hover {
  transform: translateY(2px);
  box-shadow: 0 4px 0 #cc7e00, 0 6px 8px rgba(0, 0, 0, 0.2);
}
.shaken .btn-cta:active {
  transform: translateY(6px);
  box-shadow: 0 0 0 #cc7e00, 0 2px 4px rgba(0, 0, 0, 0.2);
}

.shaken .value-prop {
  background-color: #c4d0dc;
  padding-bottom: 60px;
  position: relative;
}

.shaken .arrow-down {
  width: 0;
  height: 0;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-top: 50px solid #7cb1b1;
  margin: 0 auto 40px;
  position: relative;
}
.shaken .arrow-down span {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  font-size: 1.1rem;
  white-space: nowrap;
}

.shaken .benefit-card {
  background-color: #ffffff;
  border: 2px solid #333;
  border-radius: 15px;
  padding: 40px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 6px 6px 0 0 #0b4b8a, 6px 6px 0 2px #333333;
}

.shaken .benefit-list {
  list-style: none;
  font-size: 1.5rem;
}
.shaken .benefit-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}
.shaken .benefit-list li:last-child {
  margin-bottom: 0;
}
.shaken .benefit-list li {
  position: relative;
}
.shaken .benefit-list li::before {
  content: "";
  flex-shrink: 0;
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 15px;
  margin-top: 0.1em;
  border: 3px solid #0b4b8a;
  border-radius: 4px;
  background-color: #ffffff;
}
.shaken .benefit-list li::after {
  content: "";
  position: absolute;
  left: 0.38rem;
  top: 0.25em;
  width: 0.7rem;
  height: 1rem;
  border-right: 3px solid #ff9d00;
  border-bottom: 3px solid #ff9d00;
  transform: rotate(45deg);
}

.shaken .benefit-text {
  line-height: 1.5;
  border-bottom: 4px dashed #ffad2b;
  padding-bottom: 1px;
}

.shaken .profile {
  background-color: #fcf9f2;
  padding: 60px 0;
  position: relative;
}

.shaken .profile-badge {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  border: 3px solid #0d4764;
  padding: 10px 20px;
  border-radius: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  z-index: 2;
  box-shadow: 4px 4px 0 #0d4764;
  white-space: nowrap;
  min-width: 250px;
}
.shaken .profile-badge .icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  vertical-align: middle;
}

.shaken .profile-card {
  background-color: #e1cba6;
  border: 3px dashed #333333;
  border-radius: 20px;
  padding: 70px 40px 40px;
  max-width: 650px;
  margin: 30px auto 0;
  text-align: center;
}

.shaken .profile-item {
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.shaken .profile-bio {
  margin-top: 30px;
  font-size: 0.9rem;
  line-height: 1.8;
  text-align: left;
  max-width: 250px;
  margin: 0 auto;
}

.shaken .flow {
  background-color: #fcf9f2;
  padding: 60px 0;
}

.shaken .flow-title {
  font-size: 1.5rem;
  font-weight: normal;
  display: inline-block;
  padding: 8px 40px;
  border: 1px solid #333333;
  background-color: #ffffff;
  letter-spacing: 2px;
  position: relative;
  z-index: 0;
  box-shadow: -5px 5px 0 0 #d0eee9, -5px 5px 0 1px #333333;
}
.shaken .flow-title::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: -8px;
  width: 9px;
  transform: rotate(-50deg);
  border-top: 1px solid #333333;
  z-index: 2;
}
.shaken .flow-title-wrapper {
  text-align: center;
  margin: 0 auto 40px auto;
}

.shaken .triangle-wrap {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
.shaken .triangle-wrap::before {
  content: "";
  position: absolute;
  top: 2px;
  left: -6px;
  width: 7px;
  transform: rotate(-35deg);
  border-top: 1px solid #333333;
  z-index: 2;
}
.shaken .triangle-wrap::after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: -1px;
  width: 7px;
  transform: rotate(-60deg);
  border-top: 1px solid #333333;
  z-index: 2;
}

.shaken .steps-container {
  max-width: 500px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
@media (max-width: 425px) {
  .shaken .steps-container {
    font-size: 0.85rem;
  }
}
.shaken .steps-container .step-item {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 10px;
  border-bottom: 2px dashed #48a785;
  position: relative;
}
.shaken .steps-container .step-item + .shaken .steps-container .step-item {
  margin-top: 24px;
}
.shaken .steps-container .step-item::before {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 0;
  width: 40px;
  height: 40px;
  background-color: #48a785;
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
}
@media (max-width: 425px) {
  .shaken .steps-container .step-item::before {
    width: 30px;
    height: 30px;
    font-size: 1.2rem;
  }
}
.shaken .steps-container .step-item--1::before {
  content: "1";
}
.shaken .steps-container .step-item--2::before {
  content: "2";
}
.shaken .steps-container .step-item--3::before {
  content: "3";
}/*# sourceMappingURL=style.css.map */