@charset "UTF-8";
/* ブレイクポイント設定 */
/* 色 */
/* 文字間隔 */
/* 配置(フレックス) */
/* 擬似要素の共通基盤 */
/* ホバー */
/* transition */
/* レスポンシブ */
.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

/* 基盤 */
html {
  font-size: 62.5%;
}
@media screen and (max-width: 1280px) {
  html {
    font-size: 0.78125vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 1.3037809648vw;
  }
}

body {
  color: black;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

a {
  position: relative;
  text-decoration: none;
  color: black;
  display: block;
  -webkit-tap-highlight-color: transparent;
}

li {
  list-style: none;
}

img {
  width: 100%;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  -o-object-fit: cover;
     object-fit: cover;
}

span {
  display: inline-block;
}

/* レイアウト */
.l-wrapper {
  width: 100%;
  max-width: 120rem;
  margin: 2rem auto;
}
@media screen and (max-width: 767px) {
  .l-wrapper {
    width: 95%;
  }
}

/* ヘッダー(タイトル) */
.header {
  height: 12rem;
  color: #fff;
  background: green;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .header {
    height: 14rem;
    font-size: 2.2rem;
  }
}

.page-title {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.tab-change {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .tab-change {
    flex-direction: column;
  }
}

.title_area {
  width: 30%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .title_area {
    width: 100%;
  }
}
.title_area .section-title {
  position: relative;
  color: green;
  font-size: 7rem;
  padding-top: 3rem;
  margin-bottom: 6.5rem;
}
@media screen and (max-width: 767px) {
  .title_area .section-title {
    display: inline-block;
    margin-left: 5rem;
  }
}
.title_area .section-title::before {
  position: absolute;
  bottom: -2.4rem;
  left: 0.35rem;
  content: "新着情報";
  color: black;
  font-size: 2rem;
}

@media screen and (max-width: 767px) {
  .nav_scroll {
    overflow-x: scroll;
    margin-bottom: 4rem;
  }
}

.nav {
  margin-left: 1.6rem;
}
@media screen and (max-width: 767px) {
  .nav {
    display: flex;
    justify-content: space-between;
    width: -moz-fit-content;
    width: fit-content;
    white-space: nowrap;
    padding-right: 4rem;
    margin-left: 0.5rem;
    margin-bottom: 4rem;
  }
}

.tab {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  color: #C4C4C4;
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  padding-left: 1.85rem;
  margin-bottom: 2rem;
}
.tab::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "・";
  color: #C4C4C4;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .tab::before {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .tab {
    width: -moz-fit-content;
    width: fit-content;
    font-size: 3.2rem;
    padding-left: 3rem;
    margin-left: 2.6rem;
    margin-bottom: 0;
  }
}

.tab.active {
  color: green;
}
.tab.active::before {
  color: green;
}

.contents {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 83rem;
  height: auto;
  min-height: 47rem;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .contents {
    width: 90%;
    min-height: 100rem;
    margin: 0 auto;
  }
}

.loader_bg {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 51.5rem;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .loader_bg {
    height: 60rem;
  }
}
.loader_bg .loader {
  position: relative;
  width: 3.3rem;
  height: 3.3rem;
  background: green;
  background: linear-gradient(to right, green 0%, rgba(229, 235, 239, 0.7) 5%);
  border-radius: 50%;
  font-size: 5rem;
  text-indent: -9999rem;
  animation: load 1.1s infinite linear;
  transform: translateZ(0);
  margin: 10rem auto;
}
@media screen and (max-width: 767px) {
  .loader_bg .loader {
    width: 4rem;
    height: 4rem;
  }
}
.loader_bg .loader:before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 50%;
  height: 50%;
  background: green;
  border-radius: 100% 0 0 0;
}
.loader_bg .loader:after {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 82%;
  height: 82%;
  background: #fff;
  border-radius: 50%;
  margin: auto;
}

@keyframes load {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.content {
  width: 100%;
  height: auto;
  background: #fff;
  display: none;
  opacity: 0;
  transform: translateY(2rem);
  transition: all 0.6s ease;
  padding: 7.5rem 7.5rem 7.5rem 10.5rem;
}
@media screen and (max-width: 767px) {
  .content {
    padding: 0;
  }
}

.content.show {
  display: block;
  animation: fadeUp 0.9s ease;
  animation-fill-mode: both;
  animation-iteration-count: 1;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(2rem);
  }
  30% {
    opacity: 0;
    transform: translateY(2rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.content__list {
  width: 65rem;
  border-top: solid 1px #E5E5E5;
  padding: 2.5rem 0;
}
@media screen and (max-width: 767px) {
  .content__list {
    width: 100%;
    padding: 4rem 0;
  }
}
.content__list a {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .content__list a {
    flex-direction: column;
    row-gap: 2rem;
  }
}
.content__list a:hover {
  opacity: 0.7;
  transform: translateX(3px);
}
@media screen and (max-width: 767px) {
  .content__list a:hover {
    opacity: 1;
    transform: translateX(0);
  }
}

.list01 {
  border: none;
  padding: 0 0 2.5rem 0;
}
@media screen and (max-width: 767px) {
  .list01 {
    padding: 0 0 4rem 0;
  }
}

.content__date {
  display: flex;
  align-items: center;
}

.date {
  width: 10rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .date {
    width: 20rem;
    font-size: 3.2rem;
  }
}

.notice {
  width: 6.5rem;
  text-align: center;
  color: green;
  border: solid 1px green;
  border-radius: 0.4rem;
  font-size: 1.3rem;
  padding: 0.4rem;
}
@media screen and (max-width: 767px) {
  .notice {
    width: 13rem;
    border-radius: 1rem;
    font-size: 2.8rem;
    padding: 0.5rem 0;
    margin-right: 0;
  }
}

.content__text {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.03em;
  padding-top: 0.2rem;
}
@media screen and (max-width: 767px) {
  .content__text {
    font-size: 3rem;
    max-height: 4.7em;
    padding-top: 0;
  }
}
.content__text .number {
  letter-spacing: -0.005em;
}
.content__text .mark {
  letter-spacing: 0.005em;
}
.content__text .mark2 {
  display: inline;
}
.content__text .english {
  letter-spacing: 0.005em;
}/*# sourceMappingURL=style.css.map */