@charset "UTF-8";
html {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  word-break: phrase-all;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

:root {
  --header-h: calc( $navHeight + 40px ); /* ヘッダー高さ */
}

html {
  scroll-behavior: smooth;
}

/* アンカー位置補正 */
[id] {
  scroll-margin-top: var(--header-h);
}

h1 {
  font-weight: 700;
}

h2 {
  font-weight: 700;
}

h3 {
  font-weight: 700;
}

a {
  text-decoration: none;
  color: #000;
  transition: all 0.5s;
}
a:hover {
  text-decoration: none;
}

a[href^=tel],
a[href^=mailto] {
  color: inherit;
  text-decoration: none;
}

p {
  line-height: 1.75;
}

ul {
  padding: 0;
}

li {
  list-style: none;
}

body {
  max-width: 1920px;
  margin: 0 auto;
  word-break: auto-phrase;
}
body canvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -10;
  max-width: 100%;
}

.container {
  max-width: 100%;
  position: relative;
  min-height: 80svh;
  overflow: hidden;
  margin-top: 45px;
}
@media screen and (min-width: 960px) {
  .container {
    margin-top: 72px;
  }
}

.sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media screen and (min-width: 960px) {
  .pc {
    display: block;
  }
}

.sm {
  display: none;
}
@media screen and (max-width: 414px) {
  .sm {
    display: block;
  }
}

.lower-hero {
  position: relative;
  padding: 14rem 0 7rem;
  background: linear-gradient(180deg, #88C5EA 0%, #D9EAF4 80%, #F5FBFF 100%);
  overflow: hidden;
  z-index: 0;
}
.lower-hero__back {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.lower-hero__inner {
  position: relative;
  z-index: 1;
  width: min(80%, 1200px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lower-hero__inner > h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #00273D;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  font-weight: 700;
}
.breadcrumb a {
  color: #00273D;
  text-decoration: none;
}
.breadcrumb span {
  position: relative;
  padding-left: 1rem;
  color: #00273D;
}
.breadcrumb span::before {
  content: ">";
  position: absolute;
  left: 0;
}

@media screen and (max-width: 768px) {
  .lower-hero {
    padding: 10rem 0 5rem;
  }
  .lower-hero__back {
    width: 90%;
    opacity: 0.75;
  }
  .lower-hero__inner {
    width: 88%;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}
.contents__title > p {
  font-size: 18px;
  font-family: "Lexend", sans-serif;
  font-weight: "bold";
}
.contents__title > h2 {
  font-size: 2.5rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .contents__title > p {
    font-size: 14px;
    font-family: "Lexend", sans-serif;
    font-weight: "bold";
  }
  .contents__title > h2 {
    font-size: 1.5rem;
    font-weight: 700;
  }
}

.policy {
  color: #000;
}
.policy__cont {
  margin: 3rem 0;
  background-color: white;
  padding: 5rem 1rem;
  color: #000;
}
.policy__inner {
  width: 95%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .policy__inner {
    width: 80%;
  }
}
.policy__text {
  margin-bottom: 5rem;
}
.policy__title {
  font-size: 1.25rem;
  color: #000;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #000;
  margin: 2rem 0 1rem;
  line-height: 1.5;
}

.fadeUpTrigger {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInTrigger {
  opacity: 0;
}

.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeDownTrigger {
  opacity: 0;
}

.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeLeftTrigger {
  opacity: 0;
}

.fadeLeft {
  animation-name: fadeDownAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* FV */
.fv {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.fv__inner {
  position: relative;
  width: 100%;
}
.fv__img {
  display: block;
  width: 100%;
}
.fv__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fv__title {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.fv__btns {
  position: absolute;
  left: 8%;
  bottom: 13%;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  display: none;
}
@media screen and (min-width: 768px) {
  .fv__btns {
    display: flex;
    left: 7.5%;
    bottom: 30%;
    gap: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .fv__btns {
    left: 50%;
    bottom: 8%;
    transform: translateX(-50%);
    width: 86%;
    flex-direction: column;
    gap: 0.8rem;
  }
}
.fv__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-width: 280px;
  height: 64px;
  padding: 0 1.1rem;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
@media screen and (max-width: 767px) {
  .fv__btn {
    width: 100%;
    max-width: 280px;
    height: 56px;
  }
}
.fv__btn img {
  display: block;
  height: 20px;
  width: auto;
  flex-shrink: 0;
}
.fv__btn::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: auto;
}
.fv__btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
.fv__btn--reserve {
  color: #fff;
  background: linear-gradient(90deg, #ff9b1a 0%, #e60012 100%);
  border: 2px solid #fff;
  box-shadow: 0 4px 0 rgba(171, 0, 0, 0.45);
}
.fv__btn--download {
  color: #f15a24;
  background: #fff;
  border: 2px solid #f15a24;
  box-shadow: 0 4px 0 rgba(241, 90, 36, 0.25);
}
.fv__results {
  width: min(92%, 760px);
  margin: 2rem auto;
  padding: 1.2rem 0 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 1.2rem;
}
.fv__results img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .fv__results {
    width: 88%;
    padding: 1rem 0 1.2rem;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 1rem auto;
  }
  .fv__results img {
    max-width: 260px;
    margin: 0 auto;
  }
}

.logo-slider {
  width: 100%;
  padding: 2rem 0;
  background: #fff;
  overflow: hidden;
}
.logo-slider__row {
  width: 100%;
  overflow: hidden;
}
.logo-slider__row + .logo-slider__row {
  margin-top: 1.2rem;
}
.logo-slider__row--left .logo-slider__track {
  animation: logoSlideLeft 60s linear infinite;
}
.logo-slider__row--right .logo-slider__track {
  animation: logoSlideRight 60s linear infinite;
}
.logo-slider__track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
}
.logo-slider img {
  display: block;
  width: auto;
  height: 56px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .logo-slider img {
    height: 42px;
  }
}

@keyframes logoSlideLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes logoSlideRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
.about {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 0;
  background: #fff;
}
.about::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
  width: 100%;
  height: 18%;
  background: #fff1e7;
  display: none;
}
@media screen and (min-width: 768px) {
  .about::after {
    display: block;
  }
}
.about__inner {
  position: relative;
  z-index: 1;
  width: min(88%, 1200px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: end;
  min-height: 430px;
}
@media screen and (max-width: 767px) {
  .about__inner {
    width: 90%;
    display: block;
    min-height: auto;
  }
}
.about__content {
  position: relative;
  z-index: 3;
  padding-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .about__content {
    padding-bottom: 2rem;
  }
}
.about__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}
.about__label img {
  width: 160px;
  height: auto;
}
.about__label span {
  margin-top: 1rem;
  color: #222;
  font-size: 14px;
  font-weight: 700;
}
.about__title {
  margin: 0 0 2rem;
  color: #111;
  font-size: clamp(1.45rem, 2.6vw, 1.75rem);
  font-weight: 900;
  line-height: 1.75;
  letter-spacing: 0.02em;
}
.about__title span {
  color: #ff6b1a;
}
.about__text {
  margin: 0;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  line-height: 2;
}
.about__text + .about__text {
  margin-top: 1.6rem;
}
.about__visual {
  position: relative;
  min-height: 430px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .about__visual {
    min-height: 300px;
    margin-top: 1rem;
  }
}
.about__building {
  position: absolute;
  bottom: 0;
  z-index: 1;
  display: block;
  height: auto;
  pointer-events: none;
}
.about__building--left {
  left: -100%;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .about__building--left {
    left: 9%;
    width: 100%;
  }
}
.about__building--right {
  right: -8%;
  width: 82%;
}
@media screen and (max-width: 767px) {
  .about__building--right {
    right: 0%;
    width: 100%;
  }
}
.about__pins {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.about__pin {
  position: absolute;
  display: block;
  width: clamp(82px, 9vw, 140px);
  height: auto;
  opacity: 0;
  transform: translateY(40px) scale(0.85);
  transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}
.about__pin--01 {
  top: 9%;
  left: 24%;
  transition-delay: 0.05s;
}
.about__pin--02 {
  top: 23%;
  left: 48%;
  transition-delay: 0.18s;
}
.about__pin--03 {
  top: 10%;
  right: 8%;
  transition-delay: 0.31s;
}
@media screen and (max-width: 767px) {
  .about__pin {
    width: 82px;
  }
  .about__pin--01 {
    top: 10%;
    left: 0%;
  }
  .about__pin--02 {
    top: 23%;
    left: 30%;
  }
  .about__pin--03 {
    top: 8%;
    right: 15%;
  }
}
.about.is-active .about__pin {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reason {
  position: relative;
  overflow: hidden;
  padding: 8rem 0 6rem;
  margin-bottom: 5rem;
  background: #fff1e7;
}
.reason::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 3rem;
  width: 1800px;
  height: 2200px;
  background: #fff;
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: 0;
}
.reason__inner {
  position: relative;
  z-index: 1;
  width: min(86%, 980px);
  margin: 0 auto;
}
.reason__heading {
  text-align: center;
  margin-bottom: 3rem;
}
.reason__heading span {
  display: block;
  color: #ff6b1a;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
.reason__heading h2 {
  margin: 0.3rem 0 0;
  color: #111;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 900;
  line-height: 1.5;
}
.reason__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 4.5rem;
       column-gap: 4.5rem;
  row-gap: 3.8rem;
}
@media screen and (max-width: 767px) {
  .reason__list {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.reason__item {
  text-align: center;
}
.reason__point {
  margin-bottom: 0.6rem;
  color: #ff5a1f;
  line-height: 1;
}
.reason__point span {
  display: block;
  font-size: 12px;
  font-weight: 700;
}
.reason__point strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 28px;
  font-weight: 900;
}
.reason__item h3 {
  min-height: 3.4em;
  margin: 0 0 1.2rem;
  color: #ff5a1f;
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  font-weight: 900;
  line-height: 1.7;
}
.reason__item h3 > span {
  color: #000;
}
.reason__img {
  width: 100%;
  margin-bottom: 1.4rem;
}
.reason__img img {
  display: block;
  width: auto;
  margin: 0 auto;
  height: 200px;
  border-radius: 999px;
  filter: drop-shadow(18px 18px 16px rgba(255, 112, 31, 0.44));
}
.reason__item p {
  margin: 0;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  line-height: 2;
  text-align: left;
}

.download-cta {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 2.2rem 0 0;
  background: linear-gradient(90deg, #ff7a1a 0%, #ff981f 100%);
  overflow: visible;
}
.download-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.18) 0 90px, transparent 92px), radial-gradient(circle at 85% 40%, rgba(255, 255, 255, 0.12) 0 140px, transparent 142px);
  pointer-events: none;
}
.download-cta__inner {
  position: relative;
  z-index: 1;
  width: min(90%, 1100px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  align-items: center;
  gap: 2rem;
}
@media screen and (min-width: 960px) {
  .download-cta__inner {
    grid-template-columns: 1fr 420px;
  }
}
.download-cta__content {
  color: #fff;
}
.download-cta__label {
  margin: 0 0 0.4rem;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}
.download-cta__title {
  margin: 0 0 1.4rem;
  color: #fff;
  font-size: clamp(1.25rem, 2vw, 2.25rem);
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: 0.03em;
}
.download-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 270px;
  height: 50px;
  padding: 0 1.2rem;
  margin-bottom: 2rem;
  color: #ff6b1a;
  background: #fff;
  border: 2px solid #ff6b1a;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 4px 0 rgba(196, 72, 0, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}
.download-cta__btn img {
  display: block;
  width: auto;
  height: 18px;
  flex-shrink: 0;
}
.download-cta__btn::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}
.download-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 rgba(196, 72, 0, 0.22);
  opacity: 0.95;
}
.download-cta__img {
  position: relative;
  height: 100%;
}
.download-cta__img img {
  position: relative;
  width: 400px;
  max-width: none;
  height: auto;
}
@media screen and (min-width: 960px) {
  .download-cta__img img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 560px;
  }
}
.download-cta__img img {
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.18));
}
@media screen and (max-width: 767px) {
  .download-cta {
    padding: 2.4rem 0 0;
  }
  .download-cta__inner {
    width: 88%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .download-cta__title {
    font-size: 1.45rem;
  }
  .download-cta__btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .download-cta__img {
    justify-content: center;
  }
  .download-cta__img img {
    max-width: 300px;
  }
}

.benefit {
  padding: 4rem 0;
}
@media screen and (min-width: 1280px) {
  .benefit {
    padding: 8rem 0;
  }
}
.benefit__inner {
  width: min(90%, 1100px);
  margin: 0 auto;
}
.benefit__heading {
  text-align: center;
  margin-bottom: 4rem;
}
.benefit__heading span {
  display: block;
  color: #f36c32;
  font-size: 1rem;
  font-weight: 700;
}
.benefit__heading h2 {
  margin-top: 0.5rem;
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 900;
}
.benefit__list {
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}
@media screen and (min-width: 1280px) {
  .benefit__list {
    margin: 5rem auto 0;
    margin: 0 auto;
  }
}

.benefit-card {
  position: relative;
  z-index: 1;
  width: 100%;
}
@media screen and (min-width: 1280px) {
  .benefit-card {
    width: 95%;
  }
}
.benefit-card:nth-child(2) {
  margin-left: 0;
}
@media screen and (min-width: 1280px) {
  .benefit-card:nth-child(2) {
    margin-left: 5%;
  }
}
.benefit-card__icon {
  position: absolute;
  left: 0;
  right: 0;
  top: 0px;
  margin: 0 auto;
  width: 140px;
  height: 140px;
  transform: translateY(-50%);
  background: #ef6637;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}
@media screen and (min-width: 1280px) {
  .benefit-card__icon {
    right: auto;
    left: -80px;
    top: 50%;
  }
}
.benefit-card__icon img {
  width: 40px;
  margin-bottom: 3.5rem;
}
@media screen and (min-width: 1280px) {
  .benefit-card__icon img {
    margin-bottom: 0;
    margin-right: 2rem;
  }
}
.benefit-card__body {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 20px;
  padding: 1rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 768px) {
  .benefit-card__body {
    padding: 2rem;
  }
}
.benefit-card__head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .benefit-card__head {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
}
.benefit-card__head h3 {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .benefit-card__head h3 {
    font-size: 1.6rem;
  }
}
.benefit-card__tags {
  display: flex;
  gap: 0.5rem;
}
.benefit-card__tags span {
  padding: 0.3rem 0.8rem;
  border: 1px solid #ef6637;
  border-radius: 5px;
  color: #ef6637;
  font-size: 12px;
  font-weight: 700;
}
.benefit-card__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (min-width: 1280px) {
  .benefit-card__content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 1.5rem;
  }
}
.benefit-card__image img {
  width: 100%;
  display: block;
}
.benefit-card__results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.benefit-card__date {
  text-align: right;
  margin-top: 1rem;
  font-size: 12px;
}

.benefit-result {
  background: #FFF5EF;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
}
.benefit-result small {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #EF6637;
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 1rem;
  height: 64px;
}
.benefit-result__keyword {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  padding: 0.15rem 1rem;
  width: -moz-fit-content;
  width: fit-content;
  border: 2px solid #EF6637;
  border-radius: 999px;
  color: #EF6637;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}
.benefit-result__keyword svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.benefit-result strong {
  display: block;
  color: #EF6637;
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 900;
  line-height: 1;
}

@media (max-width: 768px) {
  .benefit-card__icon {
    display: none;
  }
  .benefit-card__content {
    grid-template-columns: 1fr;
  }
  .benefit-card__results {
    grid-template-columns: 1fr;
  }
}
.diagnosis-cta {
  position: relative;
  margin: 6rem 0 0;
  padding: 0;
  overflow: visible;
  background: transparent;
}
.diagnosis-cta__inner {
  position: relative;
  width: 100%;
  min-height: 295px;
  overflow: visible;
  padding-bottom: 3rem;
  background: linear-gradient(90deg, #ff9b25 0%, #ff9825 58%, #ffd800 100%);
}
.diagnosis-cta__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-35deg, rgba(255, 255, 255, 0.13) 0, rgba(255, 255, 255, 0.13) 2px, transparent 2px, transparent 14px);
  opacity: 0.55;
  pointer-events: none;
}
.diagnosis-cta__person {
  position: absolute;
  left: 20%;
  bottom: 0;
  z-index: 2;
  width: 460px;
}
.diagnosis-cta__person img {
  display: block;
  width: 100%;
  height: auto;
}
.diagnosis-cta__bubble {
  position: absolute;
  left: 20%;
  top: -40px;
  z-index: 3;
  width: 210px;
}
.diagnosis-cta__bubble img {
  display: block;
  width: 100%;
  height: auto;
}
.diagnosis-cta__content {
  position: relative;
  z-index: 4;
  width: min(88%, 1100px);
  min-height: 295px;
  margin: 0 auto;
  padding-left: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.diagnosis-cta__label {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  top: 0;
  min-width: 380px;
  padding: 0.55rem 1.5rem;
  background: #fff;
  border: 2px solid #f05a3e;
  border-radius: 999px;
  color: #e60012;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .diagnosis-cta__label {
    top: -2rem;
  }
}
.diagnosis-cta__title {
  margin: 0 0 1.8rem;
  max-width: 400px;
}
.diagnosis-cta__btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 76px;
  padding: 0 1.8rem;
  background: #fff;
  border: 3px solid #ef5d42;
  border-radius: 18px;
  color: #ef5d42;
  text-decoration: none;
  box-shadow: 0 5px 0 rgba(198, 70, 45, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.diagnosis-cta__btn::after {
  content: "";
  width: 13px;
  height: 13px;
  margin-left: auto;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: rotate(45deg);
}
.diagnosis-cta__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 0 rgba(198, 70, 45, 0.28);
}
.diagnosis-cta__btn-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 40px;
  background: #ef5d42;
  color: #fff;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 900;
  flex-shrink: 0;
}
.diagnosis-cta__btn-text {
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  font-weight: 900;
  white-space: nowrap;
}
@media screen and (max-width: 960px) {
  .diagnosis-cta {
    margin: 4rem 0;
  }
  .diagnosis-cta__inner {
    min-height: auto;
    padding: 2rem 0 0;
  }
  .diagnosis-cta__person {
    position: relative;
    left: auto;
    bottom: auto;
    width: 72%;
    max-width: 280px;
    margin: 2rem auto 1rem;
  }
  .diagnosis-cta__bubble {
    left: 6%;
    top: auto;
    bottom: 30%;
    width: 160px;
  }
  .diagnosis-cta__content {
    width: 88%;
    min-height: auto;
    padding-left: 0;
  }
  .diagnosis-cta__label {
    min-width: auto;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 13px;
    line-height: 1.5;
  }
  .diagnosis-cta__title {
    font-size: 2rem;
  }
  .diagnosis-cta__btn {
    height: 64px;
    border-radius: 14px;
  }
  .diagnosis-cta__btn-text {
    font-size: 1.15rem;
    letter-spacing: 0.03em;
  }
}

.worry {
  position: relative;
  background: #fff;
}
.worry__top {
  position: relative;
  padding: 2.5rem 0 4rem;
  background: #fff1e7;
}
.worry__top::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -38px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 32px solid transparent;
  border-right: 32px solid transparent;
  border-top: 40px solid #fff1e7;
}
.worry__inner {
  width: min(88%, 980px);
  margin: 0 auto;
}
.worry__heading {
  text-align: center;
  margin-bottom: 2.8rem;
}
.worry__heading span {
  display: block;
  margin-bottom: 0.4rem;
  color: #ef5d42;
  font-size: 18px;
  font-weight: 900;
}
.worry__heading h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  padding-bottom: 0.8rem;
  color: #111;
  font-size: clamp(1.25rem, 2.8vw, 1.8rem);
  font-weight: 900;
  line-height: 1.5;
}
.worry__heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 3px;
  background: #ef5d42;
}
.worry__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
.worry__cards-img {
  height: 80px;
  width: auto;
  display: block;
  margin: 0 auto 1.2rem;
}
.worry__bottom {
  position: relative;
  z-index: 1;
  padding: 5.5rem 0 0;
}
.worry__bottom::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 10rem;
  bottom: 0;
  left: 0;
  background-color: #FEF1E8;
  z-index: -1;
}
.worry__catch {
  margin: 0 0 1.5rem;
  text-align: center;
  color: #111;
  font-size: clamp(1.5rem, 2.7vw, 2.5rem);
  font-weight: 900;
  line-height: 1.7;
}
.worry__catch img {
  display: inline-block;
  width: 240px;
  height: auto;
  vertical-align: middle;
  margin: 0 0.3rem 0.5rem 0;
}
.worry__catch span {
  color: #ef5d42;
}
.worry__catch > span:first-of-type {
  color: #111;
  vertical-align: baseline;
  font-size: 1.25rem;
}
.worry__visual {
  position: relative;
  width: min(100%, 960px);
  margin: 0 auto;
  padding-bottom: 3rem;
  z-index: 0;
}
.worry__pc {
  position: relative;
  display: block;
  width: 70%;
  max-width: 560px;
  height: auto;
  margin: 0 auto;
  z-index: 2;
}
.worry__circle {
  position: absolute;
  display: block;
  width: 135px;
  height: auto;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.12));
  z-index: 2;
  opacity: 0;
  transform: translateY(40px) scale(0.85);
  transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}
.worry__circle--01 {
  left: 3%;
  top: 30%;
  transition-delay: 0.05s;
}
.worry__circle--02 {
  left: 13%;
  top: 8%;
  transition-delay: 0.15s;
}
.worry__circle--03 {
  left: 13%;
  bottom: 15%;
  transition-delay: 0.25s;
}
.worry__circle--04 {
  right: 13%;
  top: 8%;
  transition-delay: 0.35s;
}
.worry__circle--05 {
  right: 3%;
  top: 30%;
  transition-delay: 0.45s;
}
.worry__circle--06 {
  right: 13%;
  bottom: 15%;
  transition-delay: 0.55s;
}
.worry.is-active .worry__circle {
  opacity: 1;
  transform: translateY(0) scale(1);
}
@media screen and (max-width: 1024px) {
  .worry__bottom {
    padding-top: 4.5rem;
  }
  .worry__catch img {
    width: 150px;
  }
  .worry__visual {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: min(100%, 420px);
    padding-bottom: 3rem;
  }
  .worry__circle {
    position: static;
    width: calc(50% - 0.5rem);
    max-width: 150px;
    transform: translateY(20px) scale(0.9);
  }
  .worry__circle--01 {
    order: 1;
  }
  .worry__circle--02 {
    order: 2;
  }
  .worry__circle--03 {
    order: 3;
  }
  .worry__circle--04 {
    order: 4;
  }
  .worry__circle--05 {
    order: 5;
  }
  .worry__circle--06 {
    order: 6;
  }
  .worry__pc {
    order: 0;
    width: 100%;
    max-width: 330px;
    margin: 1rem auto 0;
  }
}
@media screen and (max-width: 767px) {
  .worry__cards {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .worry__catch {
    font-size: 1.35rem;
  }
  .worry__catch img {
    width: 145px;
  }
  .worry__catch > span:first-of-type {
    font-size: 1rem;
  }
  .worry__visual {
    width: min(100%, 330px);
    gap: 0.75rem;
  }
  .worry__circle {
    width: calc(50% - 0.4rem);
    max-width: 125px;
  }
  .worry__pc {
    max-width: 280px;
  }
}

.worry-card {
  position: relative;
  min-height: 190px;
  padding: 2rem 0.5rem 1.6rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.15);
  text-align: center;
}
.worry-card:nth-child(2) {
  animation-delay: 0.5s;
}
.worry-card:nth-child(3) {
  animation-delay: 1s;
}
.worry-card__check {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 48px;
  height: 48px;
  background: #ef5d42;
  border-radius: 50%;
}
.worry-card__check::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 12px;
  width: 24px;
  height: 16px;
  border-left: 6px solid #fff;
  border-bottom: 6px solid #fff;
  transform: rotate(-45deg);
}
.worry-card h3 {
  margin: 0 0 1rem;
  color: #EB6047;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.5;
}
.worry-card p {
  margin: 0;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.function {
  position: relative;
  z-index: 2;
  padding: 4rem 0 5rem;
  background: #fff1e7;
}
.function__inner {
  width: min(80%, 1280px);
  margin: 0 auto;
}
.function__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 2.5rem;
}
@media screen and (max-width: 1280px) {
  .function__inner {
    width: min(90%, 1280px);
    margin: 0 auto;
  }
}
@media screen and (max-width: 1024px) {
  .function {
    margin-top: -1.5rem;
    padding: 3rem 0 4rem;
  }
  .function__list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.function-card {
  position: relative;
  background: #fff;
  border: 2px solid #f05a3e;
  padding: 2.2rem 1.5rem 2rem;
}
.function-card__num {
  position: absolute;
  top: -14px;
  left: -2px;
  min-width: 96px;
  margin: 0;
  padding: 0.5rem 1rem;
  color: #fff;
  background: linear-gradient(90deg, #ff6b1a 0%, #e60012 100%);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}
.function-card h3 {
  margin: 0 0 1.3rem;
  color: #000;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
}
.function-card__lead {
  margin: 0 0 1.8rem;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}
.function-card__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem 1.4rem;
}
.function-card__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 1rem;
}
.function-card__item img {
  display: block;
  width: 120px;
  height: auto;
  border-radius: 50%;
}
.function-card__item span {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 640px) {
  .function-card {
    padding: 2rem 1.2rem 1.6rem;
  }
  .function-card__items {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .function-card__item {
    grid-template-columns: 72px 1fr;
  }
  .function-card__item img {
    width: 72px;
  }
}

.price {
  padding: 6rem 0;
  background: #fff;
}
.price__inner {
  width: min(90%, 1100px);
  margin: 0 auto;
}
.price__heading {
  text-align: center;
  margin-bottom: 3rem;
}
.price__heading span {
  display: block;
  color: #ef5d42;
  font-size: 14px;
  font-weight: 900;
}
.price__heading h2 {
  margin: 0.5rem 0 1rem;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900;
}
.price__heading p {
  color: #ef5d42;
  font-size: clamp(1.1rem, 2vw, 1.8rem);
  font-weight: 900;
}
.price__table-wrap {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 3rem;
}
.price__table-img {
  display: block;
  width: 100%;
  height: auto;
}
.price__campaign-wrap {
  width: 100%;
}
.price__campaign-img {
  display: none;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .price__campaign-img {
    display: block;
  }
}
.price__campaign-img-sp {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .price__campaign-img-sp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .price__table-img {
    width: 900px;
    max-width: none;
  }
  .price__campaign-img {
    width: 100%;
  }
}
.triple-cta {
  position: relative;
  overflow: hidden;
  padding: 3rem 0;
  background: linear-gradient(135deg, #ff6b1a 0%, #ff9b25 55%, #ffb63a 100%);
}
.triple-cta-back {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.triple-cta-back-bt {
  display: none;
}
@media screen and (min-width: 768px) {
  .triple-cta-back-bt {
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.triple-cta-back-bt-sp {
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .triple-cta-back-bt-sp {
    display: none;
  }
}
.triple-cta__inner {
  position: relative;
  z-index: 1;
  width: min(80%, 1280px);
  margin: 0 auto;
}
.triple-cta__title {
  margin: 0 0 3rem;
  color: #fff;
  font-size: clamp(1.8rem, 3.2vw, 2.25rem);
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
  text-shadow: 0 3px 0 rgba(200, 80, 0, 0.25);
}
.triple-cta__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.triple-cta__card {
  min-height: 220px;
  padding: 2.2rem 1.8rem 1.6rem;
  background: rgba(255, 255, 255, 0.92);
  border: 2px solid #f05a24;
  border-radius: 10px;
  box-shadow: 0 5px 0 rgba(179, 72, 0, 0.22);
  text-align: center;
}
.triple-cta__card h3 {
  margin: 0 0 1.4rem;
  color: #e94f12;
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-weight: 900;
  line-height: 1.4;
}
.triple-cta__card p {
  margin: 0 0 1.8rem;
  color: #111;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
}
.triple-cta__card a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  max-width: 270px;
  height: 50px;
  margin: 0 auto;
  padding: 0 1.1rem;
  color: #e94f12;
  background: #fff;
  border: 2px solid #e94f12;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  line-height: 1;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.triple-cta__card a img {
  width: auto;
  height: 18px;
  flex-shrink: 0;
}
.triple-cta__card a::after {
  content: "";
  width: 9px;
  height: 9px;
  margin-left: auto;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}
.triple-cta__card a:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
.triple-cta__card--main {
  background: linear-gradient(135deg, #ff8d22 0%, #e60012 100%);
  border-color: #fff;
  box-shadow: 0 5px 0 rgba(160, 0, 0, 0.28);
}
.triple-cta__card--main h3,
.triple-cta__card--main p {
  color: #fff;
}
.triple-cta__card--main a {
  color: #e60012;
  background: #fff;
  border-color: #fff;
}
.triple-cta__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 28px;
  color: #e60012;
  background: #fff;
  border: 2px solid #e60012;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  flex-shrink: 0;
}
@media screen and (max-width: 960px) {
  .triple-cta {
    padding: 3.5rem 0;
  }
  .triple-cta__title {
    margin-bottom: 2rem;
    font-size: 1.25rem;
  }
  .triple-cta__cards {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
  .triple-cta__card {
    min-height: auto;
    padding: 1.8rem 1.2rem;
  }
  .triple-cta__card p {
    font-size: 14px;
  }
  .triple-cta__card a {
    max-width: 300px;
  }
}

.support {
  padding: 6rem 0;
  background: #fff;
}
.support__inner {
  width: min(86%, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 32% 1fr;
  align-items: center;
  gap: 4rem;
}
.support__en {
  margin: 0 0 1rem;
  color: #ff7a1a;
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 900;
  line-height: 1;
}
.support__heading h2 {
  margin: 0;
  color: #000;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 900;
  line-height: 1.7;
}
.support__list {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.support__item {
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: center;
  gap: 2rem;
}
.support__item:nth-child(2) {
  margin-left: 9rem;
  animation-delay: 0.5s;
}
.support__img {
  position: relative;
}
.support__img span {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}
.support__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.support__text h3 {
  margin: 0 0 1rem;
  color: #ef5d42;
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  font-weight: 900;
  line-height: 1.6;
}
.support__text p {
  margin: 0;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 960px) {
  .support {
    padding: 4rem 0;
  }
  .support__inner {
    width: 88%;
    display: block;
  }
  .support__heading {
    margin-bottom: 2rem;
  }
  .support__en {
    font-size: 3.5rem;
  }
  .support__item {
    display: block;
  }
  .support__item:nth-child(2) {
    margin-left: 0;
  }
  .support__img {
    margin-bottom: 1rem;
  }
  .support__img img {
    height: auto;
  }
}

.voice {
  padding: 6rem 0;
  background: #fff1e7;
}
.voice__inner {
  width: min(88%, 1200px);
  margin: 0 auto;
}
.voice__heading {
  text-align: center;
  margin-bottom: 3rem;
}
.voice__heading h2 {
  margin: 0;
  color: #e94f12;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 900;
  line-height: 1.5;
}
.voice__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 960px) {
  .voice__list {
    grid-template-columns: 1fr;
  }
}

.voice-card {
  background: #fff;
  border: 1px solid #f05a3e;
  padding: 1.5rem;
}
.voice-card:nth-child(2) {
  animation-delay: 0.5s;
}
.voice-card:nth-child(3) {
  animation-delay: 1s;
}
.voice-card__head {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.voice-card__avatar {
  flex-shrink: 0;
}
.voice-card__avatar img {
  display: block;
  width: 60px;
  height: 60px;
}
.voice-card__info {
  flex: 1;
}
.voice-card__row {
  display: flex;
  align-items: center;
  padding: 0.35rem 0;
  border-bottom: 1px solid #f3d7cc;
}
.voice-card__label {
  width: 45px;
  color: #f05a3e;
  font-size: 12px;
  font-weight: 700;
}
.voice-card__value {
  color: #000;
  font-size: 15px;
  font-weight: 700;
}
.voice-card__star {
  margin-top: 0.6rem;
  color: #f5b335;
  font-size: 14px;
  letter-spacing: 0.15em;
}
.voice-card__body {
  color: #000;
  font-weight: 500;
}

.blog-section {
  padding: 6rem 0 7rem;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.blog-section::before, .blog-section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 56px;
  z-index: 0;
  pointer-events: none;
}
.blog-section::before {
  left: 0;
  background: linear-gradient(180deg, #F2692A 0%, #FECA77 100%);
}
.blog-section::after {
  right: 0;
  background: linear-gradient(180deg, #F2692A 0%, #FECA77 100%);
}
.blog-section__inner {
  width: min(86%, 1100px);
  margin: 0 auto;
}
.blog-section__heading {
  margin-bottom: 2.5rem;
  text-align: center;
}
.blog-section__heading span {
  display: block;
  color: #ff6b1a;
  font-size: 13px;
  font-weight: 900;
}
.blog-section__heading h2 {
  margin: 0.4rem 0 0;
  color: #000;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
}
.blog-section__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2rem;
}
.blog-section__btn-wrap {
  margin-top: 3rem;
  text-align: center;
}
.blog-section__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  padding: 1.5rem 2rem;
  color: #e94f12;
  background: #fff;
  border: 2px solid #e94f12;
  border-radius: 999px;
  font-size: 1.25rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 5px 0 rgba(233, 79, 18, 0.2);
}
.blog-section__btn::after {
  content: "";
  width: 9px;
  height: 9px;
  margin-left: 2rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}
@media screen and (max-width: 960px) {
  .blog-section {
    padding: 4rem 0 5rem;
    background: #fff;
    position: relative;
    overflow: hidden;
  }
  .blog-section::before, .blog-section::after {
    display: none;
  }
  .blog-section__inner {
    width: 88%;
  }
  .blog-section__list {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media screen and (max-width: 600px) {
  .blog-section__list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.blog-card a {
  display: block;
  color: #000;
  text-decoration: none;
}
.blog-card__thumb {
  width: 100%;
  aspect-ratio: 16/10;
  margin-bottom: 1rem;
  background: #f4f4f4;
  overflow: hidden;
}
.blog-card__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}
.blog-card__meta time {
  color: #e94f12;
  font-size: 14px;
  font-weight: 700;
}
.blog-card__meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  padding: 0.35rem 0.8rem;
  color: #e94f12;
  border: 1px solid #e94f12;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
.blog-card__title {
  min-height: 3.2em;
  margin: 0;
  padding-bottom: 1rem;
  color: #000;
  border-bottom: 1px solid #ccc;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
}
.blog-card:hover .blog-card__thumb img {
  transform: scale(1.05);
}

.faq {
  padding: 6rem 0;
  background: #fff;
}
.faq__inner {
  width: min(88%, 960px);
  margin: 0 auto;
}
.faq__heading {
  text-align: center;
  margin-bottom: 3rem;
}
.faq__heading span {
  display: block;
  color: #f2692a;
  font-size: 1rem;
  font-weight: 900;
}
.faq__heading h2 {
  margin: 0.4rem 0 0;
  color: #000;
  font-size: clamp(1.8rem, 3vw, 2rem);
  font-weight: 900;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 1.5rem;
}
.faq-item__question {
  width: 100%;
  min-height: 70px;
  padding: 1rem 1.4rem;
  display: grid;
  grid-template-columns: 34px 1fr 24px;
  align-items: center;
  gap: 1rem;
  background: #fff1e7;
  border: none;
  cursor: pointer;
  text-align: left;
}
.faq-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: #e60012;
  color: #fff;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 900;
}
.faq-item__icon--answer {
  background: #fff;
  color: #e60012;
  border: 1px solid #e60012;
  flex-shrink: 0;
}
.faq-item__text {
  color: #000;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.7;
}
.faq-item__toggle {
  position: relative;
  width: 18px;
  height: 18px;
}
.faq-item__toggle::before, .faq-item__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: #e60012;
  transform: translate(-50%, -50%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-item__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.75s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}
.faq-item__answer-inner {
  display: flex;
  gap: 1rem;
  padding: 1.4rem;
}
.faq-item__answer-inner p {
  margin: 0;
  color: #000;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
}
.faq-item.is-open .faq-item__toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.faq-item.is-open .faq-item__answer {
  max-height: 500px;
  opacity: 1;
}

.cta-diagnosis {
  position: relative;
}
.cta-diagnosis__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-diagnosis__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.cta-diagnosis__inner {
  position: relative;
  z-index: 1;
  width: min(90%, 1100px);
  margin: 0 auto;
  padding: 0 0 4rem;
}
.cta-diagnosis__label {
  position: relative;
  top: -1rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 1rem;
  padding: 0.5rem 2rem;
  background: #fff;
  border: 2px solid #ef5d42;
  border-radius: 999px;
  color: #ef5d42;
  font-size: 18px;
  font-weight: 900;
}
.cta-diagnosis__title {
  margin: 0 auto 2rem;
  max-width: 800px;
  width: 100%;
}
.cta-diagnosis__visual {
  position: relative;
  max-width: 760px;
  margin: 0 auto 2rem;
}
.cta-diagnosis__dashboard img {
  display: block;
  width: 100%;
  height: auto;
}
.cta-diagnosis__person {
  position: absolute;
  right: -10rem;
  bottom: 0;
  width: 500px;
}
.cta-diagnosis__person img {
  display: block;
  width: 100%;
}
.cta-diagnosis__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: min(100%, 426px);
  height: 90px;
  padding: 1rem;
  margin: 0 auto;
  background: #fff;
  border: 3px solid #ef5d42;
  border-radius: 20px;
  color: #ef5d42;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 900;
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.12);
}
.cta-diagnosis__btn::after {
  content: "";
  width: 12px;
  height: 12px;
  margin-left: auto;
  margin-right: 1.5rem;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: rotate(45deg);
}
.cta-diagnosis__free {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 36px;
  background: #ef5d42;
  color: #fff;
  border-radius: 999px;
  font-size: 1rem;
}

@media (max-width: 767px) {
  .cta-diagnosis__label {
    font-size: 13px;
  }
  .cta-diagnosis__inner {
    padding: 1.5rem 0 3rem;
  }
  .cta-diagnosis__person {
    width: 280px;
    right: -10px;
  }
  .cta-diagnosis__balloon {
    width: 110px;
    right: 80px;
    top: 30px;
  }
  .cta-diagnosis__btn {
    height: 58px;
    font-size: 1.2rem;
  }
}
/* ===============================
   TOP固定 資料DLフォーム
   =============================== */
.fixed-download-form {
  position: fixed;
  right: 0rem;
  top: 72px;
  z-index: 9998;
  width: 300px;
  height: -moz-fit-content;
  height: fit-content;
  max-height: calc(100vh - 72px);
  background: #545454;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
}
.fixed-download-form.is-hide {
  transform: translateX(calc(100% + 2rem));
}

.fixed-download-form__inner {
  padding: 1.2rem 2rem 2rem;
  max-height: 100vh;
  overflow-y: auto;
  overscroll-behavior: contain;
}

/* スクロールバー調整 */
.fixed-download-form__inner::-webkit-scrollbar {
  width: 6px;
}

.fixed-download-form__inner::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}

.fixed-download-form__inner::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
}

.fixed-download-form__close {
  width: 100%;
  height: 28px;
  padding: 0 0.5rem;
  border: none;
  background: #fff;
  color: #000;
  font-size: 12px;
  text-align: left;
  cursor: pointer;
}

.fixed-form {
  color: #fff;
}
.fixed-form__head {
  text-align: center;
  margin-bottom: 1rem;
}
.fixed-form__head p {
  font-size: 13px;
  line-height: 1.5;
}
.fixed-form__head h2 {
  margin: 0.2rem 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}
.fixed-form__item {
  margin-bottom: 0.8rem;
}
.fixed-form__item label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}
.fixed-form__item label span {
  color: #FFF;
}
.fixed-form__item input[type=text],
.fixed-form__item input[type=email],
.fixed-form__item input[type=tel] {
  width: 100%;
  height: 34px;
  padding: 0.5rem 0.75rem;
  border: none;
  border-radius: 3px;
  background: #fff;
  font-size: 12px;
  color: #000;
  outline: none;
}
.fixed-form__item input::-moz-placeholder {
  color: #bcbcbc;
}
.fixed-form__item input::placeholder {
  color: #bcbcbc;
}
.fixed-form__item--radio {
  margin-top: 1rem;
}
.fixed-form__item--radio .wpcf7-form-control {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.fixed-form__item--radio .wpcf7-list-item {
  margin: 0;
}
.fixed-form__item--radio label {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}
.fixed-form__item--radio input[type=radio] {
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: #e60000;
}
.fixed-form__privacy {
  margin: 1rem 0;
  text-align: center;
}
.fixed-form__privacy .wpcf7-list-item {
  margin: 0;
}
.fixed-form__privacy label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
}
.fixed-form__privacy input[type=checkbox] {
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: #e60000;
}
.fixed-form__privacy a {
  color: #fff;
  text-decoration: underline;
  font-size: 12px;
}
.fixed-form__privacy span {
  color: #FFF;
  font-size: 12px;
}
.fixed-form__submit input[type=submit] {
  width: 100%;
  height: 42px;
  border: none;
  border-radius: 3px;
  background: #e60000;
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.fixed-form__submit input[type=submit]:hover {
  transform: translateY(2px);
  opacity: 0.9;
}
.fixed-form .wpcf7-not-valid-tip {
  margin-top: 0.25rem;
  color: #ffdddd;
  font-size: 10px;
}
.fixed-form .wpcf7-response-output {
  margin: 1rem 0 0 !important;
  padding: 0.5rem !important;
  color: #fff;
  font-size: 11px;
}
.fixed-form .wpcf7-spinner {
  display: block;
  margin: 0.5rem auto 0;
}

@media screen and (max-width: 1024px) {
  .fixed-download-form {
    position: relative;
    top: auto;
    right: auto;
    z-index: 1;
    width: min(90%, 420px);
    max-height: none;
    margin: 2rem auto 4rem;
    transform: none !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  }
  .fixed-download-form__close {
    display: none;
  }
  .fixed-download-form__inner {
    max-height: none;
    overflow: visible;
    padding: 1.5rem 2rem 2rem;
  }
}
@media screen and (max-width: 600px) {
  .fixed-download-form {
    display: none;
  }
  .fixed-download-form__inner {
    padding: 1.25rem 1.5rem 1.75rem;
  }
}
/* ===============================
   SP下部固定CTA
   =============================== */
.sp-bottom-cta {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp-bottom-cta {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 9999;
    width: 100%;
    height: 64px;
    display: flex;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  }
  .sp-bottom-cta__btn {
    position: relative;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
  }
  .sp-bottom-cta__btn::after {
    content: "";
    width: 9px;
    height: 9px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: 0.4rem;
  }
  .sp-bottom-cta__btn--red {
    color: #fff;
    background: linear-gradient(90deg, #F78A29 0%, #E60012 100%);
  }
  .sp-bottom-cta__btn--white {
    color: #FF5A00;
    background: #fff;
    border-top: 1px solid #FF5A00;
  }
  .sp-bottom-cta__btn--white img {
    width: 20px;
    height: auto;
    flex-shrink: 0;
  }
  .sp-bottom-cta__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 22px;
    border-radius: 999px;
    background: #fff;
    color: #FF5A00;
    font-size: 11px;
    font-weight: 900;
  }
  body {
    padding-bottom: 64px;
  }
}
@media screen and (max-width: 380px) {
  .sp-bottom-cta__btn {
    font-size: 12px;
    gap: 0.35rem;
  }
  .sp-bottom-cta__badge {
    width: 34px;
    height: 20px;
    font-size: 10px;
  }
}
.page-fv {
  position: relative;
  overflow: hidden;
}
.page-fv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-fv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.page-fv__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
}
.page-fv__inner {
  position: relative;
  z-index: 1;
  width: min(90%, 1200px);
  margin: 0 auto;
  padding: 6rem 0 5rem;
  text-align: center;
}
.page-fv__sub {
  margin-bottom: 0.8rem;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
}
.page-fv__title {
  display: inline-block;
  margin-bottom: 2rem;
  padding: 0.4em 0.8em;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.4;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
.page-fv__btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.page-fv__breadcrumb {
  margin: 1rem 0 1rem 5%;
  display: flex;
  justify-content: flex-start;
  gap: 0.5rem;
  color: #000;
  font-size: 14px;
  font-weight: 700;
}
.page-fv__breadcrumb a {
  color: #000;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .page-fv__inner {
    padding: 4rem 0 3rem;
  }
  .page-fv__sub {
    font-size: 1rem;
    font-weight: 700;
  }
  .page-fv__title {
    font-size: 1.8rem;
  }
  .page-fv__btns {
    flex-direction: column;
    align-items: center;
  }
  .page-fv__breadcrumb {
    justify-content: center;
    font-size: 12px;
  }
}

.meo-about {
  padding: 6rem 0;
  background: #fff;
}
.meo-about__inner {
  width: min(88%, 1200px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 48%;
  align-items: center;
  gap: 5rem;
}
.meo-about__sub {
  margin-bottom: 0.8rem;
  color: #F2692A;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}
.meo-about__title {
  position: relative;
  display: inline-block;
  margin: 0 0 2rem;
  padding-bottom: 0.8rem;
  color: #000;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1.4;
}
.meo-about__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #F2692A;
}
.meo-about__text {
  color: #000;
  font-size: 1rem;
  font-weight: 700;
  line-height: 2.2;
}
.meo-about__img img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .meo-about {
    padding: 4rem 0;
  }
  .meo-about__inner {
    display: block;
  }
  .meo-about__content {
    margin-bottom: 2rem;
  }
  .meo-about__title {
    font-size: 1.5rem;
  }
  .meo-about__text {
    line-height: 2;
  }
}

.necessity {
  padding: 8rem 0;
  background: #fff;
}
.necessity__inner {
  width: min(90%, 1100px);
  margin: 0 auto;
}
.necessity__heading {
  text-align: center;
  margin-bottom: 4rem;
}
.necessity__heading h2 {
  display: inline-block;
  position: relative;
  color: #EF6637;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  padding-bottom: 1rem;
}
.necessity__heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background: #EF6637;
}
.necessity__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
@media (max-width: 768px) {
  .necessity {
    padding: 5rem 0;
  }
  .necessity__list {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .necessity__heading h2 {
    font-size: 1.5rem;
  }
}

.necessity-card {
  text-align: center;
}
.necessity-card:nth-child(2) {
  animation-delay: 0.5s;
}
.necessity-card__number {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border: 1px solid #EF6637;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #EF6637;
}
.necessity-card__number span {
  font-size: 14px;
  line-height: 1;
}
.necessity-card__number strong {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}
.necessity-card__sub {
  margin-bottom: 0.5rem;
  color: #000;
  font-size: 1.25rem;
  font-weight: 700;
}
.necessity-card h3 {
  margin-bottom: 2rem;
  color: #EF6637;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900;
  line-height: 1.5;
}
.necessity-card__image {
  margin-bottom: 1.5rem;
}
.necessity-card__image img {
  display: block;
  width: 100%;
  border: 1px solid #ddd;
}
.necessity-card__source {
  text-align: left;
  color: #000;
  font-size: 12px;
  line-height: 1.8;
  word-break: break-all;
}
.necessity-card__source > a:hover {
  color: blue;
}

.ranking-system {
  padding: 6rem 0;
  background: #F2692A;
}
.ranking-system__inner {
  width: min(90%, 1200px);
  margin: 0 auto;
}
.ranking-system__heading {
  text-align: center;
  margin-bottom: 4rem;
}
.ranking-system__heading h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
}
.ranking-system__heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
}
.ranking-system__heading p {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}
.ranking-system__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .ranking-system__cards {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.ranking-card {
  background: #fff;
  border-radius: 220px 220px 0 0;
  padding: 2rem 1.5rem;
  text-align: center;
}
.ranking-card:nth-child(2) {
  animation-delay: 0.5s;
}
.ranking-card:nth-child(3) {
  animation-delay: 1s;
}
.ranking-card__en {
  display: block;
  color: #EF6637;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.ranking-card h3 {
  margin-bottom: 1.5rem;
  color: #000;
  font-size: 1.5rem;
  font-weight: 900;
}
.ranking-card__image {
  margin-bottom: 1.5rem;
}
.ranking-card__image img {
  display: block;
  width: auto;
  height: 160px;
  margin: 0 auto;
}
.ranking-card p {
  color: #000;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
  text-align: left;
}

.meo-method {
  padding: 7rem 0;
  background: #fff;
}
.meo-method__inner {
  width: min(80%, 1200px);
  margin: 0 auto;
}
.meo-method__heading {
  text-align: center;
  margin-bottom: 4rem;
}
.meo-method__heading h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
  color: #EF6637;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
}
.meo-method__heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 300px;
  height: 2px;
  background: #EF6637;
}
.meo-method__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
@media (max-width: 768px) {
  .meo-method {
    padding: 5rem 0;
  }
  .meo-method__list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.meo-method-card {
  position: relative;
  min-height: 240px;
  padding: 4rem 2rem 2rem;
  background: #FFF3EB;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.meo-method-card__num {
  position: absolute;
  top: 18px;
  left: 24px;
  min-width: 140px;
  padding: 0.55rem 1rem;
  background: #EF6637;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
.meo-method-card h3 {
  margin-bottom: 1.5rem;
  color: #EF6637;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 900;
  line-height: 1.6;
}
.meo-method-card p {
  margin: 0;
  color: #000;
  font-weight: 700;
  line-height: 2;
}

.meo-worry {
  position: relative;
  padding: 5rem 0 0;
  background: #fff;
}
.meo-worry::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -38px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 34px solid transparent;
  border-right: 34px solid transparent;
  border-top: 40px solid #fff;
}
.meo-worry__inner {
  width: min(90%, 1100px);
  margin: 0 auto;
}
.meo-worry__heading {
  margin: 0 0 3rem;
  color: #000;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
}
.meo-worry__body {
  position: relative;
  min-height: 270px;
  background-color: #FAF8F5;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.meo-worry__list {
  width: 72%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.meo-worry__list li {
  position: relative;
  margin-bottom: 1.7rem;
  padding-left: 4rem;
  padding-bottom: 0.7rem;
  color: #F2692A;
  border-bottom: 3px solid #F2692A;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 900;
  line-height: 1.5;
}
.meo-worry__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 32px;
  height: 32px;
  background: url("../img/icon-worry.png") center/contain no-repeat;
}
.meo-worry__person {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 230px;
}
.meo-worry__person img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .meo-worry {
    padding: 4rem 0 0;
  }
  .meo-worry__heading {
    margin-bottom: 2rem;
    font-size: 1.6rem;
  }
  .meo-worry__body {
    display: block;
    min-height: auto;
    padding-bottom: 2rem;
  }
  .meo-worry__list {
    width: 100%;
  }
  .meo-worry__list li {
    padding-left: 2.5rem;
    font-size: 1.2rem;
  }
  .meo-worry__list li::before {
    width: 24px;
    height: 24px;
  }
  .meo-worry__person {
    position: static;
    width: 180px;
    margin: 1rem 0 0 auto;
  }
}

.meo-problem {
  margin: 2rem auto 0;
}
.meo-problem__top {
  position: relative;
  background: #F4F4F4;
  padding: 3rem 0 0rem;
}
.meo-problem__top::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -38px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 34px solid transparent;
  border-right: 34px solid transparent;
  border-top: 40px solid #F4F4F4;
  z-index: 2;
}
.meo-problem__bottom {
  background: #fff;
  padding: 5rem 0 2rem;
}
.meo-problem__inner {
  width: min(70%, 920px);
  margin: 0 auto;
}
.meo-problem__title {
  text-align: center;
  margin-bottom: 3rem;
  color: #000;
  font-size: clamp(1.5rem, 1.5vw, 2rem);
  font-weight: 900;
}
.meo-problem__content {
  position: relative;
  min-height: 260px;
}
.meo-problem__list {
  width: 72%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.meo-problem__list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.meo-problem__list li:nth-child(2) {
  animation-delay: 0.5s;
}
.meo-problem__list li:nth-child(3) {
  animation-delay: 1s;
}
.meo-problem__list img {
  width: 42px;
  flex-shrink: 0;
}
.meo-problem__list span {
  display: inline-block;
  color: #F2692A;
  font-size: clamp(1.25rem, 1.5vw, 2rem);
  font-weight: 900;
  line-height: 1.5;
  border-bottom: 3px solid #F2692A;
  padding-bottom: 0.2rem;
}
.meo-problem__person {
  position: absolute;
  right: 0;
  bottom: 0px;
  width: 260px;
}
.meo-problem__person img {
  display: block;
  width: 100%;
  height: auto;
}
.meo-problem__fix {
  text-align: center;
}
.meo-problem__fix img {
  width: 360px;
  margin-bottom: 1rem;
}
.meo-problem__fix-cont {
  margin: 0 auto;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}
.meo-problem__fix-cont > p {
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .meo-problem__fix-cont {
    flex-direction: column;
    align-items: center;
  }
}
.meo-problem__label {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  color: #EB6047;
  background: #fff;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 900;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .meo-problem__top {
    padding: 4rem 0 3rem;
  }
  .meo-problem__content {
    min-height: auto;
  }
  .meo-problem__list {
    width: 100%;
  }
  .meo-problem__list span {
    font-size: 1.25rem;
  }
  .meo-problem__list img {
    width: 28px;
  }
  .meo-problem__person {
    position: static;
    width: 180px;
    margin: 2rem 0 0 auto;
  }
  .meo-problem__label {
    font-size: 1rem;
  }
  .meo-problem__fix img {
    width: 180px;
  }
  .meo-problem__fix p {
    font-size: 1.8rem;
  }
}

.solution {
  position: relative;
  padding: 0 0 6rem;
  background: #fff;
  margin-bottom: 3rem;
}
.solution__inner {
  width: min(80%, 960px);
  margin: 0 auto;
}
.solution__row {
  position: relative;
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: center;
  min-height: 280px;
}
.solution__row::before {
  content: "";
  position: absolute;
  left: -30%;
  margin: 0 auto;
  bottom: -2rem;
  width: 120vw;
  height: 44%;
  background: #fff1e7;
  z-index: 0;
}
.solution__row:not(:last-child) {
  margin-bottom: 4.5rem;
}
.solution__row--reverse {
  grid-template-columns: 52% 48%;
}
.solution__image {
  position: relative;
  z-index: 2;
  margin-top: 8rem;
}
.solution__image img {
  display: block;
  width: 100%;
  height: auto;
}
.solution__image--left {
  transform: translateX(3rem);
}
.solution__image--right {
  transform: translateX(-3rem);
}

.solution-card {
  position: relative;
  z-index: 3;
  min-height: 210px;
  padding: 1rem;
  background: #fff;
  border: 1px solid #EB6047;
}
@media screen and (min-width: 960px) {
  .solution-card {
    padding: 2rem;
  }
}
.solution-card--right {
  transform: translateX(-2rem);
}
.solution-card--left {
  transform: translateX(2rem);
}
.solution-card__num {
  top: 1rem;
  left: 1rem;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F2692A;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}
.solution-card h3 {
  margin: 0 0 1.2rem;
  color: #F2692A;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 900;
  line-height: 1.6;
}
.solution-card p {
  margin: 0;
  color: #000;
  font-size: 13px;
  font-weight: 700;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .solution {
    padding: 4rem 0;
  }
  .solution__inner {
    width: 90%;
  }
  .solution__row, .solution__row--reverse {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }
  .solution__row::before {
    left: -6%;
    right: -6%;
    bottom: 1.5rem;
    height: 45%;
  }
  .solution__row:not(:last-child) {
    margin-bottom: 4rem;
  }
  .solution__row--reverse {
    flex-direction: column-reverse;
  }
  .solution__image {
    width: 90%;
    margin: 0 auto;
  }
  .solution__image--left, .solution__image--right {
    transform: none;
    margin-bottom: -1.5rem;
  }
  .solution-card {
    width: 100%;
    min-height: auto;
    padding: 2rem 1.5rem 2rem;
    transform: none;
  }
  .solution-card--right, .solution-card--left {
    transform: none;
  }
  .solution-card h3 {
    font-size: 1.2rem;
  }
  .solution-card p {
    font-size: 13px;
  }
}
.meo-effect {
  padding: 6rem 0;
  background: #fff1e7;
}
.meo-effect__inner {
  width: min(88%, 900px);
  margin: 0 auto;
}
.meo-effect__heading {
  text-align: center;
  margin-bottom: 3rem;
}
.meo-effect__heading h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  padding-bottom: 0.8rem;
  color: #F2692A;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 900;
  line-height: 1.5;
}
.meo-effect__heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background: #F2692A;
}
.meo-effect__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 3.5rem;
}

.meo-effect-card {
  text-align: center;
}
.meo-effect-card__num {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 0 auto 1.1rem;
  color: #F2692A;
  background: #fff;
  border: 1px solid #F2692A;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}
.meo-effect-card__num::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5.5px;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #fff;
  border-right: 1px solid #F2692A;
  border-bottom: 1px solid #F2692A;
}
.meo-effect-card h3 {
  margin: 0 0 1rem;
  color: #F2692A;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  font-weight: 900;
  line-height: 1.6;
}
.meo-effect-card__img {
  margin-bottom: 1rem;
}
.meo-effect-card__img img {
  display: block;
  width: 100%;
  height: auto;
}
.meo-effect-card p {
  margin: 0;
  color: #000;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.9;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .meo-effect {
    padding: 4rem 0;
  }
  .meo-effect__list {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.review-method {
  padding: 6rem 0;
  background: #fff1e7;
}
.review-method__inner {
  width: min(88%, 900px);
  margin: 0 auto;
}
.review-method__heading {
  text-align: center;
  margin-bottom: 3rem;
}
.review-method__heading h2 {
  position: relative;
  margin: 0 0 2rem;
  color: #F2692A;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1.5;
  padding-bottom: 1rem;
}
.review-method__heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 420px;
  height: 2px;
  background: #F2692A;
}
.review-method__heading p {
  margin: 0;
  color: #000;
  font-weight: 700;
  line-height: 2;
}
.review-method__list {
  background: #fff;
}

.review-method-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2rem;
  padding: 2rem 1.5rem;
  background: #fff;
}
.review-method-card:nth-child(2) {
  animation-delay: 0.5s;
}
.review-method-card:nth-child(3) {
  animation-delay: 1s;
}
.review-method-card + .review-method-card {
  border-top: 1.5rem solid #fff1e7;
}
.review-method-card__img img {
  display: block;
  width: 100%;
  height: auto;
}
.review-method-card__content span {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.6rem 2rem;
  background: #F2692A;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}
.review-method-card__content h3 {
  margin: 0 0 1rem;
  color: #F2692A;
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 900;
  line-height: 1.6;
}
.review-method-card__content p {
  margin: 0;
  color: #000;
  font-weight: 700;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .review-method {
    padding: 4rem 0;
  }
  .review-method__inner {
    width: 90%;
  }
  .review-method__heading p {
    text-align: left;
  }
  .review-method-card {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    padding: 1.5rem;
  }
  .review-method-card__content span {
    margin-bottom: 1rem;
  }
  .review-method-card__content h3 {
    font-size: 1.35rem;
  }
}
.review-cta {
  position: relative;
  background: linear-gradient(90deg, #f57c1f 0%, #ff9b22 100%);
}
.review-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.review-cta {
  overflow: visible;
}
.review-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/cta-bg.png") center center/cover no-repeat;
  opacity: 0.15;
}
.review-cta__inner {
  position: relative;
  width: min(70%, 860px);
  min-height: 210px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.review-cta__content {
  position: relative;
  z-index: 2;
  padding: 3rem 0;
}
.review-cta__label {
  margin: 0 0 0.75rem;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
}
.review-cta__title {
  margin: 0 0 2rem;
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 900;
  line-height: 1.5;
}
.review-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 320px;
  height: 58px;
  font-size: 18px;
  padding: 0 1.5rem;
  background: linear-gradient(90deg, #F78A29 0%, #e60012 100%);
  color: #fff;
  border: 3px solid #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 5px 0 rgba(120, 0, 0, 0.25);
  transition: 0.3s;
}
.review-cta__btn::after {
  content: "";
  width: 10px;
  height: 10px;
  margin-left: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.review-cta__btn:hover {
  transform: translateY(-2px);
}
.review-cta__free {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 24px;
  background: #fff;
  color: #f2692a;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}
.review-cta__person {
  position: absolute;
  right: 3%;
  bottom: 0;
  width: 320px;
  z-index: 3;
}
.review-cta__person img {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 960px) {
  .review-cta__inner {
    width: min(90%, 640px);
    min-height: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 0 0;
    text-align: center;
  }
  .review-cta__content {
    padding: 0;
  }
  .review-cta__label {
    font-size: 1rem;
  }
  .review-cta__title {
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
  }
  .review-cta__btn {
    min-width: auto;
    width: min(100%, 340px);
    height: 56px;
    justify-content: center;
  }
  .review-cta__person {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(80%, 300px);
    margin: 2rem auto 0;
  }
}
@media screen and (max-width: 480px) {
  .review-cta__inner {
    width: 90%;
    padding-top: 2.5rem;
  }
  .review-cta__title {
    font-size: 1.45rem;
  }
  .review-cta__btn {
    width: 100%;
    height: 54px;
    padding: 0 1rem;
  }
  .review-cta__free {
    width: 38px;
    height: 22px;
    font-size: 10px;
  }
  .review-cta__person {
    width: min(90%, 260px);
  }
}
/* ===============================
  投稿一覧
=============================== */
.news-archive {
  position: relative;
  width: 100%;
  padding: 5rem 0;
  background-color: #fff;
}

.news-archive__inner {
  width: min(90%, 960px);
  margin: 0 auto;
}

.news-archive__category {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 3rem;
}

.news-archive__category a {
  position: relative;
  display: block;
  padding: 0 0 0.75rem;
  color: #b5b5b5;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  width: 160px;
}

.news-archive__category a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 4px;
  background-color: #C3C3C3;
}

.news-archive__category a.is-active {
  color: #000;
}

.news-archive__category a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 4px;
  background-color: #ff4b3e;
}

.news-archive__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 1.5rem;
}

.news-archive__item {
  display: block;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #bfbfbf;
  padding-bottom: 1.2rem;
  transition: opacity 0.3s ease;
}

.news-archive__item:hover {
  opacity: 0.7;
}

.news-archive__thumb {
  width: 100%;
  aspect-ratio: 4/2.6;
  background-color: #f3f3f3;
  margin-bottom: 1rem;
  overflow: hidden;
}

.news-archive__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-archive__noimg {
  width: 100%;
  height: 100%;
  background-color: #f3f3f3;
}

.news-archive__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.news-archive__meta time {
  color: #ff4b3e;
  font-size: 16px;
  font-weight: 500;
}

.news-archive__meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  padding: 0.2rem 0.75rem;
  border: 1px solid #ff4b3e;
  border-radius: 999px;
  color: #ff4b3e;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.news-archive__item h2 {
  color: #000;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
}

.news-archive__pagination {
  margin-top: 3rem;
}

.news-archive__pagination .nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.news-archive__pagination .page-numbers {
  color: #b5b5b5;
  font-size: 1.25rem;
  text-decoration: none;
}

.news-archive__pagination .page-numbers.current {
  color: #ff4b3e;
  border-bottom: 1px solid #ff4b3e;
}

.news-archive__pagination .prev,
.news-archive__pagination .next {
  color: #b5b5b5;
}

@media screen and (max-width: 960px) {
  .news-archive {
    padding: 3rem 0;
  }
  .news-archive__category {
    gap: 1.5rem;
    overflow-x: auto;
    white-space: nowrap;
    margin-bottom: 2rem;
  }
  .news-archive__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
  }
}
@media screen and (max-width: 600px) {
  .news-archive__list {
    grid-template-columns: 1fr;
  }
  .news-archive__item h2 {
    font-size: 13px;
  }
}
/* ===============================
   投稿詳細
   =============================== */
.single-news {
  width: 100%;
  padding: 4rem 0 6rem;
  background-color: #fff;
}

.single-news__inner {
  width: min(90%, 780px);
  margin: 0 auto;
}

.single-news__head {
  padding-bottom: 1.25rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #bfbfbf;
}

.single-news__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.single-news__meta time {
  color: #ff4b3e;
  font-size: 14px;
  font-weight: 500;
}

.single-news__meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  padding: 0.25rem 0.8rem;
  border: 1px solid #ff4b3e;
  border-radius: 999px;
  color: #ff4b3e;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.single-news__title {
  color: #000;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.7;
}

.single-news__thumb {
  width: 100%;
  aspect-ratio: 16/8.5;
  margin-bottom: 2.5rem;
  background-color: #f3f3f3;
  overflow: hidden;
}

.single-news__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.single-news__noimg {
  width: 100%;
  height: 100%;
  background-color: #f3f3f3;
}

.single-news__content {
  color: #000;
  font-size: 15px;
  line-height: 2;
  padding-bottom: 2.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #bfbfbf;
}

.single-news__content p {
  margin-bottom: 1.5rem;
}

.single-news__content img {
  max-width: 100%;
  height: auto;
}

.single-news__content h2 {
  margin: 2.5rem 0 1rem;
  font-size: 1.5rem;
  line-height: 1.6;
}

.single-news__content h3 {
  margin: 2rem 0 1rem;
  font-size: 1.25rem;
  line-height: 1.6;
}

.single-news__back {
  display: flex;
  justify-content: center;
}

.single-news__back a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 300px;
  padding: 1.1rem 3rem;
  border: 2px solid #ff4b3e;
  border-radius: 999px;
  color: #ff4b3e;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 4px 4px 0 rgba(255, 75, 62, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.single-news__back a::after {
  content: "›";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  line-height: 1;
}

.single-news__back a:hover {
  transform: translateY(2px);
  box-shadow: 2px 2px 0 rgba(255, 75, 62, 0.25);
}

@media screen and (max-width: 768px) {
  .single-news {
    padding: 3rem 0 4rem;
  }
  .single-news__title {
    font-size: 1.1rem;
  }
  .single-news__thumb {
    aspect-ratio: 4/3;
    margin-bottom: 2rem;
  }
  .single-news__content {
    font-size: 14px;
    line-height: 1.9;
  }
  .single-news__back a {
    min-width: 260px;
    font-size: 14px;
  }
}


.single-news__content {

  h2 {
    position: relative;
    margin: 80px 0 32px;
    padding: 0 0 16px;

    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.5;
    color: #003A5D;

    border-bottom: 3px solid #F26922;

    &::before {
      content: "";
      position: absolute;
      left: 0;
      bottom: -3px;
      width: 120px;
      height: 3px;
      background: #003A5D;
    }
  }

  h3 {
    margin: 56px 0 24px;
    padding-left: 16px;

    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.6;

    color: #003A5D;
    border-left: 6px solid #F26922;
  }

  p {
    margin-bottom: 24px;
    line-height: 2;
  }

  ul,
  ol {
    margin: 24px 0;
    padding-left: 24px;

    li {
      margin-bottom: 10px;
      line-height: 2;
    }
  }
}

@media (max-width:768px){

  .single-news__content{

    h2{
      margin:56px 0 24px;
      font-size:1.5rem;

      &::before{
        width:70px;
      }
    }

    h3{
      margin:40px 0 20px;
      font-size:1.25rem;
      padding-left:12px;
    }

  }

}


.contact-page {
  background: #fff;
  color: #000;
}

.contact {
  padding: 4rem 0 10rem;
}
.contact__inner {
  width: min(90%, 1080px);
  margin: 0 auto;
}
.contact__head {
  margin-bottom: 3rem;
  text-align: center;
}
.contact__head > p {
  margin-bottom: 0.5rem;
  color: #FF4B3E;
  font-size: 1rem;
  font-weight: 700;
}
.contact__head > h2 {
  color: #000;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.4;
  font-weight: 900;
}
.contact__head > span {
  display: block;
  width: 80px;
  height: 3px;
  margin: 1rem auto 1.5rem;
  background: #FF4B3E;
}
.contact__lead p {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.8;
}
.contact__lead p + p {
  margin-top: 0.5rem;
}
.contact__lead em {
  color: #FF4B3E;
  font-style: normal;
  font-weight: 700;
}
.contact__form {
  width: min(100%, 720px);
  margin: 0 auto;
  padding: 3.5rem 2.5rem;
  background: #fff;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.22);
}

/* =====================
Contact Form 7
===================== */
.contact-form__item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2rem;
  align-items: center;
  padding: 1.4rem 0;
  border-bottom: 1px solid #d7d7d7;
}
.contact-form__label {
  color: #000;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.7;
}
.contact-form__label span {
  margin-left: 0.5rem;
  color: #FF4B3E;
}
.contact-form__field {
  width: 100%;
}
.contact-form__field input[type=text],
.contact-form__field input[type=email],
.contact-form__field input[type=tel],
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  height: 42px;
  padding: 0.75rem 1rem;
  border: 1px solid #d7d7d7;
  border-radius: 3px;
  background: #fff;
  color: #000;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
}
.contact-form__field textarea {
  height: auto;
  min-height: 160px;
  resize: vertical;
}
.contact-form__field input::-moz-placeholder, .contact-form__field textarea::-moz-placeholder {
  color: #cfcfcf;
}
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: #cfcfcf;
}
.contact-form__field .wpcf7-list-item {
  display: block;
  margin: 0 0 1rem 0;
}
.contact-form__field .wpcf7-list-item:last-child {
  margin-bottom: 0;
}
.contact-form__field label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
}
.contact-form__field input[type=radio] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #FF5A45;
  flex-shrink: 0;
}
.contact-form__field--inline .wpcf7-form-control {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.contact-form__field--inline .wpcf7-list-item {
  margin: 0;
}
.contact-form__privacy {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
}
.contact-form__privacy .wpcf7-list-item {
  margin: 0;
}
.contact-form__privacy label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}
.contact-form__privacy input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: #FF5A45;
  flex-shrink: 0;
}
.contact-form__privacy a {
  color: #000;
  text-decoration: underline;
}
.contact-form__submit {
  margin-top: 2.5rem;
  text-align: center;
}
.contact-form__submit input[type=submit] {
  width: min(100%, 240px);
  height: 64px;
  border: 2px solid #FF4B3E;
  border-radius: 8px;
  background: #fff;
  color: #FF4B3E;
  font-size: 1.4rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.contact-form__submit input[type=submit]:hover {
  transform: translateY(2px);
  background: #FF4B3E;
  color: #fff;
}

/* CF7調整 */
.wpcf7-list-item-label {
  color: #000;
}

.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.wpcf7-not-valid-tip {
  margin-top: 0.5rem;
  color: #dc3232;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.5;
}

.wpcf7-response-output {
  margin: 2rem 0 0 !important;
  padding: 1rem !important;
  border-radius: 4px;
  font-weight: 700;
}

.wpcf7-spinner {
  display: block;
  margin: 1rem auto 0;
}

@media screen and (max-width: 768px) {
  .contact {
    padding: 3rem 0 6rem;
  }
  .contact__form {
    padding: 2rem 1.25rem;
  }
  .contact-form__item {
    display: block;
    padding: 1.25rem 0;
  }
  .contact-form__label {
    margin-bottom: 0.75rem;
  }
  .contact-form__field--inline .wpcf7-form-control {
    gap: 1rem;
  }
  .contact-form__submit input[type=submit] {
    height: 56px;
    font-size: 1.1rem;
  }
}
.privacy-content__table-wrap {
  overflow-x: auto;
  margin: 2rem 0;
}

.privacy-content__table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}
.privacy-content__table th,
.privacy-content__table td {
  padding: 1rem;
  border: 1px solid #ddd;
  vertical-align: top;
  line-height: 1.8;
}
.privacy-content__table th {
  background: #f5f5f5;
  font-weight: 700;
}

.contact-form__progress {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.contact-form__progress span {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: #eee;
  color: #999;
  font-size: 0.85rem;
  font-weight: 900;
}
.contact-form__progress span.is-active {
  background: #FF4B3E;
  color: #fff;
}
.contact-form__step {
  display: none;
}
.contact-form__step.is-active {
  display: block;
}
.contact-form__nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.contact-form__next, .contact-form__prev {
  width: 180px;
  height: 52px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}
.contact-form__next {
  border: none;
  background: #FF4B3E;
  color: #fff;
}
.contact-form__prev {
  border: 2px solid #FF4B3E;
  background: #fff;
  color: #FF4B3E;
}

@media screen and (max-width: 768px) {
  .contact-form__progress {
    gap: 0.5rem;
  }
  .contact-form__progress span {
    font-size: 0.75rem;
    padding: 0.4rem 0.7rem;
  }
  .contact-form__nav {
    flex-direction: column;
    align-items: center;
  }
  .contact-form__next, .contact-form__prev {
    width: 100%;
  }
}
.step-error {
  margin-top: 0.5rem;
  color: #dc3232;
  font-size: 0.8rem;
  font-weight: 700;
}

.contact-form input.is-error,
.contact-form textarea.is-error,
.contact-form select.is-error {
  border-color: #dc3232 !important;
  background: #fff7f7;
}

.wpcf7-list-item-label > p {
  color: #000;
}

/* thanks page */
.thanks-page {
  background: #fff;
  color: #000;
}

.thanks {
  padding: 4rem 0 8rem;
}
.thanks__inner {
  width: min(90%, 900px);
  margin: 0 auto;
}
.thanks__box {
  padding: 4rem 2rem;
  background: #fff;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.18);
  text-align: center;
}
.thanks__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
}
.thanks__icon img {
  width: 100%;
  height: auto;
  display: block;
}
.thanks__en {
  margin-bottom: 0.5rem;
  color: #FF4B3E;
  font-size: 1rem;
  font-weight: 900;
}
.thanks__title {
  position: relative;
  margin: 0 0 2rem;
  padding-bottom: 1rem;
  color: #000;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 900;
  line-height: 1.5;
}
.thanks__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #FF4B3E;
}
.thanks__text {
  margin-bottom: 3rem;
}
.thanks__text p {
  color: #000;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 2;
}
.thanks__text p + p {
  margin-top: 1.5rem;
}
.thanks__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  height: 60px;
  padding: 0 3rem;
  border: 2px solid #FF4B3E;
  border-radius: 8px;
  background: #fff;
  color: #FF4B3E;
  font-size: 1rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.thanks__btn::after {
  content: "";
  width: 9px;
  height: 9px;
  margin-left: 1rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}
.thanks__btn:hover {
  transform: translateY(2px);
  background: #FF4B3E;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .thanks {
    padding: 3rem 0 6rem;
  }
  .thanks__box {
    padding: 3rem 1.25rem;
  }
  .thanks__icon {
    width: 60px;
    height: 60px;
  }
  .thanks__text p {
    font-size: 0.9rem;
    text-align: left;
  }
  .thanks__text p br {
    display: none;
  }
  .thanks__btn {
    width: 100%;
    min-width: auto;
    height: 56px;
    padding: 0 1.5rem;
  }
}
.is-error {
  border-color: #e60012 !important;
  background: #fff6f6 !important;
}

.step-error {
  margin: 0.5rem 0 0;
  color: #e60012;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

.wpcf7-not-valid-tip {
  display: none !important;
}

.wpcf7-response-output {
  display: none;
}

.privacy-page {
  color: #000;
  background: #fff;
}

.privacy-fv {
  position: relative;
  overflow: hidden;
}
.privacy-fv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.privacy-fv__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.privacy-fv__inner {
  position: relative;
  z-index: 1;
  width: min(90%, 1100px);
  margin: 0 auto;
  padding: 7rem 0 6rem;
  text-align: center;
}
.privacy-fv__en {
  margin: 0 0 0.8rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.privacy-fv__title {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1.4;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
}

.privacy-breadcrumb {
  width: min(90%, 1100px);
  margin: 1.5rem auto 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #000;
  font-size: 13px;
  font-weight: 700;
}
.privacy-breadcrumb a {
  color: #F2692A;
  text-decoration: none;
}

.privacy-content {
  padding: 4rem 0 7rem;
}
.privacy-content__inner {
  width: min(90%, 960px);
  margin: 0 auto;
  padding: 3rem;
  background: #fff;
  border: 1px solid rgba(242, 105, 42, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.privacy-content h2 {
  margin: 3rem 0 1.2rem;
  padding: 0.8rem 1rem;
  color: #fff;
  background: #F2692A;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 900;
  line-height: 1.5;
}
.privacy-content h2:first-of-type {
  margin-top: 0;
}
.privacy-content h3 {
  margin: 2rem 0 1rem;
  padding-left: 0.8rem;
  color: #F2692A;
  border-left: 4px solid #F2692A;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.7;
}
.privacy-content p,
.privacy-content li {
  color: #000;
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
}
.privacy-content p {
  margin: 0 0 1rem;
}
.privacy-content ul,
.privacy-content ol {
  margin: 0 0 1.5rem;
  padding-left: 1.5rem;
}
.privacy-content li + li {
  margin-top: 0.5rem;
}
.privacy-content a {
  color: #F2692A;
  text-decoration: underline;
  word-break: break-all;
}
.privacy-content__contact {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: #fff1e7;
  border-left: 4px solid #F2692A;
}
.privacy-content__contact p {
  margin: 0;
}
.privacy-content__contact p + p {
  margin-top: 0.4rem;
}
.privacy-content__date {
  margin-top: 3rem;
  text-align: right;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .privacy-fv__inner {
    padding: 5rem 0 4rem;
  }
  .privacy-content {
    padding: 3rem 0 5rem;
  }
  .privacy-content__inner {
    width: 90%;
    padding: 1.5rem;
  }
  .privacy-content p,
  .privacy-content li {
    font-size: 14px;
  }
  .privacy-content h2 {
    font-size: 1.15rem;
  }
  .privacy-content__date {
    text-align: left;
  }
}
.error {
  margin: 5rem auto;
  width: 80%;
}
.error > h1 {
  font-size: fontSize(32);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .error > h1 {
    font-size: fontSize(64);
  }
}
.error__cont {
  background-color: white;
  padding: 5rem 0;
}
.error__text {
  color: black;
  text-align: center;
  margin-bottom: 2rem;
}
.error__text > a {
  text-decoration: underline;
  color: #000;
  text-align: center;
  margin: 2rem auto;
}
.error__text > p {
  margin-bottom: 2rem;
}
.error__btn {
  position: relative;
  margin: 0 auto;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 45px;
  background: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1176470588);
}
@media screen and (min-width: 960px) {
  .header {
    height: 72px;
  }
}
.header__inner {
  width: min(100%, 1440px);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.header__logo {
  flex-shrink: 0;
}
.header__logo a {
  display: flex;
  align-items: center;
}
.header__logo img {
  display: block;
  width: 120px;
  height: auto;
  margin-left: 5%;
}
@media screen and (min-width: 960px) {
  .header__logo img {
    width: 180px;
    margin-left: 0;
  }
}
.header__nav {
  display: none;
}
@media screen and (min-width: 960px) {
  .header__nav {
    display: block;
    flex: 1;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1rem, 2.2vw, 2.4rem);
  margin: 0 0 0 auto;
  padding: 0;
  list-style: none;
}
.header__nav-list li {
  list-style: none;
}
.header__nav-list a {
  color: #000;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.25s ease;
}
.header__nav-list a:hover {
  color: #ff6b00;
}
.header__cta {
  display: none;
}
@media screen and (min-width: 1280px) {
  .header__cta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-shrink: 0;
  }
}
.header__cta-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: 195px;
  height: 45px;
  padding: 0 1.05rem;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1176470588);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}
.header__cta-btn img {
  display: block;
  width: auto;
  height: 18px;
  flex-shrink: 0;
}
.header__cta-btn::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 0.25rem;
}
.header__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 104, 0, 0.22);
}
.header__cta-btn--orange {
  color: #fff;
  background: linear-gradient(90deg, #F78A29 0%, #DE0000 100%);
  border: 2px solid #fff;
}
.header__cta-btn--outline {
  color: #FF6600;
  background: #fff;
  border: 2px solid #FF6600;
}
.header__cta-btn--outline:hover {
  background: #fff7f0;
}

/* =====================
Hamburger
===================== */
.openbtn {
  position: relative;
  z-index: 10001;
  width: 45px;
  height: 45px;
  padding: 0;
  border: none;
  background: #ff6b00;
  cursor: pointer;
}
@media screen and (min-width: 960px) {
  .openbtn {
    display: none;
  }
}
.openbtn span {
  position: absolute;
  left: 10%;
  width: 80%;
  height: 2px;
  background: #FFF;
  border-radius: 999px;
  transition: 0.35s ease;
}
.openbtn span:nth-of-type(1) {
  top: 11px;
}
.openbtn span:nth-of-type(2) {
  top: 21px;
}
.openbtn span:nth-of-type(3) {
  top: 31px;
}
.openbtn.active span:nth-of-type(1) {
  top: 16px;
  transform: rotate(35deg);
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 16px;
  transform: rotate(-35deg);
}

/* =====================
SP Menu
===================== */
#g-nav {
  position: fixed;
  top: 0;
  right: -120%;
  z-index: 10000;
  width: min(100%, 390px);
  height: 100svh;
  background: #f36b1d;
  transition: right 0.45s ease;
}
@media screen and (min-width: 960px) {
  #g-nav {
    display: none;
  }
}
#g-nav.panelactive {
  right: 0;
}

#g-nav-list {
  height: 100%;
  padding: 3.5rem 0 3rem;
  overflow-y: auto;
}

#g-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#g-nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

#g-nav a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.35rem 2rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
}

/* 白丸矢印 */
#g-nav a::before {
  content: "";
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
}

/* 矢印 */
#g-nav a::after {
  content: "";
  position: absolute;
  left: calc(2rem + 7px);
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 2px solid #f36b1d;
  border-right: 2px solid #f36b1d;
  transform: translateY(-50%) rotate(45deg);
}

/* メニュー背景表示時 */
body.is-menu-open {
  overflow: hidden;
}

.footer {
  background: #fff;
  border-top: 1px solid #e5e5e5;
  border-bottom: 6px solid #000;
}
.footer__inner {
  width: min(92%, 1400px);
  margin: 0 auto;
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
.footer__logo {
  flex-shrink: 0;
}
.footer__logo img {
  display: block;
  width: 180px;
  height: auto;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-end;
  flex: 1;
}
.footer__nav ul {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__nav a {
  color: #000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: opacity 0.3s;
}
.footer__nav a:hover {
  opacity: 0.7;
}
.footer__company {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
}
.footer__company-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.footer__company-links > a {
  color: #000;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}
.footer__company-links > p {
  font-size: 12px;
}
.footer__company small {
  color: #000;
  font-size: 10px;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .footer__inner {
    width: min(90%, 360px);
    padding: 3rem 0 2rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
  .footer__logo img {
    width: 240px;
  }
  .footer__nav {
    width: 100%;
    align-items: center;
    gap: 3rem;
  }
  .footer__nav ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
  }
  .footer__nav a {
    font-size: 13px;
  }
  .footer__company {
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  .footer__company-links {
    flex-direction: row;
    justify-content: center;
    gap: 0.6rem;
  }
  .footer__company-links > p {
    font-size: 11px;
  }
  .footer__company-links > a {
    font-size: 11px;
  }
  .footer__company small {
    font-size: 9px;
  }
}
@media screen and (max-width: 414px) {
  .footer__inner {
    width: min(95%, 360px);
    padding: 2.5rem 0 1.5rem;
  }
  .footer__logo img {
    width: 210px;
  }
  .footer__nav {
    gap: 2.5rem;
  }
  .footer__nav ul {
    gap: 0.75rem;
  }
  .footer__nav > a {
    font-size: 12px;
  }
}/*# sourceMappingURL=style.css.map */