@charset "utf-8";
/* CSS Document */

html,
body,
h1,
h2,
h3,
h4,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
article,
header,
footer,
aside,
figure,
figcaption,
nav,
section {
  display: block;
}
body {
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: "SimHei", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif;
  background-color: #040a0a;
}
* {
  font-family: SimHei;
}
ol,
ul {
  list-style: none;
  list-style-type: none;
}
a {
  text-decoration: none;
}
br.forSP {
  display: none;
}
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /*aspect-ratio: 16 / 9;*/
  z-index: 20;
}
.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.postPage #page_top {
  width: 40px;
  height: 40px;
  position: fixed;
  right: 20px;
  bottom: -50px;
  background: #555;
  opacity: 0.6;
  border-radius: 10%;
  z-index: 100;
}

.postPage #page_top a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  text-decoration: none;
}

.postPage #page_top a::before {
  content: "";
  background-image: url(../images/arrow_top.svg);
  background-position: center center;
  background-repeat: no-repeat;
  color: #fff;
  position: absolute;
  width: 36px;
  height: 36px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
.grayout {
  color: #555;
}
.wrapper {
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}
.wrapper::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/background_top_pc.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  animation: 4s backAnime ease-in-out;
  animation-fill-mode: forwards;
  transform-origin: center;
}
@keyframes backAnime {
  0% {
    transform: scale(1.05, 1) rotate(2deg);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}
.wrapper.concept::after {
  background-image: url("../images/sub@2x.webp");
  background-position: center top;
}
.wrapper.program::after {
  background-image: url("../images/sub@2x.webp");
  background-position: center top;
}
.wrapper.postPage::after {
  background-image: url("../images/sub@2x.webp");
  background-position: center top;
  animation: none;
}
.wrapper.panel::after {
  background-image: url("../images/sub@2x.webp");
  background-position: center top;
  animation: none;
}
.wrapper.auto {
  width: auto;
  height: auto;
}
.menu a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  padding: 5px 4vw;
  position: relative;
  z-index: 10;
  min-width: 354px;
}
.container {
  position: relative;
  z-index: 2;
}
.header {
  position: relative;
  height: 100px;
}
.header .inner {
  max-width: 58vw;
  width: 96%;
  padding-top: 3vw;
  margin: 0 auto;
}
.header.day .inner {
  max-width: 90vw;
  width: 96%;
  padding-top: 3vw;
  margin: 0 auto;
}
.header .inner .menu {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .inner .instagram {
  position: absolute;
  top: 3vw;
  right: 3vw;
  width: 30px;
  height: 30px;
  background-image: url("../images/insta.svg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  transition: 0.3s all ease;
}
.header .inner .home {
  position: absolute;
  top: 3vw;
  left: 3vw;
  width: 30px;
  height: 30px;
  background-image: url("../images/home.svg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  transition: 0.3s all ease;
}
.header .inner .instagram:hover,
.header .inner .home:hover {
  opacity: 0.7;
}
.menu a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  padding: 5px 3vw;
  position: relative;
  z-index: 10;
}

.menu a::before {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  /*背景の形状*/
  width: 0;
  height: 100%;
  background: #3e3e3e;
  mix-blend-mode: hard-light;
  /*アニメーションの指定*/
  transition: all 0.5s;
  opacity: 0; /*はじめは透過0*/
}
.menu a:hover::before {
  /*背景の形状*/
  width: 100%; /*横幅を伸ばす*/
  opacity: 0.6; /*不透明に*/
}

.menu a::after {
  position: absolute;
  content: "";
  width: 0.8px;
  height: 100%;
  right: 0;
  bottom: 0;
  background-color: #fff;
  transition: 0.3s all ease;
}
.menu a:hover::after {
  position: absolute;
  content: "";
  width: 0.8px;
  height: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
}
.menu a:last-child::after {
  content: none;
}
.menu a span {
  display: block;
  font-size: 1.1vw;
  letter-spacing: 0.2vw;
}
.menu a span.ja {
  font-size: 1.1vw;
  margin-bottom: 0.5vw;
}
.menu a span.ko {
  font-size: 1.1vw;
  margin-bottom: 0.5vw;
  font-family: "Noto Sans KR";
}
.wrapper .left {
  position: absolute;
  width: 11vw;
  height: 70vh;
  top: 12vh;
  left: 1vw;
  background-image: url("../images/ONLINE.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  filter: blur(2px);
  animation: fadeTop 2s ease-in;
  animation-fill-mode: forwards;
  opacity: 0;
  z-index: 10;
}
.wrapper.auto .left {
  top: 10vw;
  bottom: auto;
  animation: none;
  opacity: 1;
  z-index: 1;
}
.wrapper.auto .right {
  top: 10vw;
  bottom: auto;
  animation: none;
  opacity: 1;
  z-index: 1;
}
@keyframes fadeTop {
  0% {
    top: 12vh;
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    top: 15vh;
    opacity: 1;
  }
}
.wrapper .right {
  position: absolute;
  width: 11vw;
  height: 70vh;
  bottom: 12vh;
  right: 1vw;
  background-image: url("../images/OFFLINE.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  filter: blur(2px);
  animation: fadeBottom 2s ease-in;
  animation-fill-mode: forwards;
  opacity: 0;
  z-index: 10;
}
@keyframes fadeBottom {
  0% {
    bottom: 12vh;
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    bottom: 15vh;
    opacity: 1;
  }
}
.mainArea {
  position: relative;
}
.middle {
  text-align: center;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  height: calc(100vh - 100px);
}
.wrapper.auto .mainArea {
  max-width: 960px;
  width: 96%;
  margin: 0 auto;
}
.postBtn {
  margin-top: auto;
  margin-bottom: 20px;
}
.postPage .postBtn {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.postBtn p {
  font-size: 0.65em;
  line-height: 1.25;
  text-align: left;
}
.logo {
  padding-top: 100px;
  margin-top: auto;
  margin-bottom: auto;
}
.logo h2 {
  width: 12vw;
  height: 0;
  padding-top: 4%;
  background-image: url("../images/milbon.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  margin: 0 auto 2.5vw auto;
}
.logo h1 {
  width: 28vw;
  height: 0;
  padding-top: 34%;
  margin-bottom: 1vw;
  position: relative;
  margin: 0 auto 2vw auto;
}
.logo h1 span {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  background-image: url("../images/DA.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  top: 0;
}
.logo h1 span.DA01 {
  opacity: 100%;
}
.logo h1 span.DA02 {
  opacity: 65%;
  animation: left5 0.5s ease-in-out;
  animation-fill-mode: forwards;
  animation-delay: 1s;
}
@keyframes left5 {
  0% {
    left: 0;
  }
  100% {
    left: 5%;
  }
}
.logo h1 span.DA03 {
  opacity: 30%;
  animation: left10 1s ease-in-out;
  animation-fill-mode: forwards;
  animation-delay: 1.5s;
}
@keyframes left10 {
  0% {
    left: 0;
  }
  100% {
    left: 10%;
  }
}
.logo h1 span.DA04 {
  opacity: 15%;
  animation: left15 1.5s ease-in-out;
  animation-fill-mode: forwards;
  animation-delay: 2s;
}
@keyframes left15 {
  0% {
    left: 0;
  }
  100% {
    left: 15%;
  }
}
.logo p {
  width: 11vw;
  height: 0;
  padding-top: 9%;
  background-image: url("../images/link.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  margin: 0 auto 0 auto;
}
h3 {
  width: 11vw;
  height: 0;
  padding-top: 7%;
  background-image: url("../images/020_set.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  margin: 0 auto 0 auto;
}
.postBtn {
  text-align: center;
}
.postPage .postBtn a {
  margin: 20px auto 10px;
}
.postBtn a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-width: 300px;
  padding: 1vw;
  border: 1px solid #fff;
  color: #fff;
  position: relative;
  margin-bottom: 8px;
}
.postBtn a::after {
  display: block;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #3e3e3e;
  mix-blend-mode: multiply;
  opacity: 0.4;
}
.postBtn a:hover::after {
  display: block;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #3e3e3e;
  opacity: 0.4;
  animation: btnBack 1s ease;
}
@keyframes btnBack {
  0% {
  }
  50% {
    right: 0;
    left: 100%;
    width: 0;
    opacity: 1;
  }
  51% {
    left: 0;
    right: 100%;
    width: 0%;
  }
  100% {
    left: 0;
    right: 0;
    width: 100%;
    opacity: 0.4;
  }
}
.postBtn a::before {
  display: block;
  position: absolute;
  content: "";
  left: 20px;
  width: 12px;
  height: 40px;
  top: calc(50% - 20px);
  background-image: url("../images/arrow.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  transition: 0.3s all ease-in;
}
.postBtn a:hover::before {
  left: 25px;
}
.postBtn a span {
  display: block;
  position: relative;
  z-index: 10;
  padding: 12px 0;
}
.postBtn a span.ja {
  font-size: 1.2em;
  letter-spacing: 0.2em;
  margin-bottom: 4px;
}
.postBtn a span.ko {
  font-size: 1.4em;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  font-family: "Noto Sans KR";
}
.middle .time {
  color: #fff;
  font-size: 0.9em;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-family: "Noto Sans KR";
  margin-bottom: 20px;
  margin-top: -20px;
}
.wrapper.auto .mainArea {
  padding-top: 100px;
  text-align: center;
  color: #fff;
}
.wrapper.auto .mainArea h1 {
  font-size: 1.5em;
  padding-bottom: 20px;
  letter-spacing: 2px;
  margin-bottom: 60px;
}
.wrapper.auto.concept .mainArea h1 {
  margin-bottom: 20px;
}
.wrapper.program .mainArea h1 {
  font-size: 1.5em;
  padding-bottom: 0px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.wrapper.concept .mainArea h2 {
  font-size: 5em;
  font-weight: 900;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  margin: 20px auto 10px;
  transform: scale(1, 1.05);
}
.wrapper.concept .mainArea h3 {
  width: 80%;
  max-width: 700px;
  height: 0;
  padding-top: 5%;
  margin: 10px auto 80px;
  background-image: url("../images/concept_lead.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  text-shadow: 2px 2px 2px #000;
}
.wrapper.concept .mainArea .lead {
  font-size: 1.23em;
  line-height: 1.5;
}
.wrapper.concept .mainArea .lead p {
  margin-bottom: 2em;
}
.wrapper.concept .mainArea .lead p.title {
  margin-top: 20px;
  font-size: 1.75em;
  font-weight: bold;
  font-style: italic;
  font-family: "Roboto", sans-serif;
  margin-bottom: 0.25em;
}
.wrapper.concept .o2o {
  font-size: 6vw;
  margin: 8%;
  opacity: 0.2;
  filter: blur(1px);
  font-weight: 100;
  letter-spacing: 0.3vw;
  font-family: "Roboto", sans-serif;
  text-align: center;
}
.wrapper.program .mainArea p.h1Ko {
  margin-bottom: 60px;
}

.wrapper .programArea {
  padding-bottom: 80px;
}
.wrapper .programArea.-mb20 {
  padding-bottom: 20px;
  margin-top: 60px;
}
.wrapper .infoArea {
  padding-bottom: 80px;
}
.wrapper .infoArea .flex {
  display: flex;
  margin-bottom: 80px;
}
.wrapper .infoArea .flex .flexLeft {
  width: 60%;
  text-align: left;
  font-size: 1.1em;
  padding-right: 6%;
}
.wrapper .infoArea .flex .flexLeft.-w100 {
  width: 94%;
  text-align: left;
  font-size: 1.1em;
  padding-right: 6%;
  margin: 0 auto;
}
.wrapper .infoArea .flex .flexRight {
  width: 38%;
}
.wrapper .infoArea .flex .flexRight img {
  width: 100%;
}
.wrapper .infoArea .flex .unit {
  margin-bottom: 30px;
  line-height: 1.5;
}
.flex .unit .ttl {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 2px dotted #fff;
  font-size: 1.1em;
}
.wrapper .infoArea .flex .unit:first-child {
  margin-bottom: 60px;
}
.flex .unit img {
  max-width: 240px;
}
.flex .unit .ttlBig {
  margin: 0px 0 15px;
  font-size: 1.75em;
  font-style: italic;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
}
.flex .unit .bill {
  font-size: 1.1em;
}
.flex .unit p {
  font-size: 0.9em;
  margin-bottom: 4px;
}
.flex .unit p a {
  color: #70d9c4;
}
.flex .unit th {
  background-color: rgb(70 70 70 / 20%);
  font-size: 0.9em;
  padding: 4px 2px 4px 4px;
}
.flex .unit td {
  background-color: rgb(70 70 70 / 20%);
  font-size: 0.9em;
  padding: 4px 2px;
  display: table-cell;
  vertical-align: middle;
}
.wrapper .infoArea .box {
  border: 2px solid #ffffff;
  line-height: 1.25;
  padding-bottom: 20px;
}
.wrapper .infoArea .box .head {
  padding: 20px;
  font-size: 1.3em;
  border-bottom: 2px solid #fff;
  letter-spacing: 1px;
}
.homeBtn {
  display: block;
  position: absolute;
  top: 3vw;
  left: 3vw;
  width: 30px;
  height: 30px;
  background-image: url(../images/home.svg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  transition: 0.3s all ease;
  z-index: 100;
}
.wrapper .infoArea .box .body {
  padding: 20px;
}
.wrapper .infoArea .box p.subTtl {
  padding: 25px;
  font-size: 2.3em;
  font-weight: 900;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  transform: scale(1, 1.1);
}
.wrapper .infoArea .box p.text {
  margin-bottom: 25px;
  line-height: 1.5;
}
.wrapper .infoArea .box ul {
  text-align: left;
  list-style: square;
  width: 90%;
  max-width: 600px;
  margin: 50px auto 30px auto;
}
.wrapper .infoArea .box ul li {
  margin-bottom: 6px;
}
.wrapper .videoArea {
  width: 94%;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-direction: column;
  text-align: left;
  margin: 0 auto;
}
.wrapper .videoArea p {
  margin: 40px auto 0px 0;
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 10px 20px;
  text-align: left;
}
.wrapper .videoArea video {
  display: block;
  width: 100%;
}

.end {
  width: 94%;
  margin: 80px auto 40px;
}
.end p.title {
  font-weight: 600;
  margin-bottom: 12px;
}
.end p {
  text-align: left;
}
.end .more {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
}
.end .more a {
  color: #fff;
  padding-right: 16px;
  border-right: 1px solid #fff;
}
.end .more a:hover {
  opacity: 0.7;
}
.end .more p {
  font-size: 0.9em;
  font-weight: 300;
}
.postPage {
  min-height: 100vh;
}
.postPage .head {
  position: relative;
  padding: 50px 0 30px 0;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}
.postPage .head h1 {
  display: block; /*10/31で更新*/
  width: 100px;
  height: 80px;
  text-indent: 100%;
  margin: 0 auto;
  overflow: hidden;
  white-space: nowrap;
  background-image: url("../images/logo_set.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.wrapper.postPage .mainArea .head h1 {
  margin-bottom: 40px;
}
.postPage p.lead {
  margin: 50px auto 0px auto;
  font-weight: 600;
  line-height: 1.5;
  max-width: 420px;
}
.postPage .head .ttls {
  max-width: 420px;
  width: 90%;
  margin: 20px auto 0 auto;
  border-top: 1px #fff solid;
  border-bottom: 1px #fff solid;
  padding: 20px;
  font-weight: 600;
}
.postPage .head .ttls h2 {
  font-size: 1.2em;
  margin-bottom: 8px;
}
.wrapper.postPage .mainArea {
  margin-top: 20px;
  padding-top: 0;
  padding-bottom: 60px;
}
.mainArea .formArea {
  max-width: 420px;
  width: 94%;
  margin: 0 auto;
}
.mainArea .formArea .box {
  width: 100%;
  margin: 20px 0;
  text-align: left;
  font-size: 1em;
}
.mainArea .formArea .box p {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  margin-bottom: 5px;
  font-size: 1.1em;
}
.mainArea .formArea .box p span {
  display: block;
  margin-right: 15px;
}
.mainArea .formArea .box p a {
  display: block;
  width: 28px;
  height: 28px;
  margin: 0 0 0 auto;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.mainArea .formArea .box p span:first-child {
  font-size: 1.15em;
}
.mainArea .formArea .box input {
  padding: 10px 5px;
  width: calc(100% - 10px);
  border: none;
  border-radius: 3px;
  font-size: 1.1em;
}
.mainArea .formArea .box input#file-photo,
.mainArea .formArea .box input#file-movie {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.1;
  font-size: 0.9em;
  color: #737373;
}
.mainArea .formArea .box select {
  padding: 10px 5px;
  width: calc(100% - 0px);
  border: none;
  border-radius: 3px;
  font-size: 1.1em;
}
.mainArea .formArea .box textarea {
  padding: 10px 5px;
  width: calc(100% - 10px);
  border: none;
  border-radius: 3px;
  font-size: 1.1em;
}
.mainArea .formArea .box img {
  display: block;
  width: 100%;
}
.mainArea .formArea.preview .box {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: 20px;
  margin: 0 0 4px 0;
}
.mainArea .formArea.preview .box p:first-child {
  margin-bottom: 8px;
}
form .formbottom {
  text-align: center;
}
form .btns {
  max-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 30px auto;
}
form .back {
  height: 40px;
  display: inline-block;
  vertical-align: middle;
  padding: 10px 40px;
  margin: 10px;
  margin-right: 10px;
  font-size: 1.1em;
  color: #ccc;
  font-weight: bold;
  letter-spacing: 0.5pt;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif;
  background-color: rgba(4, 10, 10, 0);
  cursor: pointer;
  transition: 0.3s all;
  margin: 0 auto;
}
form .back.short {
  padding: 10px 20px;
}
form .back:hover {
  color: #ffffff;
  background-color: #6e6e6e;
}
form .btn {
  display: block;
  padding: 20px 20px 20px 25px;
  font-size: 1.1em;
  min-width: 180px;
  height: 40px;
  color: #fff;
  position: relative;
  margin: 0 auto;
  cursor: pointer;
}
form .btn.long {
  display: block;
  padding: 20px 10px 20px 20px;
  font-size: 1.1em;
  min-width: 200px;
  height: 40px;
  color: #fff;
  position: relative;
  margin: 0 auto;
  cursor: pointer;
}
form .btn::after {
  display: block;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #3e3e3e;
  mix-blend-mode: multiply;
  opacity: 0.4;
}
form .btn:hover::after {
  display: block;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #3e3e3e;
  opacity: 0.4;
  animation: btnBack 1s ease;
}
form .btn::before {
  display: block;
  position: absolute;
  content: "";
  left: 10px;
  width: 12px;
  height: 40px;
  top: calc(50% - 20px);
  background-image: url("../images/arrow.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  transition: 0.3s all ease-in;
}
form .btn:hover::before {
  left: 15px;
}
form .btn input[type="submit"] {
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 10;
  background: none;
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid #fff;
  font-size: 1em;
  color: #fff;
  padding-left: 20px;
  font-weight: 600;
  cursor: pointer;
}
.next {
  display: block;
  width: 180px;
  padding: 10px 0;
  margin: 20px auto;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 5px;
}
form input[type="file"] {
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  padding: 6px 25px;
  color: #f15a24;
  font-weight: bold;
  letter-spacing: 0.5pt;
  text-decoration: none;
  background-color: #ffffff;
  border: 1px solid #f15a24;
  cursor: pointer;
  transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif;
  cursor: pointer;
}
.next:hover {
  color: #222;
  background-color: #fff;
}
.thumb,
.thumb-video {
  max-width: 420px;
  margin: 20px auto;
}
.thumb img {
  width: 100%;
}
.thumb-video video {
  width: 100%;
}
#thumbnail {
  height: 128px;
  max-width: 128px;
  margin: 10px auto;
  border: solid thin lightgray;
  border-radius: 5px;
}
#thumbnail-video {
  height: 128px;
  max-width: 128px;
  margin: 10px auto;
  border: solid thin lightgray;
  border-radius: 5px;
}
.wrapper.panel {
  min-width: calc(100vw - calc(100vw - 100%));
  min-height: calc(100vh - calc(100vh - 100%));
  width: 100%;
  height: 100%;
  overflow-y: hidden;
}
.mfp-container iframe {
  transform: scale(0.9) translateY(-5%);
}
iframe .wrapper.panel {
  min-width: calc(90vw - calc(100vw - 100%));
  min-height: calc(90vh - calc(100vh - 100%));
  width: 100%;
  height: 100%;
  overflow-y: hidden;
}
.panel-inner {
  width: 96%;
  max-width: 768px;
  padding: 2vh 0;
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}
.panel-inner img {
  max-width: 100%;
}
.panel-inner .leftArea {
  width: 48%;
  min-height: 96vh;
  margin: 0 1%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  color: #fff;
}
.panel-inner .rightArea {
  width: 48%;
  margin: 0 1%;
}
.panel-inner .leftArea .qr {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.75em;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}
.panel-inner .leftArea .textBox {
  width: 100%;
  line-height: 1.5;
  margin-bottom: 20px;
}
.panel-inner .leftArea .textBox.naming {
  margin-top: -20px;
}
.panel-inner .leftArea .textBox p {
  color: #d3fdff;
}
.panel-inner .leftArea .textBox p.ttl {
  font-size: 1.4em;
  color: #fff;
  font-weight: 600;
  text-align: right;
  padding-bottom: 4px;
  margin-bottom: 8px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}
.panel-inner .leftArea .qr img {
  width: 60px;
  height: 60px;
  margin-right: 20px;
}
.panel-inner .leftArea .logo {
  width: 100px;
  margin: auto auto 20px auto;
  text-align: center;
  padding: 0;
}
.panel-inner .leftArea .logo img {
  display: block;
  margin: 0 auto;
}
.panel-inner .leftArea .number {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  height: 60px;
  width: 60px;
  text-align: center;
  margin-bottom: 10px;
  background-color: #fff;
  color: #222;
  font-weight: 600;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif;
}
.panel-inner .leftArea .listLink {
  color: #fff;
  font-weight: 600;
  position: relative;
  padding-left: 1.5em;
  font-size: 1.2em;
}
.panel-inner .leftArea .listLink::before {
  content: "＜";
  position: absolute;
  left: 0.3em;
  top: 0;
  color: #fff;
  transition: 0.3s all;
}
.panel-inner .leftArea .listLink:hover::before {
  left: 0em;
}
.panel-inner .rightArea {
  height: 96vh;
  min-height: 800px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
}
.panel-inner .rightArea .sampleImg {
  height: 58%;
  width: 100%;
  margin-bottom: 2%;
  position: relative;
  z-index: 10;
}
.panel-inner .rightArea.half .sampleImg {
  height: 50%;
}
.panel-inner .rightArea.reverce .sampleImg {
  height: 40%;
}
.panel-inner .rightArea .sampleImg.preview {
  height: 58%;
  width: 100%;
  margin-bottom: 2%;
  position: static;
  z-index: 10;
}
.panel-inner .rightArea .sampleImg.preview img {
  display: block;
  position: static;
  width: auto;
  height: 100%;
  margin: 0 auto;
  top: 0;
  /* left: 0; */
  transform: none;
}
.panel-inner .rightArea .sampleImg img {
  display: block;
  position: absolute;
  width: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 100%;
  object-fit: cover;
}
.panel-inner .rightArea .sampleVideo {
  height: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: auto;
}
.panel-inner .rightArea.half .sampleVideo {
  height: 50%;
}
.panel-inner .rightArea.reverce .sampleVideo {
  height: 58%;
}
.panel-inner .rightArea .sampleVideo.preview {
  height: 40%;
  margin-top: 2%;
  display: block;
  position: static;
}
.panel-inner .rightArea .sampleVideo video {
  width: 100%;
  max-height: 100%;
  margin: auto auto;
}
.postPage .postlist {
  max-width: 960px;
  margin: 30px auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.postPage .postlist .postbox {
  width: 23%;
  margin: 0 1% 40px 1%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.postPage .postlist .postbox a {
  width: 100%;
}
.postPage .postlist .postbox .postImg {
  width: 100%;
  height: auto;
  position: relative;
  margin-bottom: 6px;
}
.postPage .postlist .postbox img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  background: #eee;
}
.postPage .postlist .postbox p {
  width: 100%;
  color: #fff;
  font-weight: 600;
}
.postPage .postlist .postbox p.salonName {
  text-align: center;
  padding: 6px;
  background-color: rgba(255, 255, 255, 0.7);
  color: #000;
  margin-bottom: 8px;
}
.postPage .postlist .postbox p.name {
  font-size: 1.15em;
  margin-bottom: 8px;
}
.postBtn p {
  font-size: 1.2em;
  line-height: 1.5;
  text-align: center;
}
.postPage .head {
  position: relative;
}
.postPage .head .postBtn {
  position: relative;
  right: 0;
  top: calc(50% - 50px);
  margin: 0px auto;
  width: 80%;
  text-align: center;
  max-width: 80%;
}
.postPage .head .postBtn .closed {
  display: none !important;
}
.postPage .head .postBtn a {
  min-width: 200px;
  width: 100%;
  max-width: 300px;
}
.postPage .head a.voteLink {
  position: absolute;
  right: 30px;
  top: calc(50% - 50px);
  border: 2px solid #fff;
  border-radius: 50%;
  height: 100px;
  width: 100px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  z-index: 10;
}
.postPage .head a.voteLink::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  transform-origin: center;
  transform: scale(0);
  transition: 0.3s all;
  z-index: -1;
}
.postPage .head a.voteLink:hover {
  color: #040a0a;
  font-size: 1.2em;
}
.postPage .head a.voteLink:hover::after {
  transform: scale(1);
}
.postPage .caution {
  width: 92%;
  max-width: 420px;
  margin: 30px auto 0;
  color: #ff1f23;
  line-height: 1.3;
  text-align: left;
}
.postPage .editBtn {
  width: 100%;
  margin: 15px auto;
  color: #cbcbcb;
  border: 2px solid #cbcbcb;
  padding: 10px 0px;
  font-weight: bold;
  text-align: center;
  transition: 0.3s all;
}
.postPage .editBtn:hover {
  background-color: #cbcbcb;
  color: #000;
}
/*Checkboxes styles*/
.postHead {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
  margin-bottom: 8px;
  min-height: 24px;
  width: 100%;
}
.postHead .check {
  position: absolute;
  top: 0;
  right: 0;
}
.postPage .postlist .postbox p.number {
  font-size: 0.9em;
  margin-bottom: 0px;
  font-weight: 400;
  padding-right: 30px;
  text-align: left;
}
input[type="checkbox"] {
  display: none;
}

input[type="checkbox"] + label {
  display: block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 20px;
  font: 14px/20px "Open Sans", Arial, sans-serif;
  color: #ddd;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

input[type="checkbox"] + label:last-child {
  margin-bottom: 0;
}

input[type="checkbox"] + label:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.6;
  -webkit-transition: all 0.12s, border-color 0.08s;
  transition: all 0.12s, border-color 0.08s;
}

input[type="checkbox"]:checked + label:before {
  width: 10px;
  top: -5px;
  left: 5px;
  border-radius: 0;
  opacity: 1;
  border: 2px solid #00e0b2;
  border-top-color: transparent;
  border-left-color: transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (max-width: 1500px) {
  .header .inner {
    max-width: 1000px;
  }
  .menu a span.ko {
    font-size: 1.8vw;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 1280px) {
  .wrapper.concept .mainArea {
    max-width: 800px;
    width: 72vw;
  }
}
@media screen and (max-width: 1024px) {
  .logo h2 {
    width: 36vw;
    height: 0;
    padding-top: 5%;
    margin-bottom: 3vw;
  }
  .logo h1 {
    width: 36vw;
    height: 0;
    padding-top: 40%;
  }
  .logo p {
    width: 15vw;
    height: 0;
    padding-top: 10%;
    margin: 5vw auto 0 auto;
  }
  h3 {
    width: 15vw;
    height: 0;
    padding-top: 12%;
  }
  .postPage .postlist .postbox {
    width: 31.333%;
    margin: 0 1% 40px 1%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
}
@media screen and (max-width: 920px) {
  .postPage .head .postBtn {
    width: auto;
    max-width: 100%;
    margin: 10px auto 20px auto;
  }
}
@media screen and (max-width: 768px) {
  .header .inner .instagram {
    position: absolute;
    top: 3vw;
    right: calc(4vw + 40px);
    width: 30px;
  }
  .header .inner .menu {
    display: none;
  }
  .logo {
    padding-top: 0px;
  }
  .logo h2 {
    width: 50vw;
    height: 0;
    padding-top: 5%;
    margin-bottom: 5vw;
  }
  .logo h1 {
    width: 50vw;
    height: 0;
    padding-top: 40%;
  }
  .logo p {
    width: 24vw;
    height: 0;
    padding-top: 11%;
    margin: 5vw auto 0 auto;
  }
  h3 {
    width: 24vw;
    height: 0;
    padding-top: 15%;
  }
  .menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 80%;
    height: 100vh;
    height: 100dvh;
    margin: 0 auto;
  }
  .menu a {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    color: #fff;
    padding: 20px 10px;
    position: relative;
    z-index: 10;
    width: 100%;
  }
  .menu a::before {
    content: "";
    /*絶対配置で線の位置を決める*/
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    /*背景の形状*/
    width: 0;
    height: 100%;
    background: #3e3e3e;
    mix-blend-mode: hard-light;
    /*アニメーションの指定*/
    transition: all 0.5s;
    opacity: 0; /*はじめは透過0*/
  }
  .menu a:hover::before {
    /*背景の形状*/
    width: 100%; /*横幅を伸ばす*/
    opacity: 0.6; /*不透明に*/
  }

  .menu a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0.8%;
    right: 0;
    bottom: 0;
    background-color: #fff;
    transition: 0.3s all ease;
  }
  .menu a:hover::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0.8%;
    right: 0;
    bottom: 0;
    background-color: #fff;
  }
  .menu a:last-child::after {
    content: none;
  }
  .menu a span {
    display: block;
    font-size: 1em;
    letter-spacing: 0.1em;
  }
  .menu a span.ja {
    font-size: 1.8em;
    margin-bottom: 10px;
  }
  .menu a span br {
    display: none;
  }
  .panel-inner .rightArea .sampleImg {
    height: 52%;
  }
  .panel-inner .rightArea .sampleVideo {
    height: 46%;
  }
}
@media screen and (max-width: 767px) {
  .panel-inner {
    flex-direction: column;
  }
  .panel-inner .leftArea {
    width: 100%;
  }
  .panel-inner .rightArea {
    width: 100%;
    height: 100%;
    padding-bottom: 2em;
    margin: 0 auto;
  }
  .panel-inner .leftArea .listLink {
    position: absolute;
    color: #fff;
    font-weight: 600;
    padding-left: 1.5em;
    font-size: 1.2em;
    bottom: 10px;
  }
  .panel-inner .rightArea .sampleImg {
    height: auto;
    margin-bottom: 2%;
  }
  .panel-inner .rightArea .sampleImg img {
    position: relative;
    transform: none;
    left: 0;
  }
  .panel-inner .rightArea .sampleVideo {
    height: auto;
    min-height: 100%;
    display: block;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    margin-bottom: 0px;
  }
  .panel-inner .rightArea .sampleVideo video {
    position: relative;
    transform: none;
  }
  .panel-inner .leftArea .textBox.naming {
    margin-top: 0px;
  }
  .postPage .head a.voteLink {
    right: 30px;
  }
}

@media screen and (max-width: 740px) {
  .middle {
    justify-content: flex-start;
  }
  .logo {
    margin-bottom: 5vw;
  }
  h3 {
    margin: 0 auto 0 auto;
  }
  .logo h2 {
    width: 60vw;
    height: 0;
    padding-top: 6%;
    margin-bottom: 7vw;
  }
  .logo h1 {
    width: 60vw;
    height: 0;
    padding-top: 45%;
    margin-bottom: 6vw;
  }
  .logo p {
    width: 36vw;
    height: 0;
    padding-top: 13%;
    margin: 5vw auto 8vw auto;
  }
  h3 {
    width: 36vw;
    height: 0;
    padding-top: 17%;
    margin-bottom: 20px;
  }
  .postBtn {
    margin-top: auto;
    margin-bottom: 30px;
  }
  .postBtn a {
    padding: 20px 40px;
  }
  .header .inner .instagram {
    top: 6vw;
  }
  .header .inner .home {
    top: 6vw;
  }
  .postBtn a span.ja {
    font-size: 1.4em;
    letter-spacing: 0.2em;
    margin-bottom: 4px;
  }
  .wrapper .left {
    display: none;
  }
  .wrapper .right {
    display: none;
  }
  .wrapper.concept .mainArea h2 {
    font-size: 4.5em;
  }
  .wrapper.concept .mainArea h3 {
    width: 90%;
    max-width: 90%;
    padding-top: 7%;
    margin-top: 20px;
  }
  .wrapper .videoArea {
    flex-direction: column;
  }
  .wrapper.auto .mainArea {
    padding-top: 40px;
    max-width: 800px;
    width: 90%;
  }
  .wrapper.postPage .mainArea {
    padding-top: 0;
  }
  .wrapper .infoArea .flex {
    display: flex;
    flex-direction: column;
    margin-bottom: 80px;
  }
  .wrapper .infoArea .flex .flexLeft {
    width: 100%;
    text-align: left;
    font-size: 1.1em;
    padding-right: 0%;
  }
  .wrapper .infoArea .flex .flexRight {
    width: 100%;
    text-align: left;
    font-size: 1.1em;
    padding-right: 0%;
  }
  .wrapper .infoArea .flex .unit {
    width: 100%;
  }
  .wrapper .infoArea .flex .map {
    width: 100%;
  }
  .wrapper .videoArea {
    margin: 0 auto;
  }
  .wrapper .videoArea p {
    margin: 40px auto 0px 0;
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    text-align: left;
  }
  .wrapper .videoArea video {
    display: block;
    width: 100%;
  }
  .postPage .postlist .postbox {
    width: 48%;
  }
  .postPage p.lead {
    padding: 0 4%;
  }
  .postPage .head a.voteLink {
    position: relative;
    margin: 30px auto 0;
    right: 0;
    top: calc(50% - 50px);
    border: 2px solid #fff;
    border-radius: 50%;
    height: 100px;
    width: 100px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    z-index: 10;
  }
  .postPage .postlist {
    max-width: 1200px;
    margin: 0px auto 30px;
  }
  .postPage .head .postBtn {
    position: static;
    min-width: 260px;
    margin: 30px auto;
  }
  br.forSP {
    display: none;
  }
  .postBtn p {
    font-size: 1em;
    line-height: 1.5;
    text-align: center;
  }
  .postPage .head .postBtn {
    width: auto;
    max-width: 100%;
    margin: 10px auto;
  }
  .wrapper.concept .mainArea .lead p.title {
    font-size: 1.5em;
  }
  .end .more {
    margin-top: 24px;
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    flex-direction: column;
    align-items: flex-start;
  }
  .end .more a {
    border-right: none;
    padding-right: 0;
    padding-bottom: 16px;
    border-bottom: 1px solid #fff;
  }
}
@media screen and (max-width: 475px) {
  .wrapper {
    position: relative;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
  }
  .wrapper {
    position: relative;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
  }
  .wrapper::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("../images/sp@2x.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    animation: 4s backAnime ease-in-out;
    animation-fill-mode: forwards;
    transform-origin: center;
  }
  .menu a span br {
    display: block;
  }
  .wrapper.concept .mainArea h2 {
    font-size: 3.5em;
  }
  .wrapper .videoArea p {
    font-size: 0.85em;
  }
  .postPage .postlist .postbox {
    width: 48%;
    margin: 20px 1%;
  }
  .panel-inner .rightArea {
    justify-content: flex-start;
  }
  .panel-inner .rightArea.reverce .sampleVideo {
    height: auto;
    margin-top: 20px;
  }
  .postPage .postlist .postbox img {
    height: 200px;
  }
  br.forSP {
    display: block;
  }
  .postBtn p {
    font-size: 1em;
    line-height: 1.5;
    text-align: center;
  }
  .postPage .head .postBtn {
    width: auto;
    max-width: 100%;
    margin: 10px auto;
  }
}
@media screen and (max-width: 399px) {
  .postBtn p {
    font-size: 0.9em;
  }
}
@media screen and (max-height: 658px) {
  .logo {
    padding-top: 30px;
    margin-top: auto;
    margin-bottom: auto;
  }
}
@media screen and (max-height: 620px) and (max-width: 680px) {
  .wrapper {
    overflow-y: scroll;
  }
}
@media screen and (min-width: 1500px) {
  .menu a span.ja {
    font-size: 22px;
  }
  .menu a span.ko {
    font-size: 22px;
    letter-spacing: 0.05em;
  }
}
