.sections {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: column;
  gap: calc(24 / var(--base-width) * var(--inner-width) * 1px);
  margin-bottom: calc(80 / var(--base-width) * var(--inner-width) * 1px);
}

.section {
  background: no-repeat center center/cover;
  border-radius: calc(40 / var(--base-width) * var(--inner-width) * 1px);
  position: relative;
  min-height: calc(696 / var(--base-width) * var(--inner-width) * 1px);
  padding: calc(64 / var(--base-width) * var(--inner-width) * 1px) calc(32 / var(--base-width) * var(--inner-width) * 1px) calc(32 / var(--base-width) * var(--inner-width) * 1px) calc(452 / var(--base-width) * var(--inner-width) * 1px);
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: column;
  gap: calc(24 / var(--base-width) * var(--inner-width) * 1px);
}
@media only screen and (max-width: 47.9375em) {
  .section {
    padding: calc(24 / var(--base-width) * var(--inner-width) * 1px);
    background-size: 100% auto;
  }
}

.section__label {
  position: absolute;
  left: 0;
  top: 0;
}
@media only screen and (max-width: 47.9375em) {
  .section__label {
    position: static;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(16 / var(--base-width) * var(--inner-width) * 1px);
  }
}

.section__label-1 {
  position: absolute;
  left: calc(40 / var(--base-width) * var(--inner-width) * 1px);
  top: calc(32 / var(--base-width) * var(--inner-width) * 1px);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: calc(96 / var(--base-width) * var(--inner-width) * 1px);
  line-height: 1.2;
  color: #ffffff;
}
@media only screen and (max-width: 47.9375em) {
  .section__label-1 {
    position: static;
    font-size: calc(80 / var(--base-width) * var(--inner-width) * 1px);
  }
}

.section__label-2 {
  position: absolute;
  left: calc(40 / var(--base-width) * var(--inner-width) * 1px);
  top: calc(160 / var(--base-width) * var(--inner-width) * 1px);
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: calc(16 / var(--base-width) * var(--inner-width) * 1px);
  line-height: 1.3;
  white-space: nowrap;
  text-align: center;
  color: #f5f5f5;
  transform: rotate(90deg);
  transform-origin: left bottom;
}
@media only screen and (max-width: 47.9375em) {
  .section__label-2 {
    position: static;
    transform: none;
    text-align: left;
  }
}

.section__title {
  line-height: 1.2;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: calc(8 / var(--base-width) * var(--inner-width) * 1px);
  color: #ffffff;
  flex-shrink: 0;
}
.section__title span {
  font-weight: 700;
  font-size: calc(20 / var(--base-width) * var(--inner-width) * 1px);
  line-height: 2;
  letter-spacing: -0.04em;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: calc(16 / var(--base-width) * var(--inner-width) * 1px);
}
.section__title span::before {
  content: "";
  display: block;
  width: calc(7 / var(--base-width) * var(--inner-width) * 1px);
  height: calc(7 / var(--base-width) * var(--inner-width) * 1px);
  border-radius: calc(2 / var(--base-width) * var(--inner-width) * 1px);
  background: rgba(255, 255, 255, 0.7);
}
.section__title b {
  font-weight: 700;
  font-size: calc(40 / var(--base-width) * var(--inner-width) * 1px);
  line-height: 1.2;
}
@media only screen and (max-width: 47.9375em) {
  .section__title b {
    font-size: calc(32 / var(--base-width) * var(--inner-width) * 1px);
  }
}

.section__image {
  position: absolute;
  inset: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media only screen and (max-width: 47.9375em) {
  .section__image {
    position: static;
  }
}

.section__body {
  background: rgba(255, 255, 255, 0.6);
  border-radius: calc(40 / var(--base-width) * var(--inner-width) * 1px);
  padding: calc(32 / var(--base-width) * var(--inner-width) * 1px);
  flex-grow: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: calc(16 / var(--base-width) * var(--inner-width) * 1px);
}
@media only screen and (max-width: 47.9375em) {
  .section__body {
    margin-top: calc(-24 / var(--base-width) * var(--inner-width) * 1px);
  }
}

.section__tags {
  gap: calc(8 / var(--base-width) * var(--inner-width) * 1px);
}
.section__tags .tag {
  height: calc(32 / var(--base-width) * var(--inner-width) * 1px);
  border-radius: calc(32 / var(--base-width) * var(--inner-width) * 1px);
  padding: 0 calc(16 / var(--base-width) * var(--inner-width) * 1px);
  font-size: calc(16 / var(--base-width) * var(--inner-width) * 1px);
  border: 0;
  transition-property: color, background, opacity;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
}
@media (hover: hover) {
  .section__tags .tag:hover {
    opacity: 0.8;
  }
}
.section__tags .tag.is-active {
  color: #fff;
  background: #0089c8;
}

.section__content {
  grid-column: 1/2;
  grid-row: 2/3;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
}
@media only screen and (max-width: 47.9375em) {
  .section__content {
    transition-property: opacity, height;
    interpolate-size: allow-keywords;
  }
}
.section__content.is-active {
  pointer-events: all;
  -webkit-user-select: all;
     -moz-user-select: all;
          user-select: all;
  opacity: 1;
}
@media only screen and (max-width: 47.9375em) {
  .section__content:nth-of-type(2) {
    height: 0;
    overflow: hidden;
  }
  .section__content:nth-of-type(2).is-active {
    height: auto;
  }
}

.section__lead {
  font-weight: 700;
  font-size: calc(16 / var(--base-width) * var(--inner-width) * 1px);
  color: #1e1e1e;
  margin-bottom: calc(8 / var(--base-width) * var(--inner-width) * 1px);
  white-space: nowrap;
}
@media only screen and (max-width: 47.9375em) {
  .section__lead {
    white-space: normal;
  }
}

.section__text {
  font-weight: 500;
  font-size: calc(14 / var(--base-width) * var(--inner-width) * 1px);
  line-height: 1.65;
}

.section-example {
  margin-top: calc(16 / var(--base-width) * var(--inner-width) * 1px);
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: calc(24 / var(--base-width) * var(--inner-width) * 1px);
  position: relative;
}

.section-example__text {
  font-weight: 700;
  font-size: calc(28 / var(--base-width) * var(--inner-width) * 1px);
  line-height: 1.2;
  color: #002d72;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  white-space: nowrap;
}
@media only screen and (max-width: 47.9375em) {
  .section-example__text {
    font-size: calc(18 / var(--base-width) * var(--inner-width) * 1px);
  }
}
.section-example__text strong {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: calc(60 / var(--base-width) * var(--inner-width) * 1px);
  line-height: 0.8;
  margin-top: 0.2em;
}
@media only screen and (max-width: 47.9375em) {
  .section-example__text strong {
    font-size: calc(40 / var(--base-width) * var(--inner-width) * 1px);
  }
}
.section-example__text b {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: calc(40 / var(--base-width) * var(--inner-width) * 1px);
  margin: 0 0.1em;
}
@media only screen and (max-width: 47.9375em) {
  .section-example__text b {
    font-size: calc(24 / var(--base-width) * var(--inner-width) * 1px);
  }
}

.section-example__pict {
  flex-shrink: 0;
}

.section--1 {
  background-color: #f39186;
  background-image: url(../img/special/section-1-bg.svg);
}
@media only screen and (max-width: 47.9375em) {
  .section--1 {
    background-image: url(../img/special/section-1-bg-sp.svg);
    background-position: left calc(300 / var(--base-width) * var(--inner-width) * 1px);
  }
}
.section--1 .section-example__pict {
  width: calc(45 / var(--base-width) * var(--inner-width) * 1px);
}
@media only screen and (max-width: 47.9375em) {
  .section--1 .section-example__pict {
    margin-left: calc(-14 / var(--base-width) * var(--inner-width) * 1px);
  }
}
@media only screen and (max-width: 47.9375em) {
  .section--1 .section-example__text {
    margin-bottom: calc(16 / var(--base-width) * var(--inner-width) * 1px);
  }
  .section--1 .section-example__text > *:nth-child(1) {
    margin-bottom: calc(8 / var(--base-width) * var(--inner-width) * 1px);
  }
  .section--1 .section-example__text > *:nth-child(2) {
    margin-bottom: calc(20 / var(--base-width) * var(--inner-width) * 1px);
  }
}

.section--2 {
  background-color: #7dd57c;
  background-image: url(../img/special/section-2-bg.svg);
}
@media only screen and (max-width: 47.9375em) {
  .section--2 {
    background-image: url(../img/special/section-2-bg-sp.svg);
    background-position: left calc(212 / var(--base-width) * var(--inner-width) * 1px);
  }
}
@media only screen and (max-width: 47.9375em) {
  .section--2 .section-example {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
  }
}
.section--2 .section-example__pict {
  width: calc(88 / var(--base-width) * var(--inner-width) * 1px);
}
@media only screen and (max-width: 47.9375em) {
  .section--2 .section-example__pict {
    width: calc(238 / var(--base-width) * var(--inner-width) * 1px);
    margin-top: calc(-8 / var(--base-width) * var(--inner-width) * 1px);
  }
}
@media only screen and (max-width: 47.9375em) {
  .section--2 .section-example__text {
    font-size: calc(20 / var(--base-width) * var(--inner-width) * 1px);
  }
  .section--2 .section-example__text strong {
    font-size: calc(50 / var(--base-width) * var(--inner-width) * 1px);
    margin-bottom: calc(4 / var(--base-width) * var(--inner-width) * 1px);
  }
  .section--2 .section-example__text b {
    font-size: calc(30 / var(--base-width) * var(--inner-width) * 1px);
  }
  .section--2 .section-example__text span span {
    font-size: calc(16 / var(--base-width) * var(--inner-width) * 1px);
  }
}

.section--3 {
  background-color: #dfb345;
  background-image: url(../img/special/section-3-bg.svg);
}
@media only screen and (max-width: 47.9375em) {
  .section--3 {
    background-image: url(../img/special/section-3-bg-sp.svg);
    background-position: left calc(284 / var(--base-width) * var(--inner-width) * 1px);
  }
}
@media only screen and (max-width: 47.9375em) {
  .section--3 .section-example {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 47.9375em) {
  .section--3 .section-example__pict {
    margin-top: calc(-16 / var(--base-width) * var(--inner-width) * 1px);
  }
}
.section--3 .section-example__text {
  font-size: calc(20 / var(--base-width) * var(--inner-width) * 1px);
}
.section--3 .section-example__text strong {
  font-size: calc(50 / var(--base-width) * var(--inner-width) * 1px);
}
@media only screen and (max-width: 47.9375em) {
  .section--3 .section-example__text strong {
    font-size: calc(40 / var(--base-width) * var(--inner-width) * 1px);
  }
}
.section--3 .section-example__text b {
  font-size: calc(40 / var(--base-width) * var(--inner-width) * 1px);
}
@media only screen and (max-width: 47.9375em) {
  .section--3 .section-example__text b {
    font-size: calc(30 / var(--base-width) * var(--inner-width) * 1px);
  }
}
@media only screen and (max-width: 47.9375em) {
  .section--3 .section-example__text span:nth-of-type(2) {
    font-size: calc(16 / var(--base-width) * var(--inner-width) * 1px);
  }
}
@media only screen and (max-width: 47.9375em) {
  .section--3 .section-example__text span:nth-of-type(3) {
    font-size: calc(18 / var(--base-width) * var(--inner-width) * 1px);
  }
}
.section--3 .section-example__pict {
  width: calc(231 / var(--base-width) * var(--inner-width) * 1px);
  position: absolute;
  left: calc(190 / var(--base-width) * var(--inner-width) * 1px);
  bottom: calc(50 / var(--base-width) * var(--inner-width) * 1px);
}
@media only screen and (max-width: 47.9375em) {
  .section--3 .section-example__pict {
    position: static;
  }
}

.section--4 {
  background-color: #0089c8;
  background-image: url(../img/special/section-4-bg.svg);
}
@media only screen and (max-width: 47.9375em) {
  .section--4 {
    background-image: url(../img/special/section-4-bg-sp.svg);
    background-position: left calc(283 / var(--base-width) * var(--inner-width) * 1px);
  }
}
@media only screen and (max-width: 47.9375em) {
  .section--4 .section-example {
    justify-content: space-between;
  }
}
.section--4 .section-example__pict {
  width: calc(84 / var(--base-width) * var(--inner-width) * 1px);
}
@media only screen and (max-width: 47.9375em) {
  .section--4 .section-example__pict {
    width: calc(64 / var(--base-width) * var(--inner-width) * 1px);
  }
}
@media only screen and (max-width: 47.9375em) {
  .section--4 .section-example__text {
    font-size: calc(20 / var(--base-width) * var(--inner-width) * 1px);
  }
  .section--4 .section-example__text strong {
    font-size: calc(50 / var(--base-width) * var(--inner-width) * 1px);
  }
  .section--4 .section-example__text b {
    font-size: calc(30 / var(--base-width) * var(--inner-width) * 1px);
  }
  .section--4 .section-example__text span span {
    font-size: calc(16 / var(--base-width) * var(--inner-width) * 1px);
  }
}

.section--5 {
  background-color: #f39186;
  background-image: url(../img/special/section-5-bg.svg);
}
@media only screen and (max-width: 47.9375em) {
  .section--5 {
    background-image: url(../img/special/section-5-bg-sp.svg);
    background-position: left calc(345 / var(--base-width) * var(--inner-width) * 1px);
  }
}
@media only screen and (max-width: 47.9375em) {
  .section--5 .section-example {
    margin-top: 0;
  }
}
.section--5 .section-example__pict {
  width: calc(76 / var(--base-width) * var(--inner-width) * 1px);
}
@media only screen and (max-width: 47.9375em) {
  .section--5 .section-example__pict {
    width: calc(64 / var(--base-width) * var(--inner-width) * 1px);
    margin-left: calc(-12 / var(--base-width) * var(--inner-width) * 1px);
  }
}
@media only screen and (max-width: 47.9375em) {
  .section--5 .section-example__text {
    font-size: calc(18 / var(--base-width) * var(--inner-width) * 1px);
    margin-bottom: calc(-8 / var(--base-width) * var(--inner-width) * 1px);
  }
  .section--5 .section-example__text span {
    margin-bottom: calc(8 / var(--base-width) * var(--inner-width) * 1px);
  }
  .section--5 .section-example__text strong {
    margin-bottom: calc(8 / var(--base-width) * var(--inner-width) * 1px);
    font-size: calc(40 / var(--base-width) * var(--inner-width) * 1px);
  }
  .section--5 .section-example__text b {
    font-size: calc(24 / var(--base-width) * var(--inner-width) * 1px);
  }
}

.section--6 {
  background-color: #7dd57c;
  background-image: url(../img/special/section-6-bg.svg);
}
@media only screen and (max-width: 47.9375em) {
  .section--6 {
    background-image: url(../img/special/section-6-bg-sp.svg);
    background-position: left calc(383 / var(--base-width) * var(--inner-width) * 1px);
  }
}
.section--6 .section-example__pict {
  width: calc(159 / var(--base-width) * var(--inner-width) * 1px);
  position: absolute;
  left: calc(225 / var(--base-width) * var(--inner-width) * 1px);
  bottom: calc(50 / var(--base-width) * var(--inner-width) * 1px);
}
@media only screen and (max-width: 47.9375em) {
  .section--6 .section-example__pict {
    left: auto;
    right: 0;
    bottom: calc(38 / var(--base-width) * var(--inner-width) * 1px);
    width: calc(99 / var(--base-width) * var(--inner-width) * 1px);
  }
}
@media only screen and (max-width: 47.9375em) {
  .section--6 .section-example__text {
    font-size: calc(18 / var(--base-width) * var(--inner-width) * 1px);
    line-height: 1.5;
  }
  .section--6 .section-example__text strong {
    font-size: calc(40 / var(--base-width) * var(--inner-width) * 1px);
  }
  .section--6 .section-example__text b {
    font-size: calc(24 / var(--base-width) * var(--inner-width) * 1px);
  }
}

.more {
  margin-bottom: calc(120 / var(--base-width) * var(--inner-width) * 1px);
}

.more__title {
  font-weight: 700;
  font-size: calc(40 / var(--base-width) * var(--inner-width) * 1px);
  color: #002d72;
  margin-bottom: calc(56 / var(--base-width) * var(--inner-width) * 1px);
}
@media only screen and (max-width: 47.9375em) {
  .more__title {
    font-size: calc(32 / var(--base-width) * var(--inner-width) * 1px);
    margin-bottom: calc(40 / var(--base-width) * var(--inner-width) * 1px);
  }
}

.more__sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(24 / var(--base-width) * var(--inner-width) * 1px);
}
@media only screen and (max-width: 47.9375em) {
  .more__sections {
    grid-template-columns: 1fr;
  }
}

.more-section {
  --more-section-color: #fff;
  --more-section-pict-1: none;
  --more-section-pict-2: none;
}

.more-section__button {
  display: grid;
  grid-template-columns: 1fr;
  width: calc(478 / var(--base-width) * var(--inner-width) * 1px);
  height: calc(488 / var(--base-width) * var(--inner-width) * 1px);
  transform-style: preserve-3d;
  perspective: 1800px;
  text-align: left;
}
@media only screen and (max-width: 47.9375em) {
  .more-section__button {
    width: auto;
    height: calc(350 / var(--base-width) * var(--inner-width) * 1px);
    interpolate-size: allow-keywords;
    transition-property: height;
    transition-duration: 0.5s;
    transition-timing-function: ease-in-out;
  }
}
@media only screen and (max-width: 47.9375em) {
  .more-section.is-active .more-section__button {
    height: auto;
  }
}

.more-section__face {
  grid-column: 1/2;
  grid-row: 1/2;
  align-self: stretch;
  border-radius: calc(80 / var(--base-width) * var(--inner-width) * 1px);
  position: relative;
  padding: calc(32 / var(--base-width) * var(--inner-width) * 1px) calc(40 / var(--base-width) * var(--inner-width) * 1px);
  background-repeat: no-repeat;
  overflow: hidden;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: auto auto 1fr;
  background: var(--more-section-color) no-repeat center center/contain;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition-property: transform, opacity;
  transition-duration: 0.5s;
  transition-timing-function: ease-in-out;
}
@media only screen and (max-width: 47.9375em) {
  .more-section__face {
    padding: calc(32 / var(--base-width) * var(--inner-width) * 1px);
    min-height: calc(350 / var(--base-width) * var(--inner-width) * 1px);
  }
}
.more-section__face .arrow {
  position: absolute;
  right: calc(40 / var(--base-width) * var(--inner-width) * 1px);
  bottom: calc(32 / var(--base-width) * var(--inner-width) * 1px);
  color: #0089c8;
  background: #fff;
  border-width: 1px;
  transition-property: background, color;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
}
@media only screen and (max-width: 47.9375em) {
  .more-section__face .arrow {
    right: calc(32 / var(--base-width) * var(--inner-width) * 1px);
  }
}
@media (hover: hover) {
  .more-section__face:hover .arrow {
    background: var(--more-section-color);
    color: #fff;
  }
}

.more-section__face--1 {
  background-image: var(--more-section-pict-1);
}
@media only screen and (max-width: 47.9375em) {
  .more-section__face--1 {
    background-size: calc(280 / var(--base-width) * var(--inner-width) * 1px) auto;
    background-position: center bottom;
  }
}

.more-section__face--2 {
  background-image: var(--more-section-pict-2);
}
@media only screen and (max-width: 47.9375em) {
  .more-section__face--2 {
    background-position: center top;
  }
}
.more-section__face--2 .arrow {
  transform: scale(-1, 1);
}

.more-section:not(.is-active) .more-section__face--1 {
  transform: rotateY(0);
}
.more-section:not(.is-active) .more-section__face--2 {
  transform: rotateY(180deg);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.more-section.is-active .more-section__face--1 {
  transform: rotateY(-180deg);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.more-section.is-active .more-section__face--2 {
  transform: rotateY(0);
}

.more-section__label {
  grid-column: 1/2;
  grid-row: 1/2;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: calc(96 / var(--base-width) * var(--inner-width) * 1px);
  line-height: 1.2;
  color: #ffffff;
}
@media only screen and (max-width: 47.9375em) {
  .more-section__label {
    font-size: calc(80 / var(--base-width) * var(--inner-width) * 1px);
  }
}

.more-section__title {
  grid-column: 1/2;
  grid-row: 2/3;
  font-weight: 700;
  font-size: calc(32 / var(--base-width) * var(--inner-width) * 1px);
  line-height: 1.6;
  color: #ffffff;
  display: grid;
  position: relative;
}
@media only screen and (max-width: 47.9375em) {
  .more-section__title {
    font-size: calc(28 / var(--base-width) * var(--inner-width) * 1px);
  }
}

.more-section__body {
  grid-column: 1/2;
  grid-row: 3/4;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.6);
  border-radius: calc(40 / var(--base-width) * var(--inner-width) * 1px);
  padding: calc(32 / var(--base-width) * var(--inner-width) * 1px);
  margin-top: calc(16 / var(--base-width) * var(--inner-width) * 1px);
}

.more-section__lead {
  font-weight: 700;
  font-size: calc(16 / var(--base-width) * var(--inner-width) * 1px);
  color: #1e1e1e;
  margin-bottom: calc(8 / var(--base-width) * var(--inner-width) * 1px);
}

.more-section__text {
  font-size: calc(14 / var(--base-width) * var(--inner-width) * 1px);
  line-height: 1.65;
}

.more-section__image {
  position: absolute;
  left: calc(470 / var(--base-width) * var(--inner-width) * 1px);
  top: calc(32 / var(--base-width) * var(--inner-width) * 1px);
  width: calc(478 / var(--base-width) * var(--inner-width) * 1px);
  height: calc(424 / var(--base-width) * var(--inner-width) * 1px);
  border-radius: calc(54 / var(--base-width) * var(--inner-width) * 1px);
  overflow: hidden;
}
@media only screen and (max-width: 47.9375em) {
  .more-section__image {
    position: static;
    width: auto;
    height: calc(310 / var(--base-width) * var(--inner-width) * 1px);
    margin-top: calc(16 / var(--base-width) * var(--inner-width) * 1px);
  }
}

.more-section--7 {
  --more-section-color: #dfb345;
  --more-section-pict-1: url(../img/special/more-7-1.svg);
  --more-section-pict-2: url(../img/special/more-7-2.svg);
}

.more-section--8 {
  --more-section-color: #0089c8;
  --more-section-pict-1: url(../img/special/more-8-1.svg);
  --more-section-pict-2: url(../img/special/more-8-2.svg);
}

.more-section--9 {
  --more-section-color: #f39186;
  --more-section-pict-1: url(../img/special/more-9-1.svg);
  --more-section-pict-2: url(../img/special/more-9-2.svg);
}

.more-section--10 {
  --more-section-color: #7dd57c;
  --more-section-pict-1: url(../img/special/more-10-1.svg);
  --more-section-pict-2: url(../img/special/more-10-2.svg);
}

.more-section--11 {
  --more-section-color: #dfb345;
  --more-section-pict-1: url(../img/special/more-11-1.svg);
  --more-section-pict-2: url(../img/special/more-11-2.svg);
}

.more-section--12 {
  --more-section-color: #0089c8;
  --more-section-pict-1: url(../img/special/more-12-1.svg);
  --more-section-pict-2: url(../img/special/more-12-2.svg);
}

.more-section--13 {
  grid-column: 1/3;
  --more-section-color: #f39186;
  --more-section-pict-1: url(../img/special/more-13-1.svg);
  --more-section-pict-2: url(../img/special/more-13-2.svg);
}
@media only screen and (max-width: 47.9375em) {
  .more-section--13 {
    grid-column: 1/2;
    --more-section-pict-1: url(../img/special/more-13-1-sp.svg);
  }
}
.more-section--13 .more-section__button {
  width: 100%;
}
.more-section--13 .more-section__body {
  width: calc(398 / var(--base-width) * var(--inner-width) * 1px);
}
@media only screen and (max-width: 47.9375em) {
  .more-section--13 .more-section__face--1 {
    background-size: contain;
    background-position: center center;
  }
}
@media only screen and (max-width: 47.9375em) {
  .more-section--13 .more-section__face--2 {
    background-size: calc(720 / var(--base-width) * var(--inner-width) * 1px) auto;
    background-position: left calc(15 / var(--base-width) * var(--inner-width) * 1px);
  }
}
.more-section--13 .more-section__face--2 .arrow {
  right: calc(542 / var(--base-width) * var(--inner-width) * 1px);
}
@media only screen and (max-width: 47.9375em) {
  .more-section--13 .more-section__face--2 .arrow {
    right: calc(32 / var(--base-width) * var(--inner-width) * 1px);
    bottom: calc(356 / var(--base-width) * var(--inner-width) * 1px);
  }
}/*# sourceMappingURL=special.css.map */