@charset "utf-8";

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * html/body
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

*, *:after, *:before {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

/* リンクなどの要素をタップした時の色を消す */
* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* 長押しした際に表示されるポップアップメニューを消す */
* {
    -webkit-touch-callout: none;
}

/* 行頭禁則文字 */
* {
	word-break: break-word;
	word-wrap: break-word;
}

body {
	position: relative;
	width: 100%;
    height: 100vh;
	margin: 0;
	padding: 0;
	background: #17192e;
	line-height: 1.5;
	font-family: "dnp-shuei-gothic-gin-std", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic","Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3","Meiryo","ＭＳ Ｐゴシック","MS PGothic", sans-serif;
	font-size: 14px;
	color: #ffffff;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * display
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.disp {
	display: block !important;
}

.disp-none {
	display: none !important;
}

.disp-table {
	display: table !important;
}

.disp-inline {
	display: inline !important;
}

.disp-inline-block {
	display: inline-block !important;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * visibility
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.visibility-hidden {
	visibility: hidden !important;
}

.visibility-visibile {
	visibility: visible !important;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * article/section
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
article {
	position: relative;
	z-index: 0;
	width: 100%;
	height: 100vh;
	margin: 0;
	padding: 0;
}

section {
	position: relative;
	width: 100%;
    height: 100vh;
	margin: 0 auto;
	padding: 0;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * loader
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.loader {
    position: absolute;
    z-index: 2;
	width: 100%;
	height: 100vh;
}

.circle {
    width: 90px;
    height: 90px;
    display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
}

.circle img {
    width: 90px;
    height: 90px;
}

.circle-border {
  width: 90px;
  height: 90px;
  padding: 0.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgb(255,255,255);
  background: linear-gradient(0deg, rgba(255,255,255,0.1) 33%, rgba(255,255,255,1) 100%);
  animation: spin .5s linear 0s infinite;
}

@media screen and (max-width: 549px) {
    .circle {
        width: 50px;
        height: 50px;
    }

    .circle img {
        width: 50px;
        height: 50px;
    }

    .circle-border {
      width: 50px;
      height: 50px;
    }
}

.circle-core {
  width: 100%;
  height: 100%;
  background-color: #17192e;
  border-radius: 50%;
}

@keyframes spin {
    from {
        transform: rotate(0);
    }
    to{
        transform: rotate(359deg);
    }
}

video[poster]{
    object-fit: cover;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * wrapper
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.wrapper {
    display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: relative;
	width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.wrapper-movie {
    display: none;
	position: fixed;
	top: 0;
	left: 0;
    min-height: 100vh;
    z-index: 0;
}

.wrapper-movie.page {
    display: block;
}

.wrapper-overlay {
    display: none;
	position: fixed;
	right: 0;
	bottom: 0;
    z-index: 1;
	width: 100%;
	height: 100vh;
    background: rgba(0,0,0,0.3) url('../images/pattern-line.png') 0 0 repeat;
    background-size: 4px 4px;
}

.wrapper-overlay.page {
    display: block;
}

@media screen and (max-width: 549px) {
    .wrapper-movie {
        display: none !important;
    }

    .wrapper-overlay {
        display: none !important;
    }
}

.menu-area {
    position: relative;
    z-index: 2;
	width: 50%;
	margin: 0;
}

.menu-title {
    margin-bottom: 10px;
    font-family: neue-haas-grotesk-display, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
}

.menu {
    display: none;
    position: fixed;
    top: 50%;
    left: calc((50vw - 370px)/2);
    transform: translate(0, -50%);
    width: 370px;
    padding: 20px 30px;
    /*border-radius: 10px;*/
    /*background-color: #17192e;*/
    background-color: rgba(23,25,46,0.7);
    box-shadow: 0 0 4px #000000;
}

.menu.page {
    display: block;
}

.menu-area-logo {
    display: none;
    position: fixed;
    top: 50px;
    left: 0px;
    bottom: 50px;
    width: calc((50vw - 420px)/2);
}

.menu-area-logo.page {
    display: block;
}

.menu-area-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position : 0 0;
    opacity: 0.5;
}

@media screen and (max-width: 1299px) {
    .menu-area-logo {
        display: none !important;
    }
}

.contents-area {
    position: relative;
    z-index: 2;
    width: 50%;
	margin: 0;
}

.contents {
    display: none;
    position: relative;
    width: 470px;
    height: auto;
    min-height: 100vh;
    background: #17192e;
    box-shadow: 0px 0px 4px #000000;
}

.contents.page {
    display: block;
}

@media screen and (max-width: 1199px) {
    .menu-area {
        width: auto;
        margin: 0 auto;
    }

    .contents-area {
        margin: 0;
    }

    .contents {
        width: 470px;
        margin: 0;
    }
}

@media screen and (max-width: 980px) {
    .menu-area {
        display: none;
    }

    .contents-area {
        width: 100%;
    }

    .contents {
        margin: 0 auto;
    }
}

@media screen and (max-width: 549px) {
    .wrapper {
        margin: 0;
    }

    .contents {
        width: 100%;
    }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * fixed-entry
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.fixed-entry-wrap {
    position: fixed;
    bottom: calc(50% - 140px);
    right: 0;
    z-index: 10;
    width: 70px;
    height: 280px;
    margin: 0;
}

.fixed-entry {
	position: relative;
	display : -webkit-inline-box;
	display : -ms-inline-flexbox;
	display : -webkit-inline-flex;
	display : inline-flex;
	width: 100%;
    height: 100%;
}

.fixed-entry-btn {
	position: relative;
    display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 155px 0 0;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border: 1px solid #ffffff;
    border-right: none;
    background: rgb(0,106,204);
    background: -moz-linear-gradient(45deg, rgba(0,106,204,1) 0%, rgba(89,55,195,1) 50%, rgba(185,0,185,1) 100%);
    background: -webkit-linear-gradient(45deg, rgba(0,106,204,1) 0%, rgba(89,55,195,1) 50%, rgba(185,0,185,1) 100%);
    background: linear-gradient(45deg, rgba(0,106,204,1) 0%, rgba(89,55,195,1) 50%, rgba(185,0,185,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#006acc",endColorstr="#b900b9",GradientType=1);
    text-align: center;
    color: #ffffff;
	transition: all 0.3s;
}

.fixed-entry-btn:before {
    content: "";
	position: absolute;
	top: 15px;
	left: 50%;
	width: 12px;
	height: 10px;
    margin-left: -6px;
	background: url('../images/icon-triangle-white-downward.svg') 0 0 no-repeat;
	background-size: 12px 10px;
}

.fixed-entry-btn:after {
    content: "APPLY";
	position: absolute;
	top: 37px;
	left: 80%;
    text-align: left;
    white-space: nowrap;
	font-family: proxima-nova-extra-wide, sans-serif;
    font-weight: 200;
    font-style: normal;
	font-size: 28px;
    -moz-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
	-moz-transform-origin: left top;
	-webkit-transform-origin: left top;
	-o-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top;
}

.fixed-entry-btn:hover {
    box-shadow: 0 0 10px 0 rgba(255,255,255,0.5);
    color: #ffffff;
}

.fixed-entry-btn .ja {
    display: inline-block;
    font-size: 12px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}

@media screen and (max-width: 549px) {
    .fixed-entry-wrap {
        position: fixed;
        bottom: 20px; 
        right: 0px;
        z-index: 10;
        width: 40px;
        height: 210px;
        margin: 0;
    }

    .fixed-entry {
        position: relative;
        display : -webkit-inline-box;
        display : -ms-inline-flexbox;
        display : -webkit-inline-flex;
        display : inline-flex;
        width: 100%;
        height: 100%;
    }

    .fixed-entry-btn {
        position: relative;
        display: block;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 100px 0 0;
        border-top-left-radius: 5px;
        border-bottom-left-radius: 5px;
        border: 1px solid #ffffff;
        border-right: none;
        background: rgb(0,106,204);
        background: -moz-linear-gradient(45deg, rgba(0,106,204,1) 0%, rgba(89,55,195,1) 50%, rgba(185,0,185,1) 100%);
        background: -webkit-linear-gradient(45deg, rgba(0,106,204,1) 0%, rgba(89,55,195,1) 50%, rgba(185,0,185,1) 100%);
        background: linear-gradient(45deg, rgba(0,106,204,1) 0%, rgba(89,55,195,1) 50%, rgba(185,0,185,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#006acc",endColorstr="#b900b9",GradientType=1);
        text-align: center;
        color: #ffffff;
    }

    .fixed-entry-btn:before {
        content: "";
        position: absolute;
        top: 10px;
        left: 50%;
        width: 10px;
        height: 8px;
        margin-left: -5px;
        background: url('../images/icon-triangle-white-downward.svg') 0 0 no-repeat;
        background-size: 10px 8px;
    }

    .fixed-entry-btn:after {
        content: "APPLY";
        position: absolute;
        top: 28px;
        left: 83%;
        text-align: left;
        white-space: nowrap;
        font-family: proxima-nova-extra-wide, sans-serif;
        font-weight: 300;
        font-style: normal;
        font-size: 17px;
        -moz-transform: rotate(90deg);
        -webkit-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        -moz-transform-origin: left top;
        -webkit-transform-origin: left top;
        -o-transform-origin: left top;
        -ms-transform-origin: left top;
        transform-origin: left top;
    }

    .fixed-entry-btn:hover {
        color: #ffffff;
    }

    .fixed-entry-btn .ja {
        display: inline-block;
        font-size: 10px;
        font-weight: bold;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
    }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * footer
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
footer {
	position: relative;
	width: 100%;
}

footer a {
	color: #ffffff;
}

footer a:hover {
	color: #ffffff;
}

.footer-to-top {
    width: 100%;
    height: 50px;
    margin: 0 auto;
}

.footer-to-top a {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    border-top: 1px solid rgba(255,255,255,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    line-height: 48px;
    font-family: neue-haas-grotesk-display, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: #ffffff;
}

.footer-to-top a span {
    position: relative;
    padding-left: 30px;
}

.footer-to-top a span:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0px;
    width: 19px;
    height: 10px;
    background: url('../images/icon-arrow-up-white.png');
    background-size: 19px 10px;
    background-repeat: no-repeat;
    background-position: center center;
}

 .footer-menu {
     display: none;
 }

@media screen and (max-width: 980px) {
    .footer-menu {
        display: block;
    }
}

.footer-menu-btn-wrap {
	display: table;
	width: 100%;
}

.footer-menu-btn {
	display: table-cell;
	width: 50%;
	height: 30px;
    padding: 0 5px;
	border-bottom: 1px solid rgba(255,255,255,0.2);
	vertical-align: middle;
    font-size: 12px;
}

.footer-menu-btn:nth-of-type(2n) {
	border-left: 1px solid rgba(255,255,255,0.2);
}

.footer-menu-btn a {
	display: block;
	width: 100%;
	height: 30px;
	line-height: 30px;
	color: #ffffff;
}

.footer-menu-btn a.current {
	position: relative;
	font-weight: 600;
	color: #ff75ff;
}

.footer-sub-link {
    display: none;
    margin: 15px 5px 15px;
    line-height: 1;
    font-size: 12px;
}

@media screen and (max-width: 980px) {
    .footer-sub-link {
        display: block;
    }
}

.footer-sns {
    position: relative;
    width: 100%;
    padding: 50px 0 0;
    text-align: center;
}

.footer-sns-title {
    margin-bottom: 10px;
    line-height: 1;
    font-family: neue-haas-grotesk-display, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: #ffffff;
}

.footer-sns-icon {
    display: inline-block;
    height: 26px;
    margin: 0 20px 0;
    line-height: 1;
    color: #ffffff;
    transition: all 300ms;
}

.footer-sns-icon a img {
    position: relative;
    z-index: 3;
	width: auto;
	height: 26px;
}

.footer-sns-icon a img.line-icon {
	width: auto;
	height: 26px;
    transform: scale(1.2);
}

.footer-sns-icon:hover {
    opacity: 1;
}

.footer-logo {
    position: relative;
    width: 100%;
    margin: 50px 0 50px;
    text-align: center;
}

.footer-logo img {
    position: relative;
    width: 110px;
    height: 42px;
}

.copyright-wrap {
    position: relative;
    clear: both;
    padding: 15px 0;
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.copyright-inner {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    margin: 10px auto;
    padding: 0 15px;
    line-height: 1.5;
    font-size: 12px;
}

.footer-tokyo-logo {
    display: inline-block;
    width: 49%;
    height: 30px;
    margin: 0; 
    padding: 0;
    vertical-align: middle;
    text-align: center;
    line-height: 30px;
}

.footer-tokyo-logo img {
    height: 30px !important;
    width: auto !important;
}

.footer-etic-logo {
    display: inline-block;
    width: 49%;
    height: 30px;
    margin: 0; 
    padding: 0;
    vertical-align: middle;
    text-align: center;
    line-height: 30px;
}

.footer-etic-logo img {
    height: 30px !important;
    width: auto !important;
}

.copyright {
    display: block;
    width: 100%;
    padding: 20px 0 0;
    text-align: center;
    font-family: neue-haas-grotesk-display, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 9px;
    color: #ffffff;
}

.copyright span {
    display: none;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * menu-btn-side
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.menu-btn-side {
    position: relative;
    display: block;
    z-index: 0;
    width: 100%;
    height: 46px;
    border-top: 1px solid rgba(255,255,255,0.5);
    line-height: 44px;
    font-size: 19px;
    font-family: neue-haas-grotesk-display, sans-serif;
    font-weight: 300;
    font-style: normal;
    overflow: hidden;
	transition: .3s;
}

.menu-btn-side.last {
    border-bottom: 1px solid rgba(255,255,255,0.5);
}

.menu-btn-side span {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding-left: 20px;
    z-index: 2;
}

.menu-btn-side span:before {
    content: "";
    position: absolute;
    top: 20px;
    left: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffffff;
    transition: .3s;
}

.menu-btn-side:hover span:before {
     background: #6439ff;
}

.menu-btn-side.current span:before {
    top: 18px;
    left: 5px;
    width: 10px;
    height: 10px;
    background: #6439ff;
}

.menu-btn-side font {
    margin-left: 5px;
    font-family: "dnp-shuei-gothic-gin-std", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic","Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3","Meiryo","ＭＳ Ｐゴシック","MS PGothic", sans-serif;
    font-size: 10px;
}


/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * main-visual
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.main-visual {
    position: relative;
    width: 100%;
    height: 470px;
    overflow: hidden;
}

.mv-movie {
    position: absolute;
	top: 0;
	left: 0;
}

.mv-contents {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 3;
    width: 100%;
    height: auto;
    transform: translate(0, -50%);
}

.mv-logo {
    margin-bottom: 20px;
    text-align: center;
}

.mv-logo img {
    width: 80%;
     filter: drop-shadow(0px 0px 4px #000000);
}

.mv-day {
    margin-bottom: 0;
    line-height: 1;
    text-align: center;
    text-shadow: 0px 0px 4px #000000;
    font-size: 24px;
    font-family: neue-haas-grotesk-display, sans-serif;
    font-weight: 400;
    font-style: normal;
}

.mv-day span {
    font-size: 20px;
}

.mv-day font {
    vertical-align: 3px;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * contents-inner
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.contents-inner {
    position: relative;
    padding: 50px 20px;
}

.contents-inner.page {
    position: relative;
    padding: 120px 20px 50px;
}

.attention-link {
    position: absolute;
    top: -90px;
    left: 20px;
    width: 110px;
    height: 110px;
    padding-top: 40px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background: rgb(0,106,204);
    background: -moz-linear-gradient(45deg, rgba(0,106,204,1) 0%, rgba(89,55,195,1) 50%, rgba(185,0,185,1) 100%);
    background: -webkit-linear-gradient(45deg, rgba(0,106,204,1) 0%, rgba(89,55,195,1) 50%, rgba(185,0,185,1) 100%);
    background: linear-gradient(45deg, rgba(0,106,204,1) 0%, rgba(89,55,195,1) 50%, rgba(185,0,185,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#006acc",endColorstr="#b900b9",GradientType=1);
    box-shadow: 0 0 4px #000000;
    text-align: center;
    line-height: 1.5;
    font-size: 14px;
    transition: .3s;
}

.attention-link:hover {
    opacity: 0.8;
}

.attention-link:before {
    content: "";
    position: absolute;
    top: 20px;
    left: 50%;
    width: 14px;
    height: 12px;
    margin-left: -6px;
    background: url("../images/icon-triangle-white-downward.svg");
    background-size: 14px 12px;
    background-position: center;
    background-repeat: no-repeat;
}

.attention-link a {
    display: block;
    width: 100%;
    height: 100%;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * top
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.menu-btn {
    position: relative;
    display: block;
    z-index: 0;
    width: 100%;
    height: 54px;
    padding-right: 52px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 6px;
    background-color: #17192e;
    line-height: 52px;
    font-size: 22px;
    font-family: neue-haas-grotesk-display, sans-serif;
    font-weight: 300;
    font-style: normal;
    overflow: hidden;
	transition: .3s;
}

.menu-btn span {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding-left: 30px;
    z-index: 2;
}

.menu-btn span:before {
    content: "";
    position: absolute;
    top: 23px;
    left: 12px;
    width: 6px;
    height: 6px;
    border-radius: 10px;
    background: #ffffff;
}

@media screen and (max-width: 549px) {
    .menu-btn {
        height: 48px;
        line-height: 46px;
        font-size: 20px;
    }
    
    .menu-btn span:before {
        content: "";
        position: absolute;
        top: 20px;
        left: 12px;
        width: 6px;
        height: 6px;
        border-radius: 10px;
        background: #ffffff;
    }
}

@media screen and (max-width: 330px) {
    .menu-btn {
        padding-right: 42px;
    }
}

.menu-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgb(0,106,204);
    background: -moz-linear-gradient(45deg, rgba(0,106,204,1) 0%, rgba(89,55,195,1) 50%, rgba(185,0,185,1) 100%);
    background: -webkit-linear-gradient(45deg, rgba(0,106,204,1) 0%, rgba(89,55,195,1) 50%, rgba(185,0,185,1) 100%);
    background: linear-gradient(45deg, rgba(0,106,204,1) 0%, rgba(89,55,195,1) 50%, rgba(185,0,185,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#006acc",endColorstr="#b900b9",GradientType=1);
    opacity: 0;
    transition: opacity 0.5s;
}

.menu-btn:hover:before {
    opacity: 1;
}

.menu-btn.current:before {
    opacity: 1;
}

.menu-btn:after {
    content: "";
    position: absolute;
    top: 21px;
    right: 21px;
    z-index: 1;
	margin: 0;
	padding: 0;
    width: 31px;
    height: 8px;
    background: url("../images/arrow-readmore.svg");
    background-size: 31px 8px;
    background-position: center;
    background-repeat: no-repeat;
}

@media screen and (max-width: 549px) {
    .menu-btn:after {
        top: 17px;
    }
}

@media screen and (max-width: 330px) {
    .menu-btn:after {
        right: 11px;
    }
}

.menu-btn font {
    margin-left: 10px;
    font-family: "dnp-shuei-gothic-gin-std", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic","Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3","Meiryo","ＭＳ Ｐゴシック","MS PGothic", sans-serif;
    font-size: 12px;
}

.menu-btn-wrap {
    display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: relative;
	width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.menu-btn-concurrent {
    position: relative;
    display: block;
    z-index: 0;
    width: 31%;
    height: 110px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 6px;
    background-color: #17192e;
    line-height: 1.2;
    text-align: center;
    font-size: 19px;
    font-family: neue-haas-grotesk-display, sans-serif;
    font-weight: 300;
    font-style: normal;
    overflow: hidden;
	transition: .3s;
}

@media screen and (max-width: 549px) {
    .menu-btn-concurrent {
        font-size: 16px;
    }
}

.menu-btn-concurrent span {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 30px 0;
    z-index: 2;
}

.menu-btn-concurrent span:before {
    content: "";
    position: absolute;
    top: 14px;
    left: 50%;
    width: 6px;
    height: 6px;
    margin-left: -3px;
    border-radius: 10px;
    background: #ffffff;
}

.menu-btn-concurrent:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgb(0,106,204);
    background: -moz-linear-gradient(45deg, rgba(0,106,204,1) 0%, rgba(89,55,195,1) 50%, rgba(185,0,185,1) 100%);
    background: -webkit-linear-gradient(45deg, rgba(0,106,204,1) 0%, rgba(89,55,195,1) 50%, rgba(185,0,185,1) 100%);
    background: linear-gradient(45deg, rgba(0,106,204,1) 0%, rgba(89,55,195,1) 50%, rgba(185,0,185,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#006acc",endColorstr="#b900b9",GradientType=1);
    opacity: 0;
    transition: opacity 0.5s;
}

.menu-btn-concurrent:hover:before {
    opacity: 1;
}

.menu-btn-concurrent.current:before {
    opacity: 1;
}

.menu-btn-concurrent font {
    display: block;
    margin-top: 5px;
    line-height: 1.2;
    font-family: "dnp-shuei-gothic-gin-std", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic","Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3","Meiryo","ＭＳ Ｐゴシック","MS PGothic", sans-serif;
    font-size: 11px;
}

.wrapper-pf {
    position: relative;
    z-index: 0;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 20px;
    padding: 20px 10px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 6px;
    background: #000000;
}

.title-pf {
    position: relative;
    padding-left: 80px;
    line-height: 1.2;
    font-weight: bold;
}

.title-pf br {
    display: none;
}

.title-pf:before {
    content: "";
    position: absolute;
    top: -30px;
    left: 0;
    width: 70px;
    height: 70px;
    background-image: url('../images/douji-kaisai.png');
    background-size: 70px 70px;
    background-repeat: no-repeat;
}

@media screen and (max-width: 549px) {
    .title-pf br {
        display: inline;
    }
}

.mv-pf {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 6px;
    aspect-ratio: 3.3 / 1;
    background-image: url('../images/pic-pf.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

.mv-pf-logo {
    width: 50%;
    margin: 0 auto;
    text-align: center;
}

.mv-pf-logo img {
    width: 100%;
}

.pf-btn-wrap {
    display: table;
    width: 100%;
}

.pf-btn {
    display: table-cell;
    width: 50%;
    text-align: center;
}

.pf-btn a {
    display: inline-block;
    width: 85%;
    height: 30px;
    border-radius: 30px;
    background: #ffffff;
    line-height: 30px;
    font-size: 13px;
    font-weight: bold;
    color: #000000;
}

@media screen and (max-width: 549px) {
    .pf-btn a {
        width: 95%;
        font-size: 11px;
    }
}

@media screen and (max-width: 359px) {
    .pf-btn a {
        font-size: 10px;
    }
}

.menu-sub-link {
    margin-bottom: 15px;
    line-height: 1;
    font-size: 12px;
}

.menu-sub-link a:hover {
    text-decoration: underline;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * page
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.page-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    padding-top: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    text-align: center;
    line-height: 1;
}

.page-header img {
    width: 200px;
    height: 44px;
    transition: .3s;
}

.page-header img:hover {
    opacity: 0.8;
}

.page-h2 {
    margin-bottom: 40px;
    padding-left: 15px;
    border-left: 1px solid #ffffff;
    line-height: 1.5;
    font-size: 14px;
}

.page-h2 span {
    margin-right: 10px;
    line-height: 1;
    font-family: neue-haas-grotesk-display, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
}

.accordion-h3 {
    position: relative;
    z-index: 0;
    display: block;
    width: 100%;
    height: 46px;
    margin-bottom: 10px;
    border-radius: 6px;
    background: #15D4FF;
    background: -webkit-linear-gradient(left, rgba(21, 212, 255, 1) 0%, rgba(178, 111, 248, 1) 50%, rgba(255, 105, 249, 1) 100%);
    background: -o-linear-gradient(left, rgba(21, 212, 255, 1) 0%, rgba(178, 111, 248, 1) 50%, rgba(255, 105, 249, 1) 100%);
    background: linear-gradient(to right, rgba(21, 212, 255, 1) 0%, rgba(178, 111, 248, 1) 50%, rgba(255, 105, 249, 1) 100%);
    cursor: pointer;
}

.accordion-h3:before {
    content: "";
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    z-index: 1;
    background-color: #17192e;
    border-radius: 5px;
}

.accordion-h3 span {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 46px;
    padding-left: 40px;
    line-height: 46px;
    cursor: pointer;
	font-size: 16px;
	color: #ffffff;
}

.accordion-h3 span.two {
    position: relative;
    display: inline-block;
    z-index: 2;
    width: 100%;
    height: 46px;
    padding-top: 3px;
    padding-left: 40px;
    line-height: 1.2;
    cursor: pointer;
	font-size: 16px;
	color: #ffffff;
}

.accordion-h3 span.two mini {
	font-size: 12px;
}

@media screen and (max-width: 549px) {
    .accordion-h3 span {
        font-size: 14px;
    }
    
    .accordion-h3 span.two {
        padding-top: 5px;
        font-size: 14px;
    }
}

.accordion-h3 span:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 10px;
	z-index: 1;
	width: 24px;
	height: 24px;
	margin-top: -12px;
    line-height: 1;
    border-radius: 50%;
	background: rgba(255,255,255,1);
}

.accordion-h3 span:after {
	content: "\E831";
	position: absolute;
	top: 50%;
	left: 17px;
	z-index: 2;
	margin-top: -9px;
	text-align: center;
    line-height: 1;
	font-family: "tsg-webfont2023-ver1";
	font-size: 18px;
	color: #17192e;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	transition: all 0.2s;
}

.accordion-h3 span font {
    margin-left: 5px;
    padding: 3px 7px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.5);
    line-height: 1;
    font-size: 12px;
    color: #ffffff;
}

.back-h3 span:after {
	content: "\E831";
	transform: rotate(45deg);
}

.page-h3 {
    position: relative;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-left: 20px;
    line-height: 1;
    font-size: 18px;
    font-weight: bold;
    color: #ff69f9;
}

.page-h3 span {
    font-size: 14px;
    font-weight: bold;
}

.page-h3:before {
    content: "";
    position: absolute;
    top: 3px;
    left: 0px;
    width: 14px;
    height: 12px;
    background: url("../images/icon-triangle-pink-downward.svg");
    background-size: 14px 12px;
    background-position: center;
    background-repeat: no-repeat;
}

.page-h4 {
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 10px;
    line-height: 1;
    font-weight: bold;
    font-size: 16px;
    color: #ff69f9;
}

.table {
	width: 100%;
}

.table tbody {
	width: 100%;
	display: block;
}

.table tr {
	width: 100%;
	display: block;
}

.th {
	display: block;
    position: relative;
	width: 100%;
	padding: 10px 10px 10px 18px;
	border-top: 1px solid rgba(255,255,255,0.3);
	border-bottom: 1px solid rgba(255,255,255,0.3);
	font-weight: bold;
	color: #ffffff;
}

.th:before {
    content: "";
    position: absolute;
    top: 18px;
    left: 5px;
    width: 6px;
    height: 6px;
    border-radius: 10px;
    background: #ffffff;
}

.td {
	display: block;
	width: 100%;
	padding: 10px;
}

.time-table-wrap {
    width: 100%;
    margin-bottom: 20px;
    overflow-x: scroll;
}

.time-table-wrap img {
    width: 280%
}

.map-wrap {
    width: 100%;
    margin-bottom: 20px;
    overflow-x: scroll;
}

.map-wrap img {
    width: 250%
}

.session-title {
    margin-bottom: 10px;
    padding-left: 15px;
    border-left: 1px solid #ff69f9;
    line-height: 1.5;
    font-size: 18px;
    font-weight: 600;
    color: #ff69f9;
}

.guest-table {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap; /* 画面幅に合わせてカラム落ちさせる */
	flex-wrap: wrap; /* 画面幅に合わせてカラム落ちさせる */
	width: 100%;
	height: auto;
	margin: 0 auto;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

/* display:flexで最後の要素だけ左寄せする */
.guest-table:after {
    content: "";
    display: block;
    width: 100%;  /* .boxに指定したwidthと同じ幅を指定する */
    height: 0;
}

.guest-cell {
	position: relative;
	width: 100%;
	height: auto;
	margin-bottom: 20px;
}

.guest {
	position: relative;
    display: table;
	width: 100%;
}

.guest-pic {
	position: relative;
    display: table-cell;
	width: 100px;
	height: 100px;
}

.guest-pic img {
	position: relative;
	width: 100px;
	height: 100px;
    border-radius: 4px;
}

.guest-text-wrap {
    position: relative;
	display: table-cell;
	vertical-align: middle;
}

.guest-text {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 0 0 0 15px;
}

.guest-name-en {
	position: relative;
	margin-bottom: 5px;
	line-height: 1;
	font-family: "neue-haas-grotesk-display", sans-serif;
	font-size: 20px;
    font-style:  normal;
    font-weight: 600;
	color: #ffffff;
}

.guest-copy {
    margin-bottom: 5px;
    line-height: 1.2;
    font-size: 16px;
    font-weight: bold;
}

.guest-name {
	position: relative;
	margin-bottom: 5px;
	line-height: 1;
	font-size: 14px;
	font-weight: 600;
	color: #ffffff;
}

.guest-name-honorifics {
    font-size: 12px;
	font-weight: 600;
}

.guest-org {
	position: relative;
	margin-bottom: 5px;
	line-height: 1.5;
	font-size: 10px;
	color: #ffffff;
}

.guest-catch {
	position: relative;
	margin-bottom: 5px;
	line-height: 1.5;
	font-size: 12px;
	color: #ffffff;
}

.guest-plus {
	position: relative;
    margin: 0;
    padding: 0;
}

.guest-plus a {
    position: relative;
    height: 20px;
    padding-left: 23px;
    line-height: 20px;
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: #ffffff;
    cursor: pointer;
}

.guest-plus a:before {
    content: "";
	position: absolute;
    top: 2px;
	left: 0;
    width: 18px;
    height: 18px;
    background: url('../images/icon-plus-white.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 18px 18px;
}

.one-on-one {
    margin-left: 5px;
    padding: 3px 5px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.5);
    line-height: 1;
    font-size: 10px;
}

.lock {
    overflow:hidden;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.modal-overlay {
    z-index:10000;
    position: fixed;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 105%;
    background: #17192e;
	opacity:0;
	overflow: hidden;
}

.modal-wrap {
    z-index:11000;
    display:none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
}

.modal-content {
	display: none;
	position: relative;
    width: 470px;
    height: 100vh;
    padding: 30px;
    background: #17192e;
	color: #ffffff;
}

@media screen and (max-width: 549px) {
    .modal-content {
        width: 100%;
    }
}

.modal-close {
	display: block;
	position: absolute;
	top: 15px;
	right: 15px;
	width: 30px;
	height: 30px;
	text-align: center;
    line-height: 30px;
	cursor: pointer;
}

.modal-close img {
	width: 26px;
	height: 26px;
}

.pop-wrap {
	position: relative;
	width: 120px;
	height: 120px;
	margin: 0 auto 20px;
	padding: 1px;
}

.pop-pic {
	width: 100%;
    height: 100%;
	text-align: center;
}

.pop-pic img {
	width: 100%;
    height: 100%;
    border-radius: 4px;
}

.pop-copy {
    margin-bottom: 10px;
    text-align: center;
    line-height: 1.2;
    font-size: 16px;
    font-weight: bold;
}

.pop-name {
	margin: 0 auto 10px;
	text-align: center;
	line-height: 1.2;
	font-size: 16px;
	font-weight: 600;
	color: #ffffff;
}

.pop-name .small {
	font-size: 12px;
	font-weight: lighter;
}

.link-btn-white-small {
	display: inline-block;
	height: 30px;
	margin: 0 auto;
	padding: 0 15px;
    border: 1px solid #ffffff;
    border-radius: 3px;
	line-height: 28px;
	font-size: 12px;	
	color: #ffffff;
}

.link-btn-white-small:hover {
	text-decoration: none;
	color: #ffffff;
}

.cz-time-list li {
    list-style: none;
    margin-left: 0;
}

.cz-time {
    display: inline-block;
    width: 100px;
    margin-right: 5px;
    margin-bottom: 5px;
    padding: 3px 0;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.5);
    text-align: center;
    line-height: 1;
    font-size: 12px;
    color: #ffffff;
}

.arrow-moving {
    position: relative;
    display: inline-block;
    width: 50px;
    margin-right: 5px;
    padding: 3px 0;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.5);
    line-height: 1;
    text-align: center;
    font-size: 12px;
    color: #ffffff;
}

.arrow-moving font {
    display: inline-block;
    position: relative;
    width: 20px;
    -webkit-animation: moveLeft 1.3s ease-in-out infinite;
	animation: moveLeft 1.3s ease-in-out infinite;
}


@-webkit-keyframes moveLeft {
    0% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px)
    }

    100% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
        opacity: 0;
    }
}

@keyframes moveLeft {
    0% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px)
    }

    100% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
        opacity: 0;
    }
}


/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 *parts
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.oritatami {
	margin: 0;
}

.oritatami_child {
	padding: 10px 0;
}

.btn-apply {
    position: relative;
    display: block;
    width: 80%;
    height: 80px;
    margin: 0 auto 20px;
    padding-top: 20px;
    border-radius: 100px;
    border: 1px solid #ffffff;
    background: rgb(0,106,204);
    background: -moz-linear-gradient(45deg, rgba(0,106,204,1) 0%, rgba(89,55,195,1) 50%, rgba(185,0,185,1) 100%);
    background: -webkit-linear-gradient(45deg, rgba(0,106,204,1) 0%, rgba(89,55,195,1) 50%, rgba(185,0,185,1) 100%);
    background: linear-gradient(45deg, rgba(0,106,204,1) 0%, rgba(89,55,195,1) 50%, rgba(185,0,185,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#006acc",endColorstr="#b900b9",GradientType=1);
    text-align: center;
    line-height: 1.2;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
	transition: all 0.3s;
}

@media screen and (max-width: 549px) {
    .btn-apply {
        width: 90%;
    }
}

.btn-apply span {
    font-size: 12px;
    font-weight: lighter;
}

.btn-apply font {
    position: relative;
    padding-left: 20px;
}

.btn-apply font:before {
    content: "";
	position: absolute;
	top: 5px;
	left: 0;
	width: 12px;
	height: 10px;
	background: url('../images/icon-triangle-white-downward.svg') 0 0 no-repeat;
	background-size: 12px 10px;
    transform:rotate(-90deg); 
}

.btn-apply:hover {
    box-shadow: 0 0 10px 0 rgba(255,255,255,0.5);
}

a.link {
    color: #ff75ff;
}

a.link:hover {
    color: #ff75ff;
    text-decoration: underline;
}

.atten-box {
	position: relative;
    margin: 20px auto;
    padding: 10px;
	border: 1px solid #555555;
    border-radius: 6px;
	background: rgba(0,0,0,0.2);
}

dl.note {
	margin: 10px auto;
	line-height: 1.5;
	font-size: 12px;
}

dl.note dt {
  position: relative;
}

dl.note dt span {
  position: absolute;
}

dl.note dd {
  padding-left:1em;
}

.video-container {
    position: relative;
    height: 0;
    margin-bottom: 10px;
    padding-top: 30px;
    padding-bottom: 56.25%;	
}
  
.video-container iframe,  
.video-container object,  
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.app {
    margin-bottom: 20px;
}

.app a {
    display: inline-block;
    margin: 0;
}

.app img {
    width: auto;
    height: 40px;
}

.g-recaptcha {
	margin: 40px auto 0;
	width: 300px;
}