@charset "UTF-8";
/* panelリンクのホバーエフェクト */
.panel__link,
.panel a,
.grid3__item > a {
  /* ホバーアウト時は即座に消える */
}
.panel__link:not(:hover) .panel__img .color-bar,
.panel a:not(:hover) .panel__img .color-bar,
.grid3__item > a:not(:hover) .panel__img .color-bar {
  width: 0;
  transition-delay: 0s;
  transition-duration: 0.2s;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes blinking-s {
  0% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blinking {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in-left {
  0% {
    transform: translateX(60px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-right {
  0% {
    transform: translateX(-60px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-up {
  0% {
    transform: translateY(60px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-down {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-zoom-in {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fade-zoom-out {
  0% {
    transform: scale(1.1);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fade-clip-left {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes fade-clip-right {
  from {
    -webkit-clip-path: inset(0 0 0 100%);
            clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes fade-clip-up {
  from {
    -webkit-clip-path: inset(100% 0 0 0);
            clip-path: inset(100% 0 0 0);
    opacity: 0;
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes fade-clip-down {
  from {
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes fade-clip-center {
  from {
    -webkit-clip-path: inset(100%);
            clip-path: inset(100%);
    opacity: 0;
  }
  to {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
    opacity: 1;
  }
}
@keyframes fade-clip-circle {
  from {
    -webkit-clip-path: circle(0 at 50% 50%);
            clip-path: circle(0 at 50% 50%);
    opacity: 0;
  }
  to {
    -webkit-clip-path: circle(100% at 50% 50%);
            clip-path: circle(100% at 50% 50%);
    opacity: 1;
  }
}
@keyframes fade-clip-skew {
  from {
    -webkit-clip-path: polygon(0 0, 0 0, 0 0);
            clip-path: polygon(0 0, 0 0, 0 0);
    opacity: 0;
  }
  to {
    -webkit-clip-path: polygon(0 0, 200% 0, 0 200%);
            clip-path: polygon(0 0, 200% 0, 0 200%);
    opacity: 1;
  }
}
@keyframes fade-clip-wave {
  from {
    -webkit-clip-path: polygon(0 0, 0 0, 0 0);
            clip-path: polygon(0 0, 0 0, 0 0);
    transition: all 0.5s cubic-bezier(0.55, 0.06, 0.33, 1.85);
    transform: translateX(-30px) scale(0.8) skew(8deg);
    opacity: 0;
  }
  to {
    -webkit-clip-path: polygon(0 0, 200% 0, 0 200%);
            clip-path: polygon(0 0, 200% 0, 0 200%);
    transform: translateX(0) scale(1) skew(0);
    opacity: 1;
  }
}
@keyframes cover-left {
  0%, 20% {
    transform-origin: 0 50%;
  }
  20%, 100% {
    transform-origin: 100% 50%;
  }
  20% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
@keyframes cover-right {
  0%, 20% {
    transform-origin: 100% 50%;
  }
  20%, 100% {
    transform-origin: 0 50%;
  }
  20% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
@keyframes cover-up {
  0%, 20% {
    transform-origin: 50% 100%;
  }
  20%, 100% {
    transform-origin: 50% 0;
  }
  20% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0);
  }
}
@keyframes cover-down {
  0%, 20% {
    transform-origin: 50% 0;
  }
  20%, 100% {
    transform-origin: 50% 100%;
  }
  20% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0);
  }
}
@keyframes hover-zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
@keyframes hover-zoom-out {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes hover-zoom-in-blink {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.1);
    opacity: 1;
  }
}
@keyframes hover-zoom-out-blink {
  0% {
    transform: scale(1.1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.splash-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.splash-modal.fade-out {
  opacity: 0;
  pointer-events: none;
}
.splash-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
}
.splash-modal__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.splash-modal canvas#canvas_logo_splash {
  width: 102px;
  height: 102px;
}

.home__head__article {
  opacity: 0;
}

body.splash-active {
  overflow: hidden;
}
body.splash-active main {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
body.splash-active .home__head__content {
  opacity: 0;
  visibility: hidden;
}

.home__head__article {
  opacity: 0;
  pointer-events: none;
}

body.splash-complete main {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
body.splash-complete .home__head__content {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.splash-animate:not(.animate__animated) {
  opacity: 0;
}

.home {
  padding-top: 98px;
}
.home__inner {
  width: 100%;
  height: auto;
  padding: 0 24px;
}
.home__head {
  width: 100%;
  height: auto;
  margin-bottom: 80px;
}
.home__head__inner {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 30px 0;
}
.home__head__img {
  width: 100%;
  height: auto;
  margin-bottom: 2px;
}
.home__head__img img {
  width: 36%;
  height: auto;
}
.home__head__content {
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 30px 0;
}
.home__head__article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.home__head__article--en {
  font-family: "Poppins", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, "Noto Sans JP", sans-serif;
  display: none;
}
.home__head__article__ttl {
  font-size: 1.5rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 10px;
}
.home__head__article__ttl--en {
  font-family: "Poppins", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 0em;
  margin-bottom: 7px;
}
.home__head__article__text {
  font-size: 0.875rem;
  line-height: 1.75;
  font-weight: 500;
  color: #000;
}
.home__head__article__text--en {
  font-size: 0.75rem;
  font-weight: 400;
}
.home__body {
  position: relative;
  z-index: 1;
}
.home .feature {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  margin-bottom: 53px;
}
.home .feature--right .feature__inner .feature__item {
  display: flex;
}
.home .feature--right .feature__inner .feature__item .feature__item__content {
  padding: 24px 24px;
}
.home .feature__inner {
  width: 100%;
  height: auto;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}
.home .feature__item {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.home .feature__item__img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}
.home .feature__item__img img {
  width: 100%;
  height: auto;
}
.home .feature__item__img .color-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  z-index: 10;
  transition: width 0.6s ease;
}
.home .feature__item__img .color-bar.bar1 {
  transition-delay: 0s;
}
.home .feature__item__img .color-bar.bar2 {
  transition-delay: 0.05s;
}
.home .feature__item__img .color-bar.bar3 {
  transition-delay: 0.1s;
}
.home .feature__item__img .color-bar.bar4 {
  transition-delay: 0.15s;
}
.home .feature__item__img .color-bar.bar5 {
  transition-delay: 0.2s;
}
.home .feature__item__img .color-bar.bar6 {
  transition-delay: 0.3s;
}
.home .feature__item__content {
  width: 100%;
  height: auto;
  padding: 24px 24px;
}
.home .feature__item__excerpt {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
  color: #000;
  margin-bottom: 16px;
  white-space: pre-line;
}
.home .feature__item__ttl {
  font-size: 0.875rem;
  font-weight: 400;
  color: #5b5b5b;
}
.home .grid4 {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
  display: -ms-grid;
  display: grid;
  align-items: flex-start;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 15px 15px;
  margin: 0 auto;
  width: 100%;
  max-width: none;
  height: auto;
  box-sizing: border-box;
  margin-bottom: 76px;
  /* 3カラムの時は4つめのアイテムを非表示 */
  /* 折り返しを防ぐため、表示件数を制限 */
  /* 折り返しを防ぐため、表示件数を制限 */
}
.home .grid4-item {
  -ms-grid-row-align: stretch;
      align-self: stretch;
  overflow: hidden;
}
.home .grid4--bottom {
  /* 折り返しを防ぐため、表示件数を制限 */
  /* 折り返しを防ぐため、表示件数を制限 */
}
.home .grid4--bottom .grid4__item:nth-child(1) {
  display: none;
}
.home .panel {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  /* panel専用のカラーバーホバーエフェクト */
}
.home .panel a {
  text-decoration: none !important;
}
.home .panel__img {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  aspect-ratio: 380/240;
  flex-shrink: 0;
  /* カラーバーをimg下に配置 */
}
.home .panel__img img {
  transition: transform 0.3s ease;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.home .panel__img .color-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  z-index: 10;
  transition: width 0.6s ease;
}
.home .panel__img .color-bar.bar1 {
  transition-delay: 0s;
}
.home .panel__img .color-bar.bar2 {
  transition-delay: 0.05s;
}
.home .panel__img .color-bar.bar3 {
  transition-delay: 0.1s;
}
.home .panel__img .color-bar.bar4 {
  transition-delay: 0.15s;
}
.home .panel__img .color-bar.bar5 {
  transition-delay: 0.2s;
}
.home .panel__img .color-bar.bar6 {
  transition-delay: 0.3s;
}
.home .panel__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  height: auto;
  padding: 24px 0 24px;
  /* 文字数が少ない時も右端まで伸ばす */
  min-width: 0;
  flex: 1;
}
.home .panel__description {
  width: 100%;
  font-weight: 400;
  color: #000000;
  font-size: 1rem;
  margin-bottom: 12px;
}
.home .panel__tags {
  display: none;
  /*
  @include text(14px, 10px, 10px);
  color: #828282;
    */
}
.home .panel__ttl {
  width: 100%;
  font-size: 0.875rem;
  color: #828282;
}
.home .panel__info {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}
.home .panel__info__type {
  font-size: 0.75rem;
  word-break: break-all;
  overflow-wrap: break-word;
  font-weight: 400;
  color: #828282;
  margin-right: 8px;
}
.home .panel__info__date {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  font-size: 0.75rem;
  font-weight: 400;
  color: #828282;
}
.home .panel__info__date::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1.2em;
  background-color: #8e8e8e;
  margin-right: 8px;
}
.home .panel .panel__link {
  position: relative;
  /* ホバーアウト時は即座に消える */
}
.home .panel .panel__link .color-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  z-index: 10;
  transition: width 0.6s ease;
}
.home .panel .panel__link .color-bar.bar1 {
  transition-delay: 0s;
}
.home .panel .panel__link .color-bar.bar2 {
  transition-delay: 0.05s;
}
.home .panel .panel__link .color-bar.bar3 {
  transition-delay: 0.1s;
}
.home .panel .panel__link .color-bar.bar4 {
  transition-delay: 0.15s;
}
.home .panel .panel__link .color-bar.bar5 {
  transition-delay: 0.2s;
}
.home .panel .panel__link .color-bar.bar6 {
  transition-delay: 0.3s;
}
.home .panel .panel__link:not(:hover) .color-bar {
  transition-delay: 0s;
  transition-duration: 0.2s;
}
.home .feature__item {
  cursor: pointer;
}
.home .feature__item .feature__item__img {
  overflow: hidden;
}
.home .feature__item .feature__item__img img {
  height: 100%;
  transition: transform 0.3s ease;
  transform: scale(1);
}
.home .feature__item:not(:hover) .feature__item__img .color-bar {
  width: 0;
  transition-delay: 0s;
  transition-duration: 0.2s;
}
@media (min-width: 640px) {
  .home {
    padding-bottom: 30px;
  }
  .home {
    padding-top: 130px;
  }
  .home__inner {
    padding: 0 77px 0 31px;
  }
  .home__head {
    margin-bottom: 72px;
  }
  .home__head__inner {
    gap: 0px 50px;
    flex-direction: row;
    justify-content: space-between;
  }
  .home__head__img {
    width: 30%;
    margin-bottom: 0px;
  }
  .home__head__img img {
    width: 70%;
  }
  .home__head__content {
    gap: 0 42px;
    flex-direction: row;
    justify-content: space-between;
  }
  .home__head__article--en {
    display: flex;
  }
  .home__head__article__ttl {
    font-size: 1.5rem;
  }
  .home__head__article__ttl {
    margin-top: -0.1em;
    margin-bottom: 20px;
  }
  .home__head__article__ttl--en {
    font-size: 1.5rem;
  }
  .home__head__article__ttl--en {
    margin-bottom: 18px;
  }
  .home__head__article__text {
    font-size: 0.625rem;
  }
  .home__head__article__text--en {
    font-size: 0.75rem;
  }
  .home .feature--right .feature__inner .feature__item {
    flex-direction: row-reverse;
  }
  .home .feature--right .feature__inner .feature__item .feature__item__content {
    padding: 6.7% 6.7% 6.7% 1.9%;
  }
  .home .feature__inner {
    padding-left: 32px;
    padding-right: 32px;
  }
  .home .feature__item {
    flex-direction: row;
  }
  .home .feature__item__img {
    width: 55.2%;
  }
  .home .feature__item__content {
    width: 44.8%;
    padding: 6.7% 4.3% 6.7% 4.3%;
  }
  .home .feature__item__excerpt {
    font-size: 1rem;
  }
  .home .feature__item__excerpt {
    margin-bottom: 16px;
    line-height: 1.8;
  }
  .home .feature__item__ttl {
    font-size: 0.875rem;
  }
  .home .grid4 {
    padding-left: 32px;
    padding-right: 32px;
  }
  .home .grid4 {
    grid-gap: 15px 15px;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
  .home .grid4 .grid4__item:nth-child(4) {
    display: none;
  }
  .home .grid4 .grid4__item:nth-child(n+4) {
    display: none;
  }
  .home .grid4--bottom .grid4__item:nth-child(1) {
    display: block;
  }
  .home .grid4--bottom .grid4__item:nth-child(2) {
    display: block;
  }
  .home .grid4--bottom .grid4__item:nth-child(n+4) {
    display: block;
  }
  .home .panel__content {
    padding: 16px 0 14px;
  }
  .home .panel__description {
    font-size: 1rem;
  }
  .home .panel__description {
    margin-bottom: 4px;
  }
  .home .panel__ttl {
    font-size: 0.625rem;
  }
  .home .panel__info__type {
    font-size: 0.75rem;
  }
  .home .panel__info__date {
    font-size: 0.75rem;
  }
}
@media (min-width: 1100px) {
  .splash-modal canvas#canvas_logo_splash {
    width: 204px;
    height: 204px;
    transform: scale(2);
  }
  .home {
    padding-bottom: 30px;
  }
  .home__head__img {
    width: 50%;
    margin-bottom: 0px;
  }
  .home__head__img img {
    width: 35.5%;
  }
  .home__head__article__ttl {
    font-size: 1.5rem;
  }
  .home__head__article__ttl--en {
    font-size: 1.5rem;
  }
  .home__head__article__text {
    font-size: 0.625rem;
  }
  .home__head__article__text--en {
    font-size: 0.75rem;
  }
  .home .feature {
    margin-bottom: 126px;
  }
  .home .feature__inner {
    padding-left: 38px;
    padding-right: 38px;
  }
  .home .feature__item__excerpt {
    font-size: 1.375rem;
  }
  .home .feature__item__ttl {
    font-size: 0.875rem;
  }
  .home .grid4 {
    padding-left: 38px;
    padding-right: 38px;
  }
  .home .grid4 {
    grid-gap: 29px 32px;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
  .home .grid4 {
    margin-bottom: 126px;
  }
  .home .panel__description {
    font-size: 1rem;
  }
  .home .panel__ttl {
    font-size: 0.625rem;
  }
  .home .panel__info__type {
    font-size: 0.75rem;
  }
  .home .panel__info__date {
    font-size: 0.75rem;
  }
}
@media (min-width: 1400px) {
  .home .grid4 {
    grid-gap: 29px 32px;
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
  .home .grid4 .grid4__item:nth-child(4) {
    display: block;
  }
  .home .grid4 .grid4__item:nth-child(n+5) {
    display: none;
  }
  .home .grid4--bottom .grid4__item:nth-child(1) {
    display: none;
  }
  .home .grid4--bottom .grid4__item:nth-child(n+5) {
    display: block;
  }
}
@media (hover: hover) {
  .panel__link:hover .panel__img .color-bar,
.panel a:hover .panel__img .color-bar,
.grid3__item > a:hover .panel__img .color-bar {
    width: 100%;
  }
  .home .panel__img img:hover {
    transform: scale(1.07);
  }
  .home .panel .panel__link:hover .color-bar {
    width: 100%;
  }
  .home .feature__item:hover:not(.animating) .feature__item__img .color-bar {
    width: 100%;
  }
  .home .feature__item:hover:not(.animating) .feature__item__img img {
    transform: scale(1.07);
  }
}
@media (max-width: 639.98px) {
  .home {
    padding-bottom: 30px;
  }
  .home .feature--right .feature__inner .feature__item {
    flex-direction: column;
  }
}