@charset "UTF-8";
/*--------------- entrance-pageここから ---------------*/
.entrance-page {
  --header-height: 80px;
}

.header.entrance-header {
  background: var(--color-white);
}

.entrance__container {
  padding: 16px 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  background: url("/img/entrance/entrance_bg.jpg") no-repeat top center/cover;
}

.entrance-item {
  position: relative;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 16px;
  border: 6px solid var(--color-white);
  width: 100%;
  aspect-ratio: 3/2;
}
.entrance-item:hover {
  opacity: 0.7;
}
.entrance-item__ttl {
  white-space: nowrap;
  font-size: var(--font-size-30);
  letter-spacing: var(--letter-spacing-base);
  line-height: 1.5;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 20;
  width: 90%;
  max-width: 480px;
  padding: 0.5em 0.5em;
}
.entrance-item__ttl::after {
  content: "";
  position: absolute;
  position: absolute;
  top: 50%;
  right: 0.5em;
  translate: 0% -50%;
  z-index: -1;
  width: 0.5em;
  height: 0.5em;
  background: url("/img/entrance/catch_arrow.png") no-repeat top center/contain;
}
.entrance-item__ttl::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.entrance-item--official .entrance-item__ttl {
  background: url("/img/entrance/catch_green_bg.jpg") no-repeat top center/cover;
}
.entrance-item--official .entrance-item__ttl::before {
  width: 2.2666666667em;
  height: 2.8em;
  translate: -0.75em 0.125em;
  background: url("/img/entrance/catch_deco01.png") no-repeat top center/contain;
}
.entrance-item--special .entrance-item__ttl {
  background: url("/img/entrance/catch_orange_bg.jpg") no-repeat top center/cover;
}
.entrance-item--special .entrance-item__ttl::before {
  width: 3.0333333333em;
  height: 2.6333333333em;
  translate: -0.6em 0.125em;
  background: url("/img/entrance/catch_deco02.png") no-repeat top center/contain;
}

.entrance-news {
  position: relative;
  z-index: 10;
  max-width: 960px;
  width: 100%;
  padding: 36px 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: var(--round-20);
  background-color: var(--color-white);
}
.entrance-news::before {
  content: "";
  position: absolute;
  z-index: -1;
  height: calc(100% - 20px);
  width: calc(100% - 40px);
  background: url("/img/entrance/dot.png") repeat-x left top/auto 8px, url("/img/entrance/dot.png") repeat-x left bottom/auto 8px;
  inset: 0;
  margin: auto;
}
.entrance-news__container {
  width: 100%;
}
.entrance-news__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin-bottom: 16px;
}
.entrance-news .cmn-post {
  --post-item-margin: 10px;
  --post-item-flex-margin-space: 10px;
  --post-link-padding: 16px;
  --post-tags-width: calc(100% - 90px);
  --post-title-font-size: var(--font-size-14);
  --post-date-font-size: var(--font-size-14);
  width: 100%;
}
.entrance-news .cmn-post-item {
  border-radius: var(--round-10);
}
.entrance-news .tag {
  --tag-font-size: 10px;
  --tag-height: 16px;
  --tag-x-padding: 7px;
  --tag-round: 8px;
  --tag-color: var(--color-white);
  --tag-bg-color: var(--color-main);
}
.entrance-news .tag-list {
  --tag-space: 3px;
}
.entrance-news__ttl {
  font-size: var(--font-size-24);
  margin-bottom: 0px;
}
.entrance-news__btn {
  width: 120px;
}