@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}
html{
    font-size: 62.5%;
    color: #010101;
    font-family: "Noto Sans JP", sans-serif;
    /* overflow-x: hidden;/ */
}
.main{
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}
.catch{
    width: 100%;
    position: absolute;
    top: 20%;
    z-index: 30;
    transition: .2s;
}
.opening{
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: #303030;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    row-gap: 20px;
}
.opening_flx{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
}
.opening_flx img{
    opacity: 1;
    transition: .3s;
    transform: scale(1) rotate(0deg);
}
.opening_img{
    opacity: 0 !important;
    transform: scale(2.5) rotate(0deg) !important;
}
.catch_1{
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}
.catch_2{
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}
.catch_3{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.sp_none{
    display: block;
}
.pc_none{
    display: none;
}
.main_img{
    width: 60%;
    height: auto;
    position: absolute;
    top: 72px;
    right: 0;
    z-index: 20;
}
.main_bg{
    width: 110%;
    height: auto;
    position: absolute;
    top: 0px;
    left: -30px;
    z-index: 10;
}
.mt_auto{
    margin-top: auto;
}
@media screen and (min-width: 800px){
    .float_pc{
        display: none !important;
    }
    .card_wrap{
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 30px;
      margin-top: 50px;
      row-gap: normal;
  }
}
.catch_bt{
    width: 400px;
    font-size: 30px;
    text-align: center;
    font-weight: 700;
    margin-top: 50px;
    margin-left: 150px;
}
.catch_bt img{
    width: 38px;
    margin-top: 20px;
    animation: move 1s infinite;
}
@keyframes move{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(15px);
    }
    100%{
        transform: translateY(0px);
    }
}
.manifest{
    width: 100%;
    position: relative;
    overflow: hidden;
    background-image: url(./img/manifest_bg.png);
    background-size: auto;
    padding-bottom: 100px;
}
.manifest_title{
    width: 100%;
    text-align: center;
}
.manifest_title p{
    font-size: 29px;
    font-weight: 700;
    margin-top: 100px;
    letter-spacing: 2.9px;
}
.manifest_title h2{
    width: 550px;
    font-size: 75px;
    font-weight: 700;
    margin: 0 auto;
    margin-top: 20px;
    letter-spacing: 5px;
    border-top: 2px solid #010101;
    border-bottom: 2px solid #010101;
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: #fff;
}
.slider_ct{
    width: 100%;
    margin-top: 100px;
}
.card_wrap_title{
  width: 100%;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-top: 100px;
}
.card_wrap_text{
  width: 100%;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-top: 20px;
}
.card{
    width: 242px;
    height: 324px;
    min-width: 242px;
    position: relative;
    cursor: pointer;
    margin: 0 15px;
    margin-top: 30px;
}
/* 擬似要素とpadding-topでカードの高さを指定 */
.card::before {
  content: "";
  display: block;
  padding-top: 324px;
}
/* カード裏面・表面の共通スタイル */
.card .open,
.card .back {
  transition: all 0.6s;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  backface-visibility: hidden;
  padding: 0px 20px;
}
/* カード表面のスタイル */
.card .back {
  transform: rotateY(-180deg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card .back div{
  width: 100%;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 33px;
  position: relative;
  z-index: 10;
}
/* ホバー時のカード裏面 */
.card:hover .open {
  transform: rotateY(180deg);
}
/* ホバー時のカード表面 */
.card:hover .back {
  transform: rotateY(0);
}
.rotate1{
    transform: rotate(3deg);
}
.rotate2{
    transform: rotate(-4deg);
}
.rotate3{
    transform: rotate(5deg);
}
.rotate4{
    transform: rotate(-3deg);
}
.rotate5{
    transform: rotate(6deg);
}
.rotate6{
    transform: rotate(-3deg);
}
.rotate7{
    transform: rotate(4deg);
}
.rotate8{
    transform: rotate(-5deg);
}
.slider_top {
    display: flex;
    animation: slide-right-left-1 23s infinite linear both;
}
.slider_bottom {
    display: flex;
    animation: slide-right-left-2 23s infinite linear both;
}
.slider_wrap{
    display: flex;
}
.slider_ct:hover .slider_wrap .slideshow{
    animation-play-state: paused;
}
.slider_ct:hover .slider_wrap .slideshow{
    animation-play-state: paused;
}
@keyframes slide-right-left-1 {
    0% { transform: translateX(10%); } /* 最初の位置 */
    100% { transform: translateX(-90%); } /* 右から左に移動 */
}
@keyframes slide-right-left-2 {
    0% { transform: translateX(0%); } /* 最初の位置 */
    100% { transform: translateX(-100%); } /* 右から左に移動 */
}
.card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.open_num{
    height: 79px;
    font-size: 54px;
    letter-spacing: 2.7px;
    color: rgba(0, 0, 0, 0);
    -webkit-text-stroke-width: 1.5px;
    -webkit-text-stroke-color: #010101;
    position: relative;
    z-index: 10;
    font-weight: 700;
}
.open_title{
    font-size: 22px;
    font-weight: 700;
    margin-top: 12px;
    letter-spacing: 2.4px;
    z-index: 10;
    position: relative;
}
.open_title_sm{
  font-size: 20px;
}
.open_text{
    font-size: 17px;
    font-weight: 700;
    margin-top: 7px;
    letter-spacing: 1.7px;
    z-index: 10;
    position: relative;
}
.pdf{
    width: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-top: 80px;
    padding-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1.5px solid #010101;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    gap: 20px;
    color: #010101;
}
.documents{
    width: 720px;
    background-color: #F6F6F6;
    border-top: 1.5px solid #010101;
    border-bottom: 1.5px solid #010101;
    padding-top: 26px;
    padding-bottom: 36px;
    text-align: center;
    margin: 0 auto;
    margin-top: 80px;
}
.documents h3 {
    width: 100%;
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 3px;
}
.documents h3 span{
    color: #E5007F;
}
.documents_year{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 24px;
}
.documents_year div{
    width: 420px;
    height: 46px;
    border: 1.5px solid #010101;
    background-color: #fff;
    font-size: 27px;
    letter-spacing: 2.7px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
    color: #010101;
}
.documents_year div:hover{
    background-color: #010101;
    color: #fff;
}

.seisaku{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 24px;
}
.seisaku div{
    width: 420px;
    height: 46px;
    border: 1.5px solid #010101;
    background-color: #fff;
    font-size: 27px;
    letter-spacing: 2.7px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
    color: #010101;
}
.seisaku div:hover{
    background-color: #010101;
    color: #fff;
}

.title {
  width: 100%;
  height: 114px;
  position: absolute;
  top: 0;
  left: 0;
  padding-left: 84px;
}
.title .title__inner {
  height: inherit;
  width: inherit;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.title .title__inner img {
  width: 122px;
}
.title .title__inner h1 {
  font-size: 28px;
  letter-spacing: 1.4px;
  line-height: 64px;
  font-weight: 600;
}
.modal{
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
  overflow-y: scroll;
  padding: 100px 0;
}
.modal_bg{
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
.modal_card{
  background-color: #fff;
  position: relative;
  z-index: 120;
}
.modal_close{
  font-size: 50px;
  font-weight: 700;
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
  transition: .3s;
}
.modal_close:hover{
  opacity: 0.7;
}
.policy {
  max-width: 750px;
  margin: auto;
  width: 100%;
  padding: 0 100px;
  padding-bottom: 80px;
}
.policy .policy__num {
  text-align: center;
  margin-top: 20px;
}
.policy .policy__num h3 {
  font-size: 107px;
  font-weight: 700;
  -webkit-text-stroke-width: 1.8px;
  -webkit-text-stroke-color: #010101;
  color: #fff;
}
.policy .policy__title img {
  width: 100%;
  vertical-align: middle;
}
.policy .policy__title h2 {
  padding: 14px 0;
  text-align: center;
  font-size: 29px;
  letter-spacing: 1.45px;
  line-height: 40px;
}
.policy .policy__title h2 .sp {
  display: none;
}
.policy .text {
  font-size: 17px;
  letter-spacing: 0.75px;
  line-height: 30px;
  margin-top: 50px;
}
.policy .policy__list {
  margin-top: 58px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.policy .policy__list .policy__item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}
.policy .policy__list .policy__item img {
  width: 13px;
  margin-top: 6px;
}
.policy .policy__list .policy__item p {
  font-size: 17px;
  letter-spacing: 0.85px;
  line-height: 25px;
}
.policy .share {
  border-top: 1px solid #010101;
  padding-top: 40px;
  max-width: 740px;
  margin: auto;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
.policy .share p, .policy .share span {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 1.05px;
  line-height: 31px;
}
.policy .share .share__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.policy .share .share__list .share__item a {
  width: inherit;
  height: inherit;
  display: block;
  transition: all 0.3s;
}
.policy .share .share__list .share__item a:hover {
  opacity: 0.7;
}
.policy .share .share__list .share__item img {
  width: 40px;
}
.sns .bubble {
  position: relative;
  width: 100%;
  height: 102px;
  background-color: #E5007F;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.sns .bubble::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 27px solid transparent;
  border-left: 27px solid transparent;
  border-top: 34px solid #e5007f;
  border-bottom: 0;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}
.sns .bubble .bubble__title {
  font-size: 35px;
  letter-spacing: 3.5px;
  line-height: 63px;
  color: #fff;
  font-weight: 600;
  position: absolute;
  top: 17px;
  left: 50%;
  transform: translateX(-50%);
}
.sns .sns__blocks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  margin-top: 94px;
}

.sns .sns__blocks .sns__block:nth-child(1) p::before {
  content: "";
  position: absolute;
  width: 29.5px;
  height: 1.5px;
  background-color: #010101;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
}
.sns .sns__blocks .sns__block:nth-child(1) p::after {
  content: "";
  position: absolute;
  width: 29.5px;
  height: 1.5px;
  background-color: #010101;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
}
.sns .sns__blocks .sns__block:nth-child(2) p::before {
  content: "";
  position: absolute;
  width: 116px;
  height: 1.5px;
  background-color: #010101;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
}
.sns .sns__blocks .sns__block:nth-child(2) p::after {
  content: "";
  position: absolute;
  width: 116px;
  height: 1.5px;
  background-color: #010101;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
}
.sns .sns__blocks .sns__block:nth-child(3) {
  width: 236px;
  height: 80px;
  border-radius: 7px;
  background-color: #E5007F;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sns .sns__blocks .sns__block:nth-child(3) a {
  transition: all 0.3s;
}
.sns .sns__blocks .sns__block:nth-child(3) a:hover {
  opacity: 0.7;
}
.sns .sns__blocks .sns__block:nth-child(3) p {
  color: #fff;
}
.sns .sns__blocks .sns__block p {
  font-size: 22px;
  letter-spacing: 2.2px;
  line-height: 30px;
  font-weight: 600;
  position: relative;
  text-align: center;
}
.sns .sns__blocks .sns__block .sns__list {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 18px;
}
.sns .sns__blocks .sns__block .sns__list a {
  display: block;
  width: 46px;
  transition: all 0.3s;
}
.sns .sns__blocks .sns__block .sns__list a:hover {
  opacity: 0.7;
}
.sns .sns__blocks .sns__block .sns__list a img {
  width: inherit;
}
.sns .underline {
  width: 100%;
  height: 12px;
  background-color: #E5007F;
  margin-top: 80px;
}
footer h2 {
  font-size: 37px;
  font-weight: 600;
  letter-spacing: 1.86px;
  line-height: 54px;
  margin-top: 54px;
  text-align: center;
}
footer h2 span {
  color: #E5007F;
}
footer .title__inner {
  height: inherit;
  width: inherit;
  display: flex;
  margin-top: 45px;
  align-items: center;
  justify-content: center;
}
footer .title__inner img {
  width: 147px;
}
footer .title__inner h1 {
  font-size: 34px;
  letter-spacing: 1.7px;
  line-height: 97px;
  font-weight: 500;
}
footer small {
  margin-top: 40px;
  display: block;
  padding: 20px 0;
  border-top: 1.5px solid #E5007F;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.5px;
  line-height: 40px;
}

@media screen and (max-width: 800px) and (min-width:300px) {
  .sp_none{
    display: none !important;
  }
  .pc_none{
      display: block;
  }
  .catch_sp{
      width: 100%;
      margin-top: 100px;
      padding: 0 15px;
      position: relative;
      z-index: 90;
  }
  .main_img {
      width: 90%;
      height: auto;
      position: absolute;
      top: 50%;
      right: unset;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 20;
  }
  .main_bg {
      width: 110%;
      height: auto;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
  }
  .title_bt{
      width: 116px;
      height: 40px;
      background-color: #E5007F;
      border-radius: 4px;
      text-align: center;
      display: flex !important;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 13px;
      margin-left: auto;
  }
  .title_link{
      margin-left: auto;
  }
  .title {
      width: 100%;
      height: 66px !important;
      position: fixed !important;
      top: 0;
      left: 0;
      padding-left: 20px !important;
      padding-right: 20px;
      z-index: 100;
  }
  .catch_bt_sp{
      width: 100% !important;
      position: absolute;
      text-align: center;
      top: 70%;
      transform: translateY(-50%);
      margin-left: 0 !important;
  }
  .title .title__inner h1 {
      font-size: 13px !important;
      letter-spacing: 1.4px !important;
      line-height: 64px;
      font-weight: 600;
  }
  .title .title__inner img {
      width: 77px !important;
  }
  body{
      padding-top: 66px;
  }
  .w_10{
      width: 10px !important;
  }
  .w_20{
      width: 20px !important;
  }
  .w_26{
      width: 26px !important;
  }
  .w_30{
      width: 30px !important;
  }
  .w_33{
      width: 33px !important;
  }
  .w_40{
      width: 40px !important;
  }
  .w_50{
      width: 0px !important;
  }
  .float{
      width: 100%;
      height: 58px;
      position: fixed;
      bottom: 0;
      left: 0;
      background-color: #E5007F;
      padding: 0 15px;
      z-index: 100;
      display: none;
  }
  .float_ct{
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
  }
  .float_l{
      width: 195px;
      font-size: 13px;
      font-weight: 500;
      color: #fff;
  }
  .float_r{
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
  }
  .float_r img{
      width: 35px;
  }
  .sp_wrap{
      height: 380px;
      display: flex;
      align-items: flex-start;
      overflow: scroll;
      padding: 0 15px;
  }
  .card_wrap_title {
    width: 100%;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin-top: 70px;
  }
  .card_wrap_text {
    width: 100%;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-top: 0px;
  }
  .scroll_arrow{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 15px;
    margin-top: 30px;
    padding: 0 20px;
    gap: 20px;
  }
  .scroll_arrow span{
    animation: moveRight 1s infinite;
    display: block;
  }
  @keyframes moveRight{
    0%{
      transform: translateX(0px);
    }
    50%{
      transform: translateX(10px);
    }
    100%{
      transform: translateX(0px);
    }
  }
  .manifest{
      background-image: unset !important;
  }
  .pdf {
    width: calc(100% - 40px);
    font-size: 17px;
  }
  .documents {
      width: calc(100% - 40px);
  }
  .documents_year{
      flex-wrap: wrap;
      gap: 24px;
  }
  .documents h3 {
      font-size: 24px;
  }
  .documents_year div {
      width: 300px;
      font-size: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  .seisaku{
      flex-wrap: wrap;
      gap: 24px;
  }
  .seisaku div {
      width: 300px;
      font-size: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  .manifest_title p {
      font-size: 17px;
      font-weight: 700;
      margin-top: 50px;
      letter-spacing: 2.9px;
  }
  .manifest_title h2 {
      width: 244px;
      font-size: 32px;
  }
  .policy .policy__title h2 {
    font-size: 25px;
  }
  .policy .policy__title h2 .sp {
    display: block;
  }
  .policy {
      width: calc(100% - 40px);
      padding: 0 30px;
      padding-bottom: 60px;
  }
  .policy .share {
    flex-direction: column;
  }
  .sns .bubble {
    height: 80px;
  }
  .sns .bubble::before {
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    border-top: 25px solid #e5007f;
    bottom: -24px;
  }
  .sns .bubble .bubble__title {
    font-size: 20px;
    letter-spacing: 3.5px;
    line-height: 63px;
    color: #fff;
    font-weight: 600;
    position: absolute;
    top: 9px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
  }
  .sns .sns__blocks {
    flex-direction: column;
    gap: 30px;
  }
  .sns .sns__blocks .sns__block:nth-child(1) p::before {
    left: -30px;
  }
  .sns .sns__blocks .sns__block:nth-child(1) p::after {
    right: -30px;
  }
  .sns .sns__blocks .sns__block .sns__list {
    gap: 12px;
  }
  .sns .sns__blocks .sns__block:nth-child(2) p::before {
    left: -10px;
  }
  .sns .sns__blocks .sns__block:nth-child(2) p::after {
    right: -10px;
  }
  footer h2 {
    font-size: 35px;
  }
  footer .title__inner h1 {
    font-size: 28px;
  }
  footer .title__inner img {
    width: 120px;
  }
}