.hero h1 img {
    width: 100%;
}
.c-toggle-item {
  background-color: #ffffff;
  margin-bottom: 1rem;
}
.c-toggle-item:last-child {
  margin-bottom: 0;
}
.c-toggle-item__title {
  padding: 1.6rem 1.6rem;
  padding-right: 4rem;
  display: grid;
  grid-template-columns: 3.7rem 1fr;
  font-size: 1.4rem;
  line-height: 2.1rem;
  font-weight: bold;
  gap: 1rem;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_1099%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%201099%22%20transform%3D%22translate(-304.5%20-4657.5)%22%3E%20%3Cline%20id%3D%22%E7%B7%9A_1%22%20data-name%3D%22%E7%B7%9A%201%22%20x1%3D%2216%22%20transform%3D%22translate(304.5%204665.5)%22%20fill%3D%22none%22%20stroke%3D%22%23707070%22%20stroke-width%3D%223%22%2F%3E%20%3Cline%20id%3D%22%E7%B7%9A_2%22%20data-name%3D%22%E7%B7%9A%202%22%20y1%3D%2216%22%20transform%3D%22translate(312.5%204657.5)%22%20fill%3D%22none%22%20stroke%3D%22%23707070%22%20stroke-width%3D%223%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: 1.6rem;
  background-position: top 1rem right 1rem;
  transition: 0.4s;
}
.c-toggle-item__title::before {
  content: "Q.";
  width: 3.3rem;
  height: 3.3rem;
  line-height: 3.3rem;
  text-align: center;
  display: inline-block;
  font-size: 3.2rem;
  font-weight: bold;
}
.c-toggle-item__body {
  background-color: #0097c4;
  color: #fff;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%223%22%20viewBox%3D%220%200%2016%203%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_1098%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%201098%22%20transform%3D%22translate(-304.5%20-4664)%22%3E%20%3Cline%20id%3D%22%E7%B7%9A_1%22%20data-name%3D%22%E7%B7%9A%201%22%20x1%3D%2216%22%20transform%3D%22translate(304.5%204665.5)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%223%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: top 1.8rem right 1rem;
  background-size: 1.6rem;
}
.c-toggle-item__body::before {
  color: #fff;
  content: "A.";
  width: 2.8rem;
  height: 2.8rem;
  line-height: 2.8rem;
  text-align: center;
  display: inline-block;
  font-size: 3.2rem;
  font-weight: bold;
  margin: 2rem 0 0rem 2rem;
}
.c-toggle-item__body p {
  padding: 0 4rem 2rem 6.5rem;
  margin-top: -4rem;
  font-size: 1.4rem;
}

.aside-content1 {
  height: 100vh;
  position: sticky;
  top: 0;
  left: 0;
  color: #707070;
  height: fit-content;
  font-size: 2rem;
  padding-top: 8rem;
  display: none;
}
@media print, screen and (min-width: 768px) {
  .aside-content1 {
    display: block;
  }
  .aside-content1__inner {
    padding: 3.3rem 2rem 3rem 2.5rem;
    height: 32.7rem;
    background-image: url("../images/menu-bg.svg");
    background-repeat: no-repeat;
    background-size: contain;
  }
}
.aside-content1__menu {
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  font-family: "M PLUS 1p", sans-serif;
  display: block;
  width: fit-content;
  line-height: 2.4rem;
  position: relative;
}
.aside-content1__menu + .aside-content1__menu {
  margin-top: 1.8rem;
}
.aside-content1__menu::before {
  opacity: 0;
  transition: 0.4s;
  content: "";
  position: absolute;
  inset: 0 auto 0 -3.5rem;
  margin: auto 0;
  width: 2.8rem;
  height: 2.8rem;
  background-image: url("../images/gold_triangle.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.aside-content1__menu.is-active::before {
  opacity: 1;
}

.aside-content2 {
  height: 100vh;
  position: sticky;
  top: 0;
  left: 0;
  display: none;
}
@media print, screen and (min-width: 768px) {
  .aside-content2 {
    display: block;
  }
}

.main {
  z-index: 10;
  position: relative;
  background-color: #212121;
}
@media (max-width: 767px) {
  .main {
    overflow-x: clip;
  }
}

@media print, screen and (min-width: 768px) {
  body {
    overflow: hidden;
    padding-top: 2rem;
  }
  .content {
    scroll-behavior: smooth;
    overflow: auto;
    max-height: calc(100vh - 4rem);
  }
  .wrapper {
    max-width: 125.2rem;
    padding: 0 6rem;
    margin: 0 auto;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    gap: 8rem;
    grid-template-columns: 35rem 1fr;
    position: relative;
    justify-content: center;
  }
  .wrapper--2 {
    z-index: -4;
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
  .aside {
    height: 100vh;
    position: sticky;
    top: 0;
    left: 0;
    padding: 8rem 0 0;
    transform: none !important;
  }
  .aside-hero {
    width: 54.5rem;
    margin-left: 1rem;
    margin-bottom: 2rem;
  }
  .aside-lead {
    width: 34.5rem;
    margin: 0 auto 1rem;
  }
  .aside-catch {
    width: 46.5rem;
    margin: 0 auto 3rem;
  }
  .aside-buttons {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    gap: 4rem;
    margin-bottom: 4rem;
  }
  .aside-band {
    height: 5rem;
    background-color: #e0e0e0;
    box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.09);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
  }
  .aside-band__title {
    width: 15rem;
    text-align: center;
  }
  .aside-band-items {
    display: flex;
    align-items: center;
    gap: 1.2rem;
  }
  .aside-band-item {
    width: 7rem;
    background-color: #006d9d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3.2rem;
  }
  .main-layer {
    position: absolute;
    width: 39rem;
    height: 100%;
    left: 52rem;
    position: absolute;
    height: 100%;
    background: #000;
    opacity: 0.7;
    filter: blur(30px);
    z-index: -1;
  }
  .main {
    position: relative;
    width: 41rem;
    scroll-behavior: smooth;
  }
}
@media (max-width: 767px) {
  .wrapper--2 {
    display: none !important;
  }
}
@media (max-width: 1417px) {
  .wrapper {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .aside {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 22;
    transform: translate(0, 100%);
    transition: 0.4s;
  }
  .aside.is-active {
    transform: none;
  }
  .aside.is-hide {
    transform: translate(0, 100%) !important;
  }
}

.foot {
  position: fixed;
  inset: auto 4.7rem 3rem auto;
  z-index: 2;
  height: 100vh;
  height: fit-content;
  align-content: end;
  color: #fff;
  font-size: 2rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  font-family: "M PLUS 1p", sans-serif;
  text-align: center;
}
.foot a {
  display: block;
  margin-top: 1rem;
  max-width: 24.6rem;
}
@media (max-width: 767px) {
  .foot {
    display: none;
  }
}

body {
  background: url("../images/bg.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 100% 100%;
  background-color: #533626;
}

.sec5 {
  background-image: url("../images/sec5.jpg");
  background-size: 100%;
  padding: 3.5rem 0 0;
  background-position: top -0.2rem center;
}
.sec5 h2 {
  margin-bottom: 3rem;
  text-align: center;
}
.sec5 h2 img {
  width: fit-content;
  margin: auto;
}
.sec5 .accent1 {
  width: 24.3rem;
  margin-left: auto;
  margin-bottom: 8rem;
}
.sec5__texts {
  padding: 0 1.5rem;
  margin-bottom: 3rem;
}
.sec5__texts li {
  list-style: none;
}
.sec5__texts a {
  text-decoration: underline;
}
.sec5__texts p {
  text-indent: -1em;
  margin-left: 1em;
}
.sec5__texts p::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  background-color: currentColor;
  rotate: 45deg;
  display: inline-block;
  margin-right: 0.7rem;
}
.sec5__texts > * {
  font-size: 1.2rem;
  line-height: 2;
  color: #fff;
  margin-bottom: 1.6rem;
}

.sec6 {
  position: relative;
  padding: 0 1.5rem;
}
.sec6 img {
  margin: auto;
}
.sec6 .button {
  position: absolute;
  inset: auto 0 3rem;
}

.sec7 {
  position: relative;
}
.sec7 .button {
  z-index: 1;
  position: absolute;
  margin: auto;
  inset: 100rem 0 auto 0;
  width: calc(100% - 3rem);
}
@media print, screen and (min-width: 768px) {
  .sec7 .button {
    inset: 110rem 0 auto 0;
  }
}

.info {
  background-image: url("../images/footer.jpg");
  background-repeat: no-repeat;
  background-size: 100%;
  height: 18.2rem;
  padding: 2.38rem 0 1.7rem;
  position: relative;
  margin-top: -10rem;
}
.info img {
  margin: auto;
}
@media print, screen and (min-width: 768px) {
  .info .info-img1 {
    width: 30rem;
  }
  .info .mail {
    width: 26.1rem;
  }
  .info .info-img2 {
    width: 20.4rem;
  }
}
.info .mail {
  margin: 2rem auto;
}

.sec3 {
  position: relative;
}
.sec3 a {
  width: 28.5rem;
  height: 5.9rem;
  position: absolute;
  inset: 41rem 1.5rem auto auto;
}
.sec4 {
  position: relative;
}
.sec4 a {
  width: 24.4rem;
  height: 4.8rem;
  position: absolute;
  inset: 33rem auto auto 7rem;
}

@media (max-width: 767px) {
  .sec3 a {
    width: 26.5rem;
    height: 4.9rem;
    position: absolute;
    inset: 38rem 1.5rem auto auto;
  }
  .sec4 a {
    width: 22.6rem;
    height: 3.8rem;
    position: absolute;
    inset: 30.8rem auto auto 6rem;
  }
}

.footer__copyright {
  background-color: #442d00;
  text-align: center;
  color: #fff;
  padding: 1em;
  font-size: 0.9em;
}