@charset "UTF-8";
/*オープニング---*/
body {
    overflow: hidden; /* アニメーション中はスクロールを禁止 */
}

/* -------------------------------------- */
/* ローディングコンテナ全体のスタイル */
/* -------------------------------------- */

#loader-container {
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* -------------------------------------- */
/* 黒背景の分割要素 (縦に2分割) */
/* -------------------------------------- */

.black-split-top, .black-split-bottom {
    position: fixed;
    left: 0;
    width: 100%;
    height: 50%; /* 画面の高さの半分 */
    background: linear-gradient(90deg, #131a3b 0%, #000001 50%, #070d29 100%);
    z-index: 9999; 
    transition: transform 1s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.black-split-top {
    top: 0;
    transform: translateY(0);
}

.black-split-bottom {
    bottom: 0;
    transform: translateY(0);
}

/* アニメーション後のスタイル (横に2分割) */
.loaded-black .black-split-top {
    transform: translateY(-100%); /* 上にスライドして非表示 */
}

.loaded-black .black-split-bottom {
    transform: translateY(100%); /* 下にスライドして非表示 */
}

/* -------------------------------------- */
/* ロゴ (最初から表示、ローディングバーより前面) */
/* -------------------------------------- */

#logo {
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    z-index: 10001;
    opacity: 1;
    transition: opacity 0.5s;
    width: 19vw;
}

/* -------------------------------------- */
/* ローディングバー (白い線) */
/* -------------------------------------- */

#loading-bar-wrapper {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #999999;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.3s;
}

#loading-bar {
    width: 0;
    height: 100%;
    background-color: #fff;
    animation: loading-fill 3s forwards; /* 読み込みアニメーションの時間調整 (例: 3秒) */
}

@keyframes loading-fill {
    0% { width: 0; }
    100% { width: 100%; }
}

/* 読み込み完了後、バーを非表示 (ロゴのフェードアウトと同期させても良い) */
.loaded-bar #loading-bar-wrapper {
    opacity: 0;
}

/* -------------------------------------- */
/* グレーの背景 (横に2分割) */
/* -------------------------------------- */

#gray-curtain-left, #gray-curtain-right {
    position: fixed;
    top: 0;
    width: 50%; /* 画面の幅の半分 */
    height: 100%;
    background-color: #000; /* グレー */
    z-index: 9000; 
    transition: transform 1s cubic-bezier(0.65, 0.05, 0.36, 1);
}

#gray-curtain-left {
    left: 0;
    transform: translateX(0);
}

#gray-curtain-right {
    right: 0;
    transform: translateX(0);
}

/* アニメーション後のスタイル (縦に2分割) */
.loaded-gray #gray-curtain-left {
    transform: translateX(-100%); /* 左にスライドして非表示 */
}

.loaded-gray #gray-curtain-right {
    transform: translateX(100%); /* 右にスライドして非表示 */
}

/* -------------------------------------- */
/* メインコンテンツ */
/* -------------------------------------- */

#content {
    opacity: 0;
    transition: opacity 0.5s 2s; /* アニメーション終了後にフェードインさせるため遅延を設定 */
    text-align: center;
    padding-top: 100px;
}
/* htmlタグに initial-skip が付いている場合 (2回目以降の訪問) */
.initial-skip #loader-container {
    display: none !important; /* ローディングコンテナ全体を強制的に非表示 */
}

/* 黒背景（横に2分割）の即時非表示 */
.initial-skip .black-split-top {
    transform: translateY(-100%) !important;
    transition: none !important;
}

.initial-skip .black-split-bottom {
    transform: translateY(100%) !important;
    transition: none !important;
}

/* グレー背景（縦に2分割）の即時非表示 */
.initial-skip #gray-curtain-left {
    transform: translateX(-100%) !important;
    transition: none !important; 
}

.initial-skip #gray-curtain-right {
    transform: translateX(100%) !important;
    transition: none !important; 
}
/*仮---*/
.kari {
    z-index: 1;
    position: relative;
}
.kari.a {
    margin-top: -15.5vw;
}
.kari.b {
    margin-top: -0.4vw;
}
.kari.c {
    margin-top: 0vw;
}
/*----*/
.fv {
    height: 100vh;
    width: 100%;
    position: relative;
    z-index: 0;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.fv::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 97%;
    height: 95%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    background-color: #000000b5;
    opacity: 1;
    border: 1px solid #3c3c3b;
    border-radius: 25px;
}
.fv h1 {
    color: #fff;
    font-size: 1.49em;
    text-align: center;
    line-height: 100%;
    margin-bottom: 4.4vw;
}
.fv h1 span {
    display: block;
    font-size: 3.58em;
    line-height: 100%;
    margin-bottom: 0.8vw;
}
.fv #fv_video {
  display: inline-block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
@keyframes transform1{
  0% {
    transform: translate(-15%, 0px);
  }
  100% {
    transform: translate(0%, 0px);
  }
}
@keyframes transform2{
  0% {
    transform: translate(15%, 0px);
  }
  100% {
    transform: translate(0%, 0px);
  }
}
#about {
    padding: 7.0vw 0 22.5vw;
    color: #fff;
    position: relative;
    z-index: 0;
}
#about::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(120deg, #00126a 0%, #000 75%);
}
#about .flex {
    padding-top: 7.4vw;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: flex-start;
}
#about .flex .txt {
    width: 48%;
}
#about .flex .img {
    width: 44.6%;
    margin-top: 1.0vw;
    position: relative;
    z-index: 0;
}
#about .flex .img .ab {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
}
#about .flex .img img {
    opacity: 0;
}
@keyframes about_ani1 {
  0% {
      opacity: 0;
      transform: scale(.6);
  }
  100% {
      opacity: 1;
      transform: scale(1);
  }
}
@keyframes about_ani2 {
  0% {
      opacity: 0;
      transform: rotate(20deg);
  }
  100% {
      opacity: 1;
      transform: rotate(0deg);
  }
}
@keyframes about_ani3 {
  0% {
      opacity: 0;
      transform: rotate(-20deg);
  }
  100% {
      opacity: 1;
      transform: rotate(0deg);
  }
}
#about .flex .img .ani1 {
      transform: scale(.6);
}
#about .flex .img.on .ani1 {
    animation: about_ani1 .8s ease-in-out forwards;
}
#about .flex .img .ani2 {
      transform: scale(.6);
}
#about .flex .img.on .ani2 {
    animation: about_ani1 .8s .3s ease-in-out forwards;
}
#about .flex .img .ani3 {
      transform: scale(.6);
}
#about .flex .img.on .ani3 {
    animation: about_ani1 .8s .4s ease-in-out forwards;
}
#about .flex .img .ani4 {
      transform: scale(.6);
}
#about .flex .img.on .ani4 {
    animation: about_ani1 .8s .8s ease-in-out forwards;
}
#about .flex .img .ani5 {
      transform: rotate(-20deg);
}
#about .flex .img.on .ani5 {
    animation: about_ani3 .8s .8s ease-in-out forwards;
}
#about .flex .img .ani6 {
      transform: rotate(20deg);
}
#about .flex .img.on .ani6 {
    animation: about_ani2 .8s .8s ease-in-out forwards;
}
#about .flex .img .ani7 {
      transform: rotate(20deg);
}
#about .flex .img.on .ani7 {
    animation: about_ani2 .8s .8s ease-in-out forwards;
}
#about .flex .img .ani8 {
      transform: rotate(20deg);
}
#about .flex .img.on .ani8 {
    animation: about_ani2 .8s .8s ease-in-out forwards;
}
#about .flex .img .ani9 {
      transform: rotate(-20deg);
}
#about .flex .img.on .ani9 {
    animation: about_ani3 .8s .8s ease-in-out forwards;
}
#about .flex .img .ani10 {
      transform: rotate(-20deg);
}
#about .flex .img.on .ani10 {
    animation: about_ani3 .8s .8s ease-in-out forwards;
}
#about .flex .txt p {
    font-size: 1.13em;
    line-height: 232%;
}
#about .flex .txt .link {
}
#activities {
    background-color: #f4f4f4;
    position: relative;
    z-index: 0;
    width: 95.4%;
    margin: -15.5vw 0 0 auto;
    border-radius: 30px 0 0 30px;
    padding: .1vw 0 0vw;
    overflow: hidden;
    padding-top: 6.8vw;
}
#activities .l-inner {
    width: 91%;
}
#activities .l-inner .tih2 {
    color: #000000;
    font-size: 2.85em;
}
#activities .l-inner .tih2 .en {
    color: #000000;
    margin-bottom: .2vw;
    font-size: .45em;
}
#activities .l-inner .tih2 .en::before {
    border: 1px solid #000000;
}
#activities .wrap {
    display: flex;
    height: 100%;
    align-items: center;
    margin-top: 3.6vw;
}
#activities .js-item {
}
#activities .pin-spacer {
}
#activities .l-inner ul {
    margin-top: 3.6vw;
}
#activities .l-inner ul li {
    width: 27.1vw;
    /*height: 37vw;*/
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 0px 12px #0000001f;
    padding: 1.7vw 1.8vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
#activities .l-inner ul li .img {
}
#activities .l-inner ul li .img img {
    border-radius: 12px;
}
#activities .l-inner ul li .txt {
    margin: 1.15vw 0 2.4vw;
}
#activities .l-inner ul li .txt h3 {
    margin-bottom: 0.7vw;
    font-size: 1.5em;
}
#activities .l-inner ul li .txt p {
    font-size: .94em;
    line-height: 178%;
}
#activities .l-inner ul li .link {
    margin: auto 0 0 0;
}
#activities .l-inner ul li .link a {
    background-color: #242424;
    color: #fff;
    width: 12.3vw;
    display: block;
    text-align: center;
    font-size: 1em;
    padding: 1.22vw 0;
    border-radius: 50px;
    position: relative;
    z-index: 0;
    border: 1px solid #242424;
}
#activities .l-inner ul li .link a:hover {
    background-color: #fff;
    color: #242424;
}
#activities .l-inner ul li .link a::before {
    width: 1.5vw;
    height: 100%;
    background-image: url(../../img/common/arrow_w.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
    right: .8vw;
    top: 0;
    bottom: 0;
    margin: auto;
}
#activities .l-inner ul li .link a:hover::before {
    background-image: url(../../img/common/arrow_b.png);
    right: .5vw;
    
}
/* 横スクロールセクション */
.side-scroll {
  display: flex;
  justify-content: center;
  align-items: center;
}
.side-scroll-list-wrapper {
  position: relative;
  width: 100%;
    height: 50.18vw;

}

.side-scroll-list {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
    gap: 0 3.3vw;
}
.side-scroll-item + .side-scroll-item {
  margin-left: 0px;
}
#stream {
    padding-top: 5.9vw;
}
#stream.m0 {
    padding-top: 2.7vw;
}
#stream .flex {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    padding: 2.9vw 3.5vw 2.6vw;
    background-color: #ffffff;
    box-shadow: 0px 0px 12px #0000001f;
    border-radius: 10px;
}
#stream .flex .txt {
    width: 57.5%;
}
#stream .flex .txt h3 {
    font-size: 1.49em;
    line-height: 135%;
}
#stream .flex .txt h3 img {
    width: 68%;
}
#stream .flex .txt h3 span {
    display: block;
    font-size: 1.51em;
    line-height: 100%;
    margin-bottom: 0.6vw;
}
#stream .flex .txt p {
    width: 90%;
    font-size: 1.14em;
    margin: 1.24vw 0 1.9vw;
    line-height: 150%;
}
#stream.m0 .flex .txt p {
    width: 100%;
    font-size: 1.11em;
}
#stream .flex .link {
}
#stream .flex .link a {
    background: linear-gradient(90deg, #e6315b 0%, #318dec 100%);
    color: #fff;
    width: 26vw;
    display: block;
    padding: 1.5vw 0;
    text-align: center;
    border-radius: 50px;
    font-size: 1.1em;
    padding-right: 1vw;
}
#stream .flex .link a::before {
    width: 3.3vw;
    height: 100%;
    background-image: url(../../img/common/arrow_w.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
    right: .8vw;
    top: 0;
    bottom: 0;
    margin: auto;
    
}
#stream .flex .link a:hover {
    opacity: 0.8;
}
#stream .flex .link a:hover::before {
    right: .5vw;
    
}
#stream .flex .img {
    width: 42.5%;
}
#support {
    position: relative;
    z-index: 0;
    overflow:hidden;
    padding: 12.6vw 0 0vw;
}
#support .swiper-wrapper {
  transition-timing-function: linear;
}
#support .tih2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 2.9em;
    text-align: center;
}
#support .tih2 .en {
    font-size: .55em;
    margin-bottom: .7vw;
}
#support p {
    text-align: center;
    margin-top: 2.8vw;
    font-size: 1.17em;
    line-height: 220%;
}
#support .slider {
    margin-top: 9vw;
}
#support .slider .swiper-wrapper {
    height: auto;
}
#case {
    position: relative;
    z-index: 0;
    overflow:hidden;
    padding: 17vw 0 7vw;
}
#case .tih2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 3.0em;
    text-align: center;
}
#case .tih2 .en {
    font-size: .45em;
    margin-bottom: 1.2vw;
}
#case ul {
    margin-top: 8.3vw;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: flex-start;
}
#case ul li {
    position: relative;
    z-index: 0;
    width: 31.2%;
}
#case ul li a {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
#case ul li .img {
    margin-bottom: 2vw;
    height: 17.2vw;
    border-radius: 10px;
    overflow: hidden;
}
#case ul li .img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
  transition: all ease-in-out .2s 0s;
}
#case ul li:hover .img img {
    transform: scale(1.05);
    transform-origin: center;
}
#case ul li .txt {
}
#case ul li .txt .icon {
    width: 5.6vw;
}
#case ul li .txt .icon img {
    filter: drop-shadow(0px 0px 12px #0000001f);
}
#case ul li .txt h3 {
    font-size: 1.3em;
    margin: 1.15vw 0 1.2vw;
}
#case ul li .txt p {
    color: #8e8e8e;
}
#case .link {
    margin-top: 4.6vw;
}
#case .link a {
    background-color: unset;
    color: #000000;
    width: 20vw;
    display: block;
    text-align: center;
    font-size: 1em;
    padding: 1.5vw 0;
    border-radius: 50px;
    position: relative;
    z-index: 0;
    box-shadow: 0px 0px 12px #0000001f;
    margin: 0 auto;
}
#case .link a::before {
    width: 3.1vw;
    height: 100%;
    background-image: url(../../img/common/arrow_b.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
    right: .8vw;
    top: 0;
    bottom: 0;
    margin: auto;
}
#case .link a:hover {
    background-color: #000000;
    color: #fff;
}
#case .link a:hover::before {
    background-image: url(../../img/common/arrow_w.png);
    right: .5vw;
}
#event {
    position: relative;
    z-index: 0;
    overflow:hidden;
    padding: 7.8vw 0 7vw;
}
#event .tih2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 3.0em;
    text-align: center;
}
#event .tih2 .en {
    font-size: .45em;
    margin-bottom: 0.5vw;
}
#event ul {
    margin-top: 4.3vw;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: stretch;
}
#event ul li {
    position: relative;
    z-index: 0;
    width: 31.2%;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
}
#event ul li a {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
#event ul li .img {
    height: 15vw;
    overflow: hidden;
}
#event ul li .img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
  transition: all ease-in-out .2s 0s;
}
#event ul li:hover .img img {
    transform: scale(1.05);
    transform-origin: center;
}
#event ul li .txt {
    padding: 1.25vw;
    position: relative;
    z-index: 0;
}
#event ul li .txt .application {
    background: #3c3c3c;
    color: #fff;
    position: absolute;
    right: 1.25vw;
    padding: 0.15vw .7vw;
    text-align: center;
    border-radius: 50px;
    font-size: .9em;
}
#event ul li .txt .application.active {
    background: linear-gradient(90deg, #e6315b 0%, #318dec 100%);
    color: #fff;
}
#event ul li .txt .cat {
    font-size: .84em;
    position: relative;
    z-index: 0;
    padding-left: .7vw;
}
#event ul li .txt .cat::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: .5vw;
    height: .5vw;
    border: 1px solid #000;
    border-radius: 50%;
    left: 0;
    bottom: 0;
    top: 0.3vw;
    margin: auto;
}
#event ul li .txt .date {
    font-size: 1.27em;
    font-weight: 800;
    margin-top: 0.6vw;
}
#event ul li .txt .date small {
    padding-left: 1vw;
}
#event ul li .txt h3 {
    font-size: 1.33em;
    margin: .65vw 0 1.1vw;
}
#event ul li .txt p {
    color: #8e8e8e;
    font-size: .75em;
    width: 85%;
}
#event .link {
    margin-top: 3.6vw;
}
#event .link a {
    background-color: unset;
    color: #000000;
    width: 20vw;
    display: block;
    text-align: center;
    font-size: 1em;
    padding: 1.5vw 0;
    border-radius: 50px;
    position: relative;
    z-index: 0;
    box-shadow: 0px 0px 12px #0000001f;
    margin: 0 auto;
}
#event .link a::before {
    width: 3.1vw;
    height: 100%;
    background-image: url(../../img/common/arrow_b.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
    right: .8vw;
    top: 0;
    bottom: 0;
    margin: auto;
}
#event .link a:hover {
    background-color: #000000;
    color: #fff;
}
#event .link a:hover::before {
    background-image: url(../../img/common/arrow_w.png);
    right: .5vw;
}
#news {
    position: relative;
    z-index: 0;
    overflow: hidden;
    padding: 11.3vw 0 11vw
}
#news .tih2 {
    font-size: 3.0em;
}
#news .tih2 .en {
    font-size: .45em;
    margin-bottom: 0.5vw;
}
#news .link {
    margin-top: 2.8vw;
}
#news .link a {
    background-color: unset;
    color: #000000;
    width: 20vw;
    display: block;
    text-align: center;
    font-size: 1em;
    padding: 1.5vw 0;
    border-radius: 50px;
    position: relative;
    z-index: 0;
    box-shadow: 0px 0px 12px #0000001f;
    margin: 0 auto 0 0;
}
#news .link a::before {
    width: 3.1vw;
    height: 100%;
    background-image: url(../../img/common/arrow_b.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
    right: .8vw;
    top: 0;
    bottom: 0;
    margin: auto;
}
#news .link a:hover {
    background-color: #000000;
    color: #fff;
}
#news .link a:hover::before {
    background-image: url(../../img/common/arrow_w.png);
    right: .5vw;
}
#news .flex {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: flex-start;
}
#news .flex .left {
    width: 36%;
}
#news .flex .right {
    width: 64%;
}
#news .flex .right ul {
}
#news .flex .right ul {
}
#news ul li {
    position: relative;
    z-index: 0;
    width: 100%;
    padding: 1.8vw 0 1.8vw;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px solid #c0c0c0;
    overflow: hidden;
}
#news ul li::after {
    transition: all 
ease-in-out .2s 0.0s;
    content: "";
    position: absolute;
    z-index: -2;
    width: 100%;
    height: 100%;
    left: -100%;
    top: 0;
    background-color: #eaecf5;
}
#news ul li:hover::after {
    left: 0;
}
#news ul li a {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
#news ul li .new {
    border-radius: 50px;
    background: linear-gradient(90deg, #e6315b 0%, #318dec 100%);
    color: #fff;
    height: 100%;
    display: inline-block;
    font-size: .94em;
    position: relative;
    z-index: 0;
    text-align: center;
    padding: .65vw 1.8vw;
    margin-left: 3.4vw;
}
#news ul li .cat {
    font-size: .94em;
    position: relative;
    z-index: 0;
    padding-left: 0;
    text-align: center;
    padding: .65vw 1vw;
    background-color: #000;
    border-radius: 10px;
    color: #fff;
}
#news ul li .date {
    font-size: 1.27em;
    margin-left: 3.4vw;
    color: #979797;
}
#news ul li h3 {
    font-size: 1.18em;
    margin: 1vw 0 0;
    width: 100%;
}
@media screen and (max-width:1300px) {
}
@media screen and (max-width:900px) {
}
@media screen and (max-width:768px) {
.fv h1 {
    font-size: 1.4em;
    margin-bottom: 0;
    line-height: 140%;
}
.fv h1 span {
    font-size: 2.7em;
    margin-bottom: 2.8vw;
}
#about {
    padding: 13vw 0 27.5vw;
        overflow: hidden;
}
#about .flex {
    padding-top: 11.4vw;
}
#about .flex .txt {
    width: 100%;
}
.link.w {
    width: 43.2vw;
    margin-top: 5.8vw;
    font-size: 1.3em;
}
.link a {
    width: 43.2vw;
    font-weight: 600;
}
.link.w a {
    padding: 3.4vw 0;
}
.link.w a::before {
    width: 6.25vw;
}
#about .flex .img {
    width: 100%;
    margin-top: 9vw;
}
#activities .l-inner .tih2 {
    font-size: 1.9em;
}
#activities .l-inner .tih2 .en {
    margin-bottom: 2.4vw;
    font-size: 0.9em;
}
.side-scroll-list-wrapper {
    height: auto;
    width: 93%;
}
.side-scroll-list {
    position: relative;
    display: block;
}
.side-scroll {
    display: block;
}
#activities .l-inner ul li {
    width: 100%;
    height: auto;
    padding: 4.7vw 4.8vw;
}
#activities .l-inner ul li:not(:last-of-type) {
        margin-bottom: 7vw;
}
#activities .l-inner ul li .txt {
    margin: 2.15vw 0 3.4vw;
}
#activities .l-inner ul li .txt h3 {
    margin-bottom: 1.7vw;
}
#activities .l-inner ul li .link a {
    width: 35.3vw;
    padding: 3.22vw 0;
}
#activities .l-inner ul li .link a::before {
    width: 4.5vw;
}
#activities {
        padding: 11.1vw 0 12vw;
}
#activities .l-inner ul li .txt p {
    font-size: 1em;
}
#stream {
    padding-top: 13.9vw;
}
#stream .flex {
    padding: 4.9vw 4.5vw 5.6vw;
    flex-direction: column-reverse;
}
#stream .flex .txt {
    width: 100%;
}
#stream .flex .img {
    width: 100%;
    margin-bottom: 4vw;
}
#stream .flex .txt h3 {
    font-size: 1.3em;
    line-height: 135%;
}
#stream .flex .txt h3 span {
    font-size: 1.45em;
    margin-bottom: 1.6vw;
}
#stream .flex .txt p {
    width: 100%;
    font-size: 1.14em;
    margin: 4.24vw 0 3.9vw;
}
#stream .flex .link a {
    width: 71vw;
    padding: 3.5vw 0;
}
#stream .flex .link a::before {
    width: 5.3vw;
}
#stream.m0 {
    padding-top: 5.7vw;
}
#stream .flex .txt h3 img {
    width: 100%;
}
#support {
    padding: 15.6vw 0 0vw;
}
#support .tih2 {
        font-size: 1.55em;
    text-align: left;
}
#support .tih2 .en {
    font-size: 0.9em;
    margin-bottom: 2.4vw;
}
#support p {
    margin-top: 6.8vw;
        text-align: left;
}
#case {
    padding: 17vw 0 12vw;
}
#case .tih2 .en {
    font-size: 0.9em;
    margin-bottom: 2.4vw;
}
#case .tih2 {
    font-size: 1.9em;
}
#case ul {
    margin-top: 9.3vw;
}
#case ul li {
    width: 100%;
}
#case ul li:not(:last-of-type) {
    margin-bottom: 7vw;
}
#case ul li .img {
    margin-bottom: 5vw;
    height: 38.2vw;
}
#case ul li .txt .icon {
    width: 11.6vw;
}
#case ul li .txt h3 {
    font-size: 1.3em;
    margin: 2.15vw 0 2.2vw;
}
#case .link {
    margin-top: 9.6vw;
}
#case .link a {
    width: 52vw;
    padding: 3.5vw 0;
}
#case .link a::before {
    width: 5.1vw;
}
.link {
    font-size: 1.05em;
}
#event {
    padding: 12.8vw 0 12vw;
}
#event .tih2 {
    font-size: 1.9em;
}
#event .tih2 .en {
    font-size: 0.9em;
    margin-bottom: 2.4vw;
}
#event ul {
    margin-top: 7.3vw;
}
#event ul li {
    width: 100%;
}
#event ul li:not(:last-of-type) {
        margin-bottom: 7vw;
}
#event ul li .img {
    height: 42vw;
}
#event ul li .txt {
    padding: 4.25vw;
}
#event ul li .txt .application {
    right: 4.25vw;
    padding: 1.05vw 3.5vw;
}
#event ul li .txt .cat {
    font-size: 1em;
    padding-left: 2.3vw;
}
#event ul li .txt .cat::before {
    width: 1.4vw;
    height: 1.4vw;
    top: 0.6vw;
}
#event ul li .txt .date {
    font-size: 1.5em;
    margin-top: 1.6vw;
}
#event ul li .txt h3 {
    font-size: 1.33em;
    margin: 1.65vw 0 3.1vw;
}
#event ul li .txt p {
    font-size: .9em;
    width: 100%;
}
#event .link a {
    width: 52vw;
    padding: 3.5vw 0;
}
#event .link {
    margin-top: 9.6vw;
}
#news {
        padding: 13.3vw 0 22vw;
}
#news .flex .left {
    width: 100%;
}
#news .flex .right {
    width: 100%;
        margin-top: 3vw;
}
#news .tih2 {
    font-size: 1.9em;
}
#news .tih2 .en {
    font-size: 0.9em;
    margin-bottom: 2.4vw;
}
#news ul li {
    padding: 5.4vw 0 4.8vw;
}
#news ul li .new {
    padding: 1.65vw 5vw;
}
#news ul li .cat {
    padding: 1.65vw 2vw;
    border-radius: 10vw;
}
#news ul li h3 {
    margin: 2vw 0 0;
}
#news .link {
    margin: 0 auto;
    margin-top: 9.3vw;
}
#news .link a {
    width: 52vw;
    padding: 3.5vw 0;
}
}