@charset "utf-8";
/* CSS Document */
html {
  padding: 0;
  margin: 0;
}
p {
  margin: 0;
  padding: 0;
}
body {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-style: normal;
  background: #4dbfda;
  position: relative;
}
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
/* ----表示----------------- */
.center {
  width: 90%;
  margin: 0 auto;
}
/* ----fv----------------- */
header {
  width: 100%;
  height: 100%;
  position: relative;
  background-color: #fff;
}
.fv_img {
  width: 100%;
  height: auto;
  min-height: auto;
  position: relative;
  display: block;
  will-change: transform, opacity;
}
.fv_item {
  width: 100%;
  height: 100%;
  margin: auto;
  z-index: 2;
  position: absolute;
  opacity: 0;
  transform: scale(0.8) translateY(100px);
  animation: none;
}
.fv_item.show {
  animation: zudon 0.8s cubic-bezier(0.6, -0.28, 0.735, 0.045) forwards;
}
@keyframes zudon {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(100px);
  }
  60% {
    opacity: 1;
    transform: scale(1.15) translateY(-10px); /* ズドンの衝撃 */
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.fv_item img {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  width: auto;
  height: auto;
  top: 20px;
  left: 0;
  right: 0;
  margin: auto;
}
.fv_item_bk {
  width: 100%;
  height: 100%;
  margin: auto;
}
.fv_item_bk img {
  width: 100%;
}
/* ----section----------------- */
.info {
  position: relative;
  z-index: 100;
  overflow: hidden;
}
.ani {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.6s ease-out;
}

.ani.active {
  opacity: 1;
  transform: translateY(0);
}
/* ----info1----------------- */
.info1 {
  background: #fff;
  font-size: 30px;
  color: #0084a3;
  padding: 20px 0;
  position: relative;
}
.info1_text {
  width: 80%;
  margin: 0 auto;
  line-height: 150%;
  text-align: justify;
}
.info1_text span {
  font-size: 30px;
}
.marker {
  display: inline;
  font-size: 34px;
  background: linear-gradient(to right, #FFF000 100%, transparent 0%);
  background-repeat: no-repeat;
  background-size: 0% 100%; /* 最初は横幅0 */
  background-position: left bottom;
  transition: background-size 0.5s ease-out;
  padding: 0 0.1em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  z-index: 1;
}

.marker.visible {
  background-size: 100% 100%; /* 横幅100%に広げる */
}
.info1_subtext {
  width: 80%;
  margin: 20px auto 0;
  font-size: 18px;
  line-height: 200%;
  font-weight: 600;
  color: #4dbfda;
}
.info1_ba {
  position: absolute;
  top: 0;
}
.info1_ba img {
  width: 100%;
}
/* ----info2----------------- */
.info2 {
  background: #fff;
  color: #0084a3;
  padding: 50px 0;
  position: relative;
}
.info2_title {
  text-align: center;
  margin: 0 auto;
}
.info2_title img {
  max-width: 330px;
  width: 60%;
}
.info2_item {
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.info2_item p {
  font-size: 23px;
  line-height: 140%;
  font-weight: 800;
}
.info2_item p span {
  font-size: 18px;
  display: block;
  line-height: 140%;
  font-weight: 700;
  margin-bottom: 10px;
}
.info2_item img {
  max-width: 120px;
  width: 100%;
}
.red {
	color: #D20000;
}
.item_button {
width: 75%;
display: flex;
align-items: center;
justify-content: center;
background: #D20000;
margin: 0 auto 30px;
color: #fff;
font-size: 16px;
border-radius: 10px;
padding: 3.5% 0;	
}
.item_button:hover {
	opacity: 0.5;
	transition: 0.3s;
}
.item_button_b {
	background: #0084a3;
}
/* ----info3----------------- */
.info3 {
  background: #fff355;
  padding: 0 0 50px;
  position: relative;
}
/* ----キャンペーン部分---- */
.campaign_flow {
  width: 100%;
  background: #fff;
  padding: 8px 10px 2px;
  position: absolute;
  overflow: hidden;
  transform: rotate(8deg);
  top: 6%;
  left: -2%;
  z-index: 888;
}
.image_marquee {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 200s linear infinite;
}
.image_marquee img {
  width: 130px;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.campaign_top {
  width: 100%;
  position: relative;
  z-index: 777;
}
.campaign_top img {
  width: 100%;
}
.title {
  text-align: center;
  margin: 0 auto;
  z-index: 889;
}
.title img {
  width: 70%;
  max-width: 450px;
  margin: 0 auto;
  position: relative;
  z-index: 889;
}
.campaign {
  width: 85%;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  padding: 5% 2% 2%;
  margin: 10px auto 0;
}
.campaign_title {
  text-align: center;
  margin: 0 auto;
}
.campaign_title img {
  width: 100%;
}
.campaign_text {
  width: 90%;
  margin: 10px auto 10px;
}
.campaign_text p {
  color: #3e3a3a;
  font-size: 16px;
  font-weight: 500;
  text-align: justify;
}
.campaign_text span {
  color: #e6002e;
  font-size: 16px;
}
.campaign_text img {
  width: 100%;
	display:block;
	margin:10px auto; 
}
.campaign_button {
  width: 95%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ed6e01;
  margin: 20px auto;
  color: #fff;
  font-size: 20px;
  border-radius: 10px;
  padding: 3.5% 0;
}
.campaign_button p {
  margin-left: 5px;
}
.campaign_button img {
  width: 35px;
}
.campaign_button:hover {
	opacity: 0.5;
	transition: 0.3s;
}
.campaign_text2 img {
  width: 100%;
  object-fit: contain;
  display: block;
  margin: 10px auto;
}
.campaign_text2 {
  background: #fff;
  border: 1px solid #ff86bf;
  border-radius: 20px;
  width: 90%;
  margin: 0 auto 10px;
  font-weight: 500;
}
.campaign_text2_title {
  font-size: 20px;
  color: #fff;
  text-align: center;
  background: #ff86bf;
  padding: 2%;
  border-radius: 20px 20px 0 0;
}
.campaign_text2_text {
  padding: 3% 5%;
  line-height: 150%;
  text-align: justify;
}
.campaign_text2_text span {
  display: block;
  font-size: 14px;
  line-height: 140%;
  font-weight: 400;
}
.campaign_dummy {
  font-size: 28px;
  color: #ff8330;
  text-align: center;
  margin: 0 auto 5%;
}
/* ----info4----------------- */
.info4 {
  background: #ff86bf;
  padding: 0 0 50px;
  position: relative;
}
.campaign_flow2 {
  width: 100%;
  transform: rotate(-8deg);
  top: 3.5%;
  left: -2%;
}
/* ----info5----------------- */
.info5 {
  background: #fff355;
  padding: 0 0 50px;
  position: relative;
}
.campaign_flow3 {
  width: 100%;
  transform: rotate(8deg);
  top: 10.5%;
  left: -2%;
}
/* ----info6----------------- */
.info6 {
  background: #fff355;
  padding: 40px 0 10px;
}
.info6_flex {
  width: 95%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.info6_flex img {
  width: 60px;
}
.info6_flex a:hover {
  opacity: 0.5;
  transition: 0.3s;
}
.copyright {
  width: 95%;
  display: block;
  font-size: 13px;
  text-align: center;
  font-weight: 300;
  margin: auto;
}
/* ----流れる文字----------------- */
.flowing-container-left {
  position: fixed;
  left: 0; /* 左側に表示したい場合は left: 0 に */
  top: 0;
  width: 5%;
  height: 100vh;
  overflow: hidden;
  z-index: 9999;
  background: #63A7B8;
}
.flowing-container {
  position: fixed;
  right: 0; /* 左側に表示したい場合は left: 0 に */
  top: 0;
  width: 5%;
  height: 100vh;
  overflow: hidden;
  z-index: 999;
  background: #63A7B8;
}
.flowing-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: scrollUp 65s linear infinite;
  transform: translateY(0); /* 最初から表示 */
}
.flowing-inner-left {
  animation: scrollUp-left 65s linear infinite;
}
.flowing-inner img {
  width: 75%;
  margin: 0 auto 10px;
}
@keyframes scrollUp {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes scrollUp-left {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0%);
  }
}
/* ----浮かぶ画像----------------- */
.kazari {
  position: relative;
  z-index: 900;
}
.kazari {
  display: block;
}
.item-0-1 {
  position: absolute;
  width: 17%;
  top: -35px;
  left: 9px;
  animation: swingLeftRight 2.5s infinite ease-in-out;
}
.item-0-2 {
  position: absolute;
  width: 26%;
  top: -89px;
  right: -30px;
  transform: rotate(48deg);
  animation: swingLeftRightRotated 2.5s infinite ease-in-out;
}
.item-1 {
  position: absolute;
  width: 41%;
  top: -35px;
  left: -14px;
  animation: swingLeftRight 2.5s infinite ease-in-out;
}
.item-2 {
  position: absolute;
  width: 20%;
  top: 5px;
  right: 10px;
  animation: swingLeftRightRotated 2.5s infinite ease-in-out;
}
.item-3 {
  position: absolute;
  width: 23%;
  top: -42px;
  right: 10px;
  transform: rotate(20deg);
  animation: swingLeftRightRotateditem-3 2.5s infinite ease-in-out;
}
.item-4 {
  position: absolute;
  width: 24%;
  top: -44px;
  left: 0px;
  animation: swingLeftRight 2.5s infinite ease-in-out;
}
.item-5 {
  position: absolute;
  width: 9%;
  top: 119px;
  left: 0px;
  animation: swingLeftRightRotated 2.5s infinite ease-in-out;
}
.item-6 {
  position: absolute;
  width: 26%;
  top: -28px;
  left: 0px;
  transform: rotate(-20deg);
  animation: swingLeftRightitem-6 2.5s infinite ease-in-out;
}
.item-7 {
  position: absolute;
  width: 13%;
  top: -2px;
  right: 0px;
  animation: swingLeftRightRotated 2.5s infinite ease-in-out;
}
@keyframes swingLeftRight {
  0% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(10px);
  }
}
@keyframes swingLeftRightRotated {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes swingLeftRightRotateditem-3 {
  0% {
    transform: rotate(20deg) translateY(0);
  }
  50% {
    transform: rotate(20deg) translateY(10px);
  }
  100% {
    transform: rotate(20deg) translateY(0);
  }
}
@keyframes swingLeftRightitem-6 {
  0% {
    transform: rotate(-20deg) translateY(10px);
  }
  50% {
    transform: rotate(-20deg) translateY(0px);
  }
  100% {
    transform: rotate(-20deg) translateY(10px);
  }
}
@media screen and (min-width: 650px) and (max-width: 767px) {
  /* ----fv----------------- */
  .fv_img {
    width: 100%;
    height: auto;
    min-height: auto;
    position: relative;
    display: block;
  }
  .center {
    width: 100%;
  }
  .campaign {
    width: 80%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  body {
    max-width: 430px;
    width: 100%;
    margin: 0 auto;
  }
  .center {
    width: 100%;
	  z-index: 3;
  }
  .flowing-container {
    width: 2%;
    display: none;
  }
  .flowing-container-left {
    display: none;
  }
  /* ----fv----------------- */
  .fv_img {
    width: 100%;
    height: auto;
    min-height: auto;
    position: relative;
    display: block;
  }
  /* ----PCサイド----------------- */
  .c-block-bg {
    position: fixed;
    inset: 0;
    z-index: 1;
  }
  .c-block-bg__logo {
    position: absolute;
    width: calc((100% - 430px) / 2);
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
  }
  .c-block-bg__bg {
    position: absolute;
    inset: 0;
  }
  .c-block-bg__logo img {
    position: absolute;
    inset: 0;
    width: 90%;
    margin: auto;
  }
  .c-block-bg__qr {
    position: absolute;
    width: calc((100% - 430px) / 2);
    height: 100%;
    top: 0;
    right: 0;
    z-index: 1;
  }
  .c-block-bg__qr img {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 90%;
  }
  .c-block-bg__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .animate-img-left, .animate-img-right {
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.5s ease;
  }
  .animate-img-left.show, .animate-img-right.show {
    opacity: 1;
    transform: translateY(0);
  }
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
@media screen and (min-width: 1281px) {
  body {
    max-width: 430px;
    width: 100%;
    margin: 0 auto;
  }
  .center {
    width: 100%;
  }
  .flowing-container {
    width: 2%;
    display: none;
  }
  .flowing-container-left {
    display: none;
  }
  /* ----fv----------------- */
  .fv_img {
    width: 100%;
    height: auto;
    min-height: auto;
    position: relative;
    display: block;
  }
  /* ----PCサイド----------------- */
  .c-block-bg {
    position: fixed;
    inset: 0;
    z-index: 1;
  }
  .c-block-bg__logo {
    position: absolute;
    width: calc((100% - 430px) / 2);
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
  }
  .c-block-bg__bg {
    position: absolute;
    inset: 0;
  }
  .c-block-bg__logo img {
    position: absolute;
    inset: 0;
    width: 80%;
    margin: auto;
  }
  .c-block-bg__qr {
    position: absolute;
    width: calc((100% - 430px) / 2);
    height: 100%;
    top: 0;
    right: 0;
    z-index: 1;
  }
  .c-block-bg__qr img {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 80%;
  }
  .c-block-bg__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .animate-img-left, .animate-img-right {
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.5s ease;
  }
  .animate-img-left.show, .animate-img-right.show {
    opacity: 1;
    transform: translateY(0);
  }
  .sp {
    display: block !important;
  }
}