@charset "UTF-8";

/* Common
---------------------------------------------------- */

:root {
  --text_color: #fff;
  --bg_color: #fff;
  --bg_color_sub1: #F2F2F2;
  --bg_color_sub2: #eee;
  --main_black: #000;
  --main_black_rgb: 0, 0, 0;
  --main_red: #E60012;
}

#main.sec .sec_page {
  padding-bottom: 30px;
}

#content {
  background: #9696CC;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text_color);
}

.sec_page .inner {
  width: 100%;
  /*max-width: 1440px;*/
  max-width: none;
  padding: 0;
  text-align: left;
  margin: -70px auto 0;
  position: relative;
  overflow: hidden;
}

.sec_footer__border {
  z-index: 10;
  position: relative;
}

img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  img {
    max-width: none;
  }
}

a {
  transition-duration: .3s;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}

#lp_desc h3,
#lp_wedo h3,
#lp_campaign h3,
#lp_history h3,
#lp_senryu h3 {
  background-color: var(--main_red);
  margin-bottom: 32px;
  width: fit-content;
}

#lp_desc h3 img,
#lp_wedo h3 img,
#lp_campaign h3 img,
#lp_history h3 img,
#lp_senryu h3 img {
  height: 20px;
  width: auto;
  margin: 16px;
}

#lp_desc h4,
#lp_wedo h4,
#lp_senryu h4 {
  color: var(--text_color);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 50px;
  text-align: left;
}

/* コンテンツタイトルアニメーション */
.bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  /*　はみ出た色要素を隠す　*/
  opacity: 0;
  display: block;
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*中の要素*/
.bgappear {
  animation-name: bgextendAnimeSecond;
  animation-duration: 0.5s;
  animation-delay: 0.3s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*左から右*/
.bgLRextend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--text_color);
}

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }

  50% {
    transform-origin: left;
    transform: scaleX(1);
  }

  50.001% {
    transform-origin: right;
  }

  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgLRextendTrigger {
  opacity: 0;
}


/*.fade-in {
	opacity: 0;
}*/

/* スマートフォンで見たときは"sp"のclassを表示 */
.pc {
  display: none !important;
}

.sp {
  display: block !important;
}

/* パソコンで見たときは"pc"のclassを表示 */
@media screen and (min-width: 768px) {
  .pc {
    display: block !important;
  }

  .sp {
    display: none !important;
  }
}

/* MQ */


.stripe_title_area {
  width: 100%;
  padding: 0 16px;
  position: relative;
  z-index: 3;
}

.contentInner {
  width: 100%;
  padding: 0 16px;
  box-sizing: border-box;
}

@media screen and (min-width: 768px) {

  #main.sec .sec_page {
    margin-bottom: -170px;
    padding-bottom: 7em;
  }

  #lp_desc h3,
  #lp_wedo h3,
  #lp_campaign h3,
  #lp_history h3,
  #lp_senryu h3 {
    margin-bottom: 50px;
  }

  #lp_desc h3 img,
  #lp_wedo h3 img,
  #lp_campaign h3 img,
  #lp_history h3 img,
  #lp_senryu h3 img {
    height: 50px;
    margin: 35px 50px;
  }

  #lp_desc h4,
  #lp_wedo h4,
  #lp_senryu h4 {
    font-size: 48px;
    margin-bottom: 50px;
  }

  .stripe_title_area {
    max-width: 1200px;
    padding: 0;
    margin: 140px auto 50px;
  }

  .contentInner {
    max-width: 1200px;
    padding: 0 50px;
    margin: 0 auto;
  }

}

/* MQ */


@media screen and (min-width: 1200px) {

  #lp_desc h3 img,
  #lp_wedo h3 img,
  #lp_campaign h3 img,
  #lp_history h3 img,
  #lp_senryu h3 img {
    height: 80px;
    margin: 35px 50px;
  }

}

/* MQ */



/* Hero
---------------------------------------------------- */

#hero {
  position: relative;
  width: 100%;
  max-width: 1340px;
  height: 100vh;
  height: 100dvh;
  background-image: url(../img/bg_hero.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 auto;
  padding-top: 70px;
  /*animation: hero_anime 1s ease-out;*/
}

/*@keyframes hero_anime {
	0% {
		opacity: 0;
		transform: scale(1.3);
		filter: blur(10px);
	}

	100% {
		opacity: 1;
		transform: scale(1);
		filter: none;
	}
}*/

#hero h2#campaign_title {
  width: calc(100% - 32px);
  max-width: 800px;
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.85));
}

#hero_chara01 {
  width: 110%;
  height: auto;
  position: absolute;
  bottom: 0%;
  left: 53%;
  transform: translateX(-50%);
  z-index: 8;
  opacity: 0;
  animation: hero_chara01 .3s forwards .8s ease-out;
}

@keyframes hero_chara01 {
  0% {
    opacity: 0;
    transform: translateX(-50%) scale(0.5);
    filter: blur(10px);
    bottom: -5%;
  }

  100% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
    filter: none;
    bottom: 0%;
  }
}

#hero_chara02 {
  width: 40%;
  height: auto;
  position: absolute;
  top: 39%;
  left: -8%;
  z-index: 7;
  opacity: 0;
  animation: hero_chara02 .4s forwards 1s ease-out;
}

@keyframes hero_chara02 {
  0% {
    opacity: 0;
    transform: scale(0.6);
    filter: blur(10px);
    top: 44%;
    left: 4%;
  }

  100% {
    opacity: 1;
    transform: scale(1);
    filter: none;
    top: 39%;
    left: -8%;
  }
}

#hero_chara03 {
  width: 40%;
  height: auto;
  position: absolute;
  top: 30%;
  right: 4%;
  z-index: 7;
  opacity: 0;
  animation: hero_chara03 .4s forwards 1.2s ease-out;
}

@keyframes hero_chara03 {
  0% {
    opacity: 0;
    transform: scale(0.6);
    filter: blur(10px);
    top: 35%;
    right: 14%;
  }

  100% {
    opacity: 1;
    transform: scale(1);
    filter: none;
    top: 30%;
    right: 4%;
  }
}

#hero_chara04 {
  width: 20%;
  height: auto;
  position: absolute;
  bottom: 0%;
  right: 2%;
  z-index: 7;
  opacity: 0;
  animation: hero_chara04 .4s forwards 1.4s ease-out;
}

@keyframes hero_chara04 {
  0% {
    opacity: 0;
    transform: scale(0.5);
    filter: blur(10px);
    bottom: -5%;
    right: 5%;
  }

  100% {
    opacity: 1;
    transform: scale(1);
    filter: none;
    bottom: 0%;
    right: 2%;
  }
}

#hero_chara05 {
  width: 8%;
  height: auto;
  position: absolute;
  top: 35%;
  left: 3%;
  z-index: 6;
  opacity: 0;
  animation: hero_chara05 .3s forwards 1.5s ease-out;
}

@keyframes hero_chara05 {
  0% {
    opacity: 0;
    transform: scale(0.5);
    filter: blur(10px);
    top: 40%;
    left: 8%;
  }

  100% {
    opacity: 1;
    transform: scale(1);
    filter: none;
    top: 35%;
    left: 3%;
  }
}

#hero_chara06 {
  width: 7%;
  height: auto;
  position: absolute;
  bottom: 18%;
  right: 3%;
  z-index: 6;
  opacity: 0;
  animation: hero_chara06 .2s forwards 1.6s ease-out;
}

@keyframes hero_chara06 {
  0% {
    opacity: 0;
    transform: scale(0.5);
    filter: blur(10px);
    bottom: 23%;
    right: 8%;
  }

  100% {
    opacity: 1;
    transform: scale(1);
    filter: none;
    bottom: 18%;
    right: 3%;
  }
}

#logo_hatarakusaibou {
  width: 20%;
  height: auto;
  position: absolute;
  bottom: 10%;
  right: 26%;
  z-index: 9;
  opacity: 0;
  animation: logo_hatarakusaibou .5s forwards 1.5s ease-out;
}

@keyframes logo_hatarakusaibou {
  0% {
    opacity: 0;
    transform: scale(0.5);
    filter: blur(10px);
  }

  100% {
    opacity: 1;
    transform: scale(1);
    filter: none;
  }
}

#bg_rocket {
  width: 100%;
  height: auto;
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: bg_rocket .5s forwards .5s ease-out;
}

@keyframes bg_rocket {
  0% {
    opacity: 0;
    transform: translateX(-50%) scale(0.5);
    filter: blur(10px);
    top: 120px;
  }

  100% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
    filter: none;
    top: 70px;
  }
}


@media screen and (min-width: 768px) {
  #hero h2#campaign_title {
    width: 100%;
    top: 110px;
  }

  #hero_chara01 {
    width: 751px;
    left: 50%;
    top: 380px;
    bottom: auto;
    /*bottom: -5%;*/
  }

  @keyframes hero_chara01 {
    0% {
      opacity: 0;
      transform: translateX(-50%) scale(0.5);
      filter: blur(10px);
      top: 390px;
      /*bottom: -10%;*/
    }

    100% {
      opacity: 1;
      transform: translateX(-50%) scale(1);
      filter: none;
      top: 380px;
      /*bottom: -5%;*/
    }
  }

  #hero_chara02 {
    width: 451px;
    top: 41%;
    left: -2%;
  }

  @keyframes hero_chara02 {
    0% {
      opacity: 0;
      transform: scale(0.6);
      filter: blur(10px);
      top: 46%;
      left: 10%;
    }

    100% {
      opacity: 1;
      transform: scale(1);
      filter: none;
      top: 41%;
      left: -2%;
    }
  }

  #hero_chara03 {
    width: 445px;
    top: 24%;
    right: 12%;
  }

  @keyframes hero_chara03 {
    0% {
      opacity: 0;
      transform: scale(0.6);
      filter: blur(10px);
      top: 29%;
      right: 22%;
    }

    100% {
      opacity: 1;
      transform: scale(1);
      filter: none;
      top: 24%;
      right: 12%;
    }
  }

  #hero_chara04 {
    width: 199px;
    bottom: -13%;
    right: 2%;
  }

  @keyframes hero_chara04 {
    0% {
      opacity: 0;
      transform: scale(0.5);
      filter: blur(10px);
      bottom: -18%;
      right: 5%;
    }

    100% {
      opacity: 1;
      transform: scale(1);
      filter: none;
      bottom: -13%;
      right: 2%;
    }
  }

  #hero_chara05 {
    width: 76px;
    top: 42%;
    left: 5%;
  }

  @keyframes hero_chara05 {
    0% {
      opacity: 0;
      transform: scale(0.5);
      filter: blur(10px);
      top: 47%;
      left: 10%;
    }

    100% {
      opacity: 1;
      transform: scale(1);
      filter: none;
      top: 42%;
      left: 5%;
    }
  }

  #hero_chara06 {
    width: 67px;
    bottom: 25%;
    right: 3%;
  }

  @keyframes hero_chara06 {
    0% {
      opacity: 0;
      transform: scale(0.5);
      filter: blur(10px);
      bottom: 30%;
      right: 8%;
    }

    100% {
      opacity: 1;
      transform: scale(1);
      filter: none;
      bottom: 25%;
      right: 3%;
    }
  }

  #logo_hatarakusaibou {
    width: 143px;
    bottom: 16%;
    right: 22%;
  }

  @keyframes logo_hatarakusaibou {
    0% {
      opacity: 0;
      transform: scale(0.5);
      filter: blur(10px);
    }

    100% {
      opacity: 1;
      transform: scale(1);
      filter: none;
    }
  }

  #bg_rocket {
    width: 1340px;
    top: -280px;
  }

  @keyframes bg_rocket {
    0% {
      opacity: 0;
      transform: translateX(-50%) scale(0.5);
      filter: blur(10px);
      top: -330px;
    }

    100% {
      opacity: 1;
      transform: translateX(-50%) scale(1);
      filter: none;
      top: -280px;
    }
  }

}

/* MQ */

/* スクロールで散る用 */
.fade-out-scatter {
  opacity: 0 !important;
  /* フェードアウト */
  transition: transform 1s ease, opacity 1s ease;
}



/* 薬剤耐性(AMR)とは
---------------------------------------------------- */

#lp_desc {
  position: relative;
  width: calc(100% - 32px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 46px 0 60px;
  z-index: 9;
}

#lp_desc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 14px;
  background-size: auto auto;
  background-color: rgba(127, 127, 211, 1);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 5px, rgba(255, 255, 255, 1) 5px, rgba(255, 255, 255, 1) 10px);
}

#lp_desc::after {
  content: '';
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background-image: url(../img/bg_contents01.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
}

#lp_desc .lp_desc_bg {
  position: absolute;
  inset: 0;
  width: 100%;
  background-image: url(../img/bg_desc.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 37% 100%, 0 90%);
  z-index: -1;
}

#lp_desc h3 {
  margin-bottom: 16px;
}

#lp_desc h4 {
  margin-bottom: 16px;
  padding-right: 80px;
}

#lp_desc p {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--text_color);
  padding-right: 80px;
}

#lp_desc #img_kesshouban01 {
  width: 100px;
  height: auto;
  position: absolute;
  bottom: 0;
  right: -3%;
}


@media screen and (min-width: 768px) {
  #lp_desc {
    width: 100%;
    padding: 130px 0 130px;
  }

  #lp_desc::before {
    height: 50px;
    background-image: repeating-linear-gradient(135deg, transparent, transparent 15px, rgba(255, 255, 255, 1) 15px, rgba(255, 255, 255, 1) 30px);
  }

  #lp_desc::after {
    bottom: 1%;
    width: 1398px;
    height: 838px;
  }

  #lp_desc h3 {
    margin-bottom: 50px;
  }

  #lp_desc h4 {
    margin-bottom: 50px;
    padding-right: 20%;
  }

  #lp_desc p {
    font-size: 32px;
    padding-right: 25%;
  }

  #lp_desc #img_kesshouban01 {
    width: 300px;
    bottom: 0;
    right: -9%;
  }

}

/* MQ */


/* YouTube動画
---------------------------------------------------- */

.top_movie {
  position: relative;
  width: calc(100% - 32px);
  max-width: 1200px;
  aspect-ratio: 16 / 9;
  /*padding-top: 56.25%;*/
  margin: 80px auto 110px;
}

.top_movie2 {
  position: relative;
  width: calc(100% - 32px);
  max-width: 600px;
  aspect-ratio: 16 / 9;
  /*padding-top: 56.25%;*/
  margin: 80px auto;
}

.top_movie iframe,
.top_movie2 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


@media screen and (min-width: 768px) {
  .top_movie {
    width: 100%;
    margin: 80px auto 250px;
  }

  .top_movie2 {
    width: 100%;
    margin: 150px auto;
  }

}

/* MQ */


/* モブ細菌フロート
---------------------------------------------------- */

.floating-images {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
  /*  width: 100%;
  max-width: 1440px;*/
}

/* 表示用 */
.floating-images.visible {
  opacity: 1;
}

/* ランダム浮遊用アニメーション */
@keyframes floatXY {
  0% {
    transform: translate(0px, 0px);
  }

  25% {
    transform: translate(var(--amplitude-x), calc(var(--amplitude-y) * 0.5));
  }

  50% {
    transform: translate(calc(var(--amplitude-x) * -1), var(--amplitude-y));
  }

  75% {
    transform: translate(calc(var(--amplitude-x) * 0.5), calc(var(--amplitude-y) * -0.5));
  }

  100% {
    transform: translate(0px, 0px);
  }
}

/* 各画像に共通設定 */
.floating-images .float-img {
  position: fixed;
  z-index: 0;
  animation-name: floatXY;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.float-img.float_img_left01 {
  top: 43%;
  left: 1%;
  width: 40px;
  height: auto;
}

.float-img.float_img_left02 {
  top: 50%;
  left: -2%;
  width: 30px;
  height: auto;
}

.float-img.float_img_left03 {
  top: 55%;
  left: 1%;
  width: 40px;
  height: auto;
}

.float-img.float_img_left04 {
  top: 60%;
  left: 1%;
  width: 25px;
  height: auto;
}

.float-img.float_img_right01 {
  top: 50%;
  right: 1%;
  width: 40px;
  height: auto;
}

.float-img.float_img_right02 {
  top: 59%;
  right: -2%;
  width: 45px;
  height: auto;
}


@media screen and (min-width: 768px) {
  .float-img.float_img_left01 {
    top: 30%;
    left: 1%;
    width: 147px;
    height: 157px;
  }

  .float-img.float_img_left02 {
    top: 50%;
    left: -2%;
    width: 95px;
    height: 117px;
  }

  .float-img.float_img_left03 {
    top: 65%;
    left: 1%;
    width: 149px;
    height: 162px;
  }

  .float-img.float_img_left04 {
    top: 82%;
    left: 4%;
    width: 86px;
    height: 91px;
  }

  .float-img.float_img_right01 {
    top: 55%;
    right: 1%;
    width: 146px;
    height: 170px;
  }

  .float-img.float_img_right02 {
    top: 75%;
    right: -2%;
    width: 187px;
    height: 133px;
  }

}

/* MQ */


/* わたしたちができること
---------------------------------------------------- */

#lp_wedo {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  /*overflow: hidden;*/
  /* 上が右肩上がり、下が右肩下がり */
  /*clip-path: polygon(0 10%, 100% 0%, 100% 100%, 0% 90%);*/
}

#lp_wedo .lp_wedo_content {
  position: relative;
  background-image: url(../img/bg_wedo.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0 100px;
  clip-path: polygon(0 2%, 100% 0%, 100% 100%, 0% 98%);
  z-index: 1;
  text-align: center;
  margin: -110px 0 -30px;
}

/* ストライプ帯（上・下共通） */
#lp_wedo .stripe {
  width: 100%;
  height: 14px;
  position: relative;
  z-index: 2;
  background-size: auto auto;
  background-color: rgba(150, 150, 204, 1);
}

/* 上の帯：右肩上がり */
#lp_wedo .stripe_top {
  transform: skewY(-4deg);
  transform-origin: bottom left;
  margin-bottom: -10px;
  background-image: repeating-linear-gradient(137deg,
      transparent,
      transparent 5px,
      rgba(255, 255, 255, 1) 5px,
      rgba(255, 255, 255, 1) 10px);
}

/* 下の帯：右肩下がり */
#lp_wedo .stripe_bottom {
  transform: skewY(4deg);
  transform-origin: top left;
  margin-top: -10px;
  background-image: repeating-linear-gradient(133deg,
      transparent,
      transparent 5px,
      rgba(255, 255, 255, 1) 5px,
      rgba(255, 255, 255, 1) 10px);
}

#lp_wedo .bt_wedo_area {
  position: relative;
}

#lp_wedo .bt_wedo_area #bt_wedo01 {
  position: absolute;
  top: 20%;
  left: 0%;
  width: 45%;
  height: auto;
}

#lp_wedo .bt_wedo_area #bt_wedo02 {
  position: absolute;
  top: 10%;
  right: 0%;
  width: 45%;
  height: auto;
}

#lp_wedo .bt_wedo_area #bt_wedo03 {
  position: absolute;
  top: 55%;
  left: 5%;
  width: 45%;
  height: auto;
}

#lp_wedo .bt_wedo_area #bt_wedo04 {
  position: absolute;
  top: 75%;
  left: 70%;
  width: 45%;
  height: auto;
}

#lp_wedo .bt_wedo_area #bt_wedo05 {
  position: absolute;
  top: 42%;
  right: 5%;
  width: 45%;
  height: auto;
}


#lp_wedo #img_macrophage01 {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 0 auto;
}

#lp_wedo .bt_wedo_area div img {
  animation: float 6s ease-in-out infinite;
  display: inline-block;
  will-change: transform;
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  25% {
    transform: translateY(-10px) rotate(1deg);
  }

  50% {
    transform: translateY(0px) rotate(-1deg);
  }

  75% {
    transform: translateY(10px) rotate(1deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}


@media screen and (min-width: 768px) {
  #lp_wedo .lp_wedo_content {
    padding: 300px 0 150px;
    clip-path: polygon(0 8%, 100% 0%, 100% 100%, 0% 92%);
    margin: -310px 0 -130px;
  }

  #lp_wedo .stripe {
    height: 50px;
  }

  #lp_wedo .stripe_top {
    margin-bottom: -180px;
    background-image: repeating-linear-gradient(137deg,
        transparent,
        transparent 15px,
        rgba(255, 255, 255, 1) 15px,
        rgba(255, 255, 255, 1) 30px);
  }

  #lp_wedo .stripe_bottom {
    margin-top: -130px;
    background-image: repeating-linear-gradient(133deg,
        transparent,
        transparent 15px,
        rgba(255, 255, 255, 1) 15px,
        rgba(255, 255, 255, 1) 30px);
  }

  #lp_wedo .bt_wedo_area #bt_wedo01 {
    position: absolute;
    top: 5%;
    left: 2%;
    width: 319px;
    height: 327px;
  }

  #lp_wedo .bt_wedo_area #bt_wedo02 {
    position: absolute;
    top: 1%;
    right: 5%;
    width: 320px;
    height: 325px;
  }

  #lp_wedo .bt_wedo_area #bt_wedo03 {
    position: absolute;
    top: 45%;
    left: 0%;
    width: 320px;
    height: 325px;
  }

  #lp_wedo .bt_wedo_area #bt_wedo04 {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translateX(-50%) !important;
    width: 322px;
    height: 325px;
  }

  #lp_wedo .bt_wedo_area #bt_wedo05 {
    position: absolute;
    top: 40%;
    right: 0%;
    width: 322px;
    height: 323px;
  }


  #lp_wedo #img_macrophage01 {
    width: 600px;
    height: auto;
    margin: 128px auto 0;
  }

}

/* MQ */


/*game*/
/*------------------------------------------------------------*/
.main .wrap {
  -webkit-overflow-scrolling: touch;
  height: 100%;
  font-size: 62.5% !important;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}

*:focus {
  outline: none;
}

ruby {
  letter-spacing: 0;
  ruby-align: space-between;
}

ruby rt {
  /* font-size: 0.8rem; */
  transform: translateY(2px) scale(0.6);
  letter-spacing: -0.10rem;
}

_::-webkit-full-page-media,
_:future,
:root ruby {
  ruby-overhang: end;
}

_::-webkit-full-page-media,
_:future,
:root ruby rt {
  /* font-size: 0.8rem; */
  transform: translateY(4px) scale(0.6);
  letter-spacing: -0.10rem;
}

_::-webkit-full-page-media,
_:future,
:root .c-modal-slider__slide .c-modal-slider__txt-wrap .c-txt {
  line-height: 1.0;
}

_::-webkit-full-page-media,
_:future,
:root .c-modal-slider__txt-wrap .c-txt::before {
  top: 60%;
}

_::-webkit-full-page-media,
_:future,
:root .c-cassette {
  margin-top: 7%;
}

.main .wrap div a {
  text-decoration: none;
  -webkit-transition-duration: 0.35s;
  -moz-transition-duration: 0.35s;
  -ms-transition-duration: 0.35s;
  -o-transition-duration: 0.35s;
  transition-duration: 0.35s;
}

.main .wrap div a:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
}

#game {
  position: relative;
  width: 100vw;
  background-color: #fff;
  transform: translate(-50%, 0);
  left: 50%;
  min-height: 500px;
  padding: 70px 0 80px;
  z-index: 0;
  clip-path: polygon(0 0, 100% 0%, 100% 97%, 0% 100%);
}

.c-modal__overlay,
.c-modal__container {
  will-change: transform;
  top: -500px;
}

#game small {
  font-size: 60%;
}

#game span {
  font-weight: 800;
}

@media screen and (max-width: 749px) {
  .c-cassette-2 {
    margin-top: 5% !important;
  }

  .c-cassette-3 {
    margin-top: 5% !important;
  }
}

@media screen and (min-width: 768px) {
  #game {
    padding: 150px 0;
    clip-path: polygon(0 0, 100% 0%, 100% 93%, 0% 100%);
  }
}

/* MQ */



/* 令和7年度のキャンペーン情報
---------------------------------------------------- */

#lp_campaign {
  position: relative;
  margin: -10px auto 0;
  padding: 10px 0 80px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

#lp_campaign .stripe {
  width: 100%;
  height: 14px;
  position: relative;
  z-index: 2;
  background-size: auto auto;
  background-color: rgba(150, 150, 204, 1);
}

#lp_campaign .stripe_top {
  transform: skewY(-4deg);
  transform-origin: bottom left;
  margin-bottom: -10px;
  background-image: repeating-linear-gradient(137deg,
      transparent,
      transparent 5px,
      rgba(255, 255, 255, 1) 5px,
      rgba(255, 255, 255, 1) 10px);
}

#lp_campaign ul.lp_campaign_list {
  padding: 0 16px;
}

#lp_campaign ul.lp_campaign_list li {
  width: 100%;
  margin-bottom: 24px;
}

#lp_campaign ul.lp_campaign_list li p {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text_color);
  margin-top: 8px;
}


@media screen and (min-width: 768px) {
  #lp_campaign {
    margin: -140px auto 0;
    padding: 130px 0 130px;
  }

  #lp_campaign .stripe {
    height: 50px;
  }

  #lp_campaign .stripe_top {
    margin-bottom: -180px;
    background-image: repeating-linear-gradient(137deg,
        transparent,
        transparent 15px,
        rgba(255, 255, 255, 1) 15px,
        rgba(255, 255, 255, 1) 30px);
  }

  #lp_campaign ul.lp_campaign_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 80px;
  }

  #lp_campaign ul.lp_campaign_list li {
    width: calc((100% - 80px) / 2);
    margin-bottom: 0;
  }

  #lp_campaign ul.lp_campaign_list li p {
    font-size: 18px;
    margin-top: 16px;
  }

}

/* MQ */


/* 8年間の活動ヒストリー
---------------------------------------------------- */

#lp_history {
  position: relative;
  margin: 0 auto;
  padding: 0px 0 80px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

#lp_history .stripe {
  width: 100%;
  height: 14px;
  position: relative;
  z-index: 2;
  background-size: auto auto;
  background-color: rgba(150, 150, 204, 1);
}

#lp_history .stripe_top {
  transform: skewY(4deg);
  transform-origin: bottom left;
  margin-bottom: -10px;
  background-image: repeating-linear-gradient(133deg,
      transparent,
      transparent 5px,
      rgba(255, 255, 255, 1) 5px,
      rgba(255, 255, 255, 1) 10px);
}

#lp_history #img_hakkekkyuu01 {
  width: 300px;
  height: auto;
  position: absolute;
  top: 70px;
  left: -30%;
  z-index: 0;
}

#lp_history ul.lp_history_list li {
  width: 100%;
  margin-bottom: 24px;
}

#lp_history ul.lp_history_list li p {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--main_black);
  margin-top: 8px;
}


/*アコーディオン*/
.accordion-area {
  list-style: none;
  width: 90%;
  max-width: 940px;
  margin-left: auto;
}

.accordion-area li {
  margin: 0;
}

.accordion-area .section {
  border-bottom: 2px solid var(--text_color);
}

.title {
  position: relative;
  cursor: pointer;
  transition: all .5s ease;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text_color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  background-image: url(../img/bg_history.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.title::after {
  position: absolute;
  content: '';
  width: 14px;
  height: 14px;
  border: 0;
  border-bottom: 3px solid var(--text_color);
  border-right: 3px solid var(--text_color);
  transform: rotate(45deg);
  top: 50%;
  right: 20px;
  transition: all 0.3s;
  margin-top: -13px;
}

.title.close::after {
  transform: rotate(225deg);
  margin-top: -3px;
}

/*アコーディオンで現れるエリア*/
.box {
  display: none;
  background: rgba(255, 255, 255, 0.9);
  padding: 16px;
}


@media screen and (min-width: 768px) {
  #lp_history {
    padding: 0px 0 130px;
  }

  #lp_history .stripe {
    height: 50px;
  }

  #lp_history .stripe_top {
    margin-bottom: -130px;
    background-image: repeating-linear-gradient(133deg,
        transparent,
        transparent 15px,
        rgba(255, 255, 255, 1) 15px,
        rgba(255, 255, 255, 1) 30px);
  }

  #lp_history #img_hakkekkyuu01 {
    width: 600px;
    top: 370px;
    left: -4%;
  }

  #lp_history ul.lp_history_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 80px;
  }

  #lp_history ul.lp_history_list li {
    width: calc((100% - 80px) / 2);
    margin-bottom: 0;
  }

  #lp_history ul.lp_history_list li p {
    font-size: 18px;
    margin-top: 16px;
  }


  /*アコーディオン*/
  .accordion-area {
    width: 96%;
  }

  .title {
    font-size: 40px;
    height: 70px;
  }

  .title::after {
    width: 16px;
    height: 16px;
    border-bottom: 4px solid var(--text_color);
    border-right: 4px solid var(--text_color);
    right: 30px;
    margin-top: -14px;
  }

  .title.close::after {
    margin-top: -4px;
  }

  /*アコーディオンで現れるエリア*/
  .box {
    padding: 40px 80px;
  }

}

/* MQ */



/* 薬剤耐性(AMR)あるある川柳
---------------------------------------------------- */

#lp_senryu {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 47px 0 80px;
  background-image: url(../img/bg_texture.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  clip-path: polygon(0 10%, 100% 0%, 100% 100%, 0% 100%);
}

#lp_senryu .stripe {
  width: 100%;
  height: 14px;
  position: relative;
  z-index: 2;
  background-size: auto auto;
  background-color: rgba(150, 150, 204, 1);
}

#lp_senryu .stripe_top {
  transform: skewY(-4deg);
  transform-origin: bottom left;
  margin-bottom: -10px;
  margin-top: -20px;
  background-image: repeating-linear-gradient(137deg,
      transparent,
      transparent 5px,
      rgba(255, 255, 255, 1) 5px,
      rgba(255, 255, 255, 1) 10px);
}

#lp_senryu h4 {
  text-align: center;
}


@media screen and (min-width: 768px) {
  #lp_senryu {
    padding: 130px 0 130px;
    clip-path: polygon(0 20%, 100% 0%, 100% 100%, 0% 100%);
  }

  #lp_senryu .stripe {
    height: 50px;
  }

  #lp_senryu .stripe_top {
    margin-bottom: -180px;
    margin-top: -20px;
    background-image: repeating-linear-gradient(137deg,
        transparent,
        transparent 15px,
        rgba(255, 255, 255, 1) 15px,
        rgba(255, 255, 255, 1) 30px);
  }

}

/* MQ */



/* お問い合わせ
---------------------------------------------------- */

#lp_contact {
  position: relative;
  width: 100%;
  min-height: 300px;
  margin: 0 auto;
  padding: 0 0 70px;
  background-image: url(../img/bg_contact.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

#lp_contact #bt_contact {
  width: calc(100% - 32px);
  height: auto;
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%) !important;
  filter: drop-shadow(6px 6px 20px #000);
  z-index: 1;
}

#img_kanou01 {
  width: 50%;
  height: auto;
  position: absolute;
  top: 58%;
  left: -10%;
}

#img_budou01 {
  width: 50%;
  height: auto;
  position: absolute;
  top: 58%;
  right: -14%;
}

#img_ryokunoukin01 {
  width: 40%;
  height: auto;
  position: absolute;
  top: 67%;
  left: 20%;
}

#img_haien01 {
  width: 50%;
  height: auto;
  position: absolute;
  top: 59%;
  right: 15%;
}


@media screen and (min-width: 768px) {
  #lp_contact {
    min-height: 550px;
    padding: 130px 0 130px;
  }

  #lp_contact #bt_contact {
    width: 578px;
    top: 90px;
  }

  #img_kanou01 {
    width: 731px;
    height: auto;
    position: absolute;
    top: 10%;
    left: -10%;
  }

  #img_budou01 {
    width: 620px;
    height: auto;
    position: absolute;
    top: 10%;
    right: -10%;
  }

  #img_ryokunoukin01 {
    width: 556px;
    height: auto;
    position: absolute;
    top: 42%;
    left: 20%;
  }

  #img_haien01 {
    width: 795px;
    height: auto;
    position: absolute;
    top: 28%;
    right: 10%;
  }

}

/* MQ */



/*senryu*/
/*------------------------------------------------------------*/
#senryu {
  background-color: #fff;
  width: 100%;
  text-align: center;
  z-index: 100;
  position: relative;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

#senryuArea {
  position: relative;
  margin: 0 auto;
  padding: 80px 0 0 0;
  max-width: 850px;
}

#senryu h3 {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 60px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  display: inline-block;
  color: #29418e;
  margin: 0 auto;
  padding: 0 0 20px 0;
  width: 100%;
}

#senryu .swiper {
  margin: 40px auto 0 auto;
  max-width: 850px;
  overflow: hidden;
}

@media screen and (max-width: 749px) {
  #senryuArea {
    max-width: 90%;
  }

  #senryu h3 {
    font-size: 24px;
  }

  #senryu .swiper {
    max-width: 100%;
  }

  #senryu .swiper-button-prev {
    left: -1% !important;
  }

  #senryu .swiper-button-next {
    right: -1% !important;
  }
}