.page #content .titleWrap {
  background-image: url(/assets/img/logo/bg-logo.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.page #content .titleWrap .title h1 {
  color: #083967;
}
.page #content .titleWrap .title .subTitle {
  color: #083967;
}
.page #content article {
  width: min(1000px, calc(100% - 40px));
}
.page #content p,
.page #content h1,
.page #content h2,
.page #content h3 {
  line-height: 1.7;
}
.page #content h3 {
  color: #0a5e9e;
  font-size: 26px;
}
.page #content p {
  font-size: 18px;
}
.page #content article section {
  margin-bottom: clamp(64px, 8vw, 100px);
  scroll-margin-top: 120px;
}

.fadein-section {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  transition-delay: var(--fade-delay, 0s);
}

.fadein-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fadein-section {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.heading08 {
  margin-bottom: 30px;
  color: #083967;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  text-align: left !important;
}

.heading08 span {
  display: flex;
  align-items: center;
  color: #498ee0;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.heading08 span::before {
  content: "";
  display: inline-block;
  margin-right: 20px;
  width: 40px;
  height: 1px;
  background-color: #498ee0;
}

.logo img {
  display: block;
  width: 80%;
  margin: 0 auto;
}

.logo .cta {
  width: min(86vw, 340px);
  margin: 34px auto 0 !important;
  text-align: center;
}

.logo .cta a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  padding: 13px 48px 13px 28px;
  border-radius: 999px;
  background: #0a5e9e;
  box-shadow: 0 16px 36px rgba(8, 57, 103, 0.16);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.logo .cta a::after {
  content: "";
  position: absolute;
  right: 25px;
  width: 9px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg) translateY(-2px);
}

.logo .cta a:hover {
  background: #e60012;
  box-shadow: 0 20px 46px rgba(8, 57, 103, 0.22);
  transform: translateY(-3px);
}

.concept-wrap {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
}

.concept-box {
  width: calc((100% - 40px) / 2);
}

.concept-box h3 {
  margin-bottom: 20px;
}

.concept-box img {
  width: 100%;
}

.motif {
  padding: clamp(28px, 5vw, 48px);

  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(235, 255, 255, 0.86)), #ebffff;
}

.motif-img {
  display: flex;
  gap: 36px;
  justify-content: space-between;
  align-items: center;
}

.img-box {
  width: calc((100% - 36px) / 2);
}

.img-box p {
  margin: 20px 0;
}

.img-box p:last-child {
  text-align: center;
}

.img-box img {
  width: 100%;
}

.color img {
  width: 80%;
  max-width: 760px;
  display: block;
  margin: 0 auto 28px;
  border-radius: 8px;
}

.color p {
  text-align: center;
}

.variation-img {
  display: flex;
  justify-content: space-between;
}

.variation-img p {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 25px 22px;
  padding: 0 0 12px;
  border-bottom: 1px solid rgba(8, 57, 103, 0.14);
  color: #083967;
  font-size: 20px !important;
  font-weight: 700;
  line-height: 1.4 !important;
}

.eng,
.jap {
  width: 48%;
  padding: 25px 0;
  border: 1px solid rgba(8, 57, 103, 0.1);
  border-radius: 8px;
  background-color: #fff;
}

.eng img,
.jap img {
  width: 90%;
  display: block;
  margin-top: 18px;
  border-radius: 6px;
  margin: 0 auto;
}

.name {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}

.name img {
  width: min(20%, 160px);
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .page #content article {
    width: min(100% - 48px, 920px);
  }

  .page #content p {
    font-size: 17px;
  }

  .logo img {
    width: 90%;
  }

  .concept-wrap,
  .motif-img {
    gap: 28px;
  }

  .concept-box,
  .img-box {
    width: calc((100% - 28px) / 2);
  }

  .motif {
    padding: 36px 28px;
  }

  .color img {
    width: 90%;
  }

  .variation-img {
    gap: 24px;
  }

  .eng,
  .jap {
    width: calc((100% - 24px) / 2);
  }

  .variation-img p {
    margin-right: 18px;
    margin-left: 18px;
    font-size: 18px !important;
  }

  .name img {
    width: min(24%, 150px);
  }
}

@media only screen and (max-width: 768px) {
  .kv {
    margin-bottom: 56px !important;
  }

  .top-pc {
    display: none;
  }

  .top-sp {
    display: block;
  }

  .cta {
    left: 35%;
    top: 80%;
    width: min(59vw, 200px);
  }

  .cta a {
    min-height: 30px;
    padding: 9px 34px 9px 18px;
    font-size: 13px;
  }

  .cta a::after {
    right: 17px;
    width: 7px;
    height: 7px;
  }

  .logo img {
    width: 100%;
  }

  .logo {
    position: relative;
    padding-bottom: 58px;
  }

  .logo .cta {
    position: absolute;
    left: 42%;
    top: auto;
    bottom: 0;
    width: min(64vw, 220px);
    margin: 0 !important;
    transform: translateX(-50%);
  }

  .logo .cta a {
    min-height: 42px;
    padding: 9px 34px 9px 18px;
    font-size: 13px;
  }

  .logo .cta a::after {
    right: 17px;
    width: 7px;
    height: 7px;
  }

  .page #content .titleWrap {
    background-image: url(/assets/img/logo/bg-logo-sp.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .page #content p {
    font-size: 16px;
  }

  .heading08 {
    margin-bottom: 22px;
  }

  .concept-wrap,
  .motif-img,
  .variation-img {
    display: block;
  }

  .concept-box,
  .img-box,
  .eng,
  .jap {
    width: 100%;
  }

  .concept-box + .concept-box,
  .img-box + .img-box,
  .jap {
    margin-top: 28px;
  }

  .motif {
    padding: 24px 18px;
    background: #ebf6ff;
  }

  .color img {
    width: 100%;
    margin-bottom: 20px;
  }

  .color p {
    text-align: left;
  }

  .eng,
  .jap {
    padding: 18px;
  }

  .name {
    display: block;
  }

  .name img {
    display: block;
    width: min(42vw, 140px);
    margin: 10px 0 0 auto;
  }
}
