@charset "UTF-8";
.sp-view {
  display: none;
}

@media screen and (max-width: 767px) {
  .pc-view {
    display: none;
  }
  .sp-view {
    display: block;
  }
}
.sp__header {
  width: 100vw;
  display: none;
  justify-content: space-between;
  align-items: center;
  border-bottom: 5px solid #7E7E36;
}
@media screen and (max-width: 767px) {
  .sp__header {
    display: flex;
    padding: 20px 0;
  }
}
.sp__header img {
  vertical-align: bottom;
  width: 100px;
  height: auto;
}
.sp__header p {
  margin: 0;
}

.sp-footer {
  display: none;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .sp-footer {
    display: block;
  }
}
.sp-footer ul {
  display: flex;
  width: 100vw;
  padding-left: 0;
  padding-bottom: 4px;
  border-bottom: 4px solid #7E7E36;
}
.sp-footer ul li {
  list-style: none;
  width: 25%;
  border-right: 1px solid #fff;
}
.sp-footer ul li:nth-of-type(4n) {
  border-right: none;
}
.sp-footer ul li a {
  height: 42px;
  width: 100%;
  background-color: #DF9349;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-cta {
  height: 42px;
  width: 120px;
  background-color: #DF9349;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}

.caution {
  display: none;
}
@media screen and (max-width: 767px) {
  .caution {
    display: block;
    text-align: left;
    padding-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .topics {
    width: 100%;
    height: auto;
  }
}

.topics_title {
  width: 446px;
  width: 100vw;
  position: relative;
}
.topics_title img {
  width: 446px;
  height: 33px;
}
.topics_title img {
  max-width: 100%;
}
.topics_title::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background-color: #DF9349;
}
.topics_title .view-more {
  display: none;
  padding-bottom: 2px;
  font-size: 13px;
  position: absolute;
  bottom: 0;
  right: 0;
  font-weight: bold;
  color: #0670DA;
  font-family: Meiryo;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .topics_title .view-more {
    display: block;
  }
}
.topics_title .view-more:hover {
  opacity: 0.6;
}

.contents {
  width: 600px;
  height: 1446px;
}
@media screen and (max-width: 767px) {
  .contents {
    width: auto;
    max-width: 100vw;
    height: auto;
  }
}

.topics__base {
  position: relative;
}

.viewmore img {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  height: auto;
  max-width: 154px;
}

/*=== 画像の表示エリア ================================= */
.slide {
  position: relative;
  overflow: hidden;
  /* 画像のサイズに合わせて変更ください */
  width: 390px;
  height: 300px;
  margin: auto; /* サンプルは中央寄せの背景：白 */
  background: #fff;
}
@media screen and (max-width: 634px) {
  .slide {
    width: 245px;
    height: 220px;
  }
}
@media screen and (max-width: 438px) {
  .slide {
    height: 180px;
    width: 205px;
  }
}

/*=== 画像の設定 ======================================= */
.slide img {
  display: block;
  position: absolute;
  /* 画像のサイズを表示エリアに合せる */
  width: inherit;
  height: inherit;
  opacity: 0;
  animation: slideAnime 50s ease infinite;
}

/*=== スライドのアニメーションを段差で開始する ========= */
.slide img:nth-of-type(1) {
  animation-delay: 0s;
}

.slide img:nth-of-type(2) {
  animation-delay: 10s;
}

.slide img:nth-of-type(3) {
  animation-delay: 20s;
}

.slide img:nth-of-type(4) {
  animation-delay: 30s;
}

.slide img:nth-of-type(5) {
  animation-delay: 40s;
}

/*=== スライドのアニメーション ========================= */
@keyframes slideAnime {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.haiku_monthly {
  width: 230px;
  height: 300px;
}
@media screen and (max-width: 634px) {
  .haiku_monthly {
    height: 220px;
    width: 185px;
  }
  .haiku_monthly img {
    height: inherit;
    width: inherit;
  }
}
@media screen and (max-width: 438px) {
  .haiku_monthly {
    height: 180px;
    width: 145px;
  }
}

.eye-catch {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.eye-catch__container {
  display: flex;
  justify-content: center;
  max-width: 630px;
}
@media screen and (max-width: 767px) {
  .eye-catch__container {
    margin: 20px 0 0;
  }
}

.cta-btn__container {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media screen and (max-width: 767px) {
  .cta-btn__container {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  table {
    width: 100% !important;
    display: block;
    overflow-x: auto;
    box-sizing: border-box;
  }
  td, th {
    word-break: break-word;
  }
  .eye-catch,
  .cta-btn__container {
    flex-wrap: wrap;
    justify-content: center;
  }
  .contents {
    padding: 0 10px;
  }
}