@charset "UTF-8";
:root {
  --site-color1: #9d1515;
  --site-color2: #1f2c4d;
  --10px: 0.6rem;
  --12px: 0.75rem;
  --13px: 0.8125rem;
  --14px: 0.875rem;
  --15px: 0.9375rem;
  --16px: 1rem;
  --17px: 1.0625rem;
  --18px: 1.125rem;
  --19px: 1.1875rem;
  --20px: 1.25rem;
  --21px: 1.3125rem;
  --22px: 1.375rem;
  --23px: 1.4375rem;
  --24px: 1.5rem;
  --25px: 1.5625rem;
  --26px: 1.625rem;
  --27px: 1.6875rem;
  --28px: 1.75rem;
  --29px: 1.8125rem;
  --30px: 1.875rem;
  --31px: 1.9375rem;
  --32px: 2rem;
  --33px: 2.0625rem;
  --34px: 2.125rem;
  --35px: 2.1875rem;
  --36px: 2.25rem;
  --37px: 2.3125rem;
  --38px: 2.375rem;
  --39px: 2.4375rem;
  --40px: 2.5rem;
  --50px: 3.125rem;
  --90px: 5.625rem;
}

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

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

html {
  height: 100%;
}

body {
  font-family: yu-mincho-pr6n, sans-serif;
  letter-spacing: 0;
  color: #2c2c2c;
  line-height: 2;
  /* mobile viewport bug fix */
  min-height: -webkit-fill-available;
  margin: 0;
  position: relative;
  height: 100%;
}
body.top {
  min-height: 100vh;
  /* カスタムプロパティ未対応ブラウザ用のフォールバック */
  min-height: calc(var(--vh, 1vh) * 100);
  overflow: hidden !important;
  height: 100%;
}
body .wrapper {
  min-height: calc(var(--vh, 1vh) * 100);
  background-color: #ce391e;
}
body .wrapper .forLoadAction {
  height: 100%;
}

.ticker {
  background-color: #fff;
  overflow: hidden;
  width: 100%;
  position: relative;
}
.ticker ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-animation: marquee 20s linear infinite;
          animation: marquee 20s linear infinite;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  gap: 30px;
  padding: 14px 0;
  white-space: nowrap;
}
.ticker ul li {
  line-height: 1;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.ticker ul li a {
  color: #000;
  line-height: 1;
  font-size: 14px;
}
.ticker ul li a:hover {
  text-decoration: none;
}

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translate3d(calc(-25% + 20vw), 0, 0);
            transform: translate3d(calc(-25% + 20vw), 0, 0);
  }
  100% {
    -webkit-transform: translate3d(calc(-50% + 20vw), 0, 0);
            transform: translate3d(calc(-50% + 20vw), 0, 0);
  }
}

@keyframes marquee {
  0% {
    -webkit-transform: translate3d(calc(-25% + 20vw), 0, 0);
            transform: translate3d(calc(-25% + 20vw), 0, 0);
  }
  100% {
    -webkit-transform: translate3d(calc(-50% + 20vw), 0, 0);
            transform: translate3d(calc(-50% + 20vw), 0, 0);
  }
}
.sp {
  display: none;
}
@media screen and (max-width: 769px) {
  .sp {
    display: block;
  }
}

.pc {
  display: block;
}
@media screen and (max-width: 769px) {
  .pc {
    display: none;
  }
}

/*
navigation
*/
nav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  bottom: -400px;
}
@media (min-width: 768px) {
  nav {
    bottom: -630px;
  }
}
nav .nav-inner {
  display: -ms-grid;
  display: grid;
  position: relative;
  min-width: 902px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
nav .nav-inner > .earth {
  width: 360px;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-column-align: center;
      justify-self: center;
  -ms-grid-row-align: center;
      align-self: center;
}
nav .nav-inner > .earth .none {
  fill: none;
}
nav .nav-inner > .earth .green {
  fill: #38ab3a;
}
nav .nav-inner > .earth .land {
  stroke: #231815;
  fill: #38ab3a;
  stroke-miterlimit: 10;
  stroke-width: 0.25px;
}
@media (min-width: 768px) {
  nav .nav-inner > .earth {
    width: 600px;
  }
}
nav .nav-inner > .earth.touchDevice {
  animation: rotate-animation 50s infinite linear reverse;
}
nav .nav-inner ul {
  position: relative;
  width: 585px;
  height: 585px;
  padding: 0;
  border-radius: 50%;
  list-style: none;
  list-style-type: none;
  margin: 0;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-column-align: center;
      justify-self: center;
  -ms-grid-row-align: center;
      align-self: center;
}
nav .nav-inner ul > * {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  margin: -90px;
}
nav .nav-inner ul > *:nth-of-type(1) {
  -webkit-transform: rotate(0deg) translate(292.5px) rotate(90deg);
          transform: rotate(0deg) translate(292.5px) rotate(90deg);
}
nav .nav-inner ul > *:nth-of-type(2) {
  -webkit-transform: rotate(60deg) translate(292.5px) rotate(90deg);
          transform: rotate(60deg) translate(292.5px) rotate(90deg);
}
nav .nav-inner ul > *:nth-of-type(3) {
  -webkit-transform: rotate(120deg) translate(292.5px) rotate(90deg);
          transform: rotate(120deg) translate(292.5px) rotate(90deg);
}
nav .nav-inner ul > *:nth-of-type(4) {
  -webkit-transform: rotate(180deg) translate(292.5px) rotate(90deg);
          transform: rotate(180deg) translate(292.5px) rotate(90deg);
}
nav .nav-inner ul > *:nth-of-type(5) {
  -webkit-transform: rotate(240deg) translate(292.5px) rotate(90deg);
          transform: rotate(240deg) translate(292.5px) rotate(90deg);
}
nav .nav-inner ul > *:nth-of-type(6) {
  -webkit-transform: rotate(300deg) translate(292.5px) rotate(90deg);
          transform: rotate(300deg) translate(292.5px) rotate(90deg);
}
@media (min-width: 768px) {
  nav .nav-inner ul {
    position: relative;
    width: 880px;
    height: 880px;
    padding: 0;
    border-radius: 50%;
    list-style: none;
  }
  nav .nav-inner ul > * {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    margin: -100px;
  }
  nav .nav-inner ul > *:nth-of-type(1) {
    -webkit-transform: rotate(0deg) translate(440px) rotate(90deg);
            transform: rotate(0deg) translate(440px) rotate(90deg);
  }
  nav .nav-inner ul > *:nth-of-type(2) {
    -webkit-transform: rotate(60deg) translate(440px) rotate(90deg);
            transform: rotate(60deg) translate(440px) rotate(90deg);
  }
  nav .nav-inner ul > *:nth-of-type(3) {
    -webkit-transform: rotate(120deg) translate(440px) rotate(90deg);
            transform: rotate(120deg) translate(440px) rotate(90deg);
  }
  nav .nav-inner ul > *:nth-of-type(4) {
    -webkit-transform: rotate(180deg) translate(440px) rotate(90deg);
            transform: rotate(180deg) translate(440px) rotate(90deg);
  }
  nav .nav-inner ul > *:nth-of-type(5) {
    -webkit-transform: rotate(240deg) translate(440px) rotate(90deg);
            transform: rotate(240deg) translate(440px) rotate(90deg);
  }
  nav .nav-inner ul > *:nth-of-type(6) {
    -webkit-transform: rotate(300deg) translate(440px) rotate(90deg);
            transform: rotate(300deg) translate(440px) rotate(90deg);
  }
}
nav .nav-inner ul li {
  display: block;
  max-width: 100%;
}
nav .nav-inner ul li a {
  display: block;
}
nav .nav-inner ul li a svg {
  width: 100%;
}
nav .nav-inner ul li a .txt {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: -10px;
  margin: auto;
  width: calc(100% - 40px);
  z-index: 1;
}
nav .nav-inner ul li a .txt path {
  fill: #231815;
}
@media (min-width: 768px) {
  nav .nav-inner ul li a:hover .txt path:first-child {
    fill: #fff;
  }
}
nav .nav-inner ul li.about a .txt {
  height: 29.6px;
}
@media (min-width: 768px) {
  nav .nav-inner ul li.about a .txt {
    height: 31.6px;
  }
}
nav .nav-inner ul li.news a .txt {
  height: 29.6px;
}
@media (min-width: 768px) {
  nav .nav-inner ul li.news a .txt {
    height: 31.6px;
  }
}
nav .nav-inner ul li.shop a .txt {
  height: 29.6px;
  left: 0;
}
@media (min-width: 768px) {
  nav .nav-inner ul li.shop a .txt {
    height: 31.6px;
  }
}
nav .nav-inner ul li.contact a {
  display: contents;
  position: relative;
}
nav .nav-inner ul li.contact a .txt {
  height: 29.6px;
  left: 0;
  width: auto;
}
@media (min-width: 768px) {
  nav .nav-inner ul li.contact a .txt {
    height: 31.6px;
    left: -10px;
  }
}
nav .nav-inner ul li.contact a .bg {
  height: 100%;
  width: auto;
  max-width: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@-webkit-keyframes rotate-animation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

@keyframes rotate-animation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
footer {
  background-color: #ce391e;
}
footer .sns {
  margin-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
footer .sns > * {
  width: 100px;
}
footer .sns .ig a svg .green,
footer .sns .ig a svg .pink {
  stroke: #231815;
  stroke-miterlimit: 10;
  stroke-width: 0.5px;
}
footer .sns .ig a svg .green {
  fill: #98c838;
}
footer .sns .ig a svg .pink {
  fill: #da444a;
}
footer .sns .ig a:hover svg .green:nth-of-type(1) {
  opacity: 0;
}
footer .sns .yt a svg .pink {
  fill: #da444a;
}
footer .sns .yt a svg .green {
  fill: #98c838;
  stroke: #231815;
  stroke-miterlimit: 10;
  stroke-width: 0.5px;
}
footer .sns .yt a:hover svg .green:first-child {
  opacity: 0;
}
footer small {
  font-size: 10px;
  text-align: center;
  display: block;
  font-weight: bold;
  font-family: rooney-sans, sans-serif;
  color: #fff;
  padding-bottom: 20px;
}

.common-transition {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-height: calc(var(--vh, 1vh) * 100);
  padding: 0;
  margin: 0;
  pointer-events: none;
}
.common-transition .item {
  width: 20%;
  background: #e9c734;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}