@charset "UTF-8";
:root, :host {
  --color-main: #FF79A1;
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-red: #e41829;
  --color-yellow: #FFE200;
  --color-blue: #1E41BE;
  --fontfamily-ja: "Zen Maru Gothic", sans-serif;
}

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

* {
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

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

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

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

p, h1, h2, h3, h4, h5, h6, ul, li {
  overflow-wrap: break-word;
  padding: 0;
  margin: 0;
}

#root, #__next {
  isolation: isolate;
}

ul, li {
  list-style-type: none;
}

article, aside, footer, header, main, section {
  display: block;
}

html, body {
  font-family: var(--fontfamily-ja);
  font-weight: 700;
  background-color: var(--color-white);
  color: var(--color-black);
}

h1, h2, h3 {
  font-weight: 900;
}

a {
  text-decoration: none;
}

.inner {
  position: relative;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-black);
  color: var(--color-white);
  z-index: 10;
}
header .inner {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  padding: 0 25px;
}
header .inner a.lang {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  padding: 6px 12px;
  color: var(--color-white);
  font-size: 18px;
}
header .inner a.lang::after {
  content: "";
  width: 26px;
  height: 2px;
  background-color: var(--color-white);
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  header .inner {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  header .inner {
    justify-content: flex-start;
  }
}

footer {
  background-color: var(--color-black);
  color: var(--color-white);
  position: relative;
  font-weight: 500;
}
footer .totop {
  position: absolute;
  left: 0;
  top: -50px;
  width: 100%;
  padding: 10px 0;
  text-align: center;
  color: var(--color-white);
}
footer .kitty {
  position: absolute;
  right: 0;
  top: -77px;
  pointer-events: none;
}
footer .kitty img {
  width: 113px;
  height: 86px;
}
footer nav {
  display: flex;
}
footer nav ul {
  display: flex;
}
footer nav ul li a {
  color: var(--color-white);
  display: block;
  cursor: pointer;
}
footer nav ul li a::before {
  content: "・";
}
footer .copy {
  margin-top: 16px;
  text-align: center;
}

main {
  position: relative;
  width: 100%;
}

section {
  position: relative;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 900;
  position: relative;
}
.btn.ribbon::before {
  content: "";
  position: absolute;
  pointer-events: none;
  background-image: url(common/img/btn_ribbon.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

#cta {
  position: fixed;
  right: 0;
  bottom: -11px;
  transition-duration: 0.5s;
  z-index: 5;
}
#cta.off {
  bottom: -205px;
}
#cta a {
  display: block;
  overflow: hidden;
  text-indent: -9999px;
  font-size: 0;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 1/1;
  background-image: url(common/img/btn_cta_jp2.png);
}

@media screen and (min-width: 768px) {
  footer {
    padding: 0 0 30px;
  }
  footer nav {
    padding: 30px 9px 0;
    justify-content: center;
    font-size: 14px;
  }
  footer nav ul {
    gap: 20px;
  }
  footer .copy {
    font-size: 14px;
  }
  .sp {
    display: none;
  }
  .btn {
    width: 436px;
    height: 81px;
    border-radius: 41px;
    font-size: 28px;
  }
  .btn.ribbon::before {
    width: 94px;
    height: 76px;
    top: -35px;
    right: -17px;
  }
  #cta a {
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  footer {
    padding: 0 0 18px;
  }
  footer nav {
    padding: 25px 9px 0;
    justify-content: flex-end;
    font-size: 12px;
  }
  footer nav ul {
    flex-direction: column;
    gap: 4px;
  }
  footer .copy {
    font-size: 12px;
  }
  .pc {
    display: none;
  }
  .btn {
    width: 311px;
    height: 59px;
    border-radius: 30px;
    font-size: 20px;
  }
  .btn.ribbon::before {
    width: 67px;
    height: 54px;
    top: -25px;
    right: -17px;
  }
  #cta a {
    width: 144px;
  }
}
body.en #cta a {
  background-image: url(common/img/btn_cta_en.png);
}/*# sourceMappingURL=common.css.map */