@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --main-green: #039c09;
  --dark-green: #028f08;
  --50-green: #039c08a9;
  --white: #ffffff;
  --yellow: #ffc830;
  --font-32-72: clamp(32px,(32px + ((100vw - 768px) * ((72 - 32)/(1600 - 768)))),72px);
}

html {
  overflow-x: auto;
  overflow-y: scroll;
  height: 100%;
}

body {
  overflow: hidden;
  color: var(--main-green);
  font-family: "Roboto", "游ゴシック", YuGothic, "Hiragino Kaku Gothic Pro", sans-serif;
  position: relative;
  z-index: 1;
}

h2 {
  font-size: clamp(50px, 50px + (100vw - 768px) * 0.0600961538, 100px);
  margin-bottom: 0.2em;
}

.sub_h2 {
  font-size: clamp(16px, 16px + (100vw - 768px) * 0.0048076923, 20px);
  margin-left: 1em;
}

.sub_h2_mid {
  font-size: clamp(18px, 18px + (100vw - 768px) * 0.0084134615, 25px);
  margin-left: 1em;
}

h3 {
  font-size: clamp(20px, 20px + (100vw - 768px) * 0.0120192308, 30px);
}

p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 14px + (100vw - 768px) * 0.0072115385, 20px);
  font-weight: 600;
  letter-spacing: 0.05em;
}

ul {
  list-style: none;
}

img {
  vertical-align: bottom;
}

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

.wrapper {
  width: clamp(360px, 90vw, 1100px);
  padding: 100px 0;
  margin: 0 auto;
}

.sec_wrapper {
  width: 50vw;
  margin: 0 auto 2em;
}

.flex {
  display: flex;
}

.container_flex {
  display: flex;
  align-items: center;
}

.large_text {
  font-family: "Monomaniac One";
  font-size: clamp(40px, 40px + (100vw - 768px) * 0.0300480769, 65px);
  font-weight: 700;
}

.required {
  margin-left: 3%;
  padding: 2px 3px;
  background: var(--yellow);
  font-size: 14px;
  color: var(--dark-green);
}

.button {
  display: flex;
  position: relative;
  z-index: 100;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--main-green);
  width: 160px;
  height: 160px;
  border: 2px solid var(--main-green);
  background: var(--white);
  padding: 0.5em;
  cursor: pointer;
  transition: 0.3s ease-in;
}
.button::before {
  content: "";
  background: url(../image/arrow.png) no-repeat;
  background-size: cover;
  width: 30px;
  height: 21px;
  position: absolute;
  z-index: 100;
  bottom: 0.5em;
  right: 0.5em;
}
.button:hover {
  color: var(--white);
  background: var(--main-green);
  border: 2px solid var(--white);
}

.btn-secondry::before {
  right: 0;
  left: 0.5em;
  transform: rotate(180deg);
}

.bgextend {
  animation: bgextendAnimeBase forwards 1s;
  position: relative;
  overflow: hidden;
  opacity: 0;
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.bgappear {
  animation: bgextendAnimeSecond forwards 1s 0.6s;
  opacity: 0;
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.bgLRextend::before {
  animation: bgLRextendAnime forwards 1s;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--white);
}

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  51% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
.bgappearTrigger,
.bgLRextendTrigger {
  opacity: 0;
}

.smoothText {
  overflow: hidden;
  display: block;
}

.smoothTextTrigger {
  transition: 0.8s ease-in-out;
  transform: translate3d(0, 100%, 0) skewY(12deg);
  transform-origin: left;
  display: block;
}

.smoothTextAppear {
  transform: translate3d(0, 0, 0) skewY(0);
}

.fadeInLeft_animation {
  position: relative;
  left: -100px;
  opacity: 0;
  transition: 1s ease-in-out;
}
.fadeInLeft_animation.active {
  opacity: 1;
  left: 0;
}

.fadeInUp_animation {
  position: relative;
  top: 100px;
  opacity: 0;
  transition: 1s ease-in-out;
}
.fadeInUp_animation.active {
  opacity: 1;
  top: 0;
}

.fuwafuwa::before {
  animation: fuwafuwa 3.5s 5 cubic-bezier(0.46, 0, 0.96, 0.8) alternate;
  transition: 1.5s ease-in-out;
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.graph {
  transform-origin: center;
  transform: rotate(-90deg);
}

.circle {
  fill: none;
  stroke-width: 14;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}

.is-active.green3 {
  stroke: #5dd485;
  animation: green3 1s ease-in-out forwards;
}
.is-active.green2 {
  stroke: #2eb159;
  animation: green2 1s ease-in-out forwards;
}
.is-active.green1 {
  stroke: #00a436;
  animation: green1 1s ease-in-out forwards;
}

@keyframes green3 {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes green2 {
  to {
    stroke-dashoffset: 30;
  }
}
@keyframes green1 {
  to {
    stroke-dashoffset: 70;
  }
}
header {
  background: var(--main-green);
  width: 100%;
  position: fixed;
  z-index: 9999;
}
header #hd_inner {
  padding: 1% 0;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: clamp(360px, 90vw, 1300px);
}
header #hd_inner h1 {
  display: inline-block;
  color: var(--white);
  width: 35%;
}
header #hd_inner h1 a div.rogo_img {
  width: 60px;
  float: left;
}
header #hd_inner h1 a div.rogo_img img {
  width: 100%;
}
header #hd_inner h1 a div.flex {
  flex-direction: column;
  margin-left: 20%;
}
header #hd_inner h1 a div.flex span:first-of-type {
  font-size: clamp(12px, 12px + (100vw - 768px) * 0.0072115385, 18px);
}
header #hd_inner h1 a div.flex span:nth-of-type(2) {
  font-size: clamp(25px, 25px + (100vw - 768px) * 0.0084134615, 32px);
}
header #hd_inner nav {
  width: 65%;
}
header #hd_inner nav ul {
  width: 100%;
  text-align: right;
}
header #hd_inner nav ul li {
  color: var(--white);
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, 16px + (100vw - 768px) * 0.0048076923, 20px);
  font-weight: 700;
  display: inline-block;
  margin-left: 3%;
  vertical-align: middle;
  letter-spacing: 0.1em;
  transition: opacity 0.25s;
}
header #hd_inner nav ul li a span {
  font-size: clamp(14px, 14px + (100vw - 768px) * 0.0024038462, 16px);
}
header #hd_inner nav ul li:last-of-type {
  border: 1px solid var(--white);
  padding: 0.5em 1em;
  width: 150px;
  text-align: center;
}
header #hd_inner nav ul li:hover {
  opacity: 0.5;
}

#fv {
  background: var(--main-green);
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: -9999;
}
#fv div:first-of-type {
  position: absolute;
  z-index: -8000;
  top: 200px;
  right: 0;
}
#fv div:first-of-type img {
  width: 100%;
}
#fv ul {
  margin-left: 12%;
  position: absolute;
  top: 112px;
}
#fv ul li {
  font-size: clamp(64px, 64px + (100vw - 768px) * 0.0552884615, 110px);
  font-weight: 700;
  line-height: 1.18em;
}
#fv ul li:first-of-type, #fv ul li:last-of-type {
  color: var(--white);
}
#fv ul li:nth-of-type(2) {
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
}
#fv p {
  font-size: clamp(18px, 18px + (100vw - 768px) * 0.0168269231, 32px);
  font-weight: 600;
  color: var(--white);
  position: absolute;
  bottom: 50px;
  right: 20vw;
}
#fv div:nth-of-type(2) {
  width: 120px;
  position: absolute;
  bottom: 35px;
  right: 90px;
}
#fv div:nth-of-type(2) img {
  width: 100%;
}

main {
  width: 100%;
  background: var(--white);
  position: sticky;
  z-index: 1;
  margin: 100vh auto 0;
}
main article:first-of-type > div:first-of-type, main article:first-of-type > div:nth-of-type(4) {
  background: var(--dark-green);
  color: var(--white);
  width: 100vw;
}
main article:first-of-type > div:first-of-type {
  margin-bottom: 100px;
}
main article:first-of-type > div:first-of-type #about {
  width: 70vw;
}
main article:first-of-type #news {
  width: 70vw;
}
main article:first-of-type #news h2 {
  font-size: var(--font-32-72);
  margin-bottom: 40px;
}
main article:first-of-type #news > div.flex {
  gap: 2%;
  align-items: flex-start;
  border-bottom: 2px solid hsla(120, 90%, 30%, 0.5);
  padding: 35px 0;
  letter-spacing: 0.05em;
  line-height: 2em;
}
main article:first-of-type #news > div.flex > div {
  width: 75%;
}
main article:first-of-type #grid_area #data {
  width: 100%;
  height: 100%;
  transform-origin: top left;
  border: 1px solid var(--main-green);
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: 16% 42% 42%;
  grid-template-areas: "a a" "b d" "c d";
}
main article:first-of-type #grid_area #data li {
  padding: 2em;
  border: 1px solid var(--main-green);
}
main article:first-of-type #grid_area #data li div.container_flex span {
  width: 50%;
  text-align: center;
  margin: 0 0.2em;
}
main article:first-of-type #grid_area #data li div.container_flex span span {
  font-size: 18px;
}
main article:first-of-type #grid_area #data li div.container_flex p {
  width: 50%;
  font-weight: 600;
}
main article:first-of-type #grid_area #data li.blk_02 div.container_flex, main article:first-of-type #grid_area #data li.blk_03 div.container_flex {
  height: 80%;
  position: relative;
}
main article:first-of-type #grid_area #data li.blk_01 {
  grid-area: a;
}
main article:first-of-type #grid_area #data li.blk_01 h2 {
  font-size: var(--font-32-72);
  margin-bottom: 0;
}
main article:first-of-type #grid_area #data li.blk_02 {
  grid-area: b;
}
main article:first-of-type #grid_area #data li.blk_02 div.container_flex.jsFuwa::before {
  content: "";
  width: 120px;
  height: 120px;
  position: absolute;
  z-index: 7000;
  background: url(../image/doage_gr.png) no-repeat;
  background-size: cover;
  top: -80px;
  right: 5%;
}
main article:first-of-type #grid_area #data li.blk_03 {
  grid-area: c;
}
main article:first-of-type #grid_area #data li.blk_03 div.container_flex::before {
  content: "";
  width: 120px;
  height: 120px;
  position: absolute;
  z-index: 7000;
  background: url(../image/light_gr.png) no-repeat;
  background-size: cover;
  width: 100px;
  height: 100px;
  bottom: -25px;
  left: -5%;
}
main article:first-of-type #grid_area #data li.blk_04 {
  grid-area: d;
  text-align: left;
}
main article:first-of-type #grid_area #data li.blk_04 div.container_flex {
  flex-direction: column;
}
main article:first-of-type #grid_area #data li.blk_04 div.container_flex #c-inner {
  width: 100%;
  position: relative;
  z-index: 7000;
}
main article:first-of-type #grid_area #data li.blk_04 div.container_flex #c-inner::before {
  content: "";
  width: 120px;
  height: 120px;
  position: absolute;
  z-index: 7000;
  background: url(../image/drink_gr.png) no-repeat;
  background-size: cover;
  right: -5%;
  bottom: 5%;
}
main article:first-of-type #grid_area #data li.blk_04 div.container_flex #c-inner p {
  position: absolute;
  z-index: 9000;
  top: -15px;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(18px, 18px + (100vw - 768px) * 0.0084134615, 25px);
  line-height: 1.5em;
}
main article:first-of-type #grid_area #data li.blk_04 div.container_flex #c-inner p::before {
  content: "";
  position: absolute;
  z-index: 8000;
  width: 3px;
  height: 70%;
  background: var(--50-green);
  border-radius: 3px;
  transform: rotate(30deg);
}
main article:first-of-type #grid_area #data li.blk_04 div.container_flex #c-inner p:first-of-type::before {
  left: 0;
  top: 90px;
}
main article:first-of-type #grid_area #data li.blk_04 div.container_flex #c-inner p:nth-of-type(2) {
  top: 80%;
  left: 0;
}
main article:first-of-type #grid_area #data li.blk_04 div.container_flex #c-inner p:nth-of-type(2)::before {
  top: -65px;
  right: 35px;
}
main article:first-of-type #grid_area #data li.blk_04 div.container_flex #c-inner p:nth-of-type(3) {
  top: 30px;
  left: -5px;
}
main article:first-of-type #grid_area #data li.blk_04 div.container_flex #c-inner p:nth-of-type(3)::before {
  top: 90px;
  right: 35px;
  transform: rotate(-30deg) !important;
}
main article:first-of-type #grid_area #data li.blk_04 div.container_flex > p {
  width: 100%;
}
main article:first-of-type #rules {
  padding-left: 4.4%;
  padding-right: 4.4%;
}
main article:first-of-type #rules > div:first-of-type {
  width: 40%;
  flex-direction: column;
  gap: 10%;
}
main article:first-of-type #rules > div:first-of-type > div:first-of-type p {
  line-height: 1.5em;
  margin-top: 42px;
}
main article:first-of-type #rules > div:first-of-type > div:nth-of-type(2) {
  position: relative;
  z-index: 2;
}
main article:first-of-type #rules > div:first-of-type > div:nth-of-type(2) > div img {
  width: 100%;
}
main article:first-of-type #rules > div:first-of-type > div:nth-of-type(2) > div:first-of-type {
  width: 80%;
}
main article:first-of-type #rules > div:first-of-type > div:nth-of-type(2) > div:nth-of-type(2) {
  width: 40%;
  height: 100%;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 5%;
  margin-top: 45%;
  overflow: hidden;
}
main article:first-of-type #rules > div:first-of-type > div:nth-of-type(2) > div:nth-of-type(2) img {
  margin-top: -15%;
}
main article:first-of-type #rules > div:nth-of-type(2) {
  padding-top: 10%;
  padding-left: 12%;
  width: 60%;
}
main article:first-of-type #rules > div:nth-of-type(2) dl {
  border-bottom: 2px solid hsla(0, 0%, 100%, 0.2);
  padding: 35px 0;
}
main article:first-of-type #rules > div:nth-of-type(2) dl dt {
  align-items: center;
  margin-bottom: 30px;
}
main article:first-of-type #rules > div:nth-of-type(2) dl dt span {
  font-size: clamp(14px, 14px + (100vw - 768px) * 0.0120192308, 24px);
  opacity: 0.5;
}
main article:first-of-type #rules > div:nth-of-type(2) dl dt p {
  font-size: clamp(24px, 24px + (100vw - 768px) * 0.0132211538, 35px);
  margin-left: 2%;
}
main article:first-of-type #rules > div:nth-of-type(2) dl dd ul li {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: clamp(14px, 14px + (100vw - 768px) * 0.0072115385, 20px);
  letter-spacing: 0.05em;
  line-height: 2em;
}
main article:first-of-type #rules > div:nth-of-type(2) dl:nth-of-type(4) dd > ul > li {
  margin-bottom: 1em;
}
main article:last-of-type #contact section:first-of-type h2 {
  background: var(--main-green);
  color: var(--white);
  line-height: 0.8em;
  padding: 0.3em 0.5em;
  position: relative;
}
main article:last-of-type #contact section:first-of-type h2::before {
  content: "";
  background: url(../image/batter.png) no-repeat;
  background-size: cover;
  width: 70px;
  height: 95px;
  position: absolute;
  bottom: 1%;
  right: 1%;
}
main article:last-of-type #contact section:nth-of-type(2) h2 {
  font-size: var(--font-32-72);
}
main article:last-of-type #contact section:nth-of-type(2) p {
  font-size: clamp(18px, 18px + (100vw - 768px) * 0.0096153846, 26px);
  margin-bottom: 20px;
}
main article:last-of-type #contact section:nth-of-type(2) p label {
  color: var(--main-green);
}
main article:last-of-type #contact section:nth-of-type(2) p input, main article:last-of-type #contact section:nth-of-type(2) p textarea {
  padding: 1em;
  border: none;
  background: #dcdcdc;
  color: rgba(30, 30, 30, 0.7058823529);
  font-size: 1rem;
}
main article:last-of-type #contact section:nth-of-type(2) p input {
  width: 350px;
}
main article:last-of-type #contact section:nth-of-type(2) p textarea {
  width: 450px;
}
main article:last-of-type #contact section:nth-of-type(2) p:last-of-type {
  display: flex;
  justify-content: center;
  gap: 5%;
  word-break: break-word;
}

footer {
  text-align: center;
  color: var(--white);
  background: var(--main-green);
  padding: 2em 0;
}

@media screen and (max-width: 768px) {
  html, body {
    min-width: 320px;
  }
  .wrapper {
    padding: 80px 0;
  }
  .sec_wrapper {
    width: 90vw;
  }
  .container_flex {
    flex-direction: column;
  }
  .button {
    width: 135px;
    height: 135px;
  }
  body.fixed {
    position: fixed;
  }
  header {
    height: 90px;
  }
  header #hd_inner {
    padding: 4% 1%;
  }
  header #hd_inner h1 {
    width: 85%;
    position: relative;
    z-index: 8500;
  }
  header #hd_inner a#sp_menu {
    display: flex;
    width: 50px;
    height: 50px;
    position: relative;
    z-index: 8500;
    transition: 0.5s ease-in;
  }
  header #hd_inner a#sp_menu span::before, header #hd_inner a#sp_menu span::after {
    content: "";
    background: url(../image/bat.png) no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    transition: 0.8s ease-in-out;
  }
  header #hd_inner a#sp_menu span::before {
    top: 10px;
  }
  header #hd_inner a#sp_menu span::after {
    transform: rotate(180deg);
    bottom: 10px;
  }
  header #hd_inner a#sp_menu.sp_menu_close span::before {
    top: 50%;
    transform: translateX(-25%) rotate(45deg);
  }
  header #hd_inner a#sp_menu.sp_menu_close span::after {
    bottom: 15%;
    transform: translateX(-30%) rotate(135deg);
  }
  header #hd_inner nav {
    position: absolute;
    z-index: 8000;
    top: 90px;
    right: -100%;
    background: var(--dark-green);
    width: 100%;
    height: calc(100vh - 90px);
    padding: 3em;
    transition: 0.8s ease-in-out;
    align-items: normal;
  }
  header #hd_inner nav ul li {
    display: list-item;
    padding: 6% 0;
    text-align: left;
    font-size: 28px;
    border-bottom: 2px solid hsla(0, 0%, 100%, 0.2);
  }
  header #hd_inner nav ul li:last-of-type {
    margin-top: 1em;
    width: 200px;
  }
  header #hd_inner nav.active {
    right: 0;
  }
  #fv div:first-of-type {
    right: -60px;
    width: 390px;
    top: 140px;
  }
  #fv div:first-of-type img {
    width: 100%;
  }
  #fv ul {
    top: 90px;
    margin-left: 5%;
  }
  #fv ul li {
    line-height: 1.23em;
  }
  #fv p {
    width: 55vw;
    bottom: 10%;
    left: 5%;
  }
  #fv div:nth-of-type(2) {
    bottom: 5%;
    right: 5%;
  }
  main article:first-of-type > div:first-of-type #about {
    width: 90vw;
  }
  main article:first-of-type > div:first-of-type #about h2 {
    width: 70%;
    margin-bottom: 50px;
    line-height: 40px;
  }
  main article:first-of-type #news {
    width: 90vw;
  }
  main article:first-of-type #news > div.flex {
    flex-direction: column;
  }
  main article:first-of-type #news > div.flex > div {
    width: 90vw;
  }
  main article:first-of-type #grid_area #data {
    grid-template-columns: 100%;
    grid-template-rows: 7% 18% 22% 53%;
    grid-template-areas: "a" "b" "c" "d";
  }
  main article:first-of-type #grid_area #data li {
    padding: 0.8em;
  }
  main article:first-of-type #grid_area #data li div.container_flex p {
    width: 100%;
  }
  main article:first-of-type #grid_area #data li.blk_02 div.container_flex.jsFuwa::before {
    width: 85px;
    height: 85px;
    top: -45px;
    right: 5%;
  }
  main article:first-of-type #grid_area #data li.blk_03 div.container_flex::before {
    width: 65px;
    height: 65px;
    bottom: 90px;
    left: 75%;
  }
  main article:first-of-type #grid_area #data li.blk_04 div.container_flex #c-inner {
    text-align: center;
    max-width: 320px;
  }
  main article:first-of-type #grid_area #data li.blk_04 div.container_flex #c-inner::before {
    width: 80px;
    height: 80px;
  }
  main article:first-of-type #grid_area #data li.blk_04 div.container_flex #c-inner div.graph {
    width: 320px;
  }
  main article:first-of-type #grid_area #data li.blk_04 div.container_flex #c-inner p:first-of-type::before {
    top: 55px;
  }
  main article:first-of-type #grid_area #data li.blk_04 div.container_flex #c-inner p:nth-of-type(2) {
    top: 275px;
    left: -15px;
  }
  main article:first-of-type #grid_area #data li.blk_04 div.container_flex #c-inner p:nth-of-type(2)::before {
    top: -50px;
    right: 15px;
  }
  main article:first-of-type #grid_area #data li.blk_04 div.container_flex #c-inner p:nth-of-type(3) {
    left: -18px;
  }
  main article:first-of-type #grid_area #data li.blk_04 div.container_flex #c-inner p:nth-of-type(3)::before {
    top: 65px;
    right: 5px;
  }
  main article:first-of-type #rules {
    margin-left: auto;
    display: block;
  }
  main article:first-of-type #rules > div:first-of-type {
    width: 100%;
    flex-direction: column-reverse;
  }
  main article:first-of-type #rules > div:first-of-type > div:nth-of-type(2) {
    margin-bottom: 14em;
  }
  main article:first-of-type #rules > div:nth-of-type(2) {
    padding-left: 0;
    padding-top: 90px;
    width: 100%;
  }
  main article:last-of-type #contact section:nth-of-type(2) p input {
    width: 280px;
  }
  main article:last-of-type #contact section:nth-of-type(2) p textarea {
    width: 280px;
  }
}