@charset "UTF-8";
/*=============================
共通
===============================*/
:root {
  --color1: #333333;
  --color2: #31ad37;
  --color3: #d67000;
  --color4: #979797;
  --color5: #cf3434;
  --bgcolor1: #ffffff;
  --bgcolor2: #fffae7;
  --bgcolor3: #f9fcf5;
  --bgcolor4: #f2f2f2;
  --bgcolor5: #daf6d6;
  --bgcolor6: #f9f075;
  --font1: "Noto Sans JP", sans-serif;
}

/*=============================
骨格
===============================*/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  overflow-x: hidden;
}
body {
  margin: 0;
  position: relative;
  background-color: var(--bgcolor1);
}

.container {
  width: calc(100% - min(100vw / 750 * 96, 96px));
  max-width: 1080px;
  margin: auto;
  position: relative;
}

@media screen and (max-width: 813px) {
  .container {
    max-width: 640px;
  }
}

span {
  display: inline-block;
}

@media screen and (max-width: 813px) {
  .pc {
    display: none;
  }
}
@media not all and (max-width: 813px) {
  .sp {
    display: none;
  }
}

/*===============================
画像
=================================*/
img {
  display: block;
  max-width: 100%;
  margin: auto;
}

/*=============================
文字
===========================*/
html {
  font-size: min(100vw / 375 * 0.618, 1px);
}

body {
  color: var(--color1);
  font-family: var(--font1);
  font-size: min(16rem + 6.18px, 16px);
  line-height: 1.7;
  letter-spacing: 0;
}
/*=============================
リスト
===========================*/
ul {
  list-style-type: disc;
}

/*============================
animation
============================*/
.opa-0 {
  opacity: 0;
}

.fuwafuwa {
  animation: fuwafuwa 3s infinite ease-in-out 0.8s alternate;
  transition: 1.5s ease-in-out;
}
@keyframes fuwafuwa {
  0%,
  40%,
  80% {
    transform: scale(1);
  }
  20%,
  60%,
  100% {
    transform: scale(0.96);
  }
}

.bright {
  animation-name: bright;
  animation-duration: 3s;
  animation-timing-function: ease;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

@keyframes bright {
  0% {
    filter: brightness(1.2);
  }
  100% {
    filter: brightness(1);
  }
}
