@charset "UTF-8";
@import url("footer.css");

/* Base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

.pc {display: block;}
.sp {display: none;}

html {
 font-size: 16px;
 -webkit-text-size-adjust: 100%;
 scroll-behavior: smooth;
}

body {
 margin: 0;
 min-width: 320px;
 font-family: "Noto Sans JP", sans-serif;
}

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

a {
 text-decoration: none;
 color: inherit;
}

/* KV */
.kv {
	position: relative;
 width: 100%;
 background-color: #E0F1F4;
 background-image: url("../img/kv-cloud.png");
 background-repeat: repeat-x;
 background-size: 1601px auto;
 animation: cloudMove 50s linear infinite;
 padding: 2% 2% 16vh;
 overflow: hidden;
}

.kv::after {
 content: "";
 position: absolute;
 left: 0;
 bottom: 0;
 width: 100%;
 height: 436px;
 background-image: url("../img/cloud-bg.png");
 background-repeat: repeat-x;
 background-position: left bottom;
 background-size: auto 218px;
 z-index: 0;
}

.logo {
	position: relative;
	width: 8%;
	z-index: 10;
}
.logo img {
 width: 100%;
}
.kv-main {
	max-width: 1170px;
	margin: 0 auto;
}
picture.maintitle {
	position: relative;
	display: block;
	width: 42%;
	margin: 0 auto;
	z-index: 9;
}
.maintitle img {
	max-width: 100%;
}
.kv-catch {
	position: relative;
	text-align: center;
	padding: 1vh 0 2vh;
	z-index: 8;
}
.kv-circle {
	position: relative;
 display: flex;
 gap: 40px;
	justify-content: center;
	z-index: 7;
}
.kv-circle img {
	width: 32%;
 height: auto;
}

/* 雲 */
@keyframes cloudMove {
	from {
		background-position: 0 0;
	}
 to {
	 background-position: 1601px 0;
	}
}

/* 気球 */
.balloon {
  position: absolute;
  top: 14%;
  right: 16%;
  width: min(10% - 10px, 100px);
  pointer-events: none;

  animation: floatY 2s ease-in-out infinite,
             floatX 2s ease-in-out infinite;
	 z-index: 2;
}

@keyframes floatY {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(10px); }
  100% { transform: translateY(0); }
}

/* 鳥 */
.kv-birds {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.bird-wrap {
  position: absolute;
  left: 0;
  top: 0;
  will-change: transform;
}

.bird-inner1 {
  animation: birdFloat1 3.2s ease-in-out infinite;
}
.bird-inner2 {
  animation: birdFloat2 3.2s ease-in-out infinite;
}

.bird {
  display: block;
  width: 100%;
  height: auto;
}

/* 鳥1 */
.bird-wrap--1 {
  width: 62px;
  animation: birdMove1 20s linear infinite;
  animation-delay: -1s;
  opacity: 0.9;
}

/* 鳥2 */
.bird-wrap--2 {
  width: 70px;
  animation: birdMove2 28s linear infinite;
  animation-delay: 0;
  opacity: 0.9;
}

/* 左下 → 右上 */
@keyframes birdMove1 {
  0% {
    transform: translate(-140px, 220px);
  }
  100% {
    transform: translate(calc(100vw + 140px), -190px);
  }
}

@keyframes birdMove2 {
  0% {
    transform: translate(-120px, 800px);
  }
  100% {
    transform: translate(calc(100vw + 120px), 720px);
  }
}

@keyframes birdFloat1 {
  0%   { transform: translateY(0) scale(1) rotate(-2deg); }
  25%  { transform: translateY(-24px) scale(1.05) rotate(2deg); }
  50%  { transform: translateY(-10px) scale(0.97) rotate(3deg); }
  75%  { transform: translateY(-28px) scale(1.04) rotate(-2deg); }
  100% { transform: translateY(0) scale(1) rotate(-2deg); }
}

@keyframes birdFloat2 {
  0%   { transform: translateY(0) scale(1) rotate(0deg); }
  20%  { transform: translateY(-10px) scale(1.04) rotate(3deg); }
  40%  { transform: translateY(-4px) scale(0.96) rotate(-2deg); }
  60%  { transform: translateY(-14px) scale(1.03) rotate(2deg); }
  80%  { transform: translateY(-6px) scale(0.98) rotate(-1deg); }
  100% { transform: translateY(0) scale(1) rotate(0deg); }
}

/* Layout */
.l-container {
  width: min(100% - 100px, 1200px);
  margin: 0 auto;
}

picture.arrow {
	display: block;
	width: 16%;
	margin: 0 auto;
}
.overview-catch {
	text-align: center;
	padding: 0 0 2vh;
}

.overview-img {
 position: relative;
 max-width: 1170px;
 margin: 0 auto;
 aspect-ratio: 1187 / 747;
 background-image: url("../img/illustration-1.png");
 background-size: contain;
 background-repeat: no-repeat;
 background-position: center;
 text-align: center;
}

.products {
	max-width: 1170px;
	margin: 0 auto;
 display: flex;
 gap: 30px;
	justify-content: center;
	padding-bottom: 120px;
}

.prod {
	max-width: 600px;
 border-radius: 20px;
 padding: clamp(12px, 4vw, 42px);
}
.prod-ph {
	max-width: 400px;
}
.prod-ph img {
 width: 100%;
}

.prod.buyzo {
 border: 4px solid #0097E0;
}
.prod.repokore {
 border: 4px solid #8ABA29;
}


.l-voice {
  position: relative;
  background-image: url("../img/voice-bg.png");
  background-repeat: repeat;
  background-size: 123px auto;
  padding: 0 2% 80px;
}
.l-voice::before {
  content: "";
  position: absolute;
  top: -44px;
  left: 0;
  width: 100%;
  height: 88px;
  background: url('../img/wave.png') repeat-x;
  background-size: auto 50%;
}
.voice-catch {
	text-align: center;
	padding: 5vh 0 0;
}
.voice {
	max-width: 1170px;
	margin: 0 auto;
	background-color: #eee;
 border-radius: 20px;
	padding: clamp(12px, 4vw, 42px);
	margin-top: 60px;
}

.voice-ttl {
	max-width: 300px;
	margin: 0 auto;
}

.comment-box {
	display: flex;
 align-items: center;
 gap: 32px;
 max-width: 1000px;
 margin: 0 auto;
 padding-bottom: 20px;
}
.comment-icon {
  flex: 0 0 220px;
}
.comment-icon img {
  display: block;
  width: 100%;
  height: auto;
}
.comment-balloon {
  position: relative;
  flex: 1;
  background: #fff;
  border-radius: 24px;
  padding: 28px 36px;
  box-sizing: border-box;
}
.comment-balloon p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
}
/* tail */
.comment-balloon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -34px;
  transform: translateY(-20%);
  width: 40px;
  height: 30px;
  background: url("../img/tail.png") no-repeat center / contain;
}
.comment-box.reverse {
  flex-direction: row-reverse;
}
/* reverse */
.comment-box.reverse .comment-balloon::before {
  left: auto;
  right: -34px;
  transform: translateY(-20%) scaleX(-1);
}
.voice-cap {
	max-width: 1100px;
	margin: 0 auto;
	text-align: right;
	padding: 10px 0 50px;
}


/* 施設価値アップ 3ポイント */
.l-point {
  position: relative;
  background-color: #fff;
  padding: 10px 50px 260px;
}
.l-point::before {
  content: "";
  position: absolute;
  top: -44px;
  left: 0;
  width: 100%;
  height: 88px;
  background: url('../img/wave-2.png') repeat-x;
  background-size: auto 50%;
}
.point-catch {
	text-align: center;
	padding: 2vh 0;
}
.point-logo {
 max-width: 1000px;
	margin: 0 auto;
	padding-bottom: 30px;
}


.point-box {
  display: flex;
  align-items: center;
  gap: 2%;
  border-radius: 24px;
  padding: 10px 10px;
  max-width: 1170px;
  margin: 0 auto;
  overflow: visible;
  margin-bottom: 30px;
}
.point-box__image {
  flex: 0 0 100%;
  max-width: 50%;
  position: relative;
}
.point-box__image img {
  display: block;
  width: 100%;
  height: auto;
  transform: scaleY(1);
  transform-origin: center;
}
.pt1.point-box {
 background: #f7f1df;
}
.pt2.point-box {
 background: #F5F7E8;
}
.pt3.point-box {
 background: #E7F6FA;
}
.point-box__content {
  flex: 1;
  min-width: 0;
}

.point-box__title {
 display: inline-block;
 margin: 0 0 24px;
 padding: 12px 24px;
 border-radius: 999px;
 font-size: clamp(10px, 2.4vw, 28px);
 line-height: 1.2;
 font-weight: 700;
 color: #111;
}
.pt1.point-box__title {
 background: #f4cf58;
}
.pt2.point-box__title {
 background: #D7E390;
}
.pt3.point-box__title {
 background: #90D5E7;
}

.point-box__list {
 list-style: none;
 margin: 0;
 padding: 0;
}
.point-box__list li {
 position: relative;
 margin-bottom: 14px;
 padding-left: 32px;
 font-size: clamp(10px, 2.2vw, 20px);
 line-height: 1.5;
}
.point-box__list li:last-child {
 margin-bottom: 0;
}
.point-box__list li::before {
 content: "";
 position: absolute;
 left: 0;
 top: 0.2em;
 width: 22px;
 height: 22px;
}
.pt1.point-box__list li::before {
 background: url("../img/icon-check-yellow.png") no-repeat center / contain;
}
.pt2.point-box__list li::before {
 background: url("../img/icon-check-purple.png") no-repeat center / contain;
}
.pt3.point-box__list li::before {
 background: url("../img/icon-check-blue.png") no-repeat center / contain;
}


/* 導入までの流れ */
.l-flow {
 position: relative;
 background-image: url("../img/green-bg.png");
 padding: 10px 50px;
}
.l-flow::before {
 content: "";
 position: absolute;
 top: -205px;
 left: 0;
 width: 100%;
 height: 410px;
 background: url('../img/town-bg.png') repeat-x;
 background-size: auto 50%;
}

.flow-catch {
	text-align: center;
	padding: 2vh 0;
}

.flow {
 padding: 50px 20px 140px;
}

.flow__inner {
 max-width: 1170px;
 margin: 0 auto;
 display: flex;
 gap: 54px;
}

.flow__item {
 position: relative;
 flex: 1;
 background: #fff;
 border-radius: 20px;
 padding: 30px 28px 20px;
 text-align: center;
 box-sizing: border-box;
}

.flow__step {
 position: absolute;
 top: -58px;
 left: 50%;
 transform: translateX(-50%);
 width: 140px;
}

.flow__step img {
 display: block;
 width: 100%;
 height: auto;
}

.flow__icon {
 width: 150px;
 margin: 0 auto 14px;
}

.flow__icon img {
 display: block;
 width: 100%;
 height: auto;
}

.flow__title {
 margin: 0 0 10px;
 font-size: 24px;
 font-weight: 700;
 line-height: 1.4;
 color: #000;
}

.flow__text {
 margin: 0;
 font-size: 16px;
 font-weight: 500;
 line-height: 1.9;
 color: #000;
 text-align: left;
}

.flow__arrow--pc {
 position: absolute;
 top: 50%;
 right: -35px;
 transform: translateY(-50%);
 width: 35px;
 z-index: 2;
}
.flow__arrow--pc img {
 display: block;
 width: 100%;
 height: auto;
}
.flow__arrow--sp {
 display: none;
}
.flow__item:last-child .flow__arrow {
 display: none;
}

 .l-caution {
	 padding: 40px 50px;
 }
 .caution {
	 max-width: 1100px;
	 margin: 0 auto;
	 text-align: left;
 }





/* TEXT */
.kv-catch {
	font-size: clamp(12px, 4vw, 46px);
 line-height: 1.4em;
 font-weight: 900;
}
.overview-catch {
	font-size: clamp(12px, 4vw, 42px);
 line-height: 1.4em;
 font-weight: 900;
}
.strong {
	font-size: 1.2em;
}
.red {
	color: #E60000;
}
.blue {
	font-size: 1.1em;
	color: #003C7E;
}
.overview-img {
	font-size: 24px;
	font-size: clamp(10px, 2vw, 24px);
 line-height: 1.4em;
}
.sky {
	color: #0097E0;
}
.lime {
	color: #8ABA29;
}

.pro-catch {
	text-align: center;
	font-size: clamp(11px, 2.6vw, 30px);
 line-height: 1.4em;
 font-weight: 700;
 padding-bottom: 1vh;
}

.pro-list {
  list-style: none;
  font-size: 20px;
  line-height: 1.8em;
  color: #000;
}
.pro-list li {
  position: relative;
}
.pro-list li::before {
  content: "";
  position: absolute;
  left: -1.3em;
  top: 0.4em;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.sky.pro-list li::before {
	background-color: #0097E0;
}
.lime.pro-list li::before {
	background-color: #8ABA29;
}

.cap {
	max-width: 600px;
 list-style: none;
 font-size: 14px;
 line-height: 1.8em;
 color: #000;
 padding-left: 1em;
}
.cap li {
 position: relative;
}
.cap li::before {
 content: "*";
 position: absolute;
 left: -0.7em;
 top: 0.2em;
}

.voice-catch {
	font-size: clamp(14px, 5vw, 42px);
 line-height: 1.4em;
 font-weight: 900;
 color: #fff;
}

.voice-cap {
 font-size: 14px;
 color: #fff;
}

.point-catch {
	font-size: clamp(12px, 4vw, 42px);
 line-height: 1.4em;
 font-weight: 900;
}

.flow-catch {
	font-size: clamp(14px, 5vw, 42px);
 line-height: 1.4em;
 font-weight: 900;
 color: #fff;
}

.caution {
 font-size: 14px;
}






/* SP Style */
@media screen and (max-width: 750px) {
 .pc {display: none;}
 .sp {display: block;}
 
 /* KV */
 .kv {
  padding: 2% 2% 16vh;
 }
 .kv::after {
  background-size: 750px auto;
 }
 
 .logo {
	 width: 20%;
	 margin: 4%;
	}
	picture.maintitle {
	 width: 76%;
	 padding-top: 5%;
 }

 .kv-circle {
  display: flex;
  gap: 1%;
	 justify-content: center;
 }
 .kv-circle img {
  width: 48%;
  height: auto;
 }
 picture.arrow {
	 display: block;
	 width: 42%;
	 margin: 0 auto;
 }

 @keyframes cloudMove {
	 from {
		 background-position: 0 0;
	 }
  to {
	  background-position: 800px 0;
	 }
 }
 
 /* 気球 */
 .balloon {
   position: absolute;
   top: 3%;
   right: 6%;
   width: 10%;
   pointer-events: none;

   animation: floatY 2s ease-in-out infinite,
              floatX 2s ease-in-out infinite;
	  z-index: 1;
 }

/* 鳥1 */
.bird-wrap--1 {
  width: 32px;
  animation: birdMove1 20s linear infinite;
  animation-delay: -1s;
  opacity: 0.9;
}

/* 鳥2 */
.bird-wrap--2 {
  width: 50px;
  animation: birdMove2 28s linear infinite;
  animation-delay: 0;
  opacity: 0.9;
}

/* 左下 → 右上 */
@keyframes birdMove1 {
  0% {
    transform: translate(-140px, 220px);
  }
  100% {
    transform: translate(calc(100vw + 140px), -190px);
  }
}

@keyframes birdMove2 {
  0% {
    transform: translate(-120px, 500px);
  }
  100% {
    transform: translate(calc(100vw + 120px), 120px);
  }
}

 /* Layout */
 .l-container {
  width: 90%;
  margin: 0 auto;
  padding: 5% 0;
 }
 .overview-img {
  position: relative;
  max-width: 100%;
  aspect-ratio: 1187 / 1147;
  background-image: url("../img/illustration-1.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  text-align: center;
  margin-bottom: 6%;
 }
 .products {
	 width: 100%;
	 margin: 0 auto;
  display: flex;
  gap: 0;
	 flex-direction: column;
		padding-bottom: 2vh;
 } 
 .prod {
	 max-width: 100%;
  border-radius: 20px;
  padding: 6% 6% 4%;
  margin-bottom: 6%;
 }
 .pro-logo {
	 width: 82%;
	 margin: 0 auto;
 }
 .prod-ph {
	 width: 70%;
	 margin: 0 auto;
 }
 .prod-ph img {
  width: 100%;
 }
 .l-voice {
  position: relative;
  background-image: url("../img/voice-bg.png");
  background-repeat: repeat;
  background-size: 123px auto;
  padding: 0 5%;
 }
 .l-voice::before {
  top: -20px;
  height: 44px;
 }
 .voice-catch {
	 text-align: center;
	 padding: 2vh 0 0;
 } 
 .voice {
 	width: 100%;
 	margin: 0 auto;
 	background-color: #eee;
  border-radius: 20px;
 	padding: 5%;
 	margin-top: 2vh;
 }
 
 .voice-ttl {
 	width: 70%;
 	margin: 0 auto;
 	margin-bottom: 4vh;
 }

 .comment-box {
 	display: flex;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 20px;
 }
 .comment-icon {
  flex: 0 0 24%;
 }
 .comment-balloon {
  position: relative;
  flex: 1;
  border-radius: 10px;
  padding: 10px 12px;
  box-sizing: border-box;
 }
 .comment-balloon p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
 }
 /* tail */
 .comment-balloon::before {
  content: "";
  position: absolute;
  top: 5vh;
  left: -20px;
  transform: translateY(-20%);
  width: 22px;
  height: 20px;
  background: url("../img/tail.png") no-repeat center / contain;
 }
 /* reverse */
 .comment-box.reverse .comment-balloon::before {
  top: 5vh;
  left: auto;
  right: -20px;
  transform: translateY(-20%) scaleX(-1);
 }
.voice-cap {
	 width: 100%;
	 margin: 0 auto;
	 text-align: right;
	 padding: 10px 0 50px;
 }

 .l-point {
  position: relative;
  background-color: #fff;
  padding: 0 5% 28%;
 }
 .l-point::before {
  top: -34px;
  height: 44px;
 }
 .point-box {
  display: block;
  padding: 2% 4% 10%;
  border-radius: 20px;
 }
 .point-box__image {
  max-width: none;
  width: 100%;
  margin: 0 0 2%;
 }
 .point-box__image img {
  display: block;
  width: 100%;
  height: auto;
  transform: none;
 }
 .point-box__content {
  width: 100%;
 }

 .point-box__title {
  display: inline-block;
  margin: 0 0 24px;
  padding: 12px 24px;
  background: #f4cf58;
  font-size: 17px;
  line-height: 1.2;
 }

 .point-box__list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 32px;
  font-size: 16px;
  line-height: 1.5;
 }
 .point-box__list li:last-child {
  margin-bottom: 0;
 }
 .point-box__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 22px;
  height: 22px;
 }


 /* 導入までの流れ */
 .l-flow {
  padding: 2% 5% 5%;
  background-size: 50%;
 }
 .l-flow::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 205px;
  background: url('../img/town-bg.png') repeat-x;
  background-size: auto 50%;
 }

 .flow {
  padding: 5% 3% 2%;
 }
 .flow__inner {
  display: block;
  max-width: 100%;
 }
 .flow__body {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
 }

 .flow__item {
	 padding: 8% 5% 10%;
 	margin-bottom: 22%;
 }
 .flow__item:last-child {
 	margin-bottom: 10%;
 }
 .flow__step {
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
 }
 .flow__icon {
  width: 30%;
  margin: 0;
  flex-shrink: 0;
 }
 .flow__text-wrap {
  flex: 1;
 }
 .flow__title {
  font-size: 1.2em;
 }
 .flow__text {
  font-size: 1em;
  line-height: 1.6;
  text-align: left;
 }
 .flow__arrow--pc {
  display: none;
 }
 .flow__arrow--sp {
  display: block;
  position: absolute;
  left: 50%;
  bottom: -22px;
  transform: translateX(-50%);
  width: 40px;
  z-index: 3;
 }
 .flow__item:last-child .flow__arrow--sp {
  display: none;
 }

 .l-caution {
	 width: 100%;
	 padding: 0 5%;
 }
 .caution {
	 margin: 0 auto;
	 text-align: left;
	 padding: 20px 0;
 }
	
 /* TEXT */
 .kv-catch {
	 font-size: clamp(12px, 6vw, 42px);
  line-height: 1.4em;
  font-weight: 900;
 }
 .overview-catch {
	 font-size: 5vw;
  line-height: 1.4em;
  font-weight: 900;
 }
 .overview-img {
	 font-size: 1.2em;
  line-height: 1.4em;
 }
 
.pro-catch {
	font-size: 5vw;
 line-height: 1.4em;
 font-weight: 700;
 padding-bottom: 4%;
}

.pro-list {
  list-style: none;
  font-size: 14px;
  line-height: 1.4em;
  color: #000;
  padding-left: 1em;
}
.pro-list li {
  position: relative;
}
.pro-list li::before {
  content: "";
  position: absolute;
  left: -1.3em;
  top: 0.2em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.cap {
 font-size: 12px;
 line-height: 1.2em;
 padding-left: 0.4em;
}

.voice-catch {
	 font-size: 7vw;
 line-height: 1.4em;
 font-weight: 900;
 color: #fff;
}

.voice-cap {
 font-size: 14px;
}

.point-catch {
	font-size: 5.4vw;
 line-height: 1.4em;
 font-weight: 900;
}

.flow-catch {
	font-size: 7vw;
 line-height: 1.4em;
 font-weight: 900;
 color: #fff;
}

.caution {
	font-size: 12px;
	line-height: 1.8em;
}
}



/* 出現 kv */
.kv-fade {
  opacity: 0;
  transform: translateY(16px);
  animation: kvFadeUpSimple 0.8s ease forwards;
}

.kv-fade--1 { animation-delay: 0.5s; }
.kv-fade--2 { animation-delay: 1.5s; }
.kv-fade--3 {
  opacity: 0;
  transform: translateY(30px) scale(0.35);
  animation: kvBounceInSoft 0.2s forwards;
  animation-delay: 2s;
}

@keyframes kvFadeUpSimple {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes kvBounceInSoft {
  0% {
    opacity: 0;
    transform: translateY(2px) scale(0.8);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* 出現1 */
.fadeIn_up {
  opacity: 0;
  transform: translate(0, 20%);
  transition: 1s;
}
.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

/* 出現2 */
.fadeIn_left {
  opacity: 0;
  transform: translateX(-40px);
  transition: 0.8s cubic-bezier(.22,1,.36,1);
}
.fadeIn_left.is-show {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 {
  transition-delay: 0.5s;
}

.delay-2 {
  transition-delay: 1s;
}

.delay-3 {
  transition-delay: 1.6s;
}

/* SP調整 */
@media screen and (max-width: 767px) {
  .fadeIn_left {
  opacity: 0;
  transform: translateY(-18px);
  transition: 2s cubic-bezier(.22,1,.36,1);
 }
}

/* お問い合わせはこちら */
.contact {
  position: fixed;
  right: 3%;
  bottom: 5%;
  width: 160px;
  height: 160px;
  z-index: 999;

  transform: translateY(100%);
  animation: contactBounce 0.3s ease-out forwards;
}

.contact img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes contactBounce {
  0% {
    transform: translateY(120%);
  }
  60% {
    transform: translateY(-10%);
  }
  80% {
    transform: translateY(5%);
  }
  100% {
    transform: translateY(0);
  }
}

.contact img {
  transition: transform 0.2s ease;
}

.contact:hover img {
  transform: scale(1.1);
  opacity: 0.9;
}

/* SP調整 */
@media screen and (max-width: 767px) {
  .contact {
    right: 3%;
    bottom: 2%;
    width: 24%;
    height: 16%;
  }
}



