@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1:wght@100..900&display=swap");
/* fontサイズ・バリエーション */
/* PC */
div,
footer,
img,
li,
nav,
p,
section,
table,
table tr td,
table tr th,
ul {
  box-sizing: border-box;
}

body {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  line-height: 1.8;
  word-break: break-word;
  color: #fff;
  letter-spacing: 0.09em;
  overflow-x: hidden;
  opacity: 0;
  background-color: #000;
}

img {
  max-width: 100%;
}

/* スマホ画像保存禁止 */
img {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  user-select: none;
  vertical-align: bottom;
}

#img_wrap {
  position: relative;
}

#img_wrap::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/toumei.png);
  background-position: top left;
  background-size: 100% 100%;
}

#img_wrap img {
  display: block;
  margin: auto;
}

a {
  color: #fff;
  text-decoration: underline;
  transition: 0.2s;
}
a:active, a:hover {
  color: #9b80ff;
}

/* リンクボタン */
a.btn1 {
  font-size: 1.3em;
  color: #fff;
  letter-spacing: 0.1em;
  border-radius: 32px;
  padding: 16px;
  text-decoration: none;
  background-image: linear-gradient(to bottom, #4b3ba7 0%, #ffff20 100%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.05s;
}

a.btn1:hover {
  transform: translate(0, 2px);
  color: #fff;
  background-image: linear-gradient(to bottom, #fa8313 0%, #e93600 100%);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
  opacity: 1;
}

a.btn2 {
  display: inline-block;
  transform: translate(0, 0);
  font-size: 1.3em;
  color: #fff;
  letter-spacing: 0.1em;
  border-radius: 32px;
  padding: 16px;
  text-decoration: none;
  background-color: #fff;
  border: 2px solid #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.05s;
}

a.btn2:hover {
  transform: translate(0, 2px);
  color: #9b80ff;
  background-color: #fffefe;
  border: 2px solid #9b80ff;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
  opacity: 1;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: all 0.05s;
}

/* fontサイズ・カラーバリエーション */
.bold {
  font-weight: 700;
}

.italic {
  font-style: italic;
  font-weight: 800;
}

.red {
  color: #4e33e9;
}

/* 基本id、横幅指定など */
#wrapper {
  margin: 0 auto;
}

#wrapper img {
  max-width: 100%;
}

article {
  margin: 0 auto;
  padding: 5% 3%;
  max-width: 1280px;
}

/* ふわっと表示させる用 */
.js-load_effect {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: all 1s;
}
.js-load_effect.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.js-load_effect_xl {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50px);
  transition: all 1s;
}
.js-load_effect_xl.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0px);
}

.js-load_effect_xr {
  opacity: 0;
  visibility: hidden;
  transform: translateX(50px);
  transition: all 1s;
}
.js-load_effect_xr.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0px);
}

/* メインビジュアル */
.mainVisual {
  display: grid;
  place-content: center;
}

.comingsoon {
  font-size: 2.2em;
}

/* フッター */
footer {
  background: #ddd;
  padding: 2em 0;
}
footer .footerContent p {
  font-size: 0.8em;
}
footer .footerContent a {
  color: #fff;
}
footer .footerContent a:hover {
  color: #9b80ff;
}

/* flex */
.flexContent {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.flexContentR {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}

.flexInner1 {
  padding: 8px;
}

.flexInner2 {
  padding: 8px;
}/*# sourceMappingURL=common.css.map */