/*------------------------------
Reset / Base styles
------------------------------*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 375px;
  line-height: 1.5;
  font-size: clamp(1.4rem, 1rem + 1vw, 1.6rem);
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  color: #000;
  background-color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border-style: none;
  vertical-align: middle;
}

input,
button,
textarea,
select {
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/*------------------------------
Accessibility focus style
------------------------------*/
:focus-visible {
  outline: 2px solid #007aff;
  outline-offset: 2px;
}

/*------------------------------
Reduce motion if user prefers
------------------------------*/
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation: none !important;
    animation: none !important;
    -webkit-transition: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
/*------------------------------
Components
------------------------------*/
.breadcrumb__item + .breadcrumb__item::before {
  display: inline-block;
  content: ">";
  margin-inline: 0.8rem;
}
.breadcrumb__link {
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .breadcrumb__link:hover {
    opacity: 0.7;
  }
}

main {
  display: block;
  padding-top: 70px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  background-color: #fff;
}
@media (max-width: 964px) {
  .header.is-active {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
  }
  .header.is-active .header__nav {
    left: 0;
  }
}
@media (max-width: 964px) {
  .header.is-active ~ main {
    padding-top: 70px;
  }
}
.header__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  padding: 11px 12px 11px 30px;
}
@media (min-width: 965px) {
  .header__contents {
    padding: 15px 40px;
  }
}
.header__title {
  line-height: 0;
}
.header__link {
  display: inline-block;
}
@media (max-width: 964px) {
  .header__nav {
    position: fixed;
    top: 62px;
    left: 100%;
    z-index: 2;
    width: 100%;
    height: 100vh;
    padding: 15px 0;
    background-color: #fff;
    -webkit-transition: left 0.4s ease-in-out;
    transition: left 0.4s ease-in-out;
  }
}
.header__list {
  font-size: 0;
}
@media (min-width: 965px) {
  .header__item {
    display: inline-block;
  }
  .header__item + .header__item {
    margin-left: 15px;
  }
}
.header__item-link {
  display: block;
  padding: 15px 30px;
  font-size: 1.4rem;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .header__item-link:hover {
    opacity: 0.7;
  }
}
@media (min-width: 965px) {
  .header__item-link {
    padding: 0;
    font-size: 1.6rem;
  }
}
.header__hamburger {
  position: relative;
  z-index: 3;
  display: inline-block;
  margin: auto;
  width: 48px;
  height: 48px;
  margin: 0;
  cursor: pointer;
}
@media (min-width: 965px) {
  .header__hamburger {
    display: none;
  }
}
.header__hamburger span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 24px;
  height: 3px;
  background-color: #262a3e;
  border-radius: 1.5px;
}
.header__hamburger span:nth-of-type(1) {
  translate: 0 -9px;
}
.header__hamburger span:nth-of-type(3) {
  translate: 0 9px;
}

.mv {
  position: relative;
}
.mv::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
  display: inline-block;
  content: "";
  width: 50%;
  height: 100%;
  margin: auto;
  background-color: #2173b2;
}
.mv::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  display: inline-block;
  content: "";
  width: 50%;
  height: 100%;
  margin: auto;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(#ffc13e),
    to(#ffca4c)
  );
  background-image: linear-gradient(0deg, #ffc13e, #ffca4c);
}
.mv__contents {
  position: relative;
  width: min(100%, 1280px);
  margin-inline: auto;
}
@container (min-width: 854px) {
}

.troubles {
  background-size: auto auto;
  background-color: rgb(255, 241, 0);
  background-image: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 28px,
    rgb(255, 255, 255) 28px,
    rgb(255, 255, 255) 29px
  );
}
.troubles__title {
  margin-bottom: 90px;
  padding: 21px 30px;
  background: #0e314b;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#0e314b),
    to(#2173b1)
  );
  background: linear-gradient(to right, #0e314b, #2173b1);
  -webkit-filter: drop-shadow(0 6px 30px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(0 6px 30px rgba(0, 0, 0, 0.3));
}
@media (min-width: 768px) {
  .troubles__title {
    margin-bottom: 0;
  }
}
.troubles__letter {
  position: relative;
  width: min(100%, 1050px);
  margin-inline: auto;
  padding: 15.25px;
  overflow-wrap: break-word;
  word-break: keep-all;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  translate: 0 56px;
}
@media (min-width: 768px) {
  .troubles__letter {
    padding: 22.5px;
    font-size: 3rem;
  }
}
.troubles__letter::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  display: inline-block;
  content: "";
  width: 100%;
  height: 100%;
  margin: auto;
  background-color: #fff;
  border-inline: 10px solid #fff100;
  -webkit-transform: skew(-20deg);
  transform: skew(-20deg);
}
.troubles__contents {
  position: relative;
  width: min(100%, 1280px);
  margin-inline: auto;
  padding: 0 30px 30px;
}
@media (min-width: 768px) {
  .troubles__contents {
    padding: 0 115px 100px;
  }
}
.troubles__picture {
  display: block;
  margin-bottom: 40px;
  text-align: center;
}
@media (min-width: 768px) {
  .troubles__picture {
    width: min(100%, 1050px);
    margin: 0 auto -39px;
  }
}
@media (min-width: 768px) {
  .troubles__picture .troubles__image {
    translate: 0 -39px;
  }
}
.troubles__list {
  position: relative;
}
@media (min-width: 768px) {
  .troubles__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 40px;
    width: min(100%, 934px);
    margin-inline: auto;
  }
}
.troubles__item {
  width: min(100%, 280px);
  margin-inline: auto;
}
@media (min-width: 768px) {
  .troubles__item {
    width: 100%;
  }
}
.troubles__item:not(:last-of-type) {
  margin-bottom: 40px;
}

.campaign__title {
  margin-bottom: 77px;
  padding: 21px 30px;
  background: #0e314b;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#0e314b),
    to(#2173b1)
  );
  background: linear-gradient(to right, #0e314b, #2173b1);
  -webkit-filter: drop-shadow(0 6px 30px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(0 6px 30px rgba(0, 0, 0, 0.3));
}
@media (min-width: 768px) {
  .campaign__title {
    margin-bottom: 100px;
  }
}
.campaign__letter {
  position: relative;
  width: min(100%, 1050px);
  margin-inline: auto;
  padding: 15.25px;
  overflow-wrap: break-word;
  word-break: keep-all;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  translate: 0 56px;
}
@media (min-width: 768px) {
  .campaign__letter {
    padding: 22.5px;
    font-size: 3rem;
  }
}
.campaign__letter::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  display: inline-block;
  content: "";
  width: 100%;
  height: 100%;
  margin: auto;
  background-color: #fff;
  border-inline: 10px solid #fff100;
  -webkit-transform: skew(-20deg);
  transform: skew(-20deg);
}
.campaign__emphasis {
  line-height: 1.125;
  font-style: normal;
  font-size: 2.8rem;
  color: #ff0000;
}
@media (min-width: 768px) {
  .campaign__emphasis {
    font-size: 4rem;
  }
}
@media (min-width: 768px) {
  .campaign__contents {
    width: min(100%, 1280px);
    margin-inline: auto;
    padding: 0 115px 160px;
  }
}
.campaign__link {
  display: inline-block;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .campaign__link:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 767px) {
  .campaign__image {
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
  }
}
.about {
  overflow: hidden;
  background: url(../../img/lp-shindanshi-2025/section-02-bg.png) left -30px bottom -18px/1023px
    no-repeat;
}
@media (min-width: 768px) {
  .about {
    background: url(../../img/lp-shindanshi-2025/section-02-bg.png) right bottom -18px/896px
      no-repeat;
  }
}
.about__title {
  margin-bottom: 77px;
  padding: 21px 30px;
  background: #0e314b;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#0e314b),
    to(#2173b1)
  );
  background: linear-gradient(to right, #0e314b, #2173b1);
  -webkit-filter: drop-shadow(0 6px 30px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(0 6px 30px rgba(0, 0, 0, 0.3));
}
@media (min-width: 768px) {
  .about__title {
    margin-bottom: 135px;
  }
}
.about__letter {
  position: relative;
  width: min(100%, 1050px);
  margin-inline: auto;
  padding: 15.25px;
  overflow-wrap: break-word;
  word-break: keep-all;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  translate: 0 56px;
}
@media (min-width: 768px) {
  .about__letter {
    padding: 22.5px;
    font-size: 3rem;
  }
}
.about__letter::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  display: inline-block;
  content: "";
  width: 100%;
  height: 100%;
  margin: auto;
  background-color: #fff;
  border-inline: 10px solid #fff100;
  -webkit-transform: skew(-20deg);
  transform: skew(-20deg);
}
.about__contents {
  position: relative;
  width: min(100%, 1280px);
  margin-inline: auto;
  padding: 0 30px;
  text-align: right;
  font-size: 0;
}
@media (min-width: 965px) {
  .about__contents {
    padding: 0 115px;
  }
}
@media (min-width: 1280px) {
  .about__contents {
    padding: 0 115px 259px;
  }
}
.about__contents::after {
  content: "";
  display: inline-block;
  width: 360px;
  height: 297px;
  margin: auto;
  background: url(../../img/lp-shindanshi-2025/section-02-president.png) right
    bottom/contain no-repeat;
}
@media (min-width: 965px) {
  .about__contents::after {
    display: inline-block;
    width: 705px;
    height: 582px;
  }
}
@media (min-width: 1280px) {
  .about__contents::after {
    position: absolute;
    right: 0;
    bottom: 0;
    display: inline-block;
    width: 705px;
    height: 582px;
  }
}
.about__description {
  text-align: center;
}
@media (min-width: 965px) {
  .about__description {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.about__description + .about__text {
  margin-bottom: 30px;
}
@media (min-width: 965px) {
  .about__description + .about__text {
    width: min(100%, 620px);
    margin-bottom: 0;
  }
}
.about__text {
  margin-bottom: 40px;
  text-align: left;
  font-size: 1.8rem;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .about__text {
    margin-bottom: 80px;
    font-size: 2rem;
  }
}
.about__link {
  display: inline-block;
  margin-bottom: 40px;
  padding: 8px 20px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  background-color: #273348;
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .about__link:hover {
    background-color: #2173b1;
  }
}
@media (min-width: 768px) {
  .about__link {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    max-width: 220px;
    margin-left: 40px;
    margin-bottom: 80px;
    padding: 15px 20px;
    font-size: 2rem;
  }
}
.about__emphasis {
  font-weight: 700;
  font-style: normal;
  color: #2173b1;
}

.cv__link {
  display: block;
  text-align: center;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .cv__link:hover {
    opacity: 0.7;
  }
}
@media (min-width: 768px) {
  .cv__link {
    background: #ff0000 50%;
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      color-stop(50%, #ff0000),
      color-stop(50%, #fff002)
    );
    background: linear-gradient(to right, #ff0000 50%, #fff002 50%);
  }
}
.cv__picture {
  display: block;
}
@media (min-width: 768px) {
  .cv__image {
    max-height: 338px;
  }
}

.merits__title {
  margin-bottom: 77px;
  padding: 21px 30px;
  background: #0e314b;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#0e314b),
    to(#2173b1)
  );
  background: linear-gradient(to right, #0e314b, #2173b1);
  -webkit-filter: drop-shadow(0 6px 30px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(0 6px 30px rgba(0, 0, 0, 0.3));
}
@media (min-width: 768px) {
  .merits__title {
    margin-bottom: 135px;
  }
}
.merits__letter {
  position: relative;
  width: min(100%, 1050px);
  margin-inline: auto;
  padding: 15.25px;
  overflow-wrap: break-word;
  word-break: keep-all;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  translate: 0 56px;
}
@media (min-width: 768px) {
  .merits__letter {
    padding: 22.5px;
    font-size: 3rem;
  }
}
.merits__letter::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  display: inline-block;
  content: "";
  width: 100%;
  height: 100%;
  margin: auto;
  background-color: #fff;
  border-inline: 10px solid #fff100;
  -webkit-transform: skew(-20deg);
  transform: skew(-20deg);
}
.merits__contents {
  width: min(100%, 1280px);
  margin-inline: auto;
  padding: 0 30px 160px;
}
@media (min-width: 965px) {
  .merits__contents {
    padding: 0 115px 100px;
  }
}
.merits__text {
  margin-bottom: 122.5px;
  text-align: center;
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  .merits__text {
    margin-bottom: 142.5px;
    font-size: 2rem;
  }
}
@media (min-width: 768px) {
  .merits__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
}
.merits__item {
  position: relative;
  margin-bottom: 112.5px;
  padding: 0 30px 30px;
  text-align: center;
  color: #2173b1;
  background-color: #e8f5ff;
}
@media (min-width: 768px) {
  .merits__item {
    width: calc(50% - 25px);
  }
}
@media (min-width: 768px) {
  .merits__item:nth-of-type(odd) {
    margin-right: 50px;
  }
}
.merits__item:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .merits__item:nth-last-of-type(-n + 2) {
    margin-bottom: 0;
  }
}
.merits__item::before {
  position: absolute;
  top: -62.5px;
  left: 0;
  right: 0;
  z-index: -1;
  display: inline-block;
  content: "";
  width: 147px;
  height: 39px;
  margin: auto;
  background: url(../../img/lp-shindanshi-2025/merit.svg) center top/contain
    no-repeat;
}
.merits__item.balloon::after {
  position: absolute;
  top: -62.5px;
  right: -20px;
  display: inline-block;
  content: "";
  width: 90px;
  height: 107px;
  margin: auto;
  background: url(../../img/lp-shindanshi-2025/balloon.svg) center top/contain
    no-repeat;
}
@media (min-width: 768px) {
  .merits__item.balloon::after {
    top: -102px;
    right: -40px;
    width: 120px;
    height: 143px;
  }
}
.merits__item-number {
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
  line-height: 1;
  font-size: 5rem;
  font-family: "Roboto", sans-serif;
}
.merits__item-number::before {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  display: inline-block;
  content: "";
  width: 220px;
  height: 220px;
  margin: auto;
  background-color: #e8f5ff;
  border-radius: 50%;
  translate: -50% -36px;
}
.merits__item-headline {
  margin-bottom: 8px;
  text-align: left;
  font-size: 2rem;
}
.merits__item-text {
  text-align: left;
  line-height: 1.8;
  font-size: 1.6rem;
  color: #000;
}
.merits__item-text + .merits__item-link {
  margin-top: 30px;
}
.merits__item-link {
  display: block;
  padding: 8.75px 45px 8.75px 18px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  background-color: #273348;
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .merits__item-link:hover {
    background-color: #2173b1;
  }
}
.merits__item-link-label {
  position: relative;
  display: inline-block;
}
.merits__item-link-label::before {
  position: absolute;
  top: 0;
  left: calc(100% + 10px);
  bottom: 0;
  display: inline-block;
  content: "";
  width: 15px;
  height: 7.5px;
  margin: auto;
  background: url(../../img/lp-shindanshi-2025/arrow.svg) center top/contain
    no-repeat;
}

.project {
  position: relative;
  margin-bottom: 80px;
  background: url(../../img/lp-shindanshi-2025/project-bg.jpg) left top/cover
    repeat-x;
}
@media (min-width: 768px) {
  .project {
    margin-bottom: 160px;
  }
}
.project::before {
  position: absolute;
  top: -160px;
  right: 0;
  display: inline-block;
  content: "";
  width: 255px;
  height: 255px;
  background: url(../../img/lp-shindanshi-2025/badge.png) center top/contain
    no-repeat;
}
@media (min-width: 965px) {
  .project::before {
    top: -36px;
    left: 0;
    margin: auto;
    translate: 402px 0;
  }
}
.project__contents {
  padding: 100px 0;
  text-align: center;
}
.project__title {
  margin-bottom: 40px;
  line-height: 1;
  font-size: 4.8rem;
  color: rgba(255, 255, 255, 0.6);
}
@media (min-width: 768px) {
  .project__title {
    font-size: 12rem;
  }
}
.project__subtitle {
  margin-bottom: 50px;
  font-size: 2.4rem;
  color: #fff;
}
@media (min-width: 768px) {
  .project__subtitle {
    font-size: 3rem;
  }
}
.project__swiper {
  width: 100%;
}
.project__list {
  width: 100%;
}
.project__item {
  width: min(100%, 330px);
}
@media (min-width: 768px) {
  .project__item {
    width: min(100%, 340px);
  }
}
.project__item-title {
  padding: 20px;
  font-size: 2.4rem;
  color: #fff;
  background-color: #2173b1;
}
.project__def-list {
  padding: 10px;
  text-align: left;
  background-color: #fff;
}
.project__def-term {
  margin-bottom: 7px;
  font-size: 1.4rem;
  color: #2173b1;
}
.project__def-description {
  margin-bottom: 10px;
  padding-bottom: 10px;
  text-align: center;
  color: #2173b1;
  border-bottom: 1px solid #2173b1;
}
.project__def-description:first-of-type {
  color: #273348;
}
.project__def-description:last-of-type {
  margin-bottom: 0;
  border-bottom: none;
}

.requirements__title {
  margin-bottom: 77px;
  padding: 21px 30px;
  background: #0e314b;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#0e314b),
    to(#2173b1)
  );
  background: linear-gradient(to right, #0e314b, #2173b1);
  -webkit-filter: drop-shadow(0 6px 30px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(0 6px 30px rgba(0, 0, 0, 0.3));
}
@media (min-width: 768px) {
  .requirements__title {
    margin-bottom: 135px;
  }
}
.requirements__letter {
  position: relative;
  width: min(100%, 1050px);
  margin-inline: auto;
  padding: 15.25px;
  overflow-wrap: break-word;
  word-break: keep-all;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  translate: 0 56px;
}
@media (min-width: 768px) {
  .requirements__letter {
    padding: 22.5px;
    font-size: 3rem;
  }
}
.requirements__letter::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  display: inline-block;
  content: "";
  width: 100%;
  height: 100%;
  margin: auto;
  background-color: #fff;
  border-inline: 10px solid #fff100;
  -webkit-transform: skew(-20deg);
  transform: skew(-20deg);
}
.requirements__contents {
  overflow: hidden;
  position: relative;
  width: min(100%, 1280px);
  margin-inline: auto;
  padding: 0 30px 30px;
}
@media (min-width: 768px) {
  .requirements__contents {
    padding-bottom: 100px;
  }
}
@media (min-width: 965px) {
  .requirements__contents {
    padding: 0 115px 169px;
  }
}
.requirements__headline {
  margin-bottom: 40px;
  padding-bottom: 17px;
  overflow-wrap: break-word;
  word-break: keep-all;
  text-align: center;
  font-size: 2.4rem;
  background: url(../../img/lp-shindanshi-2025/underline.svg) center
    bottom/490px no-repeat;
}
@media (min-width: 768px) {
  .requirements__headline {
    margin-bottom: 80px;
    padding-bottom: 24px;
    font-size: 4.8rem;
    background: url(../../img/lp-shindanshi-2025/underline.svg) center
      bottom/1050px no-repeat;
  }
}
.requirements__text {
  margin-bottom: 40px;
  line-height: 1.8;
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  .requirements__text {
    font-size: 2rem;
  }
}
.requirements__emphasis {
  font-style: normal;
  font-weight: 700;
  color: #2173b1;
}
.requirements__btn {
  margin-bottom: 30px;
  text-align: center;
}
@media (min-width: 768px) {
  .requirements__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
  }
}
@media (min-width: 965px) {
  .requirements__btn {
    margin-bottom: 150px;
  }
}
@media (min-width: 1280px) {
  .requirements__btn {
    margin-bottom: 60px;
  }
}
.requirements__link {
  display: block;
  width: min(100%, 330px);
  margin: 0 auto 20px;
  padding: 8px;
  text-align: center;
  font-weight: 700;
  background-color: #06c755;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .requirements__link:hover {
    opacity: 0.7;
  }
}
@media (min-width: 768px) {
  .requirements__link {
    margin: 0;
    padding: 20px;
    font-size: 2rem;
  }
}
.requirements__link-label {
  color: #fff;
}
.requirements__annotation {
  width: min(100%, 330px);
  margin-inline: auto;
  text-align: left;
  line-height: 1.33;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .requirements__annotation {
    width: min(100%, 263px);
    margin-inline: 0;
  }
}
.requirements__annotation br {
  display: none;
}
@media (min-width: 768px) {
  .requirements__annotation br {
    display: inline;
  }
}
.requirements__group {
  position: relative;
  text-align: center;
}
@media (min-width: 965px) {
  .requirements__group::before {
    position: absolute;
    right: -55px;
    bottom: -38px;
    display: inline-block;
    content: "";
    width: 42.76%;
    height: 208.25%;
    background: url(../../img/lp-shindanshi-2025/section-03-img.png) right
      bottom/contain no-repeat;
  }
}
.requirements__picture {
  display: block;
}

.aside {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  opacity: 1;
  pointer-events: auto;
}
.aside.hidden {
  opacity: 0;
  pointer-events: none;
}
.aside__link {
  display: inline-block;
}
.aside__image {
  width: 213px;
  height: 120px;
}
@media (min-width: 768px) {
  .aside__image {
    width: 320px;
    height: 180px;
  }
}

.footer__contents {
  width: min(100%, 1280px);
  margin-inline: auto;
  padding: 60px 30px 30px;
}
@media (min-width: 768px) {
  .footer__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
}
@media (min-width: 768px) {
  .footer__detail {
    width: 277px;
  }
}
.footer__link {
  display: block;
  margin-bottom: 20px;
}
.footer__address {
  margin-bottom: 40px;
  font-style: normal;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .footer__nav {
    width: calc(100% - 277px);
  }
}
@media (min-width: 768px) {
  .footer__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-left: auto;
  }
}
@media (min-width: 768px) {
  .footer__item + .footer__item {
    width: min(100%, 263px);
    margin-left: 20px;
  }
}
.footer__btn {
  margin-bottom: 20px;
}
.footer__link--navy {
  display: block;
  width: min(100%, 330px);
  margin: 0 auto 20px;
  padding: 8px;
  text-align: center;
  font-weight: 700;
  background-color: #273348;
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .footer__link--navy:hover {
    background-color: #2173b1;
  }
}
@media (min-width: 768px) {
  .footer__link--navy {
    width: auto;
    margin: 0;
    padding: 10px 20px;
  }
}
.footer__link--green {
  display: block;
  width: min(100%, 330px);
  margin: 0 auto 10px;
  padding: 8px;
  text-align: center;
  font-weight: 700;
  background-color: #06c755;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .footer__link--green:hover {
    opacity: 0.7;
  }
}
@media (min-width: 768px) {
  .footer__link--green {
    width: auto;
    margin: 0 0 10px 0;
    padding: 10px 20px;
  }
}
.footer__link-label {
  color: #fff;
}
.footer__annotation {
  width: min(100%, 330px);
  margin-inline: auto;
  text-align: left;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .footer__annotation {
    margin: 0;
  }
}
.footer__annotation br {
  display: none;
}
@media (min-width: 768px) {
  .footer__annotation br {
    display: inline;
  }
}
.footer__sns-list {
  margin-bottom: 60px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__sns-list {
    margin-left: auto;
    margin-bottom: 40px;
    text-align: right;
  }
}
.footer__sns-item {
  display: inline-block;
}
.footer__sns-item + .footer__sns-item {
  margin-left: 15px;
}
.footer__sns-link {
  display: inline-block;
}
.footer__copy {
  display: block;
  text-align: center;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .footer__copy {
    width: 100%;
    text-align: right;
  }
}
