@charset "UTF-8";
html {
  font-family: "Noto Serif JP", 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: 50svh;
  overflow: hidden;
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .container {
    margin-top: 70px;
  }
}

.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: "Noto Sans JP", 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: "Noto Sans JP", 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 {
  position: relative;
  overflow: hidden;
  min-height: 560px;
}
@media screen and (min-width: 768px) {
  .fv {
    margin-top: 0;
  }
}
@media screen and (min-width: 960px) {
  .fv {
    min-height: 720px;
  }
}
.fv__bg {
  position: relative;
  inset: 0;
}
.fv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.fv__anchor {
  position: relative;
  width: 100%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0 1.5rem;
}
@media screen and (min-width: 960px) {
  .fv__anchor {
    position: absolute;
    bottom: 0;
  }
}
.fv__anchor:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4941176471);
  padding: 1rem;
  z-index: 1;
}
.fv__anchor__inner {
  width: min(960px, 70%);
  margin: 1rem auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  gap: 2rem;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .fv__anchor__inner {
    display: flex;
    justify-content: center;
    gap: 2rem;
  }
}
.fv__anchor-btn {
  position: relative;
  background: #fff;
  border: 2px solid #005FC7;
  width: 160px;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .fv__anchor-btn {
    width: 180px;
    min-height: 78px;
  }
}
.fv__anchor-btn span {
  color: #005FC7;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
}
.fv__anchor-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 12px;
  height: 12px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: translateX(-50%) rotate(45deg);
}
.fv__anchor-btn:hover {
  background: #005FC7;
}
.fv__anchor-btn:hover span {
  color: #fff;
}

.problem {
  position: relative;
  padding: 5rem 0 0;
  overflow: hidden;
}
.problem__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 55%;
  z-index: -1;
}
.problem__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.problem__inner {
  width: min(1200px, 90%);
  margin: 0 auto;
}
.problem__heading {
  text-align: center;
  margin-bottom: 4rem;
}
.problem__sub {
  font-size: 1.5rem;
  font-weight: 700;
}
.problem__title {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 900;
}
.problem__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .problem__cards {
    gap: 2rem;
  }
}
@media screen and (min-width: 960px) {
  .problem__cards {
    grid-template-columns: repeat(4, 1fr);
  }
}
.problem__card {
  text-align: center;
}
@media screen and (min-width: 960px) {
  .problem__card:nth-child(2) {
    animation-delay: 0.5s;
  }
}
@media screen and (min-width: 960px) {
  .problem__card:nth-child(3) {
    animation-delay: 1s;
  }
}
@media screen and (min-width: 960px) {
  .problem__card:nth-child(4) {
    animation-delay: 1.5s;
  }
}
.problem__card-img {
  margin-bottom: 1rem;
}
.problem__card-img img {
  width: 100%;
  display: block;
}
.problem__card-sub {
  font-size: 12px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .problem__card-sub {
    font-size: 14px;
  }
}
.problem__card-title {
  font-size: 1rem;
  font-weight: 800;
}
@media screen and (min-width: 768px) {
  .problem__card-title {
    font-size: 1.25rem;
  }
}
.problem__card-title-en {
  font-size: 12px;
  font-weight: 800;
}
@media screen and (min-width: 768px) {
  .problem__card-title-en {
    font-size: 14px;
  }
}
.problem__line {
  position: absolute;
}
.problem__line img {
  display: block;
  width: 100%;
  height: auto;
}
.problem__line--left {
  left: 10%;
  bottom: 220px;
  width: 150px;
}
.problem__line--right {
  right: 10%;
  bottom: 40px;
  width: 150px;
}
.problem__solution {
  position: relative;
  padding: 2.5rem 0 4rem;
  text-align: center;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .problem__solution {
    padding: 3rem 0 5rem;
  }
}
.problem__arrow {
  margin-bottom: 1.5rem;
}
.problem__arrow img {
  display: block;
  width: 72px;
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .problem__arrow img {
    width: 86px;
  }
}
.problem__solution-box {
  position: relative;
  width: 95%;
  margin: 0 auto;
  padding: 2rem;
}
@media screen and (min-width: 768px) {
  .problem__solution-box {
    width: min(960px, 80%);
    padding: 2rem 5%;
  }
}
.problem__solution-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20%;
  height: 20%;
  border-left: #0768CC 2px solid;
  border-top: #0768CC 2px solid;
}
@media screen and (min-width: 768px) {
  .problem__solution-box::before {
    height: 50%;
  }
}
.problem__solution-box::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 20%;
  height: 20%;
  border-right: #0768CC 2px solid;
  border-bottom: #0768CC 2px solid;
}
@media screen and (min-width: 768px) {
  .problem__solution-box::after {
    height: 50%;
  }
}
.problem__solution-sub {
  margin-bottom: 0.6rem;
  font-size: 1.125rem;
  font-weight: 500;
}
.problem__solution-title {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
  color: #0768CC;
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.problem__solution-text {
  color: #103C70;
  font-size: clamp(0.85rem, 1vw, 1rem);
  font-weight: 700;
  line-height: 2;
}
.problem__solution-text span {
  background: linear-gradient(transparent 58%, #EDF6FF);
  padding: 0 0.15em;
}

.point {
  padding: 3rem 0;
  background: #fff;
}
@media screen and (min-width: 960px) {
  .point {
    padding: 5rem 0 6rem;
  }
}
.point__inner {
  width: min(1200px, 90%);
  margin: 0 auto;
}
.point__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media screen and (min-width: 960px) {
  .point__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
@media screen and (min-width: 960px) {
  .point__list {
    gap: 3rem;
  }
}
.point__item {
  position: relative;
}
@media screen and (min-width: 960px) {
  .point__item:nth-child(2) {
    animation-delay: 0.5s;
  }
}
@media screen and (min-width: 960px) {
  .point__item:nth-child(3) {
    animation-delay: 1s;
  }
}
.point__num {
  position: absolute;
  top: -24px;
  left: -10px;
  z-index: 2;
  width: 58px;
}
@media screen and (min-width: 768px) {
  .point__num {
    top: -30px;
    left: -20px;
    width: 62px;
  }
}
.point__num img {
  display: block;
  width: 100%;
  height: auto;
}
.point__img {
  margin-bottom: 1.2rem;
}
.point__img img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 310/210;
  -o-object-fit: cover;
     object-fit: cover;
}
.point__title {
  margin-bottom: 0.8rem;
  color: #006ed3;
  font-size: 1.5rem;
  font-weight: 900;
  text-align: center;
}
.point__title-en {
  margin-bottom: 0.8rem;
  color: #006ed3;
  font-size: 1.25rem;
  font-weight: 900;
  text-align: center;
}
.point__text {
  font-weight: 600;
}

.feature {
  padding: 4rem 0 5rem;
  background: #fff;
}
@media screen and (min-width: 960px) {
  .feature {
    padding: 5rem 0 6rem;
  }
}
.feature__inner {
  width: min(1080px, 90%);
  margin: 0 auto;
}
.feature__heading {
  position: relative;
  width: 220px;
  margin: 0 auto 2rem;
  padding: 0.9rem 1rem 1rem;
  border: 2px solid #0768CC;
  text-align: center;
  background: #fff;
}
@media screen and (min-width: 960px) {
  .feature__heading {
    margin: 0 auto 4rem;
  }
}
.feature__heading::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -11px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-right: 2px solid #006ed3;
  border-bottom: 2px solid #006ed3;
  transform: translateX(-50%) rotate(45deg);
}
.feature__heading p {
  margin-bottom: 0.25rem;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.4;
}
.feature__heading h2 {
  color: #0768CC;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
}
.feature__item {
  position: relative;
  overflow: visible;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 1.5rem 0;
}
.feature__item--01 {
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (min-width: 960px) {
  .feature__item--01 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    padding: 4rem 0;
  }
}
.feature__item--03 {
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (min-width: 960px) {
  .feature__item--03 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    padding: 4rem 0;
  }
}
@media screen and (min-width: 960px) {
  .feature__item {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    padding: 4rem 0;
  }
}
.feature__item--select {
  display: block;
  padding: 2.5rem 0 4rem;
}
@media screen and (min-width: 768px) {
  .feature__item--select {
    padding: 3rem 0 5rem;
  }
}
.feature__duct {
  position: relative;
  z-index: 1;
  width: min(900px, 92%);
  margin: 0 auto;
  padding: 1rem;
  background: #fff;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.15);
  border: #0768CC 1px solid;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}
@media screen and (min-width: 960px) {
  .feature__duct {
    grid-template-columns: 0.9fr 1.25fr;
    gap: 2rem;
    padding: 2rem 2.4rem;
  }
}
.feature__duct-title {
  text-align: center;
}
.feature__duct-title p {
  margin-bottom: 0.4rem;
  color: #0768CC;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}
.feature__duct-title h3 {
  color: #000;
  font-size: clamp(1.25rem, 2.4vw, 1.5rem);
  font-weight: 700;
  line-height: 1.4;
}
.feature__duct-img-wrap {
  display: flex;
  gap: 1.5rem;
}
.feature__duct-img img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 310/180;
  -o-object-fit: cover;
     object-fit: cover;
}
.feature__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: 0;
}
.feature__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.feature__group {
  position: relative;
  z-index: 1;
}
.feature__group img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .feature__group--left {
    justify-self: end;
  }
}
@media screen and (min-width: 768px) {
  .feature__group--right {
    justify-self: start;
  }
}
.feature__group--full {
  width: min(760px, 100%);
  margin: 0 auto;
}
.feature__content {
  position: relative;
  z-index: 1;
}
.feature__point {
  position: relative;
  margin-bottom: 0.7rem;
  padding-left: 2.2rem;
  color: #0768CC;
  font-size: 1.5rem;
  line-height: 1.4;
}
.feature__point::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1.75rem;
  width: 32px;
  height: 56px;
  background: url("../img/feature-point-decoration.png") center/contain no-repeat;
}
.feature__title {
  margin-bottom: 1rem;
  color: #0768CC;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 700;
}
.feature__title span {
  color: #000;
  font-size: clamp(1rem, 2.2vw, 1.5rem);
}
.feature__text {
  font-size: 14px;
  font-weight: 700;
  line-height: 2;
}

.gallery {
  position: relative;
  overflow: hidden;
  padding: 3rem 0;
}
@media screen and (min-width: 960px) {
  .gallery {
    padding: 6rem 0 7rem;
  }
}
.gallery__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.gallery__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery__inner {
  position: relative;
  z-index: 1;
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .gallery__inner {
    width: min(1024px, 80%);
  }
}
.gallery__slider {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 4rem;
}
@media screen and (min-width: 960px) {
  .gallery__slider {
    grid-template-columns: 1.55fr 0.9fr;
    gap: 1.5rem;
    align-items: start;
  }
}
.gallery-main {
  position: relative;
}
.gallery-main-img {
  display: block;
  width: 100%;
  aspect-ratio: 560/390;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery__dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.75rem;
}
.gallery__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #b8b8b8;
}
.gallery__dot.is-active {
  background: #0768CC;
}
.gallery__label {
  position: absolute;
  top: -2rem;
  left: 0;
  z-index: 10;
  width: 170px;
}
@media screen and (min-width: 768px) {
  .gallery__label {
    width: 185px;
  }
}
.gallery__label img {
  display: block;
  width: 100%;
  height: auto;
}
.gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}
@media screen and (min-width: 768px) {
  .gallery__thumbs {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}
.gallery__thumb {
  padding: 0;
  border: 2px solid transparent;
  background: none;
  cursor: pointer;
  transition: border-color 0.25s ease, opacity 0.25s ease;
}
.gallery__thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 150/100;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery__thumb.is-active {
  border-color: #0768CC;
}
.gallery__thumb:hover {
  opacity: 0.75;
}
.gallery__diagram {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: #fff;
  border: 4px solid #bfe3ff;
  padding: 2rem;
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .gallery__diagram {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 3rem;
    padding: 2.8rem 3rem;
  }
}
.gallery__diagram-img {
  order: 1;
}
@media screen and (min-width: 768px) {
  .gallery__diagram-img {
    order: 2;
  }
}
.gallery__diagram-img img {
  display: block;
  width: 100%;
  height: auto;
}
.gallery__diagram-text {
  order: 2;
}
@media screen and (min-width: 768px) {
  .gallery__diagram-text {
    order: 1;
  }
}
.gallery__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.gallery__list > li {
  margin-bottom: 0.8rem;
  font-size: clamp(0.9rem, 1.1vw, 18px);
  font-weight: 700;
  line-height: 1.8;
  list-style: none;
}
.gallery__list > li:last-child {
  margin-bottom: 0;
}
.gallery__list-main {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.gallery__list-main img {
  width: 18px;
  height: auto;
  flex-shrink: 0;
}
.gallery__list-main span {
  display: block;
}
.gallery__list-child {
  margin: 0.2rem 0 0 calc(18px + 0.6rem);
  padding: 0;
  list-style: none;
}
.gallery__list-child li {
  position: relative;
  display: block;
  margin-bottom: 0;
  padding-left: 1em;
  font-size: 0.9em;
  font-weight: 500;
  line-height: 1.7;
  list-style: none;
}
.gallery__list-child li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.price {
  padding: 3rem 0;
  background: #fff;
}
@media screen and (min-width: 960px) {
  .price {
    padding: 6rem 0 7rem;
  }
}
.price__inner {
  width: min(1024px, 90%);
  margin: 0 auto;
}
.price__heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}
.price__heading h2 {
  display: inline-block;
  color: #0768CC;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  padding: 0.1rem 0.45rem;
}
.price__heading-dot {
  position: relative;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #CFEFFF;
}
.price__heading-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #68C7F2;
  transform: translate(-50%, -50%);
}
.price__lead {
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.8;
}
.price__box {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  align-items: stretch;
  padding: 2rem 1.2rem 1.2rem;
  margin-bottom: 2rem;
  background: #bdeaff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.price__box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 14px;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(90deg, #0075D8 0%, #4DAFE6 100%);
}
@media screen and (min-width: 960px) {
  .price__box {
    grid-template-columns: 1.8fr 1fr 1fr;
    gap: 1rem;
    padding: 2rem 1.2rem 1.2rem;
  }
}
.price__card {
  background: #fff;
  text-align: center;
  padding: 1.5rem 1.6rem 1.3rem;
  min-height: 160px;
}
@media screen and (min-width: 768px) {
  .price__card {
    min-height: 190px;
  }
}
.price__card-en {
  background: #fff;
  text-align: center;
  padding: 1.5rem 1rem 1.3rem;
  min-height: 160px;
}
@media screen and (min-width: 768px) {
  .price__card-en {
    min-height: 190px;
  }
}
.price__card-label {
  display: inline-block;
  min-width: 145px;
  margin-bottom: 1.6rem;
  padding: 0.35rem 1.5rem;
  border-radius: 999px;
  background: #CDEEFF;
  color: #0768CC;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: "bold";
}
.price__card-label-en {
  margin-bottom: 1rem !important;
}
.price__card-body {
  color: #0768CC;
}
.price__card-body strong {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.02em;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .price__card-body strong {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
  }
}
.price__card-body strong > small {
  font-size: 12px;
}
.price__card-body span {
  display: block;
  color: #0768CC;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}
.price__card-body small {
  display: block;
  margin-top: 0.3rem;
  text-align: center;
  color: #0768CC;
  font-size: 10px;
  line-height: 1.4;
}
.price__card-body p {
  margin-top: 1rem;
  color: #000;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
}
.price__card-body-en {
  margin-top: 0 !important;
  color: #000;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
}
.price__card-body--split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}
@media screen and (min-width: 768px) {
  .price__card-body--split {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
}
.price__card-body--split > div {
  text-align: left;
  padding: 0.3rem 1.4rem 0;
}
@media screen and (min-width: 768px) {
  .price__card-body--split > div + div {
    border-left: 1px solid #cfcfcf;
  }
}
.price__card:not(:first-child) .price__card-body {
  padding-top: 0.6rem;
}
.price__card:not(:first-child) .price__card-body span {
  text-align: center;
}
.price__card:not(:first-child) strong {
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .price__card:not(:first-child) strong {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
  }
}
.price__support {
  padding-bottom: 2rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid #cfcfcf;
}
.price__support-heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}
.price__support-heading h3 {
  color: #0768CC;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 700;
  line-height: 1.5;
}
.price__support-title {
  margin-bottom: 0.8rem;
  font-size: 18px;
  font-weight: 900;
}
.price__support-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.9;
}
.price__rental {
  display: flex;
  flex-direction: column;
  width: min(720px, 100%);
  margin: 2rem auto;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 768px) {
  .price__rental {
    flex-direction: row;
    align-items: stretch;
  }
}
.price__rental-info {
  width: 100%;
  padding: 1.8rem 1.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .price__rental-info {
    width: 50%;
  }
}
.price__rental-balloon {
  width: 220px;
  margin: -2rem 0 0 0;
}
.price__rental-balloon img {
  width: 100%;
  display: block;
}
@media screen and (min-width: 960px) {
  .price__rental-balloon {
    margin: -3rem 0 0 -5rem;
  }
}
.price__rental-sub {
  color: #F59A00;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.price__rental-sub > span {
  color: #0768CC;
  font-size: 13px;
}
.price__rental-title {
  color: #0768CC;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: "bold";
  font-size: 1.5rem;
  font-weight: 900;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  margin: 0 auto 1rem;
  background: linear-gradient(transparent 58%, #CDEEFF);
}
.price__rental-price {
  color: #0768CC;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0.4rem;
  margin-bottom: 0.3rem;
}
.price__rental-price span {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.price__rental-price small {
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.price__rental-tax {
  font-size: 14px;
  color: #0768CC;
  font-weight: 500;
}
.price__rental-image {
  position: relative;
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .price__rental-image {
    width: 58%;
  }
}
.price__rental-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.price__rental-image span {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.spec {
  position: relative;
  padding: 5rem 0;
  background-color: #F2F8FF;
}
.spec__inner {
  position: relative;
  z-index: 1;
  width: min(980px, 90%);
  margin: auto;
}
.spec__heading {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.spec__heading h2 {
  color: #0768CC;
  font-size: 1.35rem;
  font-weight: 700;
}
.spec__dot {
  position: relative;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #CFEFFF;
}
.spec__dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #68C7F2;
  transform: translate(-50%, -50%);
}
.spec__wrap {
  display: grid;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .spec__wrap {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
}
.spec__table table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.spec__table th {
  width: 38%;
  background: #BEE8FF;
  color: #006ABD;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  padding: 12px 10px;
  border: 1px solid #E5E5E5;
}
.spec__table td {
  padding: 12px 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: "bold";
  border: 1px solid #E5E5E5;
  font-size: 13px;
  line-height: 1.7;
}
.spec__image img {
  display: block;
  width: 100%;
  height: auto;
  background: #fff;
}

.flow {
  padding: 5rem 0;
  background: #fff;
}
.flow__inner {
  width: min(1024px, 90%);
  margin: auto;
}
.flow__heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.flow__heading h2 {
  color: #0075D8;
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 700;
}
.flow__dot {
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #CFEFFF;
}
.flow__dot::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: #68C7F2;
}
.flow__box {
  padding: 2rem 1rem;
  background: #fff;
  border: 10px solid #8ED5FF;
  -o-border-image: linear-gradient(180deg, #6EC8FF, #006ED3) 1;
     border-image: linear-gradient(180deg, #6EC8FF, #006ED3) 1;
}
@media screen and (min-width: 768px) {
  .flow__box {
    padding: 3.2rem 4rem;
  }
}
.flow__step {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 960px) {
  .flow__step {
    grid-template-columns: 300px 1fr;
  }
}
.flow__left {
  display: flex;
  width: 100%;
  height: 42px;
  border: 1px solid #0768CC;
}
.flow__number {
  width: 52px;
  background: #0768CC;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
}
.flow__title {
  flex: 1;
  display: flex;
  align-items: center;
  padding-left: 1.2rem;
  color: #0768CC;
  font-size: 1.15rem;
  font-weight: 700;
  background: #fff;
}
.flow__right {
  position: relative;
  padding: 0.85rem 1.2rem;
  background: #F4F9FF;
  color: #000;
  font-size: 0.95rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .flow__right {
    margin-left: 38px;
  }
}
@media screen and (min-width: 768px) {
  .flow__right::before {
    content: "";
    position: absolute;
    left: -38px;
    top: 50%;
    width: 38px;
    height: 1px;
    background: #0768CC;
    transform: translateY(-50%);
  }
}
.flow__arrow {
  margin: 0.45rem 0 1.1rem;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 960px) {
  .flow__arrow {
    width: 300px;
  }
}
.flow__arrow img {
  display: inline-block;
  width: 30px;
  height: auto;
}
.flow__bottom {
  margin-top: 2.5rem;
}
.flow__start {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  padding: 1.4rem 1.5rem;
  border: 2px solid #0768CC;
  background: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .flow__start {
    flex-direction: row;
    gap: 2rem;
    padding: 1.3rem 2.5rem;
  }
}
.flow__start h3 {
  margin: 0;
  color: #0768CC;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.flow__start p {
  margin: 0;
  color: #0768CC;
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  font-weight: 700;
  line-height: 1.4;
}

.result {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .result {
    padding: 5rem 0;
  }
}
.result__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.result__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.result__inner {
  position: relative;
  z-index: 1;
  width: min(1080px, 90%);
  margin: 0 auto;
}
.result__box {
  overflow: hidden;
}
.result__title {
  padding: 0.85rem 1rem;
  background: #0768CC;
  color: #fff;
  font-size: clamp(1.5rem, 1.8vw, 1.7rem);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.result__content {
  display: grid;
  padding: 1.8rem 1.4rem 1.5rem;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.9);
}
@media screen and (min-width: 960px) {
  .result__content {
    padding: 2rem 2.5rem 1.6rem;
  }
}
.result__year h3 {
  margin-bottom: 1.2rem;
  color: #0768CC;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.result__year ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.result__year li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.55rem;
  color: #000;
  font-size: clamp(16px, 0.95vw, 18px);
  font-weight: 600;
  line-height: 1.65;
}
.result__year li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  background: #0768CC;
  border-radius: 20px;
}
.result__year--2025 {
  padding-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .result__year--2025 {
    padding: 0 2.5rem 0 0;
  }
}
.result__year--2026 {
  padding-top: 1.5rem;
  border-top: 1px solid #cfcfcf;
}
@media screen and (min-width: 768px) {
  .result__year--2026 {
    padding: 0 0 0 2.5rem;
    border-top: none;
    border-left: 1px solid #cfcfcf;
  }
}
.result__year-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media screen and (min-width: 768px) {
  .result__year-cols {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }
}
.result__bottom {
  display: flex;
  gap: 1.8rem;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
}
@media screen and (min-width: 768px) {
  .result__bottom {
    gap: 0;
    padding: 2.2rem 2rem;
  }
}
.result__bottom-item {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .result__bottom-item {
    position: relative;
  }
}
@media screen and (min-width: 768px) {
  .result__bottom-item:first-child {
    max-width: 350px;
    padding-right: 3rem;
  }
}
@media screen and (min-width: 768px) {
  .result__bottom-item:first-child::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 90px;
    background: #cfcfcf;
    transform: translateY(-50%);
  }
}
@media screen and (min-width: 768px) {
  .result__bottom-item:last-child {
    max-width: 200px;
    padding-left: 3rem;
  }
}
.result__bottom-item img {
  display: block;
  width: min(300px, 100%);
  height: auto;
  margin: 0 auto;
}

.contact-cta {
  position: relative;
  overflow: hidden;
  padding: 3rem 0;
}
@media screen and (min-width: 768px) {
  .contact-cta {
    padding: 4.5rem 0;
  }
}
.contact-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.contact-cta__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contact-cta__inner {
  position: relative;
  z-index: 1;
  width: min(880px, 90%);
  margin: 0 auto;
}
.contact-cta__box {
  padding: 2rem 1rem;
  background: #fff;
  border: 3px solid #0768CC;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact-cta__box {
    padding: 3rem 2rem;
  }
}
.contact-cta__title {
  margin-bottom: 1rem;
  color: #0768CC;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 900;
  line-height: 1.5;
}
.contact-cta__text {
  margin-bottom: 1.8rem;
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 500;
  line-height: 1.9;
}
.contact-cta__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  align-items: center;
  width: min(520px, 100%);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .contact-cta__actions {
    grid-template-columns: 1fr 1fr;
    width: min(620px, 100%);
    gap: 2rem;
  }
}
.contact-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 58px;
  padding: 0.9rem 1.2rem;
  background: linear-gradient(180deg, #0797CC 0%, #005B9F 100%);
  border: 3px solid #fff;
  border-radius: 4px;
  color: #fff;
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.22);
  transition: opacity 0.25s ease;
}
.contact-cta__btn:hover {
  opacity: 0.85;
}
.contact-cta__btn-icon {
  position: relative;
  width: 18px;
  height: 13px;
  border: 2px solid #fff;
  flex-shrink: 0;
}
.contact-cta__btn-icon::before, .contact-cta__btn-icon::after {
  content: "";
  position: absolute;
  top: 1px;
  width: 10px;
  height: 2px;
  background: #fff;
  transform-origin: center;
}
.contact-cta__btn-icon::before {
  left: -1px;
  transform: rotate(32deg);
}
.contact-cta__btn-icon::after {
  right: -1px;
  transform: rotate(-32deg);
}
.contact-cta__tel {
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  align-items: center;
  justify-content: center;
  color: #0768CC;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .contact-cta__tel {
    justify-content: start;
  }
}
.contact-cta__tel small {
  grid-column: 2/3;
  display: block;
  margin-top: 0.15rem;
  color: #0768CC;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
}
.contact-cta__tel img {
  width: 18px;
  height: auto;
}
.contact-cta__tel-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.contact-cta__tel-icon::before {
  content: "☎";
  position: absolute;
  inset: 0;
  color: #0768CC;
  font-size: 18px;
  line-height: 1;
}
.contact-cta__tel-number {
  display: block;
  color: #0768CC;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.03em;
  text-align: left;
}

.heater {
  background: #fff;
}
.heater__hero {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .heater__hero {
    grid-template-columns: 42% 58%;
    min-height: 360px;
  }
}
.heater__hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  background: linear-gradient(180deg, #CE6E33 0%, #B11212 100%);
  color: #fff;
}
@media screen and (min-width: 768px) {
  .heater__hero-copy {
    padding: 4rem 3rem 4rem;
  }
}
.heater__label {
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 1rem;
  padding: 0.25rem 0.8rem;
  background: #fff;
  color: #d02c1c;
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 700;
}
.heater__lead {
  margin-bottom: 1rem;
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  text-align: center;
}
.heater__title {
  color: #fff;
  font-size: clamp(4rem, 6vw, 6rem);
  font-weight: 500;
  line-height: 1;
  font-family: "Stardos Stencil", system-ui;
  font-weight: 500;
  font-style: normal;
  letter-spacing: -0.04em;
}
.heater__title-ja {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.heater__hero-img img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
}
.heater__feature {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 5rem;
}
@media screen and (min-width: 768px) {
  .heater__feature {
    padding: 5rem 0 6rem;
  }
}
.heater__feature-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.heater__feature-bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.heater__inner {
  position: relative;
  z-index: 1;
  width: min(900px, 90%);
  margin: 0 auto;
}
.heater__feature-heading {
  margin-bottom: 2.5rem;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.2em;
}
.heater__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .heater__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}
.heater__card {
  position: relative;
  padding: 1rem;
  border: 1px solid #fff;
  color: #fff;
}
.heater__num {
  position: absolute;
  top: -14px;
  left: -14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #d94a32;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .heater__num {
    top: -24px;
    left: -24px;
  }
}
.heater__card-img {
  margin-bottom: 1rem;
}
.heater__card-img img {
  display: block;
  width: 100%;
  aspect-ratio: 280/170;
  -o-object-fit: cover;
     object-fit: cover;
}
.heater__card h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 700;
  line-height: 1.5;
}
.heater__card p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}

.heater-price {
  position: relative;
  padding: 4rem 0 4.5rem;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .heater-price {
    background: linear-gradient(180deg, #CE6E33 0%, #B11212 100%);
    padding: 5rem 0 5.5rem;
  }
}
.heater-price::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1024px, 70%);
  height: 100%;
  background: #fff;
  transform: translateX(-50%);
  z-index: 0;
}
.heater-price__inner {
  position: relative;
  z-index: 1;
  width: min(720px, 90%);
  margin: 0 auto;
}
.heater-price__heading {
  margin-bottom: 1.6rem;
  text-align: center;
}
.heater-price__heading h2 {
  margin-bottom: 0.4rem;
  color: #000;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 700;
  line-height: 1.5;
}
.heater-price__heading p {
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}
.heater-price__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .heater-price__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
.heater-price__card {
  position: relative;
  padding: 10px;
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.12);
  border-radius: 10px 10px 0 0;
}
.heater-price__card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 10px;
  border-radius: 6px 6px 0 0;
}
.heater-price__card--battery {
  background: #FFC2A8;
}
.heater-price__card--battery::before {
  background: linear-gradient(90deg, #FF8A2A 0%, #FF2D17 100%);
}
.heater-price__card--seat {
  background: #FFF3ED;
}
.heater-price__card--seat::before {
  background: linear-gradient(90deg, #FFC524 0%, #FF8F00 100%);
}
.heater-price__card-inner {
  margin-top: 14px;
  padding: 20px;
  background: #fff;
  text-align: center;
}
.heater-price__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  height: 34px;
  margin-bottom: 24px;
  padding: 0.25rem 1rem;
  border-radius: 999px;
  background: #FFDCCD;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: "bold";
}
@media screen and (min-width: 768px) {
  .heater-price__label {
    padding: 0.25rem 0.5rem;
  }
}
.heater-price__label-double {
  background-color: #FFF3ED !important;
}
.heater-price__price {
  color: #C80000;
  font-size: clamp(2.5rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1;
}
.heater-price__tax {
  margin-top: 8px;
  color: #C80000;
  font-size: 0.95rem;
  font-weight: 700;
}
.heater-price__notes {
  margin-top: 0.8rem;
}
.heater-price__notes p {
  color: #000;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.6;
}

.contact-cta {
  position: relative;
  overflow: hidden;
  padding: 3rem 0;
}
@media screen and (min-width: 768px) {
  .contact-cta {
    padding: 4.5rem 0;
  }
}
.contact-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.contact-cta__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contact-cta__inner {
  position: relative;
  z-index: 1;
  width: min(1024px, 90%);
  margin: 0 auto;
}
.contact-cta__box {
  padding: 2rem 1rem;
  background: #fff;
  border: 3px solid #006ED3;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact-cta__box {
    padding: 3rem 2rem;
  }
}
.contact-cta__title {
  margin-bottom: 1rem;
  color: #006ED3;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 900;
  line-height: 1.5;
}
.contact-cta__text {
  margin-bottom: 1.8rem;
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 500;
  line-height: 1.9;
}
.contact-cta__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  align-items: center;
  width: min(520px, 100%);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .contact-cta__actions {
    grid-template-columns: 1fr 1fr;
    width: min(620px, 100%);
    gap: 2rem;
  }
}
.contact-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 58px;
  padding: 0.9rem 1.2rem;
  background: linear-gradient(180deg, #0797CC 0%, #005B9F 100%);
  color: #fff;
  font-size: clamp(1rem, 1.1vw, 1.25rem);
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.22);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.contact-cta__btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.contact-cta__btn-icon {
  position: relative;
  width: 18px;
  height: 13px;
  border: 2px solid #fff;
  flex-shrink: 0;
}
.contact-cta__btn-icon::before, .contact-cta__btn-icon::after {
  content: "";
  position: absolute;
  top: 1px;
  width: 10px;
  height: 2px;
  background: #fff;
  transform-origin: center;
}
.contact-cta__btn-icon::before {
  left: -1px;
  transform: rotate(32deg);
}
.contact-cta__btn-icon::after {
  right: -1px;
  transform: rotate(-32deg);
}
.contact-cta__tel {
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  align-items: center;
  justify-content: center;
  color: #006ED3;
  text-decoration: none;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .contact-cta__tel {
    margin: 0;
    justify-content: start;
  }
}
.contact-cta__tel small {
  grid-column: 2/3;
  display: block;
  margin-top: 0.15rem;
  color: #006ED3;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
}
.contact-cta__tel-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.contact-cta__tel-icon::before {
  content: "☎";
  position: absolute;
  inset: 0;
  color: #006ED3;
  font-size: 18px;
  line-height: 1;
}
.contact-cta__tel-number {
  display: block;
  color: #006ED3;
  font-size: clamp(1.75rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.03em;
  text-align: left;
}
.contact-cta--red .contact-cta__box {
  border-color: #B31913;
}
.contact-cta--red .contact-cta__title {
  color: #B31913;
}
.contact-cta--red .contact-cta__btn {
  background: linear-gradient(270deg, #CD6A32 0%, #B31913 100%);
}
.contact-cta--red .contact-cta__tel,
.contact-cta--red .contact-cta__tel small,
.contact-cta--red .contact-cta__tel-number {
  color: #B31913;
}
.contact-cta--red .contact-cta__tel-icon::before {
  color: #B31913;
}

.forklift {
  font-family: "Noto Sans JP";
  background: #1d9bd0;
}
.forklift__fv {
  margin: 0 auto 2rem;
  width: 100%;
  background-color: #FFF;
}
.forklift__fv img {
  display: block;
  width: 100%;
  height: auto;
}
.forklift__content {
  padding: 0 0 4rem;
  background: #1d9bd0;
}
@media screen and (min-width: 768px) {
  .forklift__content {
    padding: 0 0 5rem;
  }
}
.forklift__inner {
  width: min(1024px, 90%);
  margin: 5rem auto 2rem;
}
.forklift__upper {
  background: #E7F8F9;
  padding: 0 0 1rem;
  margin-bottom: 2rem;
}
.forklift__heading {
  padding: 1.1rem 1rem 0.7rem;
  background: linear-gradient(180deg, #74AEB2 0%, #BDF1FD 52%, #6FA7AC 100%);
  color: #16316b;
  font-size: clamp(1.6rem, 3vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-shadow: 0 3px 10px rgba(255, 255, 255, 0.6823529412);
}
.forklift__sub {
  margin: 1rem 0 0.7rem;
  color: #16316b;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}
.forklift__main-imgs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: min(720px, 88%);
  margin: 0 auto 2rem;
}
@media screen and (min-width: 768px) {
  .forklift__main-imgs {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
.forklift__main-img {
  text-align: center;
}
.forklift__main-img img {
  display: block;
  width: 100%;
  height: auto;
}
.forklift__main-img p {
  margin-top: 0.6rem;
  color: #000;
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.5;
}
.forklift__main-img span {
  font-size: 0.7rem;
  font-weight: 700;
}
.forklift__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .forklift__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
  .forklift__cards > *:nth-child(3),
  .forklift__cards > *:nth-child(6) {
    grid-column: 1/-1;
  }
}
@media screen and (min-width: 960px) {
  .forklift__cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
  }
  .forklift__cards > *:nth-child(3),
  .forklift__cards > *:nth-child(6) {
    grid-column: auto;
    width: auto;
    justify-self: stretch;
  }
}
.forklift__card {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 960px) {
  .forklift__card {
    grid-column: span 2;
    height: 260px;
  }
}
@media screen and (min-width: 960px) {
  .forklift__card:nth-child(1), .forklift__card:nth-child(2), .forklift__card:nth-child(4), .forklift__card:nth-child(5) {
    grid-column: span 1;
  }
}
@media screen and (min-width: 960px) {
  .forklift__card:nth-child(3), .forklift__card:nth-child(6) {
    grid-column: span 2;
  }
}
.forklift__card img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}

.wear {
  font-family: "Noto Sans JP";
  background: #fff;
}
.wear__fv {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: min(1200px, 90%);
  margin: 0 auto;
  padding: 4rem 0 3rem;
}
@media screen and (min-width: 960px) {
  .wear__fv {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    padding: 5rem 0 4rem;
  }
}
.wear__fv-img img {
  display: block;
  width: 100%;
  height: auto;
}
.wear__fv-img--left {
  order: 2;
}
@media screen and (min-width: 768px) {
  .wear__fv-img--left {
    order: initial;
  }
}
.wear__fv-img--right {
  order: 1;
}
@media screen and (min-width: 768px) {
  .wear__fv-img--right {
    order: initial;
  }
}
.wear__feature {
  padding: 3rem 0 4rem;
  background: #dff6ff;
}
@media screen and (min-width: 768px) {
  .wear__feature {
    padding: 4rem 0 5rem;
  }
}
.wear__inner {
  width: min(1024px, 90%);
  margin: 0 auto;
}
.wear__heading {
  margin-bottom: 2rem;
  color: #103C70;
  font-size: clamp(2rem, 2vw, 3rem);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.wear__heading::before {
  content: "＼";
  margin-right: 0.4rem;
}
.wear__heading::after {
  content: "／";
  margin-left: 0.4rem;
}
.wear__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.wear__item {
  padding: 1.5rem;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .wear__item {
    padding: 2rem;
  }
}
.wear__item img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .wear__item img {
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 960px) {
  .wear__item img {
    width: 100%;
  }
}
.wear__item-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.8rem;
}
@media screen and (min-width: 768px) {
  .wear__item-head {
    flex-wrap: nowrap;
  }
}
.wear__item-head-en {
  flex-wrap: wrap;
}
.wear__item-head span {
  color: #103C70;
  font-size: clamp(2.5rem, 3vw, 4rem);
  font-weight: 900;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  line-height: 1;
}
.wear__item-head h3 {
  color: #103C70;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.wear__item-head p {
  width: 100%;
  color: #103C70;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.7;
}

.contact-cta--wear {
  padding: 4rem 0;
}
@media screen and (min-width: 768px) {
  .contact-cta--wear {
    padding: 5rem 0;
  }
}
.contact-cta--wear .contact-cta__inner {
  width: min(1024px, 90%);
}
.contact-cta--wear .contact-cta__box {
  padding: 0;
  background: transparent;
  border: none;
  text-align: center;
}
.contact-cta--wear .contact-cta__lead {
  margin-bottom: 0.8rem;
  color: #214B90;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.6;
}
.contact-cta--wear .contact-cta__title {
  margin-bottom: 1.1rem;
  color: #214B90;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 900;
  line-height: 1.35;
}
.contact-cta--wear .contact-cta__text {
  margin-bottom: 2rem;
  color: #000;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.9;
}
.contact-cta--wear .contact-cta__text span {
  display: inline;
  padding: 0.08rem 0.45rem;
}
.contact-cta--wear .contact-cta__actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  align-items: center;
  width: min(560px, 100%);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .contact-cta--wear .contact-cta__actions {
    flex-direction: row;
    width: min(800px, 100%);
    gap: 2rem;
  }
}
.contact-cta--wear .contact-cta__btn {
  width: 320px;
  min-height: 58px;
  background: linear-gradient(180deg, #0797CC 0%, #005B9F 100%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.22);
}
.contact-cta--wear .contact-cta__tel {
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 0.6rem;
       column-gap: 0.6rem;
  align-items: center;
  justify-content: center;
  color: #006ED3;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .contact-cta--wear .contact-cta__tel {
    justify-content: start;
  }
}
.contact-cta--wear .contact-cta__tel img {
  grid-row: 1/3;
  display: block;
  width: 22px;
  height: auto;
}
.contact-cta--wear .contact-cta__tel small {
  grid-column: 2/3;
  display: block;
  margin-top: 0.2rem;
  color: #0768CC;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
}
.contact-cta--wear .contact-cta__tel-number {
  display: block;
  color: #0768CC;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  text-align: left;
}

.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;
  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;
    font-size: 0.9rem;
  }
  .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: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #003A5D;
  border-bottom: 3px solid #F26922;
}
.single-news__content h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 120px;
  height: 3px;
  background: #003A5D;
}
.single-news__content h3 {
  margin: 56px 0 24px;
  padding-left: 16px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6;
  color: #003A5D;
  border-left: 6px solid #F26922;
}
.single-news__content p {
  margin-bottom: 24px;
  line-height: 2;
}
.single-news__content ul,
.single-news__content ol {
  margin: 24px 0;
  padding-left: 24px;
}
.single-news__content ul li,
.single-news__content ol li {
  margin-bottom: 10px;
  line-height: 2;
}

@media (max-width: 768px) {
  .single-news__content h2 {
    margin: 56px 0 24px;
    font-size: 2.4rem;
  }
  .single-news__content h2::before {
    width: 70px;
  }
  .single-news__content h3 {
    margin: 40px 0 20px;
    font-size: 2rem;
    padding-left: 12px;
  }
}
.contact-page {
  padding-top: 64px;
}
@media screen and (min-width: 768px) {
  .contact-page {
    padding-top: 70px;
  }
}

.contact-hero {
  padding: 1.5rem 0 4rem;
  background: #fff;
  text-align: center;
}
.contact-hero__inner {
  width: min(1080px, 90%);
  margin: 0 auto;
}
.contact-hero__title {
  margin-top: 3rem;
  margin-bottom: 1.2rem;
  color: #103C70;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.5;
}
.contact-hero__text {
  color: #103C70;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: "bold";
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-weight: 700;
  line-height: 1.9;
}

.breadcrumb {
  display: flex;
  gap: 0.4rem;
  color: #000;
  font-size: 0.8rem;
  text-align: left;
}
.breadcrumb a {
  color: #000;
  text-decoration: none;
}
.breadcrumb span::before {
  content: ">";
  margin-right: 0.4rem;
}

.contact-section {
  padding: 4rem 0 7rem;
  background: #eef7fa;
}
.contact-section__inner {
  width: min(760px, 90%);
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .contact-section__inner {
    padding: 3rem 2.8rem 4rem;
  }
}

.contact-form__item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f4f4f4;
}
.contact-form__item label {
  display: block;
  margin-bottom: 0.8rem;
  color: #000;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.6;
}
.contact-form__item label span {
  margin-left: 0.4rem;
  color: #ff0000;
  font-size: 0.8rem;
}
.contact-form__item input,
.contact-form__item select,
.contact-form__item textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.8rem 1rem;
  border: none;
  background: #fff;
  color: #000;
  font-size: 0.95rem;
  line-height: 1.6;
  box-sizing: border-box;
}
.contact-form__item textarea {
  min-height: 110px;
  resize: vertical;
}
.contact-form__item ::-moz-placeholder {
  color: #b8b8b8;
}
.contact-form__item ::placeholder {
  color: #b8b8b8;
}
.contact-form__item--radio label {
  color: #000;
  font-size: 0.95rem;
  font-weight: 700;
}
.contact-form__item--radio .wpcf7-radio {
  display: grid;
}
.contact-form__item--radio .wpcf7-list-item {
  display: block;
  margin: 0;
}
.contact-form__item--radio .wpcf7-list-item-label {
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}
.contact-form__item--radio input[type=radio] {
  width: 16px;
  height: 16px;
  min-height: auto;
  margin-right: 0.6rem;
  accent-color: #006ed3;
}
.contact-form__privacy-box {
  height: 300px;
  padding: 1.2rem;
  overflow-y: auto;
  background: #fff;
  color: #000;
  font-size: 0.9rem;
  line-height: 1.9;
}
.contact-form__privacy {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  margin: 1rem 0 2.5rem;
  font-size: 0.9rem;
  font-weight: 700;
}
.contact-form__privacy .wpcf7-list-item {
  margin: 0;
}
.contact-form__privacy input[type=checkbox] {
  width: 24px;
  height: 24px;
  margin-right: 0.6rem;
  vertical-align: middle;
}
.contact-form__required {
  padding: 0.25rem 0.6rem;
  background: #ffefef;
  color: #ff0000;
  font-size: 0.75rem;
  font-weight: 700;
}
.contact-form__submit {
  text-align: center;
}
.contact-form__submit input[type=submit] {
  min-width: 220px;
  min-height: 58px;
  border: none;
  background: linear-gradient(180deg, #0797CC 0%, #005B9F 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.22);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.contact-form__submit input[type=submit]:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

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

.wpcf7-not-valid-tip {
  margin-top: 0.5rem;
  color: #d90000;
  font-size: 0.85rem;
}

.wpcf7-response-output {
  margin: 2rem 0 0 !important;
  padding: 1rem !important;
  border-color: #006ed3 !important;
  font-size: 0.9rem;
}

.thanks {
  min-height: 550px;
  padding: 1.5rem 0 5rem;
  background: #f2f9fc;
}
@media screen and (min-width: 768px) {
  .thanks {
    min-height: 550px;
    padding: 1.5rem 0 6rem;
  }
}
.thanks__inner {
  width: min(1400px, 90%);
  margin: 0 auto;
}
.thanks__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  color: #000;
  font-size: 0.8rem;
  line-height: 1.5;
}
.thanks__breadcrumb a,
.thanks__breadcrumb span {
  color: #000;
  text-decoration: none;
}
.thanks__breadcrumb span::before {
  content: ">";
  margin-right: 0.35rem;
}
.thanks__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .thanks__content {
    padding-top: 6rem;
  }
}
.thanks__title {
  margin-bottom: 1.5rem;
  color: #06447a;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.thanks__text {
  margin-bottom: 2.8rem;
  color: #06447a;
  font-size: clamp(0.9rem, 1.3vw, 1.1rem);
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .thanks__text {
    line-height: 1.6;
  }
}
.thanks__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(280px, 100%);
  min-height: 66px;
  padding: 1rem 2rem;
  border: 3px solid #fff;
  background: linear-gradient(90deg, #005b9f 0%, #0797cc 100%);
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.28);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.thanks__btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.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: 60px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 960px) {
  .header {
    height: 72px;
  }
}
.header__inner {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-left: 1px solid #d9d9d9;
}
.header__logo {
  height: 100%;
  margin: 0;
  flex: 1;
  display: flex;
  align-items: center;
  padding-left: 1.2rem;
}
@media screen and (min-width: 960px) {
  .header__logo {
    flex: 0 0 180px;
    justify-content: center;
    padding-left: 0;
  }
}
@media screen and (min-width: 1280px) {
  .header__logo {
    flex: 0 0 220px;
    justify-content: center;
    padding-left: 0;
  }
}
.header__logo a {
  display: flex;
  align-items: center;
}
.header__logo img {
  display: block;
  width: 100px;
  height: auto;
}
@media screen and (min-width: 960px) {
  .header__logo img {
    width: 120px;
  }
}
@media screen and (min-width: 1280px) {
  .header__logo img {
    width: 150px;
  }
}
.header__nav {
  display: none;
}
@media screen and (min-width: 1124px) {
  .header__nav {
    display: block;
    flex: 1;
    height: 100%;
  }
}
.header__nav-list {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  list-style: none;
}
.header__nav-list li {
  height: 100%;
  list-style: none;
  border-right: 1px solid #d9d9d9;
}
.header__nav-list li:first-child {
  border-left: 1px solid #d9d9d9;
}
.header__nav-list a {
  height: 100%;
  min-width: 100px;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease;
}
.header__nav-list a:hover {
  background: #f4f8fc;
  color: #006ed3;
}
.header__lang {
  gap: 0.5rem;
  min-width: 160px !important;
  font-family: serif;
  font-size: 16px !important;
}
.header__lang-sp {
  display: block;
  width: 40px;
  height: auto;
  padding: 0 0.5rem;
  margin: 0 0.5rem;
}
@media screen and (min-width: 1124px) {
  .header__lang-sp {
    display: none;
  }
}
.header__lang-icon {
  width: 20px;
  height: auto;
}
.header__lang-arrow {
  width: 8px;
  height: 8px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(45deg) translateY(-2px);
}
.header__contact {
  height: 100%;
  width: 100px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: #006ed3;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
  border-right: 1px solid #0059aa;
  border-left: 1px solid #0059aa;
  transition: opacity 0.25s ease;
}
@media screen and (min-width: 960px) {
  .header__contact {
    width: 170px;
  }
}
.header__contact:hover {
  opacity: 0.85;
}
.header__contact-icon {
  position: relative;
  width: 18px;
  height: 13px;
  display: inline-block;
  border: 2px solid #fff;
}
.header__contact-icon::before, .header__contact-icon::after {
  content: "";
  position: absolute;
  top: 1px;
  width: 10px;
  height: 2px;
  background: #fff;
  transform-origin: center;
}
.header__contact-icon::before {
  left: -1px;
  transform: rotate(32deg);
}
.header__contact-icon::after {
  right: -1px;
  transform: rotate(-32deg);
}
.header__sp {
  display: flex;
  height: 100%;
  align-items: center;
}
.header__hamburger {
  position: relative;
  width: 64px;
  height: 100%;
  padding: 0;
  border: none;
  border-left: 1px solid #d9d9d9;
  background: #fff;
  cursor: pointer;
}
@media screen and (min-width: 1124px) {
  .header__hamburger {
    display: none;
  }
}
.header__hamburger span {
  position: absolute;
  left: 18px;
  width: 28px;
  height: 3px;
  background: #006ed3;
  transition: 0.3s ease;
}
.header__hamburger span:nth-child(1) {
  top: 21px;
}
.header__hamburger span:nth-child(2) {
  top: 31px;
}
.header__hamburger span:nth-child(3) {
  top: 41px;
}
.header__hamburger.is-active span:nth-child(1) {
  top: 31px;
  transform: rotate(45deg);
}
.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-active span:nth-child(3) {
  top: 31px;
  transform: rotate(-45deg);
}

/* SPメニュー */
.header-sp-nav {
  position: fixed;
  top: 64px;
  right: -100%;
  z-index: 1000;
  width: 100%;
  max-width: 390px;
  height: calc(100svh - 64px);
  background: #006ed3;
  transition: right 0.35s ease;
}
@media screen and (min-width: 1124px) {
  .header-sp-nav {
    display: none;
  }
}
.header-sp-nav.panelactive {
  right: 0;
}
.header-sp-nav__inner {
  height: 100%;
  overflow-y: auto;
}
.header-sp-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.header-sp-nav__list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}
.header-sp-nav__list a {
  position: relative;
  display: block;
  padding: 1.2rem 2.5rem 1.2rem 1.5rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}
.header-sp-nav__list a::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

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

@media screen and (min-width: 768px) {
  .header {
    height: 70px;
  }
  .header__logo {
    padding-left: 1.8rem;
  }
  .header__logo img {
    width: 140px;
  }
  .header__contact {
    width: 170px;
    font-size: 15px;
  }
  .header__hamburger {
    width: 72px;
  }
  .header__hamburger span {
    left: 21px;
    width: 30px;
  }
}
.header {
  transition: transform 0.35s ease;
}
.header.UpMove {
  transform: translateY(-100%);
}
.header.DownMove {
  transform: translateY(0);
}

.footer {
  background: #fff;
}
.footer__inner {
  width: min(90%, 740px);
  margin: 0 auto;
  padding: 4rem 0 2rem;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding: 4.5rem 0 2.2rem;
  }
}
.footer__company-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid #333;
}
@media screen and (min-width: 768px) {
  .footer__company-block {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
    padding-bottom: 1.6rem;
  }
}
.footer__logo {
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    padding-right: 2rem;
    border-right: 1px solid #999;
  }
}
.footer__logo a {
  display: block;
}
.footer__logo img {
  display: block;
  width: 170px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .footer__logo img {
    width: 180px;
  }
}
.footer__info {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__info {
    text-align: left;
  }
}
.footer__info p {
  margin: 0;
  color: #000;
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
.footer__nav {
  padding-top: 1.8rem;
}
.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .footer__nav-list {
    gap: 3rem;
  }
}
.footer__nav-list li {
  list-style: none;
}
.footer__nav-list a {
  color: #000;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.25s ease;
}
.footer__nav-list a:hover {
  opacity: 0.65;
}
.footer__copy {
  background: #103C70;
  text-align: center;
  padding: 0.9rem 1rem;
}
.footer__copy small {
  color: #fff;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}/*# sourceMappingURL=style.css.map */