/* @docs
label: Core Remedies
version: 0.1.0-beta.2
note: |
  These remedies are recommended
  as a starter for any project.
category: file
*/
/* @docs
label: Box Sizing
note: |
  Use border-box by default, globally.
category: global
*/
*, ::before, ::after {
  box-sizing: border-box;
}

/* @docs
label: Line Sizing
note: |
  Consistent line-spacing,
  even when inline elements have different line-heights.
links:
  - https://drafts.csswg.org/css-inline-3/#line-sizing-property
category: global
*/
html {
  line-sizing: normal;
}

/* @docs
label: Body Margins
note: |
  Remove the tiny space around the edge of the page.
category: global
*/
body {
  margin: 0;
}

/* @docs
label: Hidden Attribute
note: |
  Maintain `hidden` behaviour when overriding `display` values.
  category: global
*/
[hidden] {
  display: none;
}

/* @docs
label: Heading Sizes
note: |
  Switch to rem units for headings
category: typography
*/
h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.17rem;
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: 0.83rem;
}

h6 {
  font-size: 0.67rem;
}

/* @docs
label: H1 Margins
note: |
  Keep h1 margins consistent, even when nested.
category: typography
*/
h1 {
  margin: 0.67em 0;
}

/* @docs
label: Pre Wrapping
note: |
  Overflow by default is bad...
category: typography
*/
pre {
  white-space: pre-wrap;
}

/* @docs
label: Horizontal Rule
note: |
  1. Solid, thin horizontal rules
  2. Remove Firefox `color: gray`
  3. Remove default `1px` height, and common `overflow: hidden`
category: typography
*/
hr {
  border-style: solid;
  border-width: 1px 0 0;
  color: inherit;
  height: 0;
  overflow: visible;
}

/* @docs
label: Responsive Embeds
note: |
  1. Block display is usually what we want
  2. The `vertical-align` removes strange space-below in case authors overwrite the display value
  3. Responsive by default
  4. Audio without `[controls]` remains hidden by default
category: embedded elements
*/
img, svg, video, canvas, audio, iframe, embed, object {
  display: block;
  vertical-align: middle;
  max-width: 100%;
}

audio:not([controls]) {
  display: none;
}

/* @docs
label: Responsive Images
note: |
  These new elements display inline by default,
  but that's not the expected behavior for either one.
  This can interfere with proper layout and aspect-ratio handling.
  1. Remove the unnecessary wrapping `picture`, while maintaining contents
  2. Source elements have nothing to display, so we hide them entirely
category: embedded elements
*/
picture {
  display: contents;
}

source {
  display: none;
}

/* @docs
label: Aspect Ratios
note: |
  Maintain intrinsic aspect ratios when `max-width` is applied.
  `iframe`, `embed`, and `object` are also embedded,
  but have no intrinsic ratio,
  so their `height` needs to be set explicitly.
category: embedded elements
*/
img, svg, video, canvas {
  height: auto;
}

/* @docs
label: Audio Width
note: |
  There is no good reason elements default to 300px,
  and audio files are unlikely to come with a width attribute.
category: embedded elements
*/
audio {
  width: 100%;
}

/* @docs
label: Image Borders
note: |
  Remove the border on images inside links in IE 10 and earlier.
category: legacy browsers
*/
img {
  border-style: none;
}

/* @docs
label: SVG Overflow
note: |
  Hide the overflow in IE 10 and earlier.
category: legacy browsers
*/
svg {
  overflow: hidden;
}

/* @docs
label: HTML5 Elements
note: |
  Default block display on HTML5 elements.
  For oldIE to apply this styling one needs to add some JS as well (i.e. `document.createElement("main")`)
links:
  - https://www.sitepoint.com/html5-older-browsers-and-the-shiv/
category: legacy browsers
*/
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

/* @docs
label: Checkbox & Radio Inputs
note: |
  1. Add the correct box sizing in IE 10
  2. Remove the padding in IE 10
category: legacy browsers
*/
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

/*---------------------------------
  variable
---------------------------------*/
/* layout */
/* color */
/*---------------------------------
  mixin
---------------------------------*/
html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  position: relative;
  font-size: 1.6rem;
  word-break: break-all;
  letter-spacing: 0.03em;
  color: #231815;
}
@media (min-width: 960px) {
  body {
    font-size: 2rem;
  }
}

img {
  display: inline;
  max-width: 100%;
  pointer-events: none;
  user-drag: none;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, figure {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

em {
  font-style: normal;
}

@media (min-width: 960px) {
  a:hover {
    opacity: 0.7;
    transition: all 0.3s;
  }
}

.sp {
  display: block;
}
@media (min-width: 768px) {
  .sp {
    display: none;
  }
}

.tab {
  display: none;
}
@media (min-width: 768px) {
  .tab {
    display: block;
  }
}

.tab-only {
  display: none;
}
@media (min-width: 768px) {
  .tab-only {
    display: block;
  }
}
@media (min-width: 960px) {
  .tab-only {
    display: none;
  }
}

.tab-none {
  display: block;
}
@media (min-width: 768px) {
  .tab-none {
    display: none;
  }
}
@media (min-width: 960px) {
  .tab-none {
    display: block;
  }
}

.pc {
  display: none;
}
@media (min-width: 960px) {
  .pc {
    display: block;
  }
}

.pc-none {
  display: block;
}
@media (min-width: 960px) {
  .pc-none {
    display: none;
  }
}

.desktop {
  display: none;
}
@media (min-width: 1366px) {
  .desktop {
    display: block;
  }
}

.desktop-none {
  display: block;
}
@media (min-width: 1366px) {
  .desktop-none {
    display: none;
  }
}

/* contents */
/*---------------------------------
  footer
---------------------------------*/
#footer {
  text-align: center;
  font-size: 1.4rem;
  padding: 40px 0;
  background-color: #F8FCFE;
}

/*---------------------------------
  header
---------------------------------*/
/*---------------------------------
  hdg
---------------------------------*/
.ttl.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
}
.ttl.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.ttl h2 {
  text-align: center;
  font-size: 2.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .ttl h2 {
    font-size: 3.2rem;
  }
}
@media (min-width: 960px) {
  .ttl h2 {
    font-size: 5rem;
  }
}
.ttl h2 span {
  display: block;
  font-size: 1.6rem;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .ttl h2 span {
    font-size: 1.5rem;
  }
}
@media (min-width: 960px) {
  .ttl h2 span {
    font-size: 2rem;
  }
}

/*---------------------------------
  loading
---------------------------------*/
#loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
}
#loading.is-show {
  opacity: 1;
  transition: opacity 0.6s;
}
#loading.is-hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s;
}
#loading #loading_item {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  transition: opacity 0.8s, -webkit-transform 0.6s;
  transition: opacity 0.8s, transform 0.6s;
  transition: opacity 0.8s, transform 0.6s, -webkit-transform 0.6s;
}
#loading #loading_item span {
  display: block;
  width: 100px;
}
@media (min-width: 960px) {
  #loading #loading_item span {
    width: 200px;
  }
}
#loading.item-in #loading_item {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, transform 0.6s;
  transition: opacity 0.6s, transform 0.6s, -webkit-transform 0.6s;
}
#loading.item-leave #loading_item {
  opacity: 0;
  -webkit-transform: translateY(-40px);
          transform: translateY(-40px);
  transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, transform 0.6s;
  transition: opacity 0.6s, transform 0.6s, -webkit-transform 0.6s;
}

#main {
  background-color: #F8FCFE;
}

/*---------------------------------
  kv
---------------------------------*/
#kv {
  background-color: #C7E8FA;
  text-align: center;
  height: 590px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
@media (min-width: 960px) {
  #kv {
    height: auto;
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
#kv .kv__inner {
  margin-left: 20px;
  margin-right: 20px;
}
@media (min-width: 960px) {
  #kv .kv__inner {
    width: 66.67%;
    margin: 0 auto;
  }
}
#kv .kv__inner img {
  width: 100%;
}
#kv .kv__inner .item01 {
  width: 90%;
  margin: 0 auto 20px;
}
@media (min-width: 960px) {
  #kv .kv__inner .item01 {
    margin: 0 auto 30px;
  }
}
@media (min-width: 1366px) {
  #kv .kv__inner .item01 {
    width: 80%;
  }
}
#kv .kv__inner .item01.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 2s;
  transition-delay: 3s;
}
#kv .kv__inner .item01.js-anime.is-active {
  opacity: 1;
  visibility: visible;
}
#kv .kv__inner .item02 {
  width: 50%;
  margin: 0 auto 10px;
}
@media (min-width: 960px) {
  #kv .kv__inner .item02 {
    width: 40%;
    margin: 0 auto 30px;
  }
}
@media (min-width: 960px) {
  #kv .kv__inner .item03 {
    width: 100%;
  }
}
#kv .kv__inner .item04 {
  width: 65%;
  margin: 0 auto 5px;
}
@media (min-width: 960px) {
  #kv .kv__inner .item04 {
    margin: 0 auto 20px;
  }
}
@media (min-width: 1366px) {
  #kv .kv__inner .item04 {
    width: 50%;
  }
}

/*---------------------------------
  sns
---------------------------------*/
#sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #C7E8FA;
  gap: 20px;
  padding-bottom: 30px;
}
@media (min-width: 960px) {
  #sns {
    gap: 20px;
    padding-bottom: 30px;
  }
}
#sns a {
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 0.5rem;
  border-radius: 4px;
  color: #0096D9;
  text-decoration: none;
}
@media (min-width: 960px) {
  #sns a {
    font-size: 1.6rem;
    padding: 1rem;
    border-radius: 6px;
  }
}
#sns a.link__x .icon {
  background-color: #000;
  padding: 10px;
}
#sns a .icon {
  display: block;
  width: 60px;
  height: 60px;
}
@media (min-width: 960px) {
  #sns a .icon {
    margin-right: 0.5rem;
  }
}
#sns a .txt {
  display: none;
}
@media (min-width: 960px) {
  #sns a .txt {
    display: inline-block;
  }
}

/*---------------------------------
  comment
---------------------------------*/
#comment {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (min-width: 960px) {
  #comment {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}
#comment .comment__inner {
  max-width: 1080px;
  padding: 0 15px;
}
@media (min-width: 960px) {
  #comment .comment__inner {
    margin: 0 auto;
  }
}
@media (min-width: 960px) {
  #comment .ttl {
    margin-bottom: 100px;
  }
}
#comment h3 {
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 960px) {
  #comment h3 {
    margin-bottom: 50px;
  }
}
#comment h3.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
}
#comment h3.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
          transform: scale(1);
}
#comment h3 span {
  display: inline-block;
  background-color: #0096D9;
  color: #fff;
  padding: 0.3rem 2rem;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  #comment h3 span {
    font-size: 1.8rem;
  }
}
@media (min-width: 960px) {
  #comment h3 span {
    font-size: 2.2rem;
  }
}
#comment .items {
  margin-bottom: 100px;
}
#comment .items:last-of-type {
  margin-bottom: 0;
}
#comment .items .item {
  margin-bottom: 50px;
}
#comment .items .item:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 960px) {
  #comment .items .item {
    margin-bottom: 80px;
  }
}
@media (min-width: 1366px) {
  #comment .items .item {
    margin-bottom: 120px;
  }
}
#comment .items .item.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
#comment .items .item.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media (min-width: 960px) {
  #comment .items .item .group {
    display: flex;
  }
}
#comment .items .item .ph {
  margin-bottom: 20px;
  text-align: center;
  flex: none;
}
@media (min-width: 768px) {
  #comment .items .item .ph {
    width: 50%;
    margin: 0 auto 20px;
  }
}
@media (min-width: 960px) {
  #comment .items .item .ph {
    width: 280px;
    margin-right: 40px;
  }
}
#comment .items .item h4 {
  color: #0096D9;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
@media (min-width: 960px) {
  #comment .items .item h4 {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
}
#comment .items .item h4 .name {
  font-size: 2.4rem;
}
@media (min-width: 960px) {
  #comment .items .item h4 .name {
    font-size: 3.6rem;
  }
}
#comment .items .item h4 .sub {
  font-size: 1.8rem;
}
@media (min-width: 960px) {
  #comment .items .item h4 .sub {
    font-size: 2.4rem;
  }
}
#comment .items .item p {
  line-height: 1.8;
}
#comment .items .item p:not(:last-of-type) {
  margin-bottom: 2.8rem;
}

#billing {
  text-align: center;
  line-height: 2;
  background-color: #F8FCFE;
  padding-bottom: 40px;
}
#billing p.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
#billing p.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#billing .billing__inner {
  padding: 0 15px;
}
@media (min-width: 1366px) {
  #billing .txt__cast {
    font-size: 3rem;
  }
}
#billing .txt__staff {
  margin-top: 2rem;
  font-size: 1.2rem;
}
@media (min-width: 960px) {
  #billing .txt__staff {
    font-size: 1.8rem;
  }
}
@media (min-width: 1366px) {
  #billing .txt__staff {
    font-size: 2.4rem;
  }
}
#billing .distribution {
  margin-top: 2rem;
  font-size: 1.2rem;
}
@media (min-width: 960px) {
  #billing .distribution {
    font-size: 1.6rem;
  }
}
@media (min-width: 1366px) {
  #billing .distribution {
    font-size: 2rem;
  }
}