@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Oswald:wght@200..700&display=swap");
/* mixin setting */
:root {
  --primary-color: #00a6e7;
  --secondary-color: #006d98;
  --focus-color: #c4322d;
  --focus-bg-color: #fae52d;
  --focus-bg-color-light: #fdf7c6;
  --bg-color: #dfeaee;
  --main-font-color: #222222;
  --entry-color: #00a6e7;
  --social-color: #474e62;
  --font-defalt: "Noto Sans JP", sans-serif;
  --font-oswald: "Oswald", sans-serif;
}

/* mixin setting end */
::-moz-selection {
  color: #fff;
  background: var(--primary-color);
}
::selection {
  color: #fff;
  background: var(--primary-color);
}

img.no-save {
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}

html {
  -webkit-text-size-adjust: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  color: var(--main-font-color);
  font-size: 1rem;
  font-family: var(--font-defalt);
  scroll-behavior: smooth;
}

body {
  height: 100%;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  counter-reset: number 0;
  position: relative;
  margin: 0;
}

a {
  color: var(--main-font-color);
  transition: opacity 1s;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.bold {
  font-weight: bold;
}

.align-c {
  text-align: center;
}

.text-deco-u {
  text-decoration: underline;
}

.note {
  font-family: var(--font-noto-sans);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}

.l-mlr-c {
  margin-left: auto;
  margin-right: auto;
}

.l-mlr-16 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.l-mt-08 {
  margin-top: 0.5rem;
}

.l-mt-16 {
  margin-top: 1rem;
}

.l-mt-24 {
  margin-top: 1.5rem;
}

.l-mt-32 {
  margin-top: 2rem;
}

.l-mt-40 {
  margin-top: 2.5rem;
}

.l-mt-48 {
  margin-top: 3rem;
}

.l-mt-56 {
  margin-top: 3.5rem;
}

.l-mt-64 {
  margin-top: 4rem;
}

.l-mt-80 {
  margin-top: 5rem;
}

.l-mt-100 {
  margin-top: 6.25rem;
}

.l-mb-08 {
  margin-bottom: 0.5rem;
}

.l-mb-16 {
  margin-bottom: 1rem;
}

.l-mb-24 {
  margin-bottom: 1.5rem;
}

.l-mb-32 {
  margin-bottom: 2rem;
}

.l-mb-40 {
  margin-bottom: 2.5rem;
}

.l-mb-48 {
  margin-bottom: 3rem;
}

.l-mb-56 {
  margin-bottom: 3.5rem;
}

.l-mb-64 {
  margin-bottom: 4rem;
}

.l-mb-80 {
  margin-bottom: 5rem;
}

.l-mb-100 {
  margin-bottom: 6.25rem;
}

.l-pd-lr-24 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.l-pd-lr-32 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.l-pd-tb-56 {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.l-content_pdrl {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.sp-only {
  display: none;
}

.fadeoff {
  opacity: 0;
  transition: all 2s;
  transform: translateY(1rem);
}

.fadeon {
  opacity: 1;
  transform: translateY(0);
}

.fade_top {
  opacity: 0;
  transition: all 2s;
  transform: translateY(1rem);
}

.fade_top_active {
  opacity: 1;
  transform: translateY(0);
}

.l-pc-namatennensui__title.fade_top_active,
.l-sp-namatennensui__title.fade_top_active {
  transition-delay: 0s;
}

.l-pc-namatennensui__copy.fade_top_active,
.l-sp-namatennensui__copy.fade_top_active {
  transition-delay: 0.3s;
}

.p-introduction__feature-inner:nth-of-type(1) .p-introduction__feature-comment.fade_top_active {
  transition-delay: 0.1s;
}

.p-introduction__feature-inner:nth-of-type(1) .p-introduction__feature-comment-answer.fade_top_active {
  transition-delay: 0.3s;
}

.p-introduction__feature-inner:nth-of-type(2) .p-introduction__feature-comment.fade_top_active {
  transition-delay: 0.5s;
}

.p-introduction__feature-inner:nth-of-type(3) .p-introduction__feature-comment.fade_top_active {
  transition-delay: 0.7s;
}

.p-water-source-introduction p.fade_top_active,
.p-factory-introduction p.fade_top_active {
  transition-delay: 0.3s;
}

.p-water-source-introduction__answer.fade_top_active,
.p-factory-introduction__answer.fade_top_active {
  transition-delay: 0.5s;
}

.rumble {
  -webkit-animation: rumble 0.1s linear 6;
  animation: rumble 0.1s linear 6;
}

@-webkit-keyframes rumble {
  0% {
    transform: translate(0);
  }
  25% {
    transform: translate(2px);
  }
  50% {
    transform: translate(0);
  }
  75% {
    transform: translate(-2px);
  }
  100% {
    transform: translate(0);
  }
}

@keyframes rumble {
  0% {
    transform: translate(0);
  }
  25% {
    transform: translate(2px);
  }
  50% {
    transform: translate(0);
  }
  75% {
    transform: translate(-2px);
  }
  100% {
    transform: translate(0);
  }
}
.fuwafuwa {
  -webkit-animation: 2s fuwafuwa linear infinite;
  animation: 2s fuwafuwa linear infinite;
}

@-webkit-keyframes fuwafuwa {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes fuwafuwa {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}
.yurayura {
  -webkit-animation: 2s yurayura linear infinite;
  animation: 2s yurayura linear infinite;
}

@-webkit-keyframes yurayura {
  0%,
  100% {
    transform: rotate(1deg);
  }
  50% {
    transform: rotate(-1deg);
  }
}

@keyframes yurayura {
  0%,
  100% {
    transform: rotate(1deg);
  }
  50% {
    transform: rotate(-1deg);
  }
}
.rotation {
  -webkit-animation: 20s rotation linear infinite;
  animation: 20s rotation linear infinite;
}

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

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes bounce {
  0% {
    transform: scale(1, 1) translate(0, 0);
  }
  15% {
    transform: scale(0.98, 0.9) translate(0, 5px);
  }
  30% {
    transform: scale(1.02, 1) translate(0, 8px);
  }
  50% {
    transform: scale(0.98, 1.05) translate(0, -8px);
  }
  70% {
    transform: scale(1, 0.9) translate(0, 5px);
  }
  100% {
    transform: scale(1, 1) translate(0, 0);
  }
  0%,
  100% {
    opacity: 1;
  }
}
@keyframes bounce {
  0% {
    transform: scale(1, 1) translate(0, 0);
  }
  15% {
    transform: scale(0.98, 0.9) translate(0, 5px);
  }
  30% {
    transform: scale(1.02, 1) translate(0, 8px);
  }
  50% {
    transform: scale(0.98, 1.05) translate(0, -8px);
  }
  70% {
    transform: scale(1, 0.9) translate(0, 5px);
  }
  100% {
    transform: scale(1, 1) translate(0, 0);
  }
  0%,
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes loop1 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-50%, 0);
  }
}
@keyframes loop1 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-50%, 0);
  }
}
@-webkit-keyframes loop2 {
  0% {
    transform: translate(-50%, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes loop2 {
  0% {
    transform: translate(-50%, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
.splash {
  opacity: 1;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
}
.splash::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/common/noise.png) repeat;
  background-size: 100px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.splash__logo {
  z-index: 99;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.splash__logo svg {
  width: 15.63vw;
  min-width: 100px;
}

/***************************************************
* Generated by SVG Artista on 6/4/2025, 11:42:32 AM
* MIT license (https://opensource.org/licenses/MIT)
* W. https://svgartista.net
**************************************************/
svg .svg-elem-1 {
  fill: transparent;
  transition: fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s;
}

svg.active .svg-elem-1 {
  fill: rgb(255, 255, 255);
}

svg .svg-elem-2 {
  fill: transparent;
  transition: fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s;
}

svg.active .svg-elem-2 {
  fill: rgb(255, 255, 255);
}

svg .svg-elem-3 {
  fill: transparent;
  transition: fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 0.7s;
}

svg.active .svg-elem-3 {
  fill: rgb(255, 255, 255);
}

svg .svg-elem-4 {
  fill: transparent;
  transition: fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s;
}

svg.active .svg-elem-4 {
  fill: rgb(255, 255, 255);
}

svg .svg-elem-5 {
  fill: transparent;
  transition: fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s;
}

svg.active .svg-elem-5 {
  fill: rgb(255, 255, 255);
}

svg .svg-elem-6 {
  fill: transparent;
  transition: fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 1s;
}

svg.active .svg-elem-6 {
  fill: rgb(255, 255, 255);
}

svg .svg-elem-7 {
  fill: transparent;
  transition: fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s;
}

svg.active .svg-elem-7 {
  fill: rgb(255, 255, 255);
}

svg .svg-elem-8 {
  fill: transparent;
  transition: fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s;
}

svg.active .svg-elem-8 {
  fill: rgb(255, 255, 255);
}

svg .svg-elem-9 {
  fill: transparent;
  transition: fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s;
}

svg.active .svg-elem-9 {
  fill: rgb(255, 255, 255);
}

svg .svg-elem-10 {
  fill: transparent;
  transition: fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s;
}

svg.active .svg-elem-10 {
  fill: rgb(255, 255, 255);
}

svg .svg-elem-11 {
  fill: transparent;
  transition: fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s;
}

svg.active .svg-elem-11 {
  fill: rgb(255, 255, 255);
}

svg .svg-elem-12 {
  fill: transparent;
  transition: fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s;
}

svg.active .svg-elem-12 {
  fill: rgb(255, 255, 255);
}

svg .svg-elem-13 {
  fill: transparent;
  transition: fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7s;
}

svg.active .svg-elem-13 {
  fill: rgb(255, 255, 255);
}

svg .svg-elem-14 {
  fill: transparent;
  transition: fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s;
}

svg.active .svg-elem-14 {
  fill: rgb(255, 255, 255);
}

svg .svg-elem-15 {
  fill: transparent;
  transition: fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 1.9s;
}

svg.active .svg-elem-15 {
  fill: rgb(255, 255, 255);
}

svg .svg-elem-16 {
  fill: transparent;
  transition: fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 2s;
}

svg.active .svg-elem-16 {
  fill: rgb(255, 255, 255);
}

svg .svg-elem-17 {
  fill: transparent;
  transition: fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s;
}

svg.active .svg-elem-17 {
  fill: rgb(255, 255, 255);
}

svg .svg-elem-18 {
  fill: transparent;
  transition: fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 2.2s;
}

svg.active .svg-elem-18 {
  fill: rgb(255, 255, 255);
}

svg .svg-elem-19 {
  fill: transparent;
  transition: fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 2.3s;
}

svg.active .svg-elem-19 {
  fill: rgb(255, 255, 255);
}

svg .svg-elem-20 {
  fill: transparent;
  transition: fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4s;
}

svg.active .svg-elem-20 {
  fill: rgb(255, 255, 255);
}

svg .svg-elem-21 {
  fill: transparent;
  transition: fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 2.5s;
}

svg.active .svg-elem-21 {
  fill: rgb(255, 255, 255);
}

svg .svg-elem-22 {
  fill: transparent;
  transition: fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 2.6s;
}

svg.active .svg-elem-22 {
  fill: rgb(255, 255, 255);
}

svg .svg-elem-23 {
  fill: transparent;
  transition: fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 2.7s;
}

svg.active .svg-elem-23 {
  fill: rgb(255, 255, 255);
}

svg .svg-elem-24 {
  fill: transparent;
  transition: fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 2.8s;
}

svg.active .svg-elem-24 {
  fill: rgb(255, 255, 255);
}

svg .svg-elem-25 {
  fill: transparent;
  transition: fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 2.9s;
}

svg.active .svg-elem-25 {
  fill: rgb(255, 255, 255);
}

svg .svg-elem-26 {
  fill: transparent;
  transition: fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 3s;
}

svg.active .svg-elem-26 {
  fill: rgb(255, 255, 255);
}

svg .svg-elem-27 {
  fill: transparent;
  transition: fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 3.1s;
}

svg.active .svg-elem-27 {
  fill: rgb(255, 255, 255);
}

svg .svg-elem-28 {
  fill: transparent;
  transition: fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 3.2s;
}

svg.active .svg-elem-28 {
  fill: rgb(255, 255, 255);
}

#nav-btn {
  display: block;
  position: fixed;
  z-index: 100;
  top: 2rem;
  right: 2rem;
  transition: 0.7s;
}

@media screen and (max-width: 1024px) {
  #nav-btn {
    top: 1rem;
    right: 1rem;
  }
}
.hamburger {
  position: relative;
  display: block;
  z-index: 999;
  cursor: pointer;
}
.hamburger .toggle {
  position: relative;
  display: block;
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.hamburger .toggle img {
  position: absolute;
  top: 0.9rem;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  transition: all 0.6s;
}
.hamburger .toggle img:nth-child(2) {
  top: 1.3rem;
}
.hamburger .toggle-name {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.625rem;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--primary-color);
  width: 33px;
  height: 10px;
}
.hamburger .toggle-name span {
  transition: all 0.6s;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.hamburger .toggle-name .close {
  color: #fff;
  opacity: 0;
}
.hamburger.is-active .toggle {
  background: white;
}
.hamburger.is-active .toggle img {
  top: 1.1rem;
}
.hamburger.is-active .toggle img:nth-child(2) {
  top: 1.1rem;
}
.hamburger.is-active .toggle span {
  color: #fff;
  opacity: 0;
}
.hamburger.is-active .toggle .close {
  color: var(--primary-color);
  opacity: 1;
}

.c-menu {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 422px;
  height: 100%;
  z-index: 99;
  transition: 0.4s;
  visibility: hidden;
  opacity: 0;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  background: var(--entry-color);
  transform: translateX(100%);
}
.c-menu::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/common/noise.png) repeat;
  background-size: 100px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.c-menu__inner {
  position: relative;
  z-index: 2;
  height: 100%;
}
.c-menu__content {
  height: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.c-menu__logo {
  width: 200px;
  margin: 3.5rem auto 0;
}
.c-menu__list {
  flex: 1;
  margin: 0 2.5rem;
  display: grid;
  gap: 3.5rem;
  grid-template-rows: -webkit-max-content -webkit-max-content;
  grid-template-rows: max-content max-content;
}
.c-menu__list ul {
  border: 1px dashed #fff;
  border-radius: 0.5rem;
}
.c-menu__list ul li a {
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  display: block;
  padding: 1.5rem;
  transition: color 0.6s;
}
.c-menu__list ul li a:hover {
  color: var(--focus-bg-color);
}
.c-menu__list ul li:not(:last-child) {
  border-bottom: 1px dashed #fff;
}

.nav-open {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

@media screen and (max-width: 1024px) {
  .c-menu {
    width: 100%;
  }
}
.l-pc-namatennensui {
  width: calc(100% - 422px);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  background: url(../images/top/kv-pc.jpg);
  background-size: cover;
  background-position: top center;
}
.l-pc-namatennensui__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.l-pc-namatennensui__logo {
  width: 165px;
  margin: 1.5rem 0 0 1.5rem;
}
.l-pc-namatennensui__label {
  width: clamp(80px, 11.48vw, 147px);
  margin: 1.5rem 0 0 2rem;
}
.l-pc-namatennensui__copy {
  position: absolute;
  top: 1.5rem;
  right: 1rem;
  width: 8.28vw;
  height: 28.91vw;
}
.l-pc-namatennensui__copy img {
  width: 100%;
}
.l-pc-namatennensui__title {
  position: absolute;
  bottom: 3.13vw;
  left: 50%;
  transform: translateX(-50%);
  width: 60.78vw;
  max-width: 800px;
}

@media screen and (min-width: 1410px) {
  .l-pc-namatennensui {
    background: url(../images/top/kv-pc_hd.jpg);
    background-size: cover;
    background-position: top center;
  }
}
@media screen and (max-width: 1024px) {
  .l-pc-namatennensui {
    display: none;
  }
}
.l-sp-namatennensui-bg {
  filter: drop-shadow(-4px 0px 10px rgba(23, 67, 89, 0.5));
  background: #fff;
  width: 422px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 0;
}

.l-sp-namatennensui-frame {
  width: 422px;
  height: 100%;
  border: 16px solid #fff;
  border-radius: 2.5rem;
  background: transparent;
  pointer-events: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
}
.l-sp-namatennensui-frame::before {
  content: "";
  width: 100%;
  height: 16px;
  background: #fff;
  position: absolute;
  top: -1rem;
  left: 0;
}
.l-sp-namatennensui-frame::after {
  content: "";
  width: 100%;
  height: 16px;
  background: #fff;
  position: absolute;
  bottom: -1rem;
  left: 0;
}

@media screen and (max-width: 1024px) {
  .l-sp-namatennensui-bg,
  .l-sp-namatennensui-frame {
    display: none;
  }
}
.l-sp-namatennensui {
  width: 390px;
  position: relative;
  margin: 1rem 1rem 1rem auto;
  overflow-y: scroll;
  background: var(--bg-color);
}
.l-sp-namatennensui::before {
  content: "";
  width: 390px;
  height: calc(100% - 2rem);
  border-radius: 1.5rem;
  position: fixed;
  top: 1rem;
  bottom: 1rem;
  right: 1rem;
  box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  pointer-events: none;
  z-index: 4;
}
.l-sp-namatennensui__logo {
  width: 130px;
  margin: 0 auto;
}
.l-sp-namatennensui__header {
  position: relative;
  z-index: 8;
  padding: 1rem;
  height: 84px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 1rem 1rem;
  background: #fff;
  filter: drop-shadow(0px 4px 5px rgba(23, 67, 89, 0.2));
}

@media screen and (max-width: 1024px) {
  .p-index .l-sp-namatennensui__header {
    background: none;
    filter: none;
  }
  .l-sp-namatennensui {
    width: 100%;
    margin: 0;
  }
  .l-sp-namatennensui__header {
    display: flex;
  }
  .l-sp-namatennensui::before {
    content: none;
  }
}
.p-sp-namatennensui__kv {
  display: none;
}

@media screen and (max-width: 1024px) {
  .p-sp-namatennensui__kv {
    display: block;
    position: relative;
    min-height: 148.97vw;
    background: url(../images/top/kv-sp.jpg);
    background-size: cover;
    background-position: top center;
    margin-top: -84px;
    z-index: 1;
  }
  .p-sp-namatennensui__label {
    position: absolute;
    top: 5.13vw;
    left: 4.1vw;
    width: max(80px, 25.64vw);
  }
  .p-sp-namatennensui__copy {
    width: 12.05vw;
    height: 42.05vw;
    position: absolute;
    top: 20.77vw;
    right: 1.54vw;
  }
  .p-sp-namatennensui__copy img {
    width: 100%;
  }
  .p-sp-namatennensui__title {
    position: absolute;
    left: 50%;
    bottom: 8.21vw;
    transform: translateX(-50%);
    width: 87.18vw;
  }
}

.c-text-highlight {
  color: var(--primary-color);
  background: var(--focus-bg-color);
  font-weight: 500;
}
.c-text-highlight--normal {
  color: var(--primary-color);
  font-weight: 500;
  background: none;
}
.c-text-highlight--wh {
  color: var(--primary-color);
  font-weight: 500;
  background: #fff;
}

.c-btn {
  display: block;
  max-width: 390px;
  width: 100%;
  margin: 0 auto;
  padding: 1rem;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  background: var(--entry-color);
  position: relative;
  transition: background 0.6s;
}
.c-btn .c-btn-inner-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-btn .c-btn-inner-text span:nth-of-type(1) {
  font-size: 0.75rem;
  font-weight: 500;
}
.c-btn .c-btn-arrow {
  position: absolute;
  top: calc(50% - 14px);
  right: 1rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.c-btn .c-btn-arrow svg {
  width: 13px;
  transition: transform 0.6s ease, opacity 0.6s ease;
  color: #fff;
}
.c-btn:hover {
  color: var(--focus-bg-color);
  background: var(--secondary-color);
}
.c-btn:hover .c-btn-arrow svg {
  -webkit-animation: arrow-slide 0.6s ease forwards;
  animation: arrow-slide 0.6s ease forwards;
  color: var(--focus-bg-color);
}
.c-btn:hover .c-btn-blank svg {
  color: var(--focus-bg-color);
  transform: translateX(-2px);
}
.c-btn .c-btn-blank {
  position: absolute;
  top: calc(50% - 7px);
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-btn .c-btn-blank svg {
  width: 16px;
  transition: transform 0.6s ease;
}

.c-btn-thumb {
  display: grid;
  grid-template-columns: 41.72% 1fr;
}
.c-btn-thumb__img {
  overflow: hidden;
}
.c-btn-thumb__img img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: scale 0.6s;
}

.c-btn-thumb__text {
  display: grid;
  gap: 0.5rem;
}
.c-btn-thumb__text .c-copy {
  line-height: 1;
}
.c-btn-thumb__text .c-main {
  line-height: 1.6;
}
.c-btn-thumb .c-btn-arrow {
  position: absolute;
  top: calc(50% - 14px);
  right: 1rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.c-btn-thumb .c-btn-arrow svg {
  width: 13px;
  transition: transform 0.6s ease, opacity 0.6s ease;
  color: #fff;
}
.c-btn-thumb:hover img {
  scale: 1.1;
}
.c-btn-thumb:hover .c-btn-thumb__contents {
  color: var(--focus-bg-color);
  background: var(--secondary-color);
}
.c-btn-thumb:hover .c-btn-arrow svg {
  -webkit-animation: arrow-slide 0.6s ease forwards;
  animation: arrow-slide 0.6s ease forwards;
  color: var(--focus-bg-color);
}

@-webkit-keyframes arrow-slide {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  40% {
    transform: translateX(10px);
    opacity: 0;
  }
  41% {
    transform: translateX(-10px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes arrow-slide {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  40% {
    transform: translateX(10px);
    opacity: 0;
  }
  41% {
    transform: translateX(-10px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.c-btn-cta {
  display: block;
  max-width: 340px;
  width: 100%;
  margin: 0 auto;
  padding: 1.6rem 1rem 1.5rem;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  background: #f0a637;
  position: relative;
  z-index: 2;
  transition: all 0.6s;
}
.c-btn-cta:hover {
  color: #f0a637;
  background: #fff;
  filter: drop-shadow(0px 3px 2px rgba(140, 84, 0, 0.1));
}
.c-btn-cta__text {
  position: relative;
}
.c-btn-cta__copy {
  position: absolute;
  top: -2.4rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1;
  color: #f0a637;
  background: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  padding: 0.4rem 0.7rem;
  border-radius: 1rem;
  transition: all 0.6s;
}
.c-btn-cta .c-btn-arrow {
  position: absolute;
  top: calc(50% - 14px);
  right: 1rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.c-btn-cta .c-btn-arrow svg {
  width: 13px;
  transition: transform 0.6s ease, opacity 0.6s ease;
  color: #fff;
}
.c-btn-cta:hover img {
  scale: 1.1;
}
.c-btn-cta:hover .c-btn-cta__copy {
  filter: drop-shadow(0px 3px 2px rgba(140, 84, 0, 0.2));
}
.c-btn-cta:hover .c-btn-arrow svg {
  -webkit-animation: arrow-slide 0.6s ease forwards;
  animation: arrow-slide 0.6s ease forwards;
  color: #f0a637;
}

.c-page-content-title {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  color: var(--primary-color);
  background: #fff;
  border-radius: 0 0 0.25rem 0.25rem;
  padding: 1rem;
  border-top: 2px solid var(--primary-color);
  margin-bottom: 1.5rem;
}
.c-page-content-title:not(:first-of-type) {
  margin-top: 3.5rem;
}

.c-page-content-subtitle {
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  background: var(--primary-color);
  padding: 1.2rem 1.5rem;
  border-radius: 2rem 2rem 2rem 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

@media screen and (max-width: 599px) {
  .sp-only {
    display: block;
  }
  .pc_bg {
    display: none;
  }
  .c-btn-thumb__text .c-copy {
    font-size: 0.625rem;
  }
}

.c-btn-cta {
  display: block;
  max-width: 340px;
  width: 100%;
  margin: 0 auto;
  padding: 1.6rem 1rem 1.5rem;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  background: #f0a637;
  position: relative;
  z-index: 2;
  transition: all 0.6s;
}
.c-btn-cta:hover {
  color: #f0a637;
  background: #fff;
  filter: drop-shadow(0px 3px 2px rgba(140, 84, 0, 0.1));
}
.c-btn-cta__text {
  position: relative;
}
.c-btn-cta__copy {
  position: absolute;
  top: -2.4rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1;
  color: #f0a637;
  background: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  padding: 0.4rem 0.7rem;
  border-radius: 1rem;
  transition: all 0.6s;
}
.c-btn-cta .c-btn-arrow {
  position: absolute;
  top: calc(50% - 14px);
  right: 1rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.c-btn-cta .c-btn-arrow svg {
  width: 13px;
  transition: transform 0.6s ease, opacity 0.6s ease;
  color: #fff;
}
.c-btn-cta:hover img {
  scale: 1.1;
}
.c-btn-cta:hover .c-btn-cta__copy {
  filter: drop-shadow(0px 3px 2px rgba(140, 84, 0, 0.2));
}
.c-btn-cta:hover .c-btn-arrow svg {
  -webkit-animation: arrow-slide 0.6s ease forwards;
  animation: arrow-slide 0.6s ease forwards;
  color: #f0a637;
}
.c-footer-nav {
  padding: 0 1rem;
  z-index: 2;
  position: relative;
}
.c-footer-nav ul {
  border: 1px dashed #fff;
  border-radius: 0.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  max-width: 40vw;
  margin: 0 auto;
  padding: 0;
}
.c-footer-nav ul li:nth-of-type(1) {
  grid-area: 1/1/2/2;
}
.c-footer-nav ul li:nth-of-type(2) {
  grid-area: 1/2/2/3;
}
.c-footer-nav ul li:nth-of-type(3) {
  grid-area: 2/1/3/2;
}
.c-footer-nav ul li:nth-of-type(4) {
  grid-area: 2/2/3/3;
}
.c-footer-nav ul li:nth-of-type(5) {
  grid-area: 3/1/4/3;
  border-right: none !important;
}
.c-footer-nav ul li a {
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
  text-align: center;
  display: block;
  padding: 1rem;
  transition: color 0.6s;
}
.c-footer-nav ul li a:hover {
  color: var(--focus-bg-color);
}
.c-footer-nav ul li:not(:nth-child(n + 5)) {
  border-bottom: 1px dashed #fff;
}
.c-footer-nav ul li:nth-child(odd) {
  border-right: 1px dashed #fff;
}

.c-footer-logo {
  width: 200px;
  margin: 0 auto;
  z-index: 2;
  position: relative;
}

.c-footer-social {
  z-index: 2;
  position: relative;
  background: #fff;
  border-radius: 1.5rem 1.5rem 0 0;
  padding: 2.5rem 1.5rem 2rem;
  display: grid;
  gap: 2.5rem;
  filter: drop-shadow(0px -4px 5px rgba(23, 67, 89, 0.2));
}
.c-footer-social ul {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 0;
}
.c-footer-social ul li a {
  display: block;
  width: 60px;
  height: 60px;
  transition: opacity 0.6s;
}
.c-footer-social ul li a:hover {
  opacity: 0.7;
}
.c-footer-social .logo {
  width: 230px;
  margin: 0 auto;
  padding: 0;
}

.c-text-highlight {
  color: var(--primary-color);
  background: var(--focus-bg-color);
  font-weight: 500;
}
.c-text-highlight--normal {
  color: var(--primary-color);
  font-weight: 500;
  background: none;
}
.c-text-highlight--wh {
  color: var(--primary-color);
  font-weight: 500;
  background: #fff;
}

.c-btn {
  display: block;
  max-width: 390px;
  width: 100%;
  margin: 0 auto;
  padding: 1rem;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  background: var(--entry-color);
  position: relative;
  transition: background 0.6s;
}
.c-btn .c-btn-inner-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-btn .c-btn-inner-text span:nth-of-type(1) {
  font-size: 0.75rem;
  font-weight: 500;
}
.c-btn .c-btn-arrow {
  position: absolute;
  top: calc(50% - 14px);
  right: 1rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.c-btn .c-btn-arrow svg {
  width: 13px;
  transition: transform 0.6s ease, opacity 0.6s ease;
  color: #fff;
}
.c-btn:hover {
  color: var(--focus-bg-color);
  background: var(--secondary-color);
}
.c-btn:hover .c-btn-arrow svg {
  -webkit-animation: arrow-slide 0.6s ease forwards;
  animation: arrow-slide 0.6s ease forwards;
  color: var(--focus-bg-color);
}
.c-btn:hover .c-btn-blank svg {
  color: var(--focus-bg-color);
  transform: translateX(-2px);
}
.c-btn .c-btn-blank {
  position: absolute;
  top: calc(50% - 7px);
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-btn .c-btn-blank svg {
  width: 16px;
  transition: transform 0.6s ease;
}

.c-btn-thumb {
  display: grid;
  grid-template-columns: 41.72% 1fr;
}
.c-btn-thumb__img {
  overflow: hidden;
}
.c-btn-thumb__img img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: scale 0.6s;
}
.c-btn-thumb__contents {
  position: relative;
  color: #fff;
  font-weight: bold;
  background: var(--primary-color);
  padding: 1.5rem 2.5rem 1.5rem 1rem;
  transition: all 0.6s;
  display: flex;
  align-items: center;
}
.c-btn-thumb__text {
  display: grid;
  gap: 0.5rem;
}
.c-btn-thumb__text .c-copy {
  font-size: 0.625rem;
  line-height: 1;
}
.c-btn-thumb__text .c-main {
  line-height: 1.6;
}
.c-btn-thumb .c-btn-arrow {
  position: absolute;
  top: calc(50% - 14px);
  right: 1rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.c-btn-thumb .c-btn-arrow svg {
  width: 13px;
  transition: transform 0.6s ease, opacity 0.6s ease;
  color: #fff;
}
.c-btn-thumb:hover img {
  scale: 1.1;
}
.c-btn-thumb:hover .c-btn-thumb__contents {
  color: var(--focus-bg-color);
  background: var(--secondary-color);
}
.c-btn-thumb:hover .c-btn-arrow svg {
  -webkit-animation: arrow-slide 0.6s ease forwards;
  animation: arrow-slide 0.6s ease forwards;
  color: var(--focus-bg-color);
}
footer {
  padding-top: 3rem;
  position: relative;
  background: var(--entry-color);
  display: grid;
  gap: 2rem;
  z-index: 1;
  margin-top: -1.5rem;
}
footer::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(/pw/namatennensui/comic/images/noise.png) repeat;
  background-size: 100px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 599px) {
  .c-footer-nav ul {
    max-width: 100%;
  }
  .c-footer-social ul li a {
    width: 40px;
    height: 40px;
  }
  .c-footer-social ul {
    gap: 0.5rem;
  }
  .c-footer-social .logo {
    width: 160px;
  }
}
@media screen and (max-width: 380px) {
  .c-footer-nav ul li a {
    font-size: 0.6rem;
  }
  .c-btn-cta {
    max-width: 300px;
  }
}
/*# sourceMappingURL=common.css.map */
