@charset "UTF-8";
/*===============================
reset
================================*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: justify;
}

html, body {
  overflow: hidden; /* デフォルトのスクロールバーを非表示 */
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font-size: 100%;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

button {
  padding: 0;
  background: transparent;
  border: none;
  outline: none;
}

nav ul {
  list-style: none;
}

ol,
ul {
  list-style: none;
}

a {
  margin: 0;
  padding: 0;
  color: #212121;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

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

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table, td, th {
  border-collapse: collapse;
  border-spacing: 0;
}

textarea {
  resize: vertical;
}

/*===============================
base
================================*/
html {
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  overflow: auto;
  height: 100%;
}

body {
  position: relative;
  z-index: 100;
  font-size: clamp(0.813rem, 0.75rem + 0.27vw, 1rem);
  background: #333;
}

.wrap {
  width: calc(100% - 60px);
  max-width: 1200px;
  margin-inline: auto;
}

.palmtop {
  display: block !important;
}
@media screen and (min-width: 1024px) {
  .palmtop {
    display: none !important;
  }
}

.laptop {
  display: none !important;
}
@media screen and (min-width: 1024px) {
  .laptop {
    display: block !important;
  }
}

.sclNone {
  overflow: hidden;
}

/*===============================
layout
================================*/
/*
header
================================*/
/*
main
================================*/
/*
footer
================================*/
/*
loading
================================*/
/*===============================
module
================================*/
/*
title-style
================================*/
/*
btn-style
================================*/
/*
page-style
================================*/
/*
news-style
================================*/
/*
space
================================*/
.pad-tb {
  padding: 50px 0;
}

.pad-t {
  padding-top: 50px;
}

.pad-b {
  padding-bottom: 50px;
}

/*
align
================================*/
.left {
  text-align: left;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

/*
font
================================*/
.ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.en {
  font-family: "Inter", serif;
}

/*
font-weight
================================*/
/*
color
================================*/
/*
paragraph
================================*/
.ps p {
  line-height: 2em;
}
.ps p:not(:first-child) {
  margin-top: 15px;
}

/*
animation
================================*/
.anim-text span {
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.anim-text-slideIn span {
  -webkit-transform: translateY(0) !important;
          transform: translateY(0) !important;
}

.anim-blur {
  -webkit-filter: blur(10px);
          filter: blur(10px);
  opacity: 0;
  -webkit-transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.anim-blur-visible {
  -webkit-filter: blur(0);
          filter: blur(0);
  opacity: 1;
}

.anim-line:before {
  -webkit-filter: blur(10px);
          filter: blur(10px);
  opacity: 0;
  -webkit-transition: all 0.55s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.55s cubic-bezier(0.25, 1, 0.5, 1);
}

.anim-line-visible:before {
  -webkit-filter: blur(0);
          filter: blur(0);
  opacity: 0.2 !important;
}