@charset "UTF-8";
/*全体と基本的なjsはコチラに書く。中谷*/
:root {
  --black: #000;
  --ibm: "IBM Plex Sans JP", sans-serif;
  --blue: #54c3f1;
  --shippori: "Shippori Mincho B1", serif;
}

.grecaptcha-badge {
  opacity: 0;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
  line-height: 1.8;
}

body {
  font-family: var(--ibm);
  color: var(--black);
  font-weight: 400;
  opacity: 0;
  animation-name: fadeAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  transition-duration: 0.5s;
}
a:hover {
  transition-duration: 0.5s;
}

h2,
h3,
h4,
h5 {
  font-weight: 400;
}

p {
  font-size: 1.6rem;
}

.under-834only {
  display: none;
}

.under-834none {
  display: inline-block;
}

.bold {
  font-weight: bold;
}

.inner {
  width: 1200px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

header {
  z-index: 100;
  position: fixed;
  width: 1680px;
  max-width: 95%;
  left: 50%;
  top: 20px;
  transform: translate(-50%, 0);
  padding: 15px 25px;
  border-radius: 5px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 377px;
  line-height: 1;
}

.header__right {
  display: flex;
  gap: 40px;
  align-items: center;
}

.header__right-list {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  gap: 25px;
}
.header__right-list li a {
  color: var(--black);
}
.header__right-list li a:hover {
  color: var(--blue);
}

.header__contact {
  width: 180px;
  height: 40px;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  color: #fff;
  background-color: var(--blue);
}

#ham,
#sp-menu {
  display: none;
}

#footer-contact {
  padding: 150px 0;
  background-image: url(../img/common/contact-bg.webp);
  background-size: cover;
  background-position: center;
}

.footer-contact__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-contact__flex .cont {
  width: 48.5%;
}
.footer-contact__flex .btns {
  width: 48.5%;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}

.footer-contact__ttl {
  color: #fff;
  font-size: 3.2rem;
  font-weight: 500;
}

.footer-contact__txt {
  color: #fff;
  font-size: 1.5rem;
}

.footer-contact__btn {
  border-radius: 10px;
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0 25px;
  position: relative;
  background-color: #fff;
  transition-duration: 0.5s;
}
.footer-contact__btn:hover {
  opacity: 0.7;
  transition-duration: 0.5s;
}
.footer-contact__btn .txt {
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--black);
}
.footer-contact__btn .icon {
  color: var(--blue);
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  line-height: 1;
}
.footer-contact__btn .icon .material-symbols-outlined {
  font-size: 1.5rem;
}

#footer-bnrs {
  padding: 50px 0;
  border-bottom: 1px solid #dddddd;
}

.footer__bnr-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.footer__bnr-list li a {
  display: block;
  border: 1px solid #dddddd;
}

.footer__nav {
  padding: 30px 0;
  border-bottom: 1px solid #dddddd;
}

.footer__nav-list {
  display: flex;
  justify-content: center;
}
.footer__nav-list li {
  border-right: 1px solid #dddddd;
  padding: 0 20px;
  line-height: 1;
}
.footer__nav-list li:last-of-type {
  border-right: none;
}
.footer__nav-list li a {
  font-size: 1.4rem;
  color: var(--black);
  transition-duration: 0.5s;
}
.footer__nav-list li a:hover {
  color: var(--blue);
  transition-duration: 0.5s;
}

.footer__bottom-flex {
  padding: 50px 0 40px;
  justify-content: space-between;
  display: flex;
}

.footer__logo {
  width: 500px;
}

.footer__bottom-nav {
  display: flex;
  justify-content: flex-end;
  gap: 25px;
  margin-bottom: 25px;
}

.footer__bottom-nav-item {
  font-size: 1.3rem;
  color: var(--black);
  border-bottom: 1px solid var(--black);
  line-height: 1;
  transition-duration: 0.5s;
}
.footer__bottom-nav-item:hover {
  color: var(--blue);
  transition-duration: 0.5s;
  border-bottom: 1px solid var(--blue);
}

.footer__copy {
  text-align: right;
  font-size: 1rem;
}

/* --------------------フェードアップ------------------------ */
.js-fadeup.in {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

.js-load-fadeup.in {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

@keyframes fadeUpAnime {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.js-fadeup {
  opacity: 0;
  transform: translateY(20px);
}

/* --------------------フェードイン------------------------ */
.js-fadein.in {
  animation-name: fadeAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

.js-load-fadein.in {
  animation-name: fadeAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes fadeAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.js-fadein {
  opacity: 0;
}

/* ロードで */
.js-load-fadein {
  opacity: 0;
}

.js-load-fadeup {
  opacity: 0;
}

.delay600 {
  animation-delay: 0.6s;
}

.delay1200 {
  animation-delay: 1.2s;
}

.delay1800 {
  animation-delay: 1.8s;
}

.mb0 {
  margin-bottom: 0 !important;
}

.under1199-only {
  display: none;
}

.only834-450 {
  display: none;
}

@media (max-width: 1599px) {
  .header__contact {
    width: 155px;
  }
  .header__right {
    gap: 20px;
  }
  .header__right-list {
    gap: 20px;
  }
  .logo {
    width: 280px;
  }
}
@media (max-width: 1349px) {
  .logo {
    width: 250px;
  }
  .header__right-list {
    gap: 15px;
    font-size: 1.3rem;
  }
  header {
    padding: 15px 15px;
  }
  .header__contact {
    width: 135px;
    font-size: 1.3rem;
    padding-top: 2px;
  }
  .footer-contact__btn .txt {
    font-size: 1.6rem;
  }
}
@media (max-width: 1199px) {
  .under1199-only {
    display: inline-block;
  }
  .logo {
    width: 270px;
  }
  header {
    height: 60px;
    padding: 0 0 0 15px;
    border-radius: 0;
    max-width: 100%;
    width: -moz-fit-content;
    width: calc(100% - 60px);
    background: #fff;
    left: 0;
    transform: translate(0, 0);
    top: 0;
  }
  .header__right {
    display: none;
  }
  #ham,
  #sp-menu {
    display: block;
  }
  #ham {
    width: 60px;
    height: 60px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 101;
    cursor: pointer;
  }
  .ham {
    position: relative;
    background-color: #26a1d7;
    width: 100%;
    height: 100%;
  }
  .ham span {
    width: 50%;
    height: 1px;
    background-color: #fff;
    display: block;
    position: absolute;
    left: 25%;
    transition-duration: 0.5s;
  }
  .ham span:first-of-type {
    top: 12px;
  }
  .ham span:nth-of-type(2) {
    top: 21px;
  }
  .ham span:last-of-type {
    top: 30px;
  }
  #ham.active .ham span {
    transition-duration: 0.5s;
  }
  #ham.active .ham span:first-of-type {
    top: 21px;
    transform: rotate(45deg);
  }
  #ham.active .ham span:nth-of-type(2) {
    display: none;
  }
  #ham.active .ham span:last-of-type {
    top: 21px;
    transform: rotate(-45deg);
  }
  #ham-txt {
    color: #fff;
    font-size: 1rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    white-space: nowrap;
    line-height: 1;
  }
  #sp-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 375px;
    height: 100vh;
    z-index: 100;
    overflow-y: scroll;
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    transition-duration: 0.5s;
    /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
    -ms-overflow-style: none;
    /*Firefoxへの対応*/
    scrollbar-width: none;
  }
  #sp-menu.active {
    right: 0;
    transition-duration: 0.5s;
  }
  /*Google Chrome、Safariへの対応*/
  #sp-menu::-webkit-scrollbar {
    display: none;
  }
  .sp-menu__wrapper {
    width: 100%;
    height: auto;
    padding: 30px;
  }
  .sp-menu__logo {
    width: 250px;
    margin-bottom: 70px;
    display: block;
  }
  .sp-menu__nav-list {
    margin-bottom: 30px;
  }
  .sp-menu__nav-list li a {
    border-bottom: 1px solid #cccccc;
    padding: 12px 0 10px;
    font-size: 1.6rem;
    color: #000;
    font-weight: 500;
    width: 100%;
    display: block;
  }
  .sp-menu__nav-list-small {
    display: flex;
    justify-content: center;
    gap: 25px;
  }
  .sp-menu__nav-list-small li a {
    color: #000;
    border-bottom: 1px solid #000;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 1.2rem;
    line-height: 1;
  }
  .footer-contact__flex {
    flex-direction: column;
    gap: 20px;
  }
  .footer-contact__flex .cont {
    width: 100%;
  }
  .footer-contact__flex .btns {
    width: 500px;
    max-width: 100%;
    gap: 15px;
  }
  .footer-contact__btn .icon {
    right: 17px;
  }
  .footer-contact__ttl {
    font-size: clamp(2.4rem, 3vw, 3.2rem);
  }
  #footer-contact {
    padding: 120px 0;
  }
  .footer__nav-list li {
    padding: 0 17px;
  }
  .footer__nav-list li a {
    font-size: 1.3rem;
  }
  .footer__logo {
    width: 340px;
  }
}
@media (max-width: 834px) {
  .under-834only {
    display: inline-block;
  }
  .under-834none {
    display: none;
  }
  p {
    font-size: 1.5rem;
  }
  .footer__bnr-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .footer__nav-list li {
    width: 50%;
  }
  .footer__nav-list li:nth-of-type(2n) {
    border-right: none;
  }
  .footer__nav-list {
    flex-wrap: wrap;
    gap: 15px 0;
    justify-content: flex-start;
  }
  .footer__bottom-flex {
    flex-direction: column;
    gap: 40px;
  }
  #footer-contact {
    padding: 60px 0;
  }
  .footer__logo {
    max-width: 100%;
  }
  #sp-menu {
    max-width: 100%;
    width: 100%;
  }
  .only834-450 {
    display: inline-block;
  }
}
@media (max-width: 639px) {
  .footer-contact__flex .btns {
    width: 250px;
    grid-template-columns: 1fr;
  }
  .footer__bnr-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-contact__btn {
    height: 60px;
  }
}
@media (max-width: 449px) {
  .only834-450 {
    display: none;
  }
  .footer__nav-list {
    gap: 0;
    width: 90%;
    margin: 0 auto;
  }
  .footer__nav-list li {
    width: 100%;
    padding: 0;
    border-right: none;
  }
  .footer__nav-list li a {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid #dddddd;
  }
  .sp-menu__wrapper {
    padding: 20px;
  }
}
#top-mv {
  height: 100vh;
  max-height: 1200px;
  position: relative;
  overflow: hidden;
}
#top-mv .simpleParallax {
  height: 100%;
  overflow: visible;
}

.top-mv__cont-bl {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  top: 30%;
}

.top-mv__ttl {
  font-size: 5.2rem;
  font-family: var(--shippori);
  text-align: center;
  white-space: nowrap;
  color: #fff;
}

.top-mv__txt {
  font-size: 2.4rem;
  font-family: var(--shippori);
  text-align: center;
  white-space: nowrap;
  color: #fff;
}

#top-news {
  padding: 100px 0;
}
#top-news .inner {
  padding-bottom: 15px;
  border-bottom: 1px solid #dddddd;
}

.top-news__flex-bl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.top-news__ttl {
  font-size: 3.2rem;
  font-weight: 500;
}

.top-news__tab-list {
  display: flex;
  padding: 5px;
  border-radius: 100px;
  background-color: #f7f7f7;
}
.top-news__tab-list > li {
  font-size: 1.3rem;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 35px;
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  transition-duration: 0.3s;
}
.top-news__tab-list > li::after {
  content: "";
  width: calc(100% - 60px);
  height: 1px;
  background-color: var(--blue);
  opacity: 0;
  position: absolute;
  bottom: 0px;
  left: 30px;
  display: block;
  transition-duration: 0.3s;
}
.top-news__tab-list > li:hover {
  color: var(--blue);
  transition-duration: 0.3s;
}
.top-news__tab-list > li:hover::after {
  opacity: 1;
  bottom: 12px;
  transition-duration: 0.3s;
}
.top-news__tab-list > li.active {
  color: #fff;
  background-color: var(--blue);
}
.top-news__tab-list > li.active::after {
  display: none;
}

.top-news__list {
  display: none;
}
.top-news__list.active {
  display: block;
}
.top-news__list li a {
  display: flex;
  align-items: center;
  color: var(--black);
  padding: 10px 0;
}
.top-news__list li a time {
  font-size: 1.5rem;
  width: 130px;
}
.top-news__list li a .cate {
  width: 75px;
  padding: 0;
  border: 1px solid var(--blue);
  color: var(--blue);
  display: flex;
  justify-content: center;
  font-size: 1.3rem;
  align-items: center;
  line-height: 1.5;
}
.top-news__list li a .ttl {
  font-size: 1.5rem;
  padding-left: 17px;
  width: calc(100% - 130px - 75px);
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.top-news__list li a .ttl::after {
  content: "";
  width: calc(100% - 10px);
  height: 1px;
  background-color: var(--blue);
  position: absolute;
  bottom: 0;
  left: 10px;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s ease-in;
}
.top-news__list li a:hover .ttl::after {
  transform: scale(1, 1);
  transition: transform 0.3s ease-in;
  transform-origin: left top;
}

.base__link01 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.7rem;
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px 0 0 auto;
  color: #000;
}
.base__link01 .arrow-bl {
  background-color: var(--blue);
  border-radius: 100px;
  width: 50px;
  height: 30px;
  color: #fff;
  position: relative;
  display: block;
  overflow: hidden;
  transition-duration: 0.5s;
}
.base__link01 .arrow-bl .material-symbols-outlined {
  font-size: 1.3rem;
}
.base__link01 .arrow-bl .arrow01 {
  border-radius: 100px;
  width: 50px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  transition-duration: 0.5s;
}
.base__link01 .arrow-bl .arrow02 {
  border-radius: 100px;
  width: 50px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: -100%;
  transition-duration: 0.5s;
}
.base__link01:hover .arrow-bl {
  background-color: #4cbae7;
  transition-duration: 0.5s;
}
.base__link01:hover .arrow-bl .arrow01 {
  left: 100%;
  transition-duration: 0.5s;
}
.base__link01:hover .arrow-bl .arrow02 {
  left: 0;
  transition-duration: 0.5s;
}

#top-about {
  padding: 100px 0;
  background-color: #f7f7f7;
}

.top-about__ttl {
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 1.5;
  border-bottom: 1px solid #dddddd;
  margin-bottom: 60px;
  padding-bottom: 5px;
}

.top-about__flex {
  display: flex;
  justify-content: space-between;
}
.top-about__flex .cont {
  width: 48.5%;
}
.top-about__flex .cont .txt {
  font-size: 1.5rem;
  margin-bottom: 30px;
}
.top-about__flex .img-bl {
  width: 48.5%;
  padding-top: 20px;
}
.top-about__flex .img-bl .base__link02 {
  margin: 0 0 0 auto;
}
.top-about__flex .img-bl .img {
  margin-bottom: 100px;
}

.top-about__ttl-middle {
  font-family: var(--shippori);
  font-size: 4.3rem;
  color: #006aae;
  line-height: 1.5;
  margin-bottom: 40px;
}

.base__link02 {
  width: 300px;
  height: 60px;
  padding: 16px;
  background-color: var(--blue);
  border-radius: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition-duration: 0.5s;
}
.base__link02 .txt {
  color: #fff;
  font-size: 1.7rem;
  font-weight: 500;
  padding-left: 10px;
}
.base__link02 .arrow-bl {
  background-color: #fff;
  border-radius: 100px;
  width: 50px;
  height: 30px;
  color: var(--blue);
  position: relative;
  display: block;
  overflow: hidden;
  transition-duration: 0.5s;
}
.base__link02 .arrow-bl .material-symbols-outlined {
  font-size: 1.3rem;
}
.base__link02 .arrow-bl .arrow01 {
  border-radius: 100px;
  width: 50px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  transition-duration: 0.5s;
}
.base__link02 .arrow-bl .arrow02 {
  border-radius: 100px;
  width: 50px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: -100%;
  transition-duration: 0.5s;
}
.base__link02:hover {
  background-color: #4cbae7;
  transition-duration: 0.5s;
}
.base__link02:hover .arrow-bl .arrow01 {
  left: 100%;
  transition-duration: 0.5s;
}
.base__link02:hover .arrow-bl .arrow02 {
  left: 0;
  transition-duration: 0.5s;
}

#top-activity {
  padding: 100px 0;
}
#top-activity .base__link02 {
  margin: 50px auto 0;
}

.top-activity__ttl {
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 1.5;
  border-bottom: 1px solid #dddddd;
  margin-bottom: 40px;
  padding-bottom: 5px;
}

.top-activity__list {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(3, 1fr);
}
.top-activity__list .img {
  margin-bottom: 20px;
}
.top-activity__list .txt {
  font-size: 1.5rem;
}

.top-activity__list-ttl {
  text-align: center;
  font-size: 2.1rem;
  margin-bottom: 20px;
}

#top-gene {
  width: 1500px;
  max-width: 90%;
  border-radius: 10px;
  background-image: url(../img/top/gene-bg.webp);
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  margin: 0 auto 100px;
}
#top-gene .inner {
  max-width: 100%;
}

.top-gene__cont {
  width: 55%;
  margin: 0 0 0 auto;
}
.top-gene__cont .img {
  width: 490px;
  max-width: 100%;
  margin-bottom: 40px;
}
.top-gene__cont > .txt {
  font-size: 1.5rem;
  margin-bottom: 45px;
}

.top-gene__ttl {
  font-weight: 500;
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--blue);
}

.top-gene__ttl-big {
  font-weight: 500;
  font-size: 3.2rem;
  margin-bottom: 30px;
}

.top-news__tab-list-sp-wrapper {
  display: none;
}

.top-news__tab-list-sp li {
  font-size: 1.3rem;
  margin-bottom: 10px;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
}
.top-news__tab-list-sp li:last-child {
  margin-bottom: 0;
}

@media (max-width: 1599px) {
  .top-gene__cont {
    margin: 0 4% 0 auto;
  }
  #top-gene {
    background-position: left 83% top 0;
  }
}
@media (max-width: 1399px) {
  #top-gene {
    background-position: left 67% top 0;
  }
}
@media (max-width: 1349px) {
  #top-mv .simpleParallax img {
    max-width: 120%;
  }
  .top-about__ttl-middle {
    font-size: 4.2rem;
  }
}
@media (max-width: 1199px) {
  #top-mv {
    max-height: 65vw;
  }
  .top-mv__ttl {
    font-size: 4rem;
  }
  .top-mv__txt {
    font-size: 2rem;
  }
  #top-news {
    padding: 80px 0;
  }
  #top-about {
    padding: 80px 0;
  }
  .top-about__ttl {
    font-size: 2.8rem;
    margin-bottom: 30px;
  }
  .top-about__ttl-middle {
    font-size: clamp(2.8rem, 3.5vw, 4.2rem);
  }
  .top-activity__ttl {
    font-size: 2.8rem;
    margin-bottom: 30px;
  }
  #top-activity {
    padding: 80px 0;
  }
  .top-activity__list-ttl {
    font-size: clamp(1.6rem, 1.9vw, 2.1rem);
  }
  #top-gene {
    padding: 80px 0;
    margin: 0 auto 80px;
  }
  .top-gene__ttl-big {
    font-size: clamp(2rem, 3vw, 3.2rem);
    margin-bottom: 25px;
  }
  .top-gene__ttl {
    font-size: 1.7rem;
    margin-bottom: 8px;
  }
  #top-gene {
    background-position: left 62% top 0;
  }
}
@media (max-width: 999px) {
  #top-gene {
    background-position: left 56% top 0;
  }
}
@media (max-width: 834px) {
  .top-mv__ttl {
    line-height: 1.5;
    font-size: 3rem;
  }
  #top-mv {
    max-height: 160vw;
    height: 100vh;
  }
  #top-mv .simpleParallax img {
    max-width: initial;
    height: 120%;
    width: auto;
  }
  .top-mv__cont-bl {
    top: 32%;
    left: 52%;
  }
  .top-news__tab-list {
    transition-duration: 0.5s;
  }
  .top-news__tab-list > li {
    display: none;
    z-index: 1;
  }
  .top-news__tab-list > li.active {
    display: flex;
  }
  .top-news__tab-list:hover {
    background-color: #eeeeee;
    transition-duration: 0.5s;
  }
  #top-news {
    padding: 60px 0;
  }
  .top-news__flex-bl {
    align-items: flex-start;
    margin-bottom: 30px;
    flex-direction: column;
  }
  .top-news__ttl {
    font-size: 2.4rem;
    margin-bottom: 15px;
  }
  .top-news__tab-list {
    padding: 0;
    border-radius: 10px;
    width: 100%;
    position: relative;
  }
  .top-news__tab-list::after {
    width: 8px;
    height: 8px;
    border-bottom: 2px solid var(--blue);
    border-right: 2px solid var(--blue);
    transform: translateY(-50%) rotate(45deg);
    top: 47%;
    right: 20px;
    content: "";
    display: block;
    position: absolute;
    z-index: 0;
  }
  .top-news__tab-list > li.active {
    width: 100%;
    height: 50px;
    border-radius: 10px;
    background: transparent;
    color: #000;
    justify-content: flex-start;
    padding: 0 20px;
  }
  .top-news__list li a {
    flex-wrap: wrap;
    padding: 15px 0;
  }
  .top-news__list li a .ttl {
    font-size: 1.3rem;
    padding-left: 0;
    width: 100%;
    margin-top: 5px;
  }
  .top-news__list li a time {
    font-size: 1.2rem;
    width: 105px;
  }
  .top-news__list li a .cate {
    width: 65px;
    font-size: 1rem;
    padding-top: 3px;
  }
  #top-about {
    padding: 60px 0 40px;
  }
  .top-about__ttl {
    font-size: 2.4rem;
  }
  .top-about__flex {
    flex-direction: column-reverse;
    position: relative;
  }
  .top-about__flex .img-bl {
    width: 100%;
    padding-top: 0;
  }
  .top-about__flex .img-bl .img {
    margin-bottom: 20px;
  }
  .top-about__flex .img-bl .base__link02 {
    margin: 0;
    position: absolute;
  }
  #top-activity {
    padding: 60px 0;
  }
  .top-activity__ttl {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
  .top-about__flex .cont {
    width: 100%;
  }
  .top-about__ttl-middle {
    font-size: clamp(2.4rem, 3.5vw, 4.2rem);
    margin-bottom: 20px;
  }
  .base__link02 {
    width: 250px;
    height: 50px;
  }
  .base__link02 .txt {
    font-size: 1.5rem;
  }
  .base__link02 .arrow-bl .arrow01,
  .base__link02 .arrow-bl .arrow02,
  .base__link02 .arrow-bl {
    width: 40px;
    height: 20px;
  }
  .base__link02 .arrow-bl .material-symbols-outlined {
    font-size: 1.2rem;
  }
  .top-about__flex .img-bl .base__link02 {
    margin: 0;
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
  }
  .top-activity__list {
    gap: 30px;
    grid-template-columns: 1fr;
  }
  .top-activity__list .img {
    margin-bottom: 15px;
  }
  .top-activity__list-ttl {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  #top-activity .base__link02 {
    margin: 30px auto 0;
  }
  #top-gene {
    padding: 40px 25px;
    margin: 0 auto 60px;
    position: relative;
  }
  #top-gene::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    border-radius: 10px;
  }
  .top-gene__cont {
    position: relative;
    z-index: 2;
  }
  .top-gene__cont {
    margin: 0;
    width: 100%;
  }
  .top-gene__ttl-big {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  .top-gene__ttl-big {
    margin-bottom: 25px;
  }
  .top-gene__cont > .txt {
    margin-bottom: 30px;
  }
  #top-gene .base__link02 {
    margin: 0 auto;
  }
  .top-news__tab-list-sp-wrapper.active {
    display: block;
    position: absolute;
    top: 50px;
    padding: 30px;
    background: #fbfbfb;
    width: 100%;
    border-radius: 0 0 10px 10px;
    z-index: 10;
  }
  .top-news__tab-list:has(.top-news__tab-list-sp-wrapper.active) {
    border-radius: 10px 10px 0 0;
  }
  .top-news__list li a .ttl::after {
    width: 100%;
    left: 0;
  }
  #top-gene::before {
    background-color: rgba(255, 255, 255, 0.8);
  }
  #top-gene {
    background-position: left 34% top 0;
  }
}
@media (max-width: 449px) {
  .top-mv__ttl {
    font-size: 2.4rem;
  }
  .top-mv__txt {
    font-size: 1.7rem;
  }
  #top-gene {
    background-position: left 22% top 0;
  }
}
@media (max-width: 375px) {
  .logo {
    width: 255px;
  }
  .top-mv__ttl {
    font-size: 2.3rem;
  }
}
.js-img-big {
  overflow: hidden;
}
.js-img-big img {
  transform: scale(1, 1);
  opacity: 0;
  transition-duration: 1s;
}
.js-img-big img.on {
  transform: scale(1.05, 1.05);
  opacity: 1;
  transition-duration: 1s;
}

#js-mouse {
  pointer-events: none;
  position: fixed;
  top: -15px;
  left: -15px;
  width: 0;
  height: 0;
  background-image: url(../img/swipe.webp);
  overflow: hidden;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 50%;
  transform: translate(0, 0);
  transition-duration: 0.3s;
  z-index: 50;
  opacity: 0;
}
#js-mouse.active {
  width: 100px;
  height: 100px;
  transition-duration: 0.3s;
}/*# sourceMappingURL=style.css.map */