@charset "UTF-8";

.mtf {
  text-align: center;
  padding-inline: 20px;

}

/* ファーストビュー */
.first-view__line--mtf {
  background-color: #EAEFEF;
}

/* スクロール */
.mtf-scroll {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  text-align: center;
  font-size: 14px;
  margin-top: 20px;
  gap: 12px;
}

.mtf-scroll__content {
  padding: 8px 2px;
  margin-bottom: 20px;
  background-color: #F7F7F7;
  border: solid 1px #727171;
  border-radius: 12px;
  position: relative;
  transition: all 0.5s;
  color: #000000;
}

.mtf-scroll__content::after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background-image: url("../img/icon_arrow_down.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* セクション */
.mtf-section {
  margin-top: 30px;
  scroll-margin-top: 60px;
}

.mtf-section__title {
  position: relative;
  font-size: 1.5rem;
  font-weight: bold;
  padding-block: 10px;
}

.mtf-section__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 40%;
  border-bottom: 2px dotted #727171;
}

.mtf-section__text {
  margin-top: 20px;
  text-align: start;
}

.mtf-section__text--right {
  display: block;
  text-align: right;
}

.mtf-section__message-more {
  display: none;
}

.mtf-section__message-more.show {
  display: block;
}

.mtf-section__img {
  margin-top: 20px;
  width: 90vw;
  height: auto;
}

.mtf-section__btn {
  display: inline-block;
  position: relative;
  margin: 20px 0;
  padding: 10px 70px 10px 30px;
  color: #ffffff;
  background-color: #727171;
  border-radius: 33px;
}

.mtf-section__btn--bar {
  position: absolute;
  right: 20px;
  width: 15px;
  height: 2px;
  background-color: #fff;
}

.mtf-section__btn--bar:nth-child(2) {
  top: 22px;
  transform: rotate(90deg);
}

.mtf-section__btn--bar:nth-child(3) {
  top: 22px;
}

.show .mtf-section__btn--bar:nth-child(2) {
  transform: rotate(0deg);
  opacity: 0;
}

.mtf-section__dl {
  text-align: start;
  padding-inline: 20px;
}

.mtf-section__dt {
  display: inline-block;
  margin-top: 20px;
  padding: 3px 20px;
  font-weight: bold;
  font-weight: 18px;
  border: solid 1px #231815;
  border-radius: 12px;
}

.mtf-section__dd {
  margin-top: 10px;
}

.mtf-section__executive-more {
  display: none;
}

.mtf-section__executive-more.show {
  display: block;
}

.mtf-section__calendar {
  margin-top: 20px;
  padding: 5px;
  overflow: hidden;
  border: solid 1px #727171;
  border-radius: 12px;
}

.mtf-section__calendar iframe {
  width: 100%;
  aspect-ratio: 4/3;
  display: block;
  border: 0;
}

.mtf-section__info-text {
  margin-top: 20px;
}

.mtf-section__download-btn {
  display: inline-block;
  position: relative;
  margin-block: 20px;
  padding: 10px 70px 10px 30px;
  font-weight: bold;
  /* color: #ffffff; */
  /* background-color: #727171; */
  border: solid 1px #727171;
  border-radius: 33px;
}

.mtf-section__download-btn::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 3px;
  width: 25px;
  height: 25px;
  padding: 5px;
  margin: 5px;
  background-image: url("../img/pdf_download.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.mtf-section__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mtf-section__download-btn--company {
  width: 220px;
  margin-block: 20px 0;
}

/* 目的四か条 */
.objective {
  margin-top: 20px;
  padding-inline: 20px;
  text-align: start;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.objective__item {
  display: grid;
  font-weight: bold;
  grid-template-columns: 16px 1fr;
  column-gap: 10px;
}