@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;600;700&display=swap');

* {
    margin: 0px;
    padding: 0px;
}

html { 
    font-size: 62.5%; 
}

body { 
    background: #0f1923;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "ＭＳ Ｐゴシック", sans-serif;
    font-size: 1.6rem; 
    color: #ffffff;
}	

img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

a {
    display: inline-block;
    text-decoration: none;
    color: #ff4655;
}

section,h1,p {
    margin: 0;
}

@media only screen and (max-width: 768px){
    section {
        margin: 0;
    }	
}

ul {
    list-style: none;
}

button {
    margin: 0;
    padding: 0;
    outline: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
    vertical-align: middle;
    text-align: inherit;
    font: inherit;
    -webkit-appearance: none;
    appearance: none;
}

#site-header,
#contents-header,
#bill-board,
#school-guide,
#inquiry-sub-navi,
#site-footer {
    display: none;
}
@media only screen and (max-width: 768px){
    #totalTop {
        background: #0f1923;
    }
}

body.fixed {
    width: 100%;
    height: 100%;
    overflow: hidden;
}	

/*//////////　共通　//////////*/

.notPC {
    display: none;
}

.notSP {
    display: inline-block;
}

@media screen and (max-width: 599px) {
    .notPC {
        display: inline-block;
    }
    .notSP {
        display: none;
    }
}

.abstract {
	position: relative;
	overflow: hidden;
}

.abstract-bar01 {
	width: calc((80 / 375) * 100vw);
	max-width: 160px;
}

.abstract-square01 {
	width: calc((100 / 375) * 100vw);
    max-width: 200px;
}

.abstract-square02 {
	width: calc((40 / 375) * 100vw);
    max-width: 90px;
}

.abstract-text {
	font-size: 1.2rem;
    font-weight: bold;
    color: #ff4655;
}
@media screen and (max-width: 599px) {
	.abstract-text {
		font-size: calc((10 / 375) * 100vw);
	}
}

.bg-abstract {
	background-image:
		url(/assets/images/original/bg-abstract--left.png),
		url(/assets/images/original/bg-abstract--right.png);
	background-repeat:
		repeat-y,
		repeat-y;
    background-position:
		top 0 left 3%,
		top 0 right 3%;
}

@media screen and (max-width: 599px) {
	.bg-abstract {
		background-position:
			top 0 left 0,
			top 0 right 0;
		background-size:
			10%,
			10%;
	}
}

.container {
    padding: 20rem 0 10rem;
	position: relative;
	z-index: 1;
}

.inner {
    margin: 6rem auto 0;
    width: 90%;
}

.column-2 {
    display: flex;
    justify-content: space-between;
	flex-wrap: wrap;
}

.column-2.reverse {
    flex-direction: row-reverse;
}

@media screen and (max-width: 599px) {
    .container {
        padding: 8rem 0 4rem;
    }
    .inner {
        margin: 3rem auto 0;
    }
    .column-2 {
        display: block;
    }
}

.content-header {
	position: relative;
}

.heading {
    font-family: 'Oswald', sans-serif;
    font-size: 10rem;
    font-weight: 700;
    line-height: 1;
    color: #ff4655;
    text-align: center;
    position: relative;
}

.sub-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    position: relative;
}

.sub-heading::before {
    content: '';
    position: absolute;
    bottom: -2rem;
    width: 50px;
    height: 4px;
    background-color: #ffffff;
    left: 50%;
    transform: translateX(-50%)
}

.sec-name {
    font-family: 'Oswald', sans-serif;
    font-size: 20rem;
    font-weight: 700;
    line-height: 1;
    -webkit-text-stroke: 2px #5e6166;
    text-stroke: 2px #5e6166;
    color: transparent;
    position: absolute;
    /*top: 8rem;*/
	top: -12rem;
}

.sec-name.right {
    right: calc((40 / 1366) * 100vw);
}

.sec-name.left {
    left: calc((40 / 1366) * 100vw);
}

@media screen and (max-width: 599px) {
    .heading {
        font-size: calc((36 / 375) * 100vw);
    }
    .sub-heading {
        font-size: calc((24 / 375) * 100vw);
    }
    .sec-name {
        font-size: calc((60 / 375) * 100vw);
        -webkit-text-stroke: 1px #5e6166;
        text-stroke: 1px #5e6166;
        /*top: 4rem;*/
        top: -4rem;
    }
    .sec-name.right {
        right: calc((5 / 375) * 100vw);
    }
    .sec-name.left {
        left: calc((5 / 375) * 100vw);
    }
}

.text .title {
    font-size: 3rem;
    line-height: 1.5;
    font-weight: bold;
    margin-bottom: 1em;
}

@media screen and (max-width: 599px) {
    .text .title {
        font-size: 2.4rem;
    }
}
/* エントリーボタン　*/

.entry {
    display: flex;
    justify-content: center;
    margin: 6rem 0;
}

.entry-button-wrap {
    border: 2px solid #5e6166;
    padding: 10px;
    display: inline-block;
}

.entry-button {
    padding: 2rem 8rem;
    background-color: #ff4655;
    border: none;
    position: relative;
    /* overflow: hidden; */
    transition: 500ms;
}

@media screen and (max-width: 599px) {
    .entry {
        margin-top: 3rem;
    }
    .entry-button {
        padding: 2rem 4rem;
    }
}

.entry-button span {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff;
    position: relative;
    transition: 500ms;
    transition-delay: 500ms;
    text-transform: uppercase;
}

.entry-button:before {
    content: '';
    position: absolute;
    width: 0%;
    height: 0%;
    left: 50%;
    right: 50%;
    top: 50%;
    bottom: 50%;
    transition: 500ms;
    transition-delay: 500ms;
    background-color: #ffffff;
    box-shadow: 0 0 10px #ff4655, 0 0 30px #ff4655, 0 0 50px #ff4655;
}

.entry-button div {
    transition: 500ms;
    position: absolute;
    background-color: #ffffff;
    box-shadow: 0 0 15px #ffffff, 0 0 30px #ffffff, 0 0 50px #ffffff;
}

.entry-button .top {
    width: 15px;
    height: 2px;
    top: 0;
    left: 0;
}

.entry-button .bottom {
    width: 15px;
    height: 2px;
    bottom: 0;
    right: 0;
}

.entry-button .left {
    width: 2px;
    height: 15px;
    top: 0;
    left: 0;
}

.entry-button .right {
    width: 2px;
    height: 15px;
    bottom: 0;
    right: 0;
}

.entry-button:hover span {
    color: #ff4655;
}

.entry-button:hover:before {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.entry-button:hover .top,
.entry-button:hover .bottom {
    width: 100%;
}

.entry-button:hover .left,
.entry-button:hover .right {
    height: 100%;
}

/* Animate.css */
.fadeInUpTrigger{
	opacity: 0;
}

@keyframes fadeInUpSmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpSmall {
  -webkit-animation-name: fadeInUpSmall;
  animation-name: fadeInUpSmall;
}

/* グリッチ */
.skew {
  animation: skew 3s infinite;
}
@keyframes skew {
  0% {
    transform: none;
  }
  33% {
    transform: none;
  }
  33.3% {
    transform: skewX(30deg);
  }
  33.6% {
    transform: skewX(-30deg);
  }
  33.9% {
    transform: none;
  }
  66% {
    transform: none;
  }
  66.3% {
    transform: skewX(5deg);
  }
  66.6% {
    transform: skewX(-5deg);
  }
  66.9% {
    transform: none;
  }
  77% {
    transform: none;
  }
  77.3% {
    transform: skewX(15deg);
  }
  77.6% {
    transform: skewX(-15deg);
  }
  77.9% {
    transform: none;
  }
}		







.glitch__text p {
    position: relative;
    font-size: calc((40 / 768) * 100vh);
    font-weight: bold;
    line-height: 1.25;
    text-align: center;
    color: #fff;
    margin-bottom: 0.5em;
}

.glitch__color {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

/*
.glitch__color--white {
    animation: glitch 1s infinite;
}

.glitch__color--red {
    animation: glitch 3s infinite 1s;
    color: red;
}

.glitch__color--blue {
    animation: glitch 2.5s infinite reverse;
    color: blue;
}

.glitch__color--green {
    animation: glitch 2s infinite 1s;
    color: #00FF0B;
}
*/






.glitch__color--white {
    animation: glitch 1s infinite 1s;
	z-index: 1;
}

.glitch__color--red {
    /*animation: glitch-r 3s infinite 1s;*/
	animation: glitch-r 3s steps(1, jump-end) infinite alternate both;
	
    color: red;
}

.glitch__color--green {
    /*animation: glitch-g 2s infinite 1s;*/
	animation: glitch-g 3s steps(1, jump-end) infinite alternate both;
	
    color: #00FF0B;
}

.glitch__color--blue {
    /*animation: glitch-b 2.5s infinite reverse;*/
	animation: glitch-b 3s steps(1, jump-end) infinite alternate both;
	
    color: blue;
}

/*
@keyframes glitch {
    0% {
        left: -10px;
        clip: rect(10px, 9999px, 63px, 0);
    }
    4% {
        clip: rect(137px, 9999px, 150px, 0);
    }
    8% {
        clip: rect(82px, 9999px, 178px, 0);
    }
    12% {
        left: -2px;
        clip: rect(85px, 9999px, 125px, 0);
    }
    16% {
        clip: rect(223px, 9999px, 258px, 0);
    }
    20% {
        left: 10px;
        clip: rect(100px, 9999px, 146px, 0);
    }
    24% {
        clip: rect(41px, 9999px, 72px, 0);
    }
    28% {
        clip: rect(9px, 9999px, 45px, 0);
    }
    32% {
        clip: rect(136px, 9999px, 164px, 0);
        filter: hue-rotate(-25deg);
    }
    36% {
        left: -9px;
        clip: rect(84px, 9999px, 116px, 0);
    }
    40% {
        top: 7px;
        clip: rect(229px, 9999px, 315px, 0);
    }
    44% {
        clip: rect(37px, 9999px, 73px, 0);
    }
    48% {
        clip: rect(163px, 9999px, 180px, 0);
    }
    52% {
        clip: rect(205px, 9999px, 244px, 0);
    }
    56% {
        left: 6px;
        clip: rect(135px, 9999px, 170px, 0);
    }
    60% {
        clip: rect(14px, 9999px, 100px, 0);
    }
    64% {
        left: -2px;
        clip: rect(116px, 9999px, 129px, 0);
    }
    68% {
        clip: rect(37px, 9999px, 69px, 0);
    }
    72% {
        top: -9px;
        clip: rect(232px, 9999px, 264px, 0);
    }
    76% {
        left: -8px;
        clip: rect(100px, 9999px, 196px, 0);
        filter: hue-rotate(35deg);
    }
    80% {
        clip: rect(199px, 9999px, 245px, 0);
    }
    84% {
        clip: rect(37px, 9999px, 73px, 0);
    }
    88% {
        left: -10px;
        clip: rect(1px, 9999px, 296px, 0);
    }
    92% {
        clip: rect(141px, 9999px, 272px, 0);
    }
    96% {
        clip: rect(33px, 9999px, 65px, 0);
    }
    100% {
        clip: rect(137px, 9999px, 273px, 0);
    }
}
*/

/*
@keyframes glitch-r {
  0% {
    transform: translate(-0.7499024876%, -0.307959258%);
  }
  2% {
    transform: translate(-0.4057574139%, 0.0856553031%);
  }
  4% {
    transform: translate(-0.085293037%, 0.4344509842%);
  }
  6% {
    transform: translate(0.6963730923%, -0.0497782003%);
  }
  8% {
    transform: translate(-1.020254669%, 0.0747058238%);
  }
  10% {
    transform: translate(1.8211986295%, -0.0306895824%);
  }
  12% {
    transform: translate(1.7863705139%, 0.4066570263%);
  }
  14% {
    transform: translate(-1.3582948682%, -0.1107747989%);
  }
  16% {
    transform: translate(-0.3831905466%, 0.2779433448%);
  }
  18% {
    transform: translate(1.1675002182%, 0.4099615689%);
  }
  20%, 100% {
    transform: none;
	  opacity: 0;
  }
}
*/
@keyframes glitch-r {
  0% {
    transform: translate(-0.7499024876%, -3.07959258%);
  }
  2% {
    transform: translate(-0.4057574139%, 0.0856553031%);
  }
  4% {
    transform: translate(-0.085293037%, 4.344509842%);
  }
  6% {
    transform: translate(0.6963730923%, -0.0497782003%);
  }
  8% {
    transform: translate(-1.020254669%, 0.0747058238%);
  }
  10% {
    transform: translate(1.8211986295%, -0.0306895824%);
  }
  12% {
    transform: translate(1.7863705139%, 4.066570263%);
  }
  14% {
    transform: translate(-1.3582948682%, -0.1107747989%);
  }
  16% {
    transform: translate(-0.3831905466%, 2.779433448%);
  }
  18% {
    transform: translate(1.1675002182%, 4.099615689%);
  }
  20%, 100% {
    transform: none;
	  opacity: 0;
  }
}

/*
@keyframes glitch-g {
  0% {
    transform: translate(-1.3624806294%, -0.479233049%);
  }
  2% {
    transform: translate(-0.1692069309%, -0.0695112802%);
  }
  4% {
    transform: translate(1.5699839581%, -0.1336642692%);
  }
  6% {
    transform: translate(-1.5157095654%, 0.3284356106%);
  }
  8% {
    transform: translate(-1.1204309713%, -0.3676811692%);
  }
  10% {
    transform: translate(-0.6613458167%, 0.0719131111%);
  }
  12% {
    transform: translate(1.6608553781%, -0.0187013135%);
  }
  14% {
    transform: translate(0.9514814272%, 0.330884108%);
  }
  16% {
    transform: translate(1.7917163875%, 0.4709561907%);
  }
  18% {
    transform: translate(0.115628029%, 0.2683982529%);
  }
  20%, 100% {
    transform: none;
	  	  opacity: 0;
  }
}
*/
@keyframes glitch-g {
  0% {
    transform: translate(-1.3624806294%, -479233049%);
  }
  2% {
    transform: translate(-0.1692069309%, -0.0695112802%);
  }
  4% {
    transform: translate(1.5699839581%, -1.336642692%);
  }
  6% {
    transform: translate(-1.5157095654%, 3.284356106%);
  }
  8% {
    transform: translate(-1.1204309713%, -3.676811692%);
  }
  10% {
    transform: translate(-0.6613458167%, 0.0719131111%);
  }
  12% {
    transform: translate(1.6608553781%, -0.0187013135%);
  }
  14% {
    transform: translate(0.9514814272%, 3.30884108%);
  }
  16% {
    transform: translate(1.7917163875%, 4.709561907%);
  }
  18% {
    transform: translate(0.115628029%, 2.683982529%);
  }
  20%, 100% {
    transform: none;
	  	  opacity: 0;
  }
}

/*
@keyframes glitch-b {
  0% {
    transform: translate(-1.3068488583%, -0.0958043438%);
  }
  2% {
    transform: translate(1.0335343052%, -0.2818158183%);
  }
  4% {
    transform: translate(1.2562776312%, -0.029299304%);
  }
  6% {
    transform: translate(-1.2033059096%, -0.0016699782%);
  }
  8% {
    transform: translate(-1.6786859743%, 0.2828820513%);
  }
  10% {
    transform: translate(0.8060867478%, -0.0489376744%);
  }
  12% {
    transform: translate(0.6294719738%, -0.0733125554%);
  }
  14% {
    transform: translate(0.7370102002%, 0.27818084%);
  }
  16% {
    transform: translate(-0.7642525899%, 0.0543546704%);
  }
  18% {
    transform: translate(-1.4654231653%, -0.0587803278%);
  }
  20%, 100% {
    transform: none;
	  opacity: 0;
  }
}
*/
@keyframes glitch-b {
  0% {
    transform: translate(-1.3068488583%, -0.0958043438%);
  }
  2% {
    transform: translate(1.0335343052%, -2.818158183%);
  }
  4% {
    transform: translate(1.2562776312%, -0.029299304%);
  }
  6% {
    transform: translate(-1.2033059096%, -0.0016699782%);
  }
  8% {
    transform: translate(-1.6786859743%, 2.828820513%);
  }
  10% {
    transform: translate(0.8060867478%, -0.0489376744%);
  }
  12% {
    transform: translate(0.6294719738%, -0.0733125554%);
  }
  14% {
    transform: translate(0.7370102002%, 2.7818084%);
  }
  16% {
    transform: translate(-0.7642525899%, 0.0543546704%);
  }
  18% {
    transform: translate(-1.4654231653%, -0.0587803278%);
  }
  20%, 100% {
    transform: none;
	  opacity: 0;
  }
}



.glitch__image {
    position: relative;
    aspect-ratio: 15 / 6;
    margin: 0 auto;
    height: 45vh;
}

.glitch__image-text {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 10;
    width: 80%;
}

.glitch__image-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(/assets/images/original/bg-VHC.png);
    background-position: center;
    -moz-background-size: contain;
    -o-background-size: contain;
    -webkit-background-size: contain;
    background-size: contain;
    background-repeat: no-repeat;
}

@media screen and (max-width: 599px) {
    .glitch__text p {
        position: relative;
        font-size: calc((22 / 375) * 100vw);
    }

    .glitch__image {
        height: auto;
    }
}

/*//////////　hero　//////////*/

.lp-hero__box {
    padding-top: 70px;
    display: flex;
    justify-content: center;
	position: relative;
	z-index: 1;
}

.lp-hero__box .heroPC img {
    height: 75vh;
    width: auto;
}

@media screen and (max-width: 599px) {
    .lp-hero__box {
        padding-top: 56px;
        display: block;
    }
}


.lp-hero .abstract01 {
	position: absolute;
	bottom: 20%;
    left: 0;
    transform: rotate(90deg);
}

.lp-hero .abstract02 {
	position: absolute;
    top: 20%;
    right: 0;
}


/*//////////　catchcopy　//////////*/

.lp-catchcopy {
    overflow: hidden;
}

.lp-catchcopy .text {
    text-align: center;
}

.lp-catchcopy .text .hook {
    font-size: 3.2rem;
    font-weight: bold;
    color: #ff4655;
    line-height: 1.5;
}

.lp-catchcopy .text .catchcopy {
    font-size: 8rem;
    font-weight: bold;
    line-height: 1.5;
    text-indent: 0.5em;
    width: 100%;
}

@media screen and (max-width: 599px) {
    .lp-catchcopy .text .hook {
        font-size: calc((20 / 375) * 100vw);
        text-align: center;
    }
	
    .lp-catchcopy .text .catchcopy {
        font-size: calc((30 / 375) * 100vw);
        text-indent: 0;
    }
}

/*//////////　ABOUT　//////////*/

.lp-about .inner {
    max-width: 1080px;
}

.lp-about .inner .text {
    text-align: center;
}

.lp-about .inner .text .title.large {
    font-size: 4rem;
}

.lp-about .winning-prize .box {
	margin-top: 6rem;
}

.lp-about .winning-prize .lead {
	text-align: center;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 3rem;
}

.lp-about .winning-prize .image {
	width: 500px;
}

.lp-about .winning-prize .text {
	width: 500px;
	text-align: left;
}

@media screen and (max-width: 599px) {
    .lp-about .inner .text {
        text-align: left;
    }
    .lp-about .inner .text .title.large {
        font-size: calc((18 / 375) * 100vw);
    }
	
    .lp-about .winning-prize .lead {
        font-size: calc((18 / 375) * 100vw);
		margin-bottom: 2rem;
    }
	
	.lp-about .winning-prize .image {
		width: 100%;
	}
	
	.lp-about .winning-prize .text {
		width: 100%;
		margin-top: 2rem;
	}
}

.lp-about .abstract01 {
	position: absolute;
	top: 0;
	right: 0;
}

.lp-about .abstract02 {
	position: absolute;
	top: 30%;
	left: 5%;
}

.lp-about .abstract03 {
	position: absolute;
	bottom: 50%;
    right: 0;
    transform: rotate(-90deg);
	width: 20em;
}

@media screen and (max-width: 599px) {
	.lp-about .abstract02 {
		top: 0;
		left: 0;
	}

	.lp-about .abstract03 {
		bottom: 57%;
		right: -24%;
	}
}



/*//////////　AMBASSADOR　//////////*/

.lp-ambassador .inner {
    max-width: 1080px;
}

.lp-ambassador .introduction .image {
    width: 400px;
}

.lp-ambassador .introduction .text {
    width: 600px;
}

.lp-ambassador .introduction .text__list {
    margin-top: 4rem;
}

.lp-ambassador .introduction .text__list-item {
    margin-top: 4rem;
}

.lp-ambassador .introduction .text__list-item:first-child {
    margin-top: 0;
}

.lp-ambassador .introduction .text__list-item .title {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.lp-ambassador .introduction .text__list-item.profile {
    font-size: 1.4rem;
    padding: 2rem;
    border: 2px solid #5e6166;
}

@media screen and (max-width: 599px) {
    .lp-ambassador .introduction .image,
    .lp-ambassador .introduction .text {
        width: 100%;
    }
    .lp-ambassador .introduction .text {
        margin-top: 2rem;
    }
    .lp-ambassador .introduction .text__list {
        margin-top: 2rem;
    }
    .lp-ambassador .introduction .text__list-item {
        margin-top: 2rem;
    }
}

.lp-ambassador .abstract01 {
	position: absolute;
	top: 0;
	left: 0;
}

.lp-ambassador .abstract02 {
	position: absolute;
	top: 30%;
	right: 5%;
}

@media screen and (max-width: 599px) {
	.lp-ambassador .abstract02 {
		top: 0;
		right: 0;
	}
}

/*//////////　GUESTS　//////////*/

.lp-guests .inner {
    max-width: 1080px;
}

.lp-guests .introduction .image {
    width: 400px;
}

.lp-guests .introduction .text {
    width: 600px;
}

.lp-guests .introduction .text .text__list {
    margin-top: 4rem;
}

.lp-guests .introduction .text__list-item {
    margin-top: 4rem;
}

.lp-guests .introduction .text__list-item:first-child {
    margin-top: 0;
}

.lp-guests .introduction .text__list-item .title {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.lp-guests .introduction .text__list-item.profile {
    font-size: 1.4rem;
    padding: 2rem;
    border: 2px solid #5e6166;
}

@media screen and (max-width: 599px) {
    .lp-guests .introduction .image,
    .lp-guests .introduction .text {
        width: 100%;
    }
    .lp-guests .introduction .text {
        margin-top: 2rem;
    }
    .lp-guests .introduction .text .text__list {
        margin-top: 2rem;
    }

}

.lp-guests .friend {
	margin-top: 4rem;
}

.lp-guests .friend .lead {
	text-align: center;
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.25;
    margin-bottom: 0.5em;
}

.lp-guests .friend__list {
    padding: 2rem;
    background-color: #2a3138;
}

.lp-guests .friend__list-item {
	width: 500px;
}

.lp-guests .friend__list-item:nth-child(n + 3) {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px dotted #5e6166;
}	

.lp-guests .friend__list-item .image {
    width: 200px;
}

.lp-guests .friend__list-item .text {
    width: 280px;
}

@media screen and (max-width: 599px) {
	.lp-guests .friend {
		margin-top: 2rem;
	}

	.lp-guests .friend .lead {
		font-size: calc((30 / 375) * 100vw);
	}
	
	.lp-guests .friend__list-item {
		width: 100%;
	}
	
	.lp-guests .friend__list-item:nth-child(2) {
		margin-top: 2rem;
		padding-top: 2rem;
		border-top: 1px dotted #5e6166;
	}	
	
	.lp-guests .friend__list-item .image {
		width: 100%;
	}

	.lp-guests .friend__list-item .text {
		width: 100%;
		margin-top: 1rem;
	}

	.lp-guests .friend__list-item .text .title {
		margin-bottom: 0;
	}
	
}

.lp-guests .abstract01 {
	position: absolute;
	top: 0;
	right: 0;
}

.lp-guests .abstract02 {
	position: absolute;
	top: 30%;
	left: 5%;
	transform: rotate(90deg);
}

@media screen and (max-width: 599px) {
	.lp-guests .abstract02 {
		top: 0;
		left: 0;
	}
}


/*//////////　SUPPORT　//////////*/

.lp-support .inner {
    max-width: 800px;
}

.lp-support .text {
    margin-top: 8rem;
}

.lp-support .inner .company .title {
    margin-bottom: 1rem;
}

.lp-support .inner .text__list {
    margin-top: 4rem;
}

.lp-support .inner .text__list-item {
    margin-top: 4rem;
    border: 5px solid #5e6166;
    padding: 2rem;
}

.lp-support .inner .text__list-item:first-child {
    margin-top: 0;
}

.lp-support .inner .text__list-item .title {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.lp-support .inner .text__list-item .title.large {
    font-size: 2.4rem;
}

@media screen and (max-width: 599px) {
    .lp-support .text {
        margin-top: 4rem;
    }
    .lp-support .inner .text__list-item {
        margin-top: 2rem;
    }
}

.lp-support .abstract01 {
	position: absolute;
	top: 0;
	left: 0;
}

.lp-support .abstract02 {
	position: absolute;
	top: 30%;
	right: 5%;
}

.lp-support .abstract03 {
	position: absolute;
    top: 60%;
    left: -5%;
    transform: rotate(90deg);
    width: 30em
}


@media screen and (max-width: 599px) {
	.lp-support .abstract02 {
		top: 0;
		right: 0;
	}
	
	.lp-support .abstract03 {
		top: 50%;
		left: -37%;
	}
}

/*//////////　GAME TITLE　//////////*/

.lp-game-title .inner {
    max-width: 800px;
}

.lp-game-title .image {
    position: relative;
}

.lp-game-title .image figcaption {
    font-family: 'Oswald', sans-serif;
    font-size: 10rem;
    font-weight: 700;
    position: absolute;
    bottom: -4rem;
    left: 50%;
    transform: translateX(-50%);
}

.lp-game-title .text {
    margin-top: 8rem;
}

@media screen and (max-width: 599px) {
    .lp-game-title .image figcaption {
        font-size: calc((50 / 375) * 100vw);
    }
    .lp-game-title .text {
        margin-top: 4rem;
    }
}

.lp-game-title .abstract01 {
	position: absolute;
	top: 0;
	right: 0;
}

.lp-game-title .abstract02 {
	position: absolute;
	top: 30%;
	left: 5%;
}

.lp-game-title .abstract03 {
	position: absolute;
    top: 70%;
    right: 5%;
    transform: rotate(90deg);
}

@media screen and (max-width: 599px) {
	.lp-game-title .abstract02 {
		top: 0;
		left: 0;
	}
	
	.lp-game-title .abstract03 {
		top: 30%;
		right: -5%;
	}
}

/*//////////　OVERVIEW　//////////*/

.lp-overview .inner {
    max-width: 800px;
}
/*
.lp-overview .schedule {
margin-top: 8rem;
}
*/

.lp-overview .schedule .notice {
    text-align: center;
}

.lp-overview .schedule__list {
    margin: 6rem 0 3rem;
}

.lp-overview .schedule__list-item {
    font-size: 2rem;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    /*align-items: center;*/
	align-items: flex-start;
    margin-top: 4rem;
}

.lp-overview .schedule__list-item p {
    line-height: 1.5;
}

.lp-overview .schedule__list-item .title {
    width: 200px;
    padding: 1rem;
    background-color: #1126cf;
    text-align: center;
}

.lp-overview .schedule__list-item .row {
    width: 580px;
	padding-top: 1rem;
}

.lp-overview .schedule__list-item .row .small {
    font-size: 1.6rem;
    font-weight: normal;
}

.lp-overview .schedule__list-item .row ul li {
    text-indent: -1em;
    padding-left: 1em;
}

@media screen and (max-width: 599px) {
    .lp-overview .schedule__list-item {
        font-size: 1.6rem;
        display: block;
        margin-top: 3rem;
    }
    .lp-overview .schedule__list-item .title {
        width: 100%;
        padding: 0.5rem;
        margin-bottom: 1rem;
    }
    .lp-overview .schedule__list-item .row {
        width: 100%;
        font-weight: normal;
    }
}

.lp-overview .abstract01 {
	position: absolute;
	top: 0;
	left: 0;
}

.lp-overview .abstract02 {
	position: absolute;
	top: 30%;
	right: 5%;
}

@media screen and (max-width: 599px) {
	.lp-overview .abstract02 {
		top: 0;
		right: 0;
	}
}

/*//////////　CONTACT　//////////*/

.lp-contact .inner {
    max-width: 800px;
}

.lp-contact .inner .box {
    width: 360px;
    border: 5px solid #5e6166;
    padding: 2rem;
    font-weight: bold;
}

.lp-contact .inner .box p {
    line-height: 1.5;
}

.lp-contact .box .title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.lp-contact .box .box__list {
    margin-top: 2rem;
}

@media screen and (max-width: 599px) {
    .lp-contact .inner .box {
        width: 100%;
        margin-top: 2rem;
        font-weight: normal;
    }
}

.lp-contact .abstract01 {
	position: absolute;
	top: 0;
	right: 0;
}

.lp-contact .abstract02 {
	position: absolute;
	top: 30%;
	left: 5%;
}

@media screen and (max-width: 599px) {
	.lp-contact .abstract02 {
		top: 0;
		left: 0;
	}
}

/*//////////　other　//////////*/

.lp-other .container {
    background-color: #1126cf;
    padding: 8rem 0;
}

.lp-other .inner {
    max-width: 800px;
    margin: 0 auto;
}

.lp-other .other__text {
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
}

.lp-other .other__text .large {
    font-size: 3.6rem;
}

.lp-other .school {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

.lp-other .school__box {
    width: calc((100% - 4px) / 3);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 2px solid rgba(255, 255, 255, 0.5);
}

.lp-other .school__box:nth-child(n + 3) {
    border-right: none;
}

.lp-other .school__box .name {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.5;
}

.lp-other .school__box .button__list-item {
    margin-top: 1rem;
}

.lp-other .other-button {
    width: 180px;
    height: 40px;
    border: 2px solid #ffffff;
    border-radius: 20px;
    font-size: 1.4rem;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    line-height: 40px;
    transition: 0.3s;
}

.lp-other .other-button:hover {
    color: #ffffff;
    background-color: #ff4655;
    border: 2px solid #ff4655;
}

@media screen and (max-width: 599px) {
    .lp-other .container {
        padding: 4rem 0;
    }
    .lp-other .other__text .large {
        font-size: calc((28 / 375) * 100vw);
    }
    .lp-other .school {
        display: block;
        margin-top: 0;
    }
    .lp-other .school__box {
        width: 100%;
        border-right: none;
        border-bottom: 2px solid rgba(255, 255, 255, 0.5);
        padding: 2rem 0;
    }
    .lp-other .school__box:last-child {
        border-bottom: none;
        padding: 2rem 0 0;
    }
    .lp-other .school__box .button__list-item {
        margin-top: 2rem;
    }
    .lp-other .other-button {
        width: 240px;
        height: 50px;
        border-radius: 25px;
        font-size: 1.6rem;
        line-height: 50px;
    }
}
/*//////////　header　//////////*/

.header {
    position: fixed;
    width: 100%;
    z-index: 100;
    background-color: #040404;
    display: flex;
    align-items: center;
}

.header_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1080px;
    height: 70px;
    margin: 0 auto;
}

.logo h1 {
    font-family: 'Oswald', sans-serif;
    font-family: 3rem;
    line-height: 0.5;
    text-align: center;
}

.logo h1 .small {
    font-size: 0.525em;
}

@media screen and (max-width: 599px) {
    .header_inner {
        justify-content: center;
        height: 56px;
        padding: 0 2%;
    }
    .logo h1 {
        font-size: calc((20 / 375) * 100vw);
    }
}
/*　btn　*/

.btn {
    display: none;
    /* 一時、非表示*/
}

.btn {
    position: fixed;
    right: 6%;
    z-index: 10;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0);
    padding: 0 5px;
    text-align: initial;
}

.btn-line {
    display: block;
    position: relative;
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    transition: .2s;
}

.btn-line::before,
.btn-line::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    transition: .5s;
}

.btn-line::before {
    transform: translateY(-12px);
}

.btn-line::after {
    transform: translateY(12px);
}

.btn-line.open {
    /*background-color: transparent;*/
    background-color: rgba(255, 255, 255, 0)
}

.btn-line.open::before,
.btn-line.open::after {
    content: "";
    background-color: #ffffff;
    transition: .2s;
}

.btn-line.open::before {
    transform: rotate(45deg);
}

.btn-line.open::after {
    transform: rotate(-45deg);
}

@media screen and (min-width: 600px) {
    .btn {
        display: none;
    }
}
/*　menu　*/

.menu-list {
    display: flex;
    align-items: center;
}

.menu-list_item {
    margin: 0 2rem;
}

.menu-list_item img {
    height: 20px;
}
/*
.menu-list_item {
margin: 0 2rem;
list-style: none;
font-size: 1.6rem;
font-weight: bold;
letter-spacing: 0.1em;
}

.menu-list_item a {
color: #ffffff;
}

.menu .sns-icon {
width: 30px;
}
*/

@media screen and (max-width: 599px) {
    .menu-list {
        flex-direction: column;
        position: fixed;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: #ff4655;
        color: #efefef;
        transition: .3s;
        top: 56px;
        padding-top: 10%;
    }
    .menu-list_item {
        font-size: 1.5em;
        text-align: center;
        width: 100%;
    }
    .menu-list_item a {
        display: block;
        padding: 0.75em 0;
    }
    .menu-list_item.border {
        background-color: #fff;
        width: 80%;
        height: 1px;
        margin: 1em 0;
        padding: 0;
    }
    .menu.open {
        position: absolute;
        right: 0;
    }
    .menu .sns-icon {
        width: 40px;
        display: inline-block;
    }
}
/*//////////　footer　//////////*/

footer {
    width: 100%;
    background-color: #060c1f;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    bottom: 0;
}

