@charset "UTF-8";

/* Common */
.update-page {
  --update-blue: #0951a6;
  --update-green: #007853;
  --update-cyan: #006a86;
  --update-text: #222;
  --update-light-gray: #F5F5F7;
  overflow: hidden;
  margin: 0;
  color: var(--update-text);
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(14px, 3.48vw);
  line-height: 1.7;
  letter-spacing: 0.04em;
  background: #fff;
}

.update-page,
.update-page * {
  box-sizing: border-box;
}

@media (min-width: 940px) {
  .update-page {
    font-size: 16px;
    line-height: 1.75;
  }
}

.update-common-inner {
  width: min(100%, 850px);
  margin: 0 auto;
}

@media (min-width: 940px) {
  .update-common-inner {
    width: min(100%, 1200px);
  }
}

.update-common-picture {
  display: block;
}

.update-common-img {
  display: block;
  height: auto;
}

.update-common-img-full {
  width: 100%;
}

.update-common-img-content {
  max-width: 100%;
  margin: 0 auto;
}

/* PC/SP display utilities */
.pc {
  display: none;
}

.sp {
  display: block;
}

@media (min-width: 940px) {
  .pc {
    display: block;
  }

  .sp {
    display: none;
  }
}

/* Section common */
.update-section {
  padding: 34px 18px;
  text-align: center;
}

@media (min-width: 940px) {
  .update-section {
    padding: 58px 40px;
  }
}

/* MV */
.update-mv {
  padding: 0;
}

/* Point */
.update-point {
  padding-top: 24px;
  padding-bottom: 24px;
}

.update-point-title {
  margin-left: auto;
  margin-right: auto;
  max-width: 55%;
}

@media (min-width: 940px) {
  .update-point {
    padding-top: 44px;
    padding-bottom: 80px;
  }
}

.update-point-lead {
  margin-top: 1.5em;
}

@media (min-width: 940px) {
  .update-point-lead {
    margin-top: 40px;
  }
}

.update-point-lead-main {
  margin: 0;
  font-size: max(24px, 6vw);
  font-weight: 900;
  line-height: 1.6;
}

@media (min-width: 940px) {
  .update-point-lead-main {
    font-size: 32px;
    line-height: 1.55;
  }
}

.update-point-lead-sub {
  margin: 20px 0 0;
  font-size: max(16px, 3.5vw);
  font-weight: 500;
  line-height: 1.7;
}

@media (min-width: 940px) {
  .update-point-lead-sub {
    margin-top: 10px;
    font-size: 24px;
  }
}

.update-point-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5em;
  align-items: start;
  margin-top: 1.5em;
}

@media (min-width: 940px) {
  .update-point-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    margin-top: 50px;
  }
}

.update-point-auto {
  margin-top: 1.5em;
}

@media (min-width: 940px) {
  .update-point-auto {
    margin-top: 40px;
  }
}

/* FX */
.update-fx {
  padding-top: 38px;
  padding-bottom: 42px;
  background: var(--update-light-gray);
}

@media (min-width: 940px) {
  .update-fx {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}

.update-fx-label {
  display: inline-flex;
  min-width: 96px;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  margin: 0 auto .75em;
  border-radius: 999px;
  background: var(--update-blue);
  color: #fff;
  font-size: max(20px, 5vw);
  font-weight: 900;
  line-height: 2;
  width: 72%;
}

@media (min-width: 940px) {
  .update-fx-label {
    max-width: 302px;
    min-height: 45px;
    margin-bottom: 30px;
    font-size: 21px;
  }
}

.update-fx-title {
  margin: 0;
  font-size: max(24px, 6vw);
  font-weight: 900;
  line-height: 1.55;
}

@media (min-width: 940px) {
  .update-fx-title {
    font-size: 32px;
  }
}

.update-fx-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25em;
  margin-top: 1.25em;
}

@media (min-width: 940px) {
  .update-fx-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 30px;
  }
}

/* CFD */
.update-cfd {
  padding-top: 38px;
  padding-bottom: 44px;
}

@media (min-width: 940px) {
  .update-cfd {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}

.update-cfd-label {
  display: inline-flex;
  min-width: 96px;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  margin: 0 auto .75em;
  border-radius: 999px;
  background: var(--update-green);
  color: #fff;
  font-size: max(20px, 5vw);
  font-weight: 900;
  line-height: 2;
  width: 72%;
}

@media (min-width: 940px) {
  .update-cfd-label {
    max-width: 302px;
    min-height: 45px;
    margin-bottom: 30px;
    font-size: 21px;
  }
}

.update-cfd-title {
  margin: 0;
  color: var(--update-green);
  font-size: max(22px, 4.5vw);
  font-weight: 900;
  line-height: 1.55;
}

@media (min-width: 940px) {
  .update-cfd-title {
    font-size: 32px;
  }
}

.update-cfd-lead {
  margin: 8px 0 0;
  font-size: max(18px, 4vw);
  font-weight: 500;
}

@media (min-width: 940px) {
  .update-cfd-lead {
    margin-top: 10px;
    font-size: 24px;
  }
}

.update-cfd-main {
  margin-top: 22px;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}


@media (min-width: 940px) {
  .update-cfd-main {
    margin-top: 37px;
    width: 180px;
  }
}

.update-cfd-copy {
  margin-top: 1em;
  text-align: center;
}

@media (min-width: 940px) {
  .update-cfd-copy {
    margin-top: 10px;
  }
}

.update-cfd-copy-title {
  margin: 0;
  color: var(--update-green);
  font-size: max(18px, 4.5vw);
  font-weight: 900;
  line-height: 1.55;
}

@media (min-width: 940px) {
  .update-cfd-copy-title {
    font-size: 24px;
  }
}

.update-cfd-copy-text {
  margin: .5em 0 0;
  font-size: max(16px, 4vw);
  font-weight: 500;
}

@media (min-width: 940px) {
  .update-cfd-copy-text {
    font-size: 24px;
  }
}

.update-cfd-detail {
  margin-top: 1.25em;
}

@media (min-width: 940px) {
  .update-cfd-detail {
    margin-top: 30px;
  }
}

/* Spread */
.update-spread {
  min-height: 190px;
  padding: 50px 20px 48px;
  text-align: center;
  background: url("../img/spread-bg-sp.png") center / cover no-repeat;
}

@media (min-width: 940px) {
  .update-spread {
    min-height: 242px;
    padding: 86px 40px 65px;
    background-image: url("../img/spread-bg.png");
  }
}

.update-spread-title {
  margin: 0 0 .75em;
  color: var(--update-cyan);
  font-weight: 900;
  line-height: 1.45;
}

.update-spread-title-row {
  display: block;
}

.update-spread-title-part-1 {
  font-size: max(14px, 3.5vw);
}

.update-spread-title-part-2 {
  font-size: max(20px, 5vw);
}

.update-spread-title-part-3 {
  font-size: max(28px, 7vw);
}

@media (min-width: 940px) {
  .update-spread-title {
    margin-bottom: 47px;
  }

  .update-spread-title-part-1 {
    font-size: 16px;
  }

  .update-spread-title-part-2 {
    font-size: 21px;
  }

  .update-spread-title-part-3 {
    font-size: 36px;
  }
}

.update-spread-title-part-4 {
  font-size: max(30px, 7.5vw);
}

.update-spread-text p {
  font-size: max(16px, 3vw);
  font-weight: 700;
  line-height: 1.5;
}
.update-spread-text p:nth-child(n+2) {
  margin-top: 1em;
}

@media (min-width: 940px) {
  .update-spread-title-part-4 {
    font-size: 36px;
  }

  .update-spread-text p {
    font-size: 22px;
    line-height: 2.25;
  }
  .update-spread-text p:nth-child(n+2) {
    margin-top: 0;
  }
}
