body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  color: #000000;
  background-color: #f8f8f8;
}

.hidden-sm {
  display: block;
}
@media screen and (min-width: 600px) {
  .hidden-sm {
    display: none;
  }
}

.hidden-md {
  display: block;
}
@media screen and (min-width: 768px) {
  .hidden-md {
    display: none;
  }
}

.hidden-lg {
  display: block;
}
@media screen and (min-width: 900px) {
  .hidden-lg {
    display: none;
  }
}

.hidden-xl {
  display: block;
}
@media screen and (min-width: 1200px) {
  .hidden-xl {
    display: none;
  }
}

.section__head {
  padding-block: 122px 115px;
  padding-inline: 30px;
}
@media screen and (min-width: 600px) {
  .section__head {
    padding-inline: 50px;
  }
}
@media screen and (min-width: 768px) {
  .section__head {
    padding-inline: 80px;
  }
}
@media screen and (min-width: 900px) {
  .section__head {
    padding-inline: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 10px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.section__title {
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}
@media screen and (min-width: 600px) {
  .section__title {
    font-size: 62px;
  }
}
@media screen and (min-width: 768px) {
  .section__title {
    font-size: 82px;
  }
}
@media screen and (min-width: 900px) {
  .section__title {
    font-size: 60px;
  }
}

.section__number {
  padding-top: 59px;
  color: #f98f00;
  font-size: 24px;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
}
@media screen and (min-width: 900px) {
  .section__number {
    padding-top: 0;
    font-size: 20px;
  }
}

.section__text {
  padding-top: 12px;
  font-size: 22px;
  line-height: 2;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .section__text {
    padding-top: 21px;
    font-size: 32px;
    line-height: 2;
  }
}
@media screen and (min-width: 900px) {
  .section__text {
    font-size: 22px;
  }
}

.section__body {
  border-top: 1px solid #e0e0e0;
  padding-block: 60px;
  padding-inline: 20px;
}
@media screen and (min-width: 600px) {
  .section__body {
    padding-block: 80px 120px;
    padding-inline: 40px;
  }
}
@media screen and (min-width: 768px) {
  .section__body {
    padding-block: 100px 160px;
    padding-inline: 80px;
  }
}
@media screen and (min-width: 900px) {
  .section__body {
    padding-block: 70px 160px;
    padding-inline: 40px;
  }
}
@media screen and (min-width: 1400px) {
  .section__body {
    padding-block: 70px 160px;
    padding-inline: 80px;
  }
}

html {
  scroll-behavior: smooth;
}

.header {
  height: 100px;
  width: 100%;
  position: sticky;
  z-index: 20;
  top: 0;
  background-color: #ffffff;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-block: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 900px) {
  .header__content {
    padding-right: 30px;
    padding-block: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .header__content {
    padding-right: 40px;
    padding-block: 30px;
  }
}

.header__logo.is-scroll .header__logo-image {
  height: 100px;
  padding-block: 0;
}

.header__logo-image {
  display: grid;
  place-items: center;
  padding-inline: 11.1111111111%;
  padding-block: 18.8888888889%;
  background-color: #ffffff;
}
.header__logo-image img {
  width: 140px;
  aspect-ratio: 140/112;
}

.header__logo-link {
  display: none;
  -webkit-transition: color 0.3s border 0.3s;
  transition: color 0.3s border 0.3s;
}
.header__logo-link:hover {
  border-bottom: 2px solid #f98f00;
  color: #f98f00;
}
.header__logo-link:hover::after {
  background-color: #f98f00;
}
@media screen and (min-width: 768px) {
  .header__logo-link {
    display: block;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 900px) {
  .header__logo-link {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .header__logo-link {
    font-size: 14px;
    position: relative;
  }
  .header__logo-link::after {
    position: absolute;
    content: "";
    width: 2px;
    height: 16px;
    background-color: #000000;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header__contact-btn {
  display: inline-block;
  padding: 8px 20px;
  background-color: #FF8E3C;
  color: #ffffff;
  border: 2px solid #FF8E3C;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header__contact-btn:hover {
  background-color: #e67a2a;
  border-color: #e67a2a;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 767px) {
  .header__contact-btn {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .header__contact-btn {
    font-size: 15px;
    padding: 10px 25px;
  }
}

@media screen and (min-width: 1200px) {
  .header__contact-btn {
    font-size: 16px;
    padding: 12px 30px;
    margin-left: 20px;
  }
}

.fixed-line-button {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  overflow: hidden;
}

.fixed-line-button.is-visible {
  opacity: 1;
  visibility: visible;
}

@media screen and (min-width: 768px) {
  .fixed-line-button {
    bottom: 40px;
  }
}

/* Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.bg-change {
  transition: background-color 0.6s ease;
}

.bg-change.is-visible {
  background-color: #ffffff;
}

.header__icon {
  width: 40px;
  height: 22px;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .header__icon {
    position: relative;
    -webkit-transform: none;
            transform: none;
  }
  .header__icon.is-open .drawer-icon__bar:nth-child(1) {
    top: 10px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .header__icon.is-open .drawer-icon__bar:nth-child(2) {
    opacity: 0;
  }
  .header__icon.is-open .drawer-icon__bar:nth-child(3) {
    top: 10px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}
@media screen and (min-width: 900px) {
  .header__icon {
    display: none;
  }
}

.drawer-icon__bar {
  position: absolute;
  width: 40px;
  height: 2px;
  left: 0;
  background-color: #000000;
}
.drawer-icon__bar:nth-child(1) {
  top: 0;
}
.drawer-icon__bar:nth-child(2) {
  top: 10px;
}
.drawer-icon__bar:nth-child(3) {
  top: 20px;
}

.header__nav {
  width: calc(100% - 40px);
  height: calc(100vh - 100px);
  position: fixed;
  top: 100px;
  right: 0;
  background: white;
  z-index: 50;
  padding: 20px 20px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
@media screen and (min-width: 600px) {
  .header__nav {
    width: calc(100% - 140px);
    padding: 30px 40px;
  }
}
@media screen and (min-width: 768px) {
  .header__nav {
    width: calc(100% - 180px);
    padding: 40px 60px;
  }
}
.header__nav.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.header__nav.is-open .header__log-image {
  height: 100px;
  padding-block: 0;
}

.header__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header__link {
  font-size: 18px;
  line-height: 3.57;
  font-weight: 600;
  -webkit-transition: color 0.3s border 0.3s;
  transition: color 0.3s border 0.3s;
}
.header__link:hover {
  color: #f98f00;
  border-bottom: 2px solid #f98f00;
}
@media screen and (min-width: 600px) {
  .header__link {
    font-size: 22px;
  }
}
@media screen and (min-width: 768px) {
  .header__link {
    font-size: 28px;
    line-height: 3.57;
    font-weight: 600;
  }
}

.header__nav-line {
  margin-top: 60px;
  max-width: 300px;
}
@media screen and (min-width: 600px) {
  .header__nav-line {
    max-width: none;
  }
}

.header__menu {
  display: none;
}
@media screen and (min-width: 900px) {
  .header__menu {
    display: block;
  }
}

.menu-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (min-width: 1200px) {
  .menu-lists {
    gap: 20px;
  }
}

.menu-link {
  font-weight: bold;
  font-size: 12px;
  line-height: 2.5;
  -webkit-transition: color 0.3s border 0.3s;
  transition: color 0.3s border 0.3s;
}
.menu-link:hover {
  color: #f98f00;
  border-bottom: 2px solid #f98f00;
}
@media screen and (min-width: 1200px) {
  .menu-link {
    font-size: 14px;
  }
}

.mv {
  height: calc(100vh + 100px);
  position: relative;
  background: url(../img/mv-sp.png) no-repeat center center/cover;
}
@media screen and (min-width: 900px) {
  .mv {
    background: url(../img/mv-pc.png) no-repeat center center/cover;
    padding-top: 36.1111111111%;
    height: auto;
  }
}

.mv__title-wrapper {
  padding-top: 40px;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .mv__title-wrapper {
    padding-top: 54px;
  }
}
@media screen and (min-width: 768px) {
  .mv__title-wrapper {
    padding-top: 38px;
  }
}
@media screen and (min-width: 900px) {
  .mv__title-wrapper {
    margin-top: 0;
    position: absolute;
    top: 40px;
    left: 160px;
    padding: 0;
  }
}
@media screen and (min-width: 1200px) {
  .mv__title-wrapper {
    position: absolute;
    top: 65px;
    left: 200px;
    padding: 0;
  }
}

.mv__title-sub {
  font-size: 28px;
  letter-spacing: 0.025em;
  font-weight: bold;
}
@media screen and (min-width: 600px) {
  .mv__title-sub {
    font-size: 28px;
  }
}
@media screen and (min-width: 768px) {
  .mv__title-sub {
    font-size: 32px;
  }
}
@media screen and (min-width: 900px) {
  .mv__title-sub {
    font-size: 18px;
    text-align: left;
  }
}
@media screen and (min-width: 1200px) {
  .mv__title-sub {
    font-size: 24px;
  }
}

.mv__title-main {
  margin-top: 10px;
  font-weight: bold;
  font-size: 36px;
  line-height: 1.4;
  letter-spacing: 0.025em;
  background: -webkit-gradient(linear, left top, right top, from(#df400c), to(#faa500));
  background: linear-gradient(90deg, #df400c, #faa500);
  -webkit-background-clip: text;
  color: transparent;
}
@media screen and (min-width: 600px) {
  .mv__title-main {
    margin-top: 0px;
    font-size: 42px;
  }
}
@media screen and (min-width: 768px) {
  .mv__title-main {
    margin-top: 10px;
    font-size: 48px;
  }
}
@media screen and (min-width: 900px) {
  .mv__title-main {
    margin-top: 0;
    font-size: 30px;
    text-align: left;
  }
}
@media screen and (min-width: 1200px) {
  .mv__title-main {
    font-size: 42px;
  }
}

.mv__merit {
  position: absolute;
  bottom: -200px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  padding-inline: 20px;
}
@media screen and (min-width: 600px) {
  .mv__merit {
    bottom: -280px;
    padding-inline: 30px;
  }
}
@media screen and (min-width: 768px) {
  .mv__merit {
    bottom: -360px;
    padding-inline: 60px;
  }
}
@media screen and (min-width: 900px) {
  .mv__merit {
    bottom: 20%;
    left: 10%;
    -webkit-transform: none;
            transform: none;
    padding-inline: 0;
    width: auto;
  }
  .mv__merit img {
    width: 31.25%;
    height: auto;
  }
}
@media screen and (min-width: 1200px) {
  .mv__merit img {
    width: 34.7222222222%;
  }
}

.mv__entry {
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: calc(100% - 80px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: white;
  padding: 30px 18px 21px;
  border-radius: 16px;
  -webkit-box-shadow: 9.64px 12.82px 30px rgba(0, 0, 0, 0.16);
          box-shadow: 9.64px 12.82px 30px rgba(0, 0, 0, 0.16);
  max-width: 700px;
}
@media screen and (min-width: 600px) {
  .mv__entry {
    padding: 40px 20px 30px;
    bottom: 0px;
  }
}
@media screen and (min-width: 768px) {
  .mv__entry {
    padding: 55px 30px 39px;
    bottom: -100px;
  }
}
@media screen and (min-width: 900px) {
  .mv__entry {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    bottom: -30px;
    max-width: 860px;
    padding: 16px 20px;
  }
}
@media screen and (min-width: 1200px) {
  .mv__entry {
    bottom: -40px;
  }
}
@media screen and (min-width: 1400px) {
  .mv__entry {
    bottom: -30px;
  }
}

.mv__entry-text {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .mv__entry-text {
    font-size: 28px;
  }
}
@media screen and (min-width: 768px) {
  .mv__entry-text {
    font-size: 32px;
  }
}
@media screen and (min-width: 900px) {
  .mv__entry-text {
    font-size: 22px;
    text-align: left;
  }
}

@media screen and (min-width: 900px) {
  .mv__entry-text-wrapper {
    -webkit-box-flex: 1.8;
        -ms-flex: 1.8;
            flex: 1.8;
  }
}

.my__entry-text-pc {
  display: none;
}
@media screen and (min-width: 900px) {
  .my__entry-text-pc {
    display: block;
    font-size: 16px;
    font-weight: 600;
  }
}
@media screen and (min-width: 1200px) {
  .my__entry-text-pc {
    font-size: 18px;
  }
}

.text-gradient {
  background: -webkit-gradient(linear, left top, right top, from(#df400c), to(#faa500));
  background: linear-gradient(90deg, #df400c, #faa500);
  -webkit-background-clip: text;
  color: transparent;
}

.line-button {
  display: block;
  margin-top: 15px;
  font-size: 18px;
  background-color: #06c755;
  color: white;
  padding-block: 20px;
  border-radius: 50px;
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.line-button:hover {
  background-color: #1adb69;
}
@media screen and (min-width: 600px) {
  .line-button {
    margin-top: 28px;
    font-size: 22px;
    padding-block: 24px;
  }
}
@media screen and (min-width: 768px) {
  .line-button {
    margin-top: 40px;
    font-size: 28px;
    margin-inline: auto;
    padding-block: 30px;
  }
}
@media screen and (min-width: 900px) {
  .line-button {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-size: 18px;
    letter-spacing: 0.25;
    max-width: none;
    padding-block: 10px;
    padding-inline: 40px;
    margin-top: 0;
    width: 100%;
  }
}

.issue {
  position: relative;
  margin-top: 200px;
  padding-bottom: 160px;
}
@media screen and (min-width: 600px) {
  .issue {
    margin-top: 290px;
  }
}
@media screen and (min-width: 768px) {
  .issue {
    margin-top: 390px;
  }
}
@media screen and (min-width: 900px) {
  .issue {
    margin-top: 122px;
    padding-bottom: 120px;
  }
}

.issue__title {
  color: white;
}
@media screen and (min-width: 768px) {
  .issue__title {
    font-size: 120px;
  }
}
@media screen and (min-width: 900px) {
  .issue__title {
    font-size: 80px;
  }
}

.issue__text {
  text-align: center;
  font-size: 32px;
  color: #000000;
  font-weight: bold;
  line-height: 1.67;
}
@media screen and (min-width: 600px) {
  .issue__text {
    font-size: 36px;
  }
}
@media screen and (min-width: 768px) {
  .issue__text {
    font-size: 42px;
  }
}
@media screen and (min-width: 900px) {
  .issue__text {
    font-size: 30px;
  }
}

.issue__card-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  padding-inline: 20px;
  gap: 30px;
}
@media screen and (min-width: 900px) {
  .issue__card-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
    padding-inline: 20px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .issue__card-wrapper {
    gap: 30px;
    padding-inline: 40px;
  }
}

.issue__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 80px;
  position: relative;
  background-color: white;
  border-radius: 40px;
}
@media screen and (min-width: 600px) {
  .issue__card {
    margin-top: 100px;
  }
}
@media screen and (min-width: 768px) {
  .issue__card {
    margin-top: 100px;
  }
}
@media screen and (min-width: 900px) {
  .issue__card {
    border-radius: 14px;
  }
}

.issue__card__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 140px 20px 20px;
}
@media screen and (min-width: 600px) {
  .issue__card__inner {
    padding: 160px 20px 20px;
  }
}
@media screen and (min-width: 768px) {
  .issue__card__inner {
    padding: 197px 30px 30px;
  }
}
@media screen and (min-width: 900px) {
  .issue__card__inner {
    padding: 90px 10px 20px;
  }
}

.issue__card-image {
  position: absolute;
}

.issue__icon-no1 {
  top: -54px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.issue__icon-no1 img {
  aspect-ratio: 109/212;
  width: 90px;
}
@media screen and (min-width: 768px) {
  .issue__icon-no1 img {
    width: 109px;
  }
}
@media screen and (min-width: 900px) {
  .issue__icon-no1 img {
    width: 71px;
  }
}

.issue__icon-no2 {
  top: -58px;
  left: 50%;
  -webkit-transform: translateX(-35%);
          transform: translateX(-35%);
}
.issue__icon-no2 img {
  aspect-ratio: 232/216;
  width: 200px;
}
@media screen and (min-width: 768px) {
  .issue__icon-no2 img {
    width: 232px;
  }
}
@media screen and (min-width: 900px) {
  .issue__icon-no2 img {
    width: 150px;
  }
}

.issue__icon-no3 {
  top: -100px;
  left: 50%;
  -webkit-transform: translateX(-25%);
          transform: translateX(-25%);
}
.issue__icon-no3 img {
  aspect-ratio: 231/274;
  width: 200px;
}
@media screen and (min-width: 768px) {
  .issue__icon-no3 img {
    width: 231px;
  }
}
@media screen and (min-width: 900px) {
  .issue__icon-no3 img {
    width: 150px;
  }
}

.issue__card-title {
  font-size: 24px;
  line-height: 1.56;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .issue__card-title {
    font-size: 32px;
  }
}
@media screen and (min-width: 768px) {
  .issue__card-title {
    font-size: 36px;
  }
}
@media screen and (min-width: 900px) {
  .issue__card-title {
    font-size: 20px;
  }
}

.text-orange {
  color: #f98f00;
}

.issue__card-box {
  margin-top: 10px;
  background-color: #f8f8f8;
  border-radius: 28px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 600px) {
  .issue__card-box {
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px) {
  .issue__card-box {
    margin-top: 30px;
  }
}

.issue__card-box-title {
  background-image: url(../img/issue-bubble.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  text-align: center;
  width: 100%;
  font-size: 20px;
  font-weight: bold;
  padding-block: 10px 24px;
  color: white;
}
@media screen and (min-width: 600px) {
  .issue__card-box-title {
    font-size: 28px;
  }
}
@media screen and (min-width: 768px) {
  .issue__card-box-title {
    font-size: 36px;
  }
}
@media screen and (min-width: 900px) {
  .issue__card-box-title {
    font-size: 18px;
  }
}

.issue__card-box-text {
  padding: 15px 15px 30px;
  font-size: 18px;
  line-height: 1.75;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 600px) {
  .issue__card-box-text {
    font-size: 22px;
    padding: 20px 20px 30px;
  }
}
@media screen and (min-width: 768px) {
  .issue__card-box-text {
    font-size: 24px;
    padding: 28px 20px 47px;
  }
}
@media screen and (min-width: 900px) {
  .issue__card-box-text {
    font-size: 14px;
    padding: 10px 20px;
  }
}
@media screen and (min-width: 1200px) {
  .issue__card-box-text {
    font-size: 20px;
    padding: 10px 20px;
  }
}

.issue__entry {
  padding-inline: 70px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -50px;
  width: 100%;
  z-index: 2;
}
@media screen and (min-width: 900px) {
  .issue__entry {
    bottom: -30px;
    padding-inline: 0;
    width: auto;
  }
}

.conclusion {
  position: relative;
  padding-block: 134px 159px;
  background-color: white;
}
@media screen and (min-width: 900px) {
  .conclusion {
    padding-block: 74px 118px;
    height: auto;
  }
}

.conclusion__image img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 900px) {
  .conclusion__image img {
    padding-left: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .conclusion__image img {
    padding-left: 60px;
  }
}

.conclusion__ad {
  position: static;
  margin-top: 78px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .conclusion__ad {
    margin-top: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.conclusion__ad-logo img {
  width: 200px;
  height: 160px;
}
@media screen and (min-width: 900px) {
  .conclusion__ad-logo img {
    width: 120px;
    height: 96px;
  }
}

.conclusion__ad-head {
  margin-top: 50px;
}
@media screen and (min-width: 900px) {
  .conclusion__ad-head {
    margin-top: 24px;
  }
}

.conclusion__ad-title-normal {
  font-weight: bold;
  font-size: 24px;
  line-height: 2;
}
@media screen and (min-width: 600px) {
  .conclusion__ad-title-normal {
    font-size: 28px;
  }
}
@media screen and (min-width: 900px) {
  .conclusion__ad-title-normal {
    font-size: 20px;
  }
}

.conclusion__ad-title-emphasis {
  font-weight: bold;
  font-size: 36px;
  line-height: 1.45;
}
@media screen and (min-width: 600px) {
  .conclusion__ad-title-emphasis {
    font-size: 40px;
  }
}
@media screen and (min-width: 900px) {
  .conclusion__ad-title-emphasis {
    font-size: 24px;
  }
}

.conclusion__ad-text {
  margin-top: 64px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.8;
}
@media screen and (min-width: 600px) {
  .conclusion__ad-text {
    font-size: 28px;
  }
}
@media screen and (min-width: 900px) {
  .conclusion__ad-text {
    margin-top: 20px;
    font-size: 18px;
  }
}

.strength {
  background-color: white;
  border-top: 1px solid #e0e0e0;
}
@media screen and (min-width: 900px) {
  .strength {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.section__sidebar {
  display: none;
}
@media screen and (min-width: 900px) {
  .section__sidebar {
    display: block;
    position: sticky;
    top: 100px;
    width: 240px;
    padding-inline: 30px;
    border-right: 1px solid #e0e0e0;
  }
}

.section__sidebar-lists {
  margin-top: 100px;
}

.section__sidebar-link {
  font-size: 14px;
  line-height: 2.5;
  font-weight: 600;
  -webkit-transition: color 0.3s border 0.3s;
  transition: color 0.3s border 0.3s;
}
.section__sidebar-link:hover {
  color: #f98f00;
  border-bottom: 2px solid #f98f00;
}

.sidebar__no {
  padding-right: 6px;
}

@media screen and (min-width: 900px) {
  .main__content {
    width: calc(100% - 240px);
  }
}

.strength__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
}
.strength__card:nth-of-type(2), .strength__card:nth-of-type(3) {
  margin-top: 100px;
}
@media screen and (min-width: 768px) {
  .strength__card {
    gap: 100px;
  }
}
@media screen and (min-width: 900px) {
  .strength__card {
    gap: 30px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 900px) {
  .strength__card-head {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.strength__card-image {
  text-align: center;
}
.strength__card-image img {
  width: 100%;
}

.strength__card-body {
  position: relative;
}
@media screen and (min-width: 900px) {
  .strength__card-body {
    -webkit-box-flex: 1.5;
        -ms-flex: 1.5;
            flex: 1.5;
  }
}

.strength__card-title {
  text-align: center;
}

.card__title {
  font-size: 26px;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (min-width: 600px) {
  .card__title {
    font-size: 28px;
  }
}
@media screen and (min-width: 768px) {
  .card__title {
    font-size: 36px;
  }
}
@media screen and (min-width: 768px) and (min-width: 900px) {
  .card__title {
    font-size: 24px;
  }
}
@media screen and (min-width: 900px) {
  .card__title {
    font-size: 20px;
    line-height: 1.6;
    text-align: left;
  }
}
@media screen and (min-width: 1200px) {
  .card__title {
    font-size: 28px;
  }
}

.card__text {
  padding-top: 28px;
  line-height: 1.5;
  font-weight: normal;
  font-size: 22px;
}
@media screen and (min-width: 900px) {
  .card__text {
    font-size: 16px;
    padding-top: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .card__text {
    font-size: 18px;
    padding-top: 20px;
  }
}

.strength__card-icon {
  position: absolute;
  top: -134px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.strength__card-icon img {
  width: 100px;
  height: 100px;
}
@media screen and (min-width: 768px) {
  .strength__card-icon {
    top: -160px;
  }
  .strength__card-icon img {
    width: 120px;
    height: 120px;
  }
}
@media screen and (min-width: 900px) {
  .strength__card-icon {
    position: static;
    -webkit-transform: none;
            transform: none;
  }
  .strength__card-icon img {
    width: 40px;
    height: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .strength__card-icon img {
    width: 60px;
    height: 60px;
  }
}

.text-bar {
  position: relative;
}
.text-bar::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -10px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 10px;
  height: 3px;
  background-color: #f98f00;
}

.stepup {
  border-top: 1px solid #e0e0e0;
  background-color: #282828;
}
@media screen and (min-width: 900px) {
  .stepup {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.stepup__title {
  color: white;
}

.stepup__text {
  color: white;
}

.text-white {
  color: white;
}

.stepup__body {
  background-color: #282828;
}

.stepup__card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.stepup__card:nth-of-type(2), .stepup__card:nth-of-type(3) {
  margin-top: 100px;
}
@media screen and (min-width: 768px) {
  .stepup__card {
    gap: 100px;
  }
}
@media screen and (min-width: 900px) {
  .stepup__card {
    gap: 30px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .stepup__card:nth-of-type(1) {
    margin-right: 120px;
  }
  .stepup__card:nth-of-type(2) {
    margin-left: 60px;
    margin-right: 60px;
  }
  .stepup__card:nth-of-type(3) {
    margin-left: 120px;
  }
}
@media screen and (min-width: 1200px) {
  .stepup__card {
    gap: 30px;
  }
  .stepup__card:nth-of-type(1) {
    margin-right: 160px;
  }
  .stepup__card:nth-of-type(2) {
    margin-left: 80px;
    margin-right: 80px;
  }
  .stepup__card:nth-of-type(3) {
    margin-left: 160px;
  }
}

@media screen and (min-width: 900px) {
  .stepup__card-head {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.stepup__card-number {
  position: absolute;
  top: -41px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.stepup__card-number img {
  width: 103px;
  height: 66px;
}
@media screen and (min-width: 900px) {
  .stepup__card-number {
    position: static;
    -webkit-transform: none;
            transform: none;
  }
  .stepup__card-number img {
    width: 40px;
    height: 25.6310679612px;
  }
}
@media screen and (min-width: 1200px) {
  .stepup__card-number {
    position: static;
    -webkit-transform: none;
            transform: none;
  }
  .stepup__card-number img {
    width: 67px;
    height: 42.932038835px;
  }
}

.stepup__card-image {
  width: 100%;
}
.stepup__card-image img {
  width: 100%;
}

@media screen and (min-width: 900px) {
  .stepup__card-body {
    -webkit-box-flex: 1.6;
        -ms-flex: 1.6;
            flex: 1.6;
  }
}

.stepup__card-title {
  color: white;
}
@media screen and (min-width: 1200px) {
  .stepup__card-title {
    margin-top: 10px;
  }
}

.stepup__card-text {
  color: white;
}

.reason {
  border-top: 1px solid #e0e0e0;
  background-color: white;
}
@media screen and (min-width: 900px) {
  .reason {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.reason__body {
  padding: 0;
}

.reason__card {
  padding: 60px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: white;
}
.reason__card:nth-of-type(2), .reason__card:nth-of-type(3) {
  border-top: 1px solid #e0e0e0;
}
@media screen and (min-width: 900px) {
  .reason__card {
    padding: 60px 40px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (min-width: 1200px) {
  .reason__card {
    padding: 60px 60px;
  }
}

@media screen and (min-width: 900px) {
  .reason__card-head {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.reason__card-title {
  margin-top: 38px;
}

@media screen and (min-width: 900px) {
  .reason__card-body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.voice {
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}
@media screen and (min-width: 900px) {
  .voice {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.voice__body {
  padding-block: 100px 40px;
  position: relative;
  margin-bottom: 100px;
  padding-inline: 0;
}
@media screen and (min-width: 600px) {
  .voice__body {
    padding-block: 100px 80px;
  }
}
@media screen and (min-width: 768px) {
  .voice__body {
    padding-block: 100px;
  }
}
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  background-color: white;
  padding: 40px 20px;
  border-radius: 40px;
  position: relative;
  margin-block: 20px;
}
@media screen and (min-width: 600px) {
  .swiper-slide {
    padding: 60px 40px;
  }
}
@media screen and (min-width: 768px) {
  .swiper-slide {
    padding: 60px 45px;
  }
}
@media screen and (min-width: 900px) {
  .swiper-slide {
    padding: 60px 40px;
  }
}

.voice__card-mark {
  position: absolute;
  top: -20px;
  left: 36px;
}
.voice__card-mark img {
  width: 50px;
  aspect-ratio: 70/60;
}
@media screen and (min-width: 600px) {
  .voice__card-mark img {
    width: 60px;
  }
}
@media screen and (min-width: 768px) {
  .voice__card-mark img {
    width: 70px;
  }
}
@media screen and (min-width: 900px) {
  .voice__card-mark img {
    width: 40px;
  }
}

.voice__card-mark-bottom {
  position: absolute;
  bottom: -20px;
  right: 36px;
}
.voice__card-mark-bottom img {
  width: 50px;
  aspect-ratio: 70/60;
}
@media screen and (min-width: 600px) {
  .voice__card-mark-bottom img {
    width: 60px;
  }
}
@media screen and (min-width: 768px) {
  .voice__card-mark-bottom img {
    width: 70px;
  }
}
@media screen and (min-width: 900px) {
  .voice__card-mark-bottom img {
    width: 40px;
  }
}

@media screen and (min-width: 900px) {
  .voice__card-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.voice__card-image {
  text-align: center;
}
.voice__card-image img {
  width: 140px;
  height: 140px;
}
@media screen and (min-width: 768px) {
  .voice__card-image img {
    width: 160px;
    height: 160px;
  }
}
@media screen and (min-width: 900px) {
  .voice__card-image img {
    width: 80px;
    height: 80px;
  }
}

.voice__card-title {
  margin-top: 20px;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.65;
}
@media screen and (min-width: 600px) {
  .voice__card-title {
    top: 30px;
    font-size: 32px;
  }
}
@media screen and (min-width: 768px) {
  .voice__card-title {
    margin-top: 40px;
    font-size: 36px;
  }
}
@media screen and (min-width: 900px) {
  .voice__card-title {
    font-size: 24px;
    margin-top: 0;
  }
}

.voice__card-career {
  color: #8f8f8f;
  line-height: 1.65;
  font-size: 18px;
}
@media screen and (min-width: 600px) {
  .voice__card-career {
    font-size: 22px;
  }
}
@media screen and (min-width: 768px) {
  .voice__card-career {
    font-size: 24px;
  }
}
@media screen and (min-width: 900px) {
  .voice__card-career {
    font-size: 16px;
  }
}

.voice__card-body {
  margin-top: 20px;
}
@media screen and (min-width: 600px) {
  .voice__card-body {
    margin-top: 30px;
  }
}
@media screen and (min-width: 768px) {
  .voice__card-body {
    margin-top: 50px;
  }
}

.voice__card-text {
  font-size: 24px;
  line-height: 1.6;
  font-size: 18px;
}
@media screen and (min-width: 600px) {
  .voice__card-text {
    font-size: 22px;
  }
}
@media screen and (min-width: 768px) {
  .voice__card-text {
    font-size: 24px;
    line-height: 2;
  }
}
@media screen and (min-width: 900px) {
  .voice__card-text {
    font-size: 16px;
  }
}

.voice__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  bottom: 0 !important;
}
.voice__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin-left: 0 !important;
  margin-right: 0 !important;
  background: #bcbcbc;
  opacity: 1;
}
.voice__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fabe00;
}
@media screen and (min-width: 900px) {
  .voice__pagination {
    display: none;
  }
}

.swiper-button-prev,
.swiper-button-next {
  font-size: 40px;
  display: none;
  top: 100% !important;
  -webkit-transition: background-color 0.3s fill 0.3s;
  transition: background-color 0.3s fill 0.3s;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: white;
}
.swiper-button-prev:hover svg path,
.swiper-button-next:hover svg path {
  fill: black;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}
@media screen and (min-width: 900px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: block;
    width: 50px !important;
    height: 50px !important;
    background-color: black;
    border-radius: 50%;
    border: 2px solid black;
  }
  .swiper-button-prev::after,
  .swiper-button-next::after {
    display: none;
  }
}

.swiper-button-prev {
  left: calc(100% - 140px) !important;
}

.faq {
  padding-block: 150px;
  background-color: white;
}

.faq__inner {
  padding-inline: 25px;
}
@media screen and (min-width: 900px) {
  .faq__inner {
    padding-inline: 210px 120px;
  }
}

.faq__title {
  font-size: 60px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
}

.faq__text {
  margin-top: 30px;
  font-size: 28px;
  text-align: center;
  line-height: 1;
  font-weight: bold;
}

.faq__body {
  margin-top: 79px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 900px) {
  .faq__body {
    gap: 10px;
  }
}

.qa__box {
  padding: 36px 15px 15px;
  background-color: #f8f8f8;
  border-radius: 20px;
  max-width: 1200px;
}
@media screen and (min-width: 768px) {
  .qa__box {
    padding: 30px 20px;
  }
}
.qa__box.is-open .qa-box__head::before {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.qa__box.is-open .qa-box__head-text {
  color: #f98f00;
}

.qa-box__head {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.qa-box__head::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 25px;
  height: 3px;
  background-color: #f98f00;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media screen and (min-width: 768px) {
  .qa-box__head::before {
    width: 30px;
    height: 4px;
  }
}
@media screen and (min-width: 900px) {
  .qa-box__head::before {
    width: 20px;
    height: 2px;
  }
}
.qa-box__head::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 25px;
  height: 3px;
  background-color: #f98f00;
}
@media screen and (min-width: 768px) {
  .qa-box__head::after {
    width: 30px;
    height: 4px;
  }
}
@media screen and (min-width: 900px) {
  .qa-box__head::after {
    width: 20px;
    height: 2px;
  }
}

.qa-box__head-icon {
  font-size: 24px;
  line-height: 2.5;
  color: #f98f00;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}
@media screen and (min-width: 600px) {
  .qa-box__head-icon {
    font-size: 36px;
  }
}
@media screen and (min-width: 768px) {
  .qa-box__head-icon {
    font-size: 40px;
  }
}
@media screen and (min-width: 900px) {
  .qa-box__head-icon {
    font-size: 24px;
  }
}

.qa-box__head-text {
  font-weight: bold;
  font-size: 20px;
  line-height: 1.2;
  color: #000000;
  text-align: left;
  padding-inline: 30px 40px;
}
@media screen and (min-width: 600px) {
  .qa-box__head-text {
    font-size: 22px;
  }
}
@media screen and (min-width: 768px) {
  .qa-box__head-text {
    font-size: 28px;
    line-height: 1;
  }
}
@media screen and (min-width: 900px) {
  .qa-box__head-text {
    font-size: 18px;
  }
}

.qa-box__body {
  display: none;
}

.qa-box__a {
  margin-top: 10px;
}

.qa-box__a-text {
  padding: 30px 20px;
  background-color: white;
  border-radius: 20px;
  text-align: left;
  font-size: 18px;
  line-height: 2;
}
@media screen and (min-width: 600px) {
  .qa-box__a-text {
    font-size: 22px;
  }
}
@media screen and (min-width: 768px) {
  .qa-box__a-text {
    font-size: 24px;
  }
}
@media screen and (min-width: 900px) {
  .qa-box__a-text {
    font-size: 16px;
  }
}

.ad {
  background: url(../img/ad-image.png) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .ad {
    background: url(../img/ad-image-pc.png) no-repeat center center/cover;
  }
}

.add__inner {
  padding-block: 60px;
}
@media screen and (min-width: 600px) {
  .add__inner {
    padding-block: 77px;
  }
}
@media screen and (min-width: 768px) {
  .add__inner {
    padding-block: 100px;
  }
}

.ad__head {
  text-align: center;
}

.add__title {
  font-weight: bold;
  font-size: 18px;
  color: white;
}
@media screen and (min-width: 768px) {
  .add__title {
    font-size: 22px;
  }
}
@media screen and (min-width: 768px) {
  .add__title {
    font-size: 28px;
  }
}
@media screen and (min-width: 900px) {
  .add__title {
    font-size: 22px;
    line-height: 2;
  }
}

.add__title-large {
  font-weight: bold;
  font-size: 32px;
  color: white;
}
@media screen and (min-width: 768px) {
  .add__title-large {
    font-size: 36px;
  }
}
@media screen and (min-width: 768px) {
  .add__title-large {
    font-size: 42px;
  }
}
@media screen and (min-width: 900px) {
  .add__title-large {
    font-size: 32px;
  }
}

.ad__merit-wrapper {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 600px) {
  .ad__merit-wrapper {
    margin-top: 30px;
    gap: 20px;
  }
}
@media screen and (min-width: 768px) {
  .ad__merit-wrapper {
    margin-top: 50px;
    gap: 25px;
  }
}
.ad__merit-image img {
  aspect-ratio: 1/1;
  width: 100px;
}
@media screen and (min-width: 600px) {
  .ad__merit-image img {
    width: 160px;
  }
}
@media screen and (min-width: 768px) {
  .ad__merit-image img {
    width: 190px;
  }
}
@media screen and (min-width: 900px) {
  .ad__merit-image img {
    width: 100px;
    height: 100px;
  }
}

.ad__text {
  margin-top: 20px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: white;
  line-height: 1.6;
}
@media screen and (min-width: 600px) {
  .ad__text {
    margin-top: 30px;
    font-size: 28px;
  }
}
@media screen and (min-width: 768px) {
  .ad__text {
    font-size: 32px;
    margin-top: 59px;
  }
}
@media screen and (min-width: 900px) {
  .ad__text {
    margin-top: 20px;
    font-size: 20px;
  }
}

.ad__button {
  margin-top: 20px;
  width: 80%;
  max-width: 400px;
  letter-spacing: 0.025em;
}
@media screen and (min-width: 600px) {
  .ad__button {
    margin-top: 50px;
    max-width: 600px;
  }
}
@media screen and (min-width: 768px) {
  .ad__button {
    margin-top: 69px;
  }
}
@media screen and (min-width: 900px) {
  .ad__button {
    margin-top: 49px;
    max-width: 270px;
    font-size: 18px;
  }
}

.footer {
  padding-block: 80px;
  background-color: white;
  text-align: center;
}

.footer__menu {
  display: none;
}
@media screen and (min-width: 900px) {
  .footer__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
  }
}

.footer__logo img {
  width: 120px;
  aspect-ratio: 180/144;
}
@media screen and (min-width: 600px) {
  .footer__logo img {
    width: 160px;
    aspect-ratio: 180/144;
  }
}
@media screen and (min-width: 768px) {
  .footer__logo img {
    width: 180px;
    aspect-ratio: 180/144;
  }
}
@media screen and (min-width: 900px) {
  .footer__logo {
    margin-top: 60px;
  }
  .footer__logo img {
    width: 100px;
    aspect-ratio: 180/144;
  }
}

.footer__company {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .footer__company {
    margin-top: 61px;
  }
}
@media screen and (min-width: 900px) {
  .footer__company {
    margin-top: 20px;
  }
}

.footer__company-name {
  position: relative;
  margin-top: 59px;
  line-height: 1;
  font-size: 16px;
}
.footer__company-name::after {
  position: absolute;
  top: 50%;
  right: -20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 14px;
  height: 14px;
  background: url(../img/footer-arrow.png) no-repeat center center/contain;
}
@media screen and (min-width: 600px) {
  .footer__company-name {
    font-size: 22px;
  }
  .footer__company-name::after {
    width: 14px;
    height: 14px;
    right: -30px;
  }
}
@media screen and (min-width: 768px) {
  .footer__company-name {
    font-size: 24px;
  }
  .footer__company-name::after {
    width: 16px;
    height: 16px;
    right: -40px;
  }
}
@media screen and (min-width: 900px) {
  .footer__company-name {
    font-size: 12px;
  }
  .footer__company-name::after {
    width: 10px;
    height: 10px;
    right: -20px;
  }
}

.footer__copyright {
  margin-top: 80px;
  font-size: 12px;
  color: #989898;
}
@media screen and (min-width: 600px) {
  .footer__copyright {
    margin-top: 100px;
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 120px;
    font-size: 20px;
  }
}
@media screen and (min-width: 900px) {
  .footer__copyright {
    margin-top: 53px;
    font-size: 12px;
  }
}