@charset "UTF-8";

/* CSS INFORMATION -====================================================
File name : base.css
Description : 共通
===================================================================== */
/* =====================================================================
    共通（大枠）
======================================================================*/
html {
  min-height: 100vh;
  font-size: calc(10 / 750 * 100vw);
  overflow-x: hidden;
  overflow-y: scroll;
}

@media screen and (min-width: 768px) {
  html {
    font-size: calc(10 / 1920 * 100vw);
  }
}

@media screen and (min-width: 1920px) {
  html {
    font-size: 10px;
  }
}

.gDef-top-banner {
  background-color: #faf2e1;
  overflow: hidden;
}

.gDef-top-banner,
#gDefFooter {
  position: relative;
  z-index: 1;
}

.gDef-wrapper {
  overflow: initial;
}

.wrapper {
  position: relative;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #000000;
  background-color: #faf2e1;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .wrapper {
    font-size: 1.8rem;
    font-size: max(1.8rem, 14px);
  }
}

.wrapper section,
.wrapper main,
.wrapper header,
.wrapper footer,
.wrapper aside {
  position: relative;
}

.wrapper img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.wrapper a,
.wrapper button {
  display: block;
  color: currentColor;
  word-wrap: break-word;
  line-break: anywhere;
}

@media screen and (min-width: 768px) {

  .wrapper a,
  .wrapper button {
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  .wrapper a:hover,
  .wrapper button:hover {
    -webkit-transform: translateY(-1rem);
    transform: translateY(-1rem);
  }
}

.main>* {
  overflow: hidden;
}

.main p,
.main dd {
  line-height: 1.5;
}

.inner {
  position: relative;
  margin: 0 auto;
  width: calc(704 / 750 * 100%);
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .inner {
    width: calc(1280 / 1480 * 100%);
    max-width: 1280px;
  }
}

@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .is-sp {
    display: none !important;
  }
}

/* =====================================================================
    共通
======================================================================*/
.ff-en {
  font-family: "M PLUS Rounded 1c", sans-serif;
}

.btn01 {
  text-align: center;
  margin-top: 8rem;
}

.btn01 a,
.btn01 button {
  position: relative;
  display: inline-block;
  padding: 1em 1.5em;
  width: auto;
  min-width: calc(560 / 704 * 100%);
  font-size: 115%;
  background-color: #ffb726;
  border-radius: 3em;
  -webkit-box-shadow: 0 0.3em 0.6em rgba(0, 0, 0, 0.08);
  box-shadow: 0 0.3em 0.6em rgba(0, 0, 0, 0.08);
}

@media screen and (min-width: 768px) {

  .btn01 a,
  .btn01 button {
    min-width: calc(420 / 1280 * 100%);
    font-size: 150%;
  }
}

.anime-text {
  position: relative;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  overflow: hidden;
}

.anime-text-item {
  position: relative;
  top: -0.18vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 200vw;
  height: 8.1vw;
}

@media screen and (min-width: 768px) {
  .anime-text-item {
    height: 4vw;
  }
}

.anime-text-item::before,
.anime-text-item::after {
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  background: url(../images/text_anime_TOPICS01.svg) round top left/auto 100%;
}

.anime-text-item::before {
  -webkit-animation: loopLeft 50s -25s linear infinite;
  animation: loopLeft 50s -25s linear infinite;
}

@media screen and (min-width: 768px) {
  .anime-text-item::before {
    -webkit-animation-duration: 100s;
    animation-duration: 100s;
    -webkit-animation-delay: -50s;
    animation-delay: -50s;
  }
}

.anime-text-item::after {
  -webkit-animation: loopRight 50s linear infinite;
  animation: loopRight 50s linear infinite;
}

@media screen and (min-width: 768px) {
  .anime-text-item::after {
    -webkit-animation-duration: 100s;
    animation-duration: 100s;
  }
}

.anime-text-item.reverse {
  -webkit-transform: scale(-1, -1);
  transform: scale(-1, -1);
  left: -100vw;
}

@-webkit-keyframes loopLeft {
  from {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  to {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@keyframes loopLeft {
  from {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  to {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@-webkit-keyframes loopRight {
  from {
    -webkit-transform: translateX(-200%);
    transform: translateX(-200%);
  }

  to {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes loopRight {
  from {
    -webkit-transform: translateX(-200%);
    transform: translateX(-200%);
  }

  to {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

/* =====================================================================
*    header
* =================================================================== */
.header h1 {
  text-align: center;
  padding: 8rem 0;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 8rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.header h1 a {
  display: inline-block;
}

/* =====================================================================
    topics-list
======================================================================*/
.topics-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2rem 0;
}

@media screen and (min-width: 768px) {
  .topics-list {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 4rem calc(40 / 1280 * 100%);
  }
}

.topics-list li {
  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;
  width: calc(344 / 704 * 100%);
  -webkit-box-shadow: 0 0.3em 0.6em rgba(0, 0, 0, 0.08);
  box-shadow: 0 0.3em 0.6em rgba(0, 0, 0, 0.08);
}

@media screen and (min-width: 768px) {
  .topics-list li {
    width: calc(400 / 1280 * 100%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }

  .topics-list li:hover {
    -webkit-transform: translateY(-1rem);
    transform: translateY(-1rem);
  }
}

.topics-list li>a {
  position: absolute;
  width: 100%;
  height: 100%;
}

.topics-list li img {
  background-color: #fff;
  aspect-ratio: 16/9;
  -o-object-fit: contain;
  object-fit: contain;
}

.topics-list-body {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 8.7209302326%;
  background-color: #ffffff;
}

@media screen and (min-width: 768px) {
  .topics-list-body {
    padding: 7.5%;
  }
}

.topics-list time {
  margin-bottom: 0.5em;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
  font-size: 73%;
  color: #ff6040;
}

.topics-list-ttl {
  margin-bottom: 1em;
  width: 100%;
  font-weight: 700;
  line-height: 1.333;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

@media screen and (min-width: 768px) {
  .topics-list-ttl {
    font-size: 122%;
  }
}

.topics-list-tag {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.3em;
  margin-top: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 1;
}

.topics-list-tag>a {
  padding: 0.5em;
  font-size: 80%;
  color: #000000;
  border: 2px solid #faf2e1;
  border-radius: 0.5em;
  background-color: #ffffff;
}

@media screen and (min-width: 768px) {
  .topics-list-tag>a {
    -webkit-transition-property: background-color;
    transition-property: background-color;
  }

  .topics-list-tag>a:hover {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background-color: #faf2e1;
  }
}

/* =====================================================================
    No Results UI (Global)
======================================================================*/
.no-result-container {
  width: 100%;
  list-style: none;
  padding: 6rem 2rem;
  background-color: #fff;
  border-radius: 2rem;
  text-align: center;
}

.no-result-inner {
  max-width: 600px;
  margin: 0 auto;
}

.no-result-title {
  font-size: 2rem;
  font-weight: 900;
  color: #ff6040;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.no-result-message {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 4rem;
}

.no-result-action {
  display: flex;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .no-result-container {
    padding: 8rem 4rem;
  }

  .no-result-title {
    font-size: 2.4rem;
  }

  .no-result-message {
    font-size: 1.6rem;
  }
}

/* 0件時は中央寄せ */
.topics-list.no-results {
  justify-content: center;
}

/*# sourceMappingURL=base.css.map */