/* =============================================
   BASE & RESET
   ============================================= */

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

body {
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', "Yu Mincho", YuMincho, sans-serif;
  font-weight: 400;
  margin: 0;
  padding: 0;
  color: #16121a;
  line-height: 1.5;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  background: #fff;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: #C21E86; }
p { font-size: 15px; margin-bottom: 20px; line-height: 2; }
h2 { font-size: 24px; }
em { font-style: normal; }
ul { list-style: none; padding: 0; }

/* =============================================
   UTILITIES
   ============================================= */

.ta-c { text-align: center; }
.ta-l { text-align: left; }
.ta-r { text-align: right; }
.pc { display: block !important; }
.sp { display: none !important; }

.wrapper { max-width: 1200px; width: 100%; margin: auto; }
.flex { display: flex; justify-content: space-between; flex-wrap: wrap; }
.flex.middle { align-items: center; }
.box { width: 50%; }
.col3 .box { width: 33%; }
.section { padding: 120px 0; position: relative; }
.w-box p:last-child { margin-bottom: 0; }

/* =============================================
   SCROLL TEXT ANIMATION
   ============================================= */

.scroll-text {
  font-size: 240px;
  color: rgba(194, 30, 134, .1);
  display: inline-block;
  padding-right: 100px;
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  animation: scroll-text 60s linear infinite;
  pointer-events: none;
}

.scroll-text.right { left: auto; right: 0; padding: 0; }

@keyframes scroll-text {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media screen and (max-width: 767px) {
  .pc { display: none !important; }
  .sp { display: block !important; }
  .wrapper { padding: 0 5.625vw; }
  .section { padding: 40px 0; overflow: hidden; }
  .col3 .box { width: 100%; }
  p { font-size: 14px; }
  .scroll-text { font-size: 80px; }
}
