/* main-visual部分のみ再構成 */
body {
  margin: 0;
  padding: 0;
  background: #f5f7fa !important;
  font-family: 'Noto Sans JP', 'Yu Gothic', 'Meiryo', sans-serif;
  overflow-x: hidden;
  font-size: 16px;
}

/* main-visual */
.main-visual {
  width: 100vw;
}

.main-visual__logo {
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 212px;
  height: 65px;

  img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}

.top-txt {
  display: none;
}

/* section01 */
.section01 {
  background: url('../images/post-1019/section01_bg.png') center center/cover no-repeat;
  padding: 131px 0;
}

/* section02 */
.section02 {
  background: url('../images/post-1019/section02_bg.png') center center/cover no-repeat;
  padding: 131px 0 295px;
}

/* 共通css */
.section__inner {
  max-width: 1508px;
  padding: 0 100px;
  margin: 0 auto;
}

.section__mainImg {
  border-radius: 12px;
  box-shadow: 4px 5px 5px #00000040;
  margin-bottom: 127px;
  width: 100%;
}

.section__rowWrapper {
  padding: 0 50px;

  :nth-child(2) {
    flex-direction: row-reverse;
  }
}

.section__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
  margin-bottom: 108px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.4, 0, .2, 1), transform 0.8s cubic-bezier(.4, 0, .2, 1);
}

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

.section__imgcol {
  height: auto;
  min-width: 35%;
  max-width: 46%;
  overflow: hidden;
  border-radius: 9px;
}

.section__txtcol {
  font-size: 1em;
  color: #222;
  line-height: 30px;
  width: 40%;
}

.section__txtcol p {
  color: #000;
  font-family: YuMincho;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}

.section__note {
  width: 100%;
  text-align: center;
}

.section__note__inner {
  color: #131313;
  font-size: 1em;
  font-weight: bold;
  display: inline-block;
  padding-bottom: 2px;
  letter-spacing: 0.04em;
  position: relative;
}

.section__note__txt {
  position: relative;
  z-index: 1;
}

.section__note__line {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 105%;
  height: 4px;
  background-color: #f6ff00;
  z-index: 0;
}

/* footer */
.footer {
  background: url('../images/post-1019/footer_bg.png') center center/cover no-repeat;
  height: 303px;
  position: relative;
}

.footer__period {
  position: absolute;
  bottom: 122px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  background: #ffffff;
  border-radius: 9px;
  box-shadow: 0 5px 5px #00000040;
  box-sizing: border-box;
  padding: 55px;
  text-align: center;
}

.footer__period p {
  color: #000;
  text-align: center;
  font-family: YuMincho;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
}

p.footer__period__title {
  font-size: 1em;
  color: #131313;
  line-height: 30px;
  font-weight: bold;
  margin-bottom: 28px;
}

p.footer__period__date {
  font-size: 1.5em;
  color: #131313;
  line-height: 30px;
  font-weight: bold;
  margin-bottom: 22px;
}

p.footer__period__note {
  font-size: 1em;
}

.footer__copyright {
  width: 100%;
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1em;
  color: #FFF;
  text-align: center;
  font-family: YuMincho;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  /* 133.333% */
}


@media (max-width: 1100px) {
  .section__rowWrapper {
    padding: initial;
  }

  .section__row {
    gap: initial;
  }

  .section__imgcol {
    max-width: 55%;
  }
}

@media (max-width: 850px) {
  .section01 {
    padding: 100px 0;
  }

  .section__mainImg {
    margin-bottom: 100px;
  }

  .section__rowWrapper {
    :nth-child(2) {
      flex-direction: initial;
    }
  }

  .section__row {
    display: block;
  }

  .section__imgcol {
    max-width: 100%;
    margin-bottom: 24px;
  }

  .section__txtcol {
    width: 100%;
  }

  .footer__period {
    padding: 30px;
  }
}

@media (max-width: 600px) {

  .top-txt {
    display: block;
    color: #000;
    text-align: justify;
    font-family: YuMincho;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 0 20px;

  }

  .section01 {
    padding: 58px 0;
    padding-top: 0;
  }

  .section02 {
    padding: 58px 0 160px;
  }

  .section__mainImg {
    width: calc(100% - 50px);
    margin: 0 auto 58px;
  }

  .section__inner {
    padding: 0;
  }

  .section__rowWrapper {
    width: 100vw;
  }

  .section__row {
    margin-bottom: 0;
  }

  .section__imgcol {
    width: 100vw;
    border-radius: 0;
    margin-bottom: 0;
  }

  .section__txtcol {
    width: initial;
    padding: 33px 25px;
  }

  .section__note__inner {
    font-size: 0.7em;
  }

  .footer__period {
    padding: 10px 16px;
    width: calc(100vw - 50px);
  }

  p.footer__period__title {
    margin-bottom: 10px;
  }

  p.footer__period__note {
    text-align: left;
  }
  .footer__copyright {
    color: #FFF;
    text-align: center;
    font-family: YuMincho;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px; 
  }
}