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

audio, canvas, video {
    display: inline-block;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden] {
    display: none;
}

html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
}

a:focus {
    outline: thin dotted;
}

a:active, a:hover {
    outline: 0;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

abbr[title] {
    border-bottom: 1px dotted;
}

b, strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
}

mark {
    background: #ff0;
    color: #000;
}

code, kbd, pre, samp {
    font-family: monospace, serif;
    font-size: 1em;
}

pre {
    white-space: pre-wrap;
}

q {
    quotes: "\201C" "\201D" "\2018" "\2019";
}

small {
    font-size: 80%;
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 0;
}

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

legend {
    border: 0;
    padding: 0;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: 100%;
    margin: 0;
}

button, input {
    line-height: normal;
}

button, select {
    text-transform: none;
}

button, html input[type="button"], input[type="reset"], input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

button[disabled], html input[disabled] {
    cursor: default;
}

input[type="checkbox"], input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="search"] {
    -webkit-appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

button::-moz-focus-inner, input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
    vertical-align: top;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

*, * ::after, * ::before {
    box-sizing: border-box;
}

:root {
    font-size: 14px;
}

html, body {
    height: 100%;
}

body {
    --color-text: #6f6f6f;
    --color-bg: #f4f4f4;
    --color-link: #3eb482;
    --color-link-hover: #55ede1;
    --color-menu-text: #55ede1;
    --color-bg-move: #909090;
    color: var(--color-text);
    background-color: var(--color-bg);
    font-family: 'Permanent Marker', cursive;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}



main {
    width: 100%;
    height: 100%;
    position: relative;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 100%;
    align-items: center;
}

.js main {
    overflow: hidden;
}

.cursor {
    display: none;
}

/* Page Loader */
.js .loading::before {
    content: '';
    position: fixed;
    z-index: 100000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg);
}

.js .loading::after {
    content: '';
    position: fixed;
    z-index: 100000;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
    pointer-events: none;
    border-radius: 50%;
    opacity: 0.4;
    background: var(--color-link);
    animation: loaderAnim 0.7s linear infinite alternate forwards;
}

@keyframes loaderAnim {
    to {
        opacity: 1;
        transform: scale3d(0.5, 0.5, 1);
    }
}

a {
    text-decoration: none;
    color: var(--color-link);
}

p {
    text-decoration: none;
    font-family: Arial;
}

@media (max-width: 767px) {
p {
    text-decoration: none;
    font-family: Arial;
    margin-left: 0px;
    margin-right: 0px;
}
}


h3 {
    text-decoration: none;
    font-family: Arial;
    margin: 0px 10px 10px 10px;
}

@media (max-width: 767px) {
h3 {
    text-decoration: none;
    font-family: Arial;
    text-align: center;
}
}


.discotext {
    text-decoration: none;
    font-family: Arial;
    text-align: left;
    padding: 0px 0px 0px 30px;
}


@media (max-width: 767px) {
.discotext {
    text-decoration: none;
    font-family: Arial;
    text-align: left;
    padding: 0px 0px 0px 0px;
}
}




a:hover, a:focus {
    color: var(--color-link-hover);
    outline: 0;
}

.frame {
    padding: 1rem;
    text-align: center;
    position: relative;
    z-index: 1000;
    grid-area: 1 / 1 / 2 / 2;
    align-self: start;
}

.frame__title {
    font-size: 1rem;
    margin: 0 0 1rem;
}

.frame__links {
    display: inline;
}

.frame__github, .frame__links a:not(:last-child), .frame__demos a:not(:last-child) {
    margin-right: 1rem;
}

.frame__demos {
    margin: 1rem 0;
}

.frame__demo--current, .frame__demo--current:hover {
    color: var(--color-text);
}

.content, .content__move {
    width: 100%;
    height: 100vh;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 100%;
    align-items: center;
    grid-area: 1 / 1 / 2 / 2;
    justify-self: center;
    position: relative;
    will-change: transform;
}

.content--first {
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
}

.content__move {
    background: var(--color-bg-move);
}

.columns {
    grid-area: 1 / 1 / 2 / 2;
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 2%;
    left: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 100%;
    grid-gap: 1.5rem;
    padding: 3% 16vw;
}


@media (max-width: 767px) {
.columns {
    grid-area: 1 / 1 / 2 / 2;
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 10%;
    left: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 100%;
    grid-gap: 1rem;
    padding: 0 8vw;
}
}



.column {
    position: relative;
    align-self: start;
    will-change: transform;
}

.column--bottom {
    align-self: end;
}

.column__img {
    width: 300px;
    height: 300px;
    display: block;
    opacity: 0.6;
    background-size: cover;
    background-position: 50% 50%;

}

.column__img:nth-child(odd) {
    height: 300px;
}


@media (max-width: 767px) {
.column__img {
    width: 15vh;
    height: 15vh;
    display: block;
    opacity: 0.6;
    background-size: cover;
    background-position: 50% 50%;

}
}

@media (max-width: 767px) {
.column__img:nth-child(odd) {
    height: 15vh;
}
}



.column__img:not(:last-child) {
    margin-bottom: 0.5rem;
}

.menu {
    grid-area: 1 / 1 / 2 / 2;
    width: 100vw;
    height: 90vh;
    padding: 15vh 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.menu__item {
    display: flex;
    font-weight: 800;
    font-size: 10vw;
    line-height: 1.1;
    cursor: pointer;
    padding-bottom: 1rem;
    color: #ffffff;
}

.menu__item:hover {
    -webkit-text-fill-color: var(--color-menu-text);
    text-fill-color: var(--color-menu-text);
    color: var(--color-menu-text);
}

.menu__item2 {
    display: flex;
    font-weight: 800;
    font-size: 1.3vw;
    line-height: 1.1;
    cursor: pointer;
    padding-bottom: 1rem;
    color: #55ede1;
}


@media (max-width: 767px) {
.menu__item2 {
    display: flex;
    font-weight: 800;
    font-size: 6vw;
    line-height: 1.1;
    cursor: pointer;
    padding-bottom: 1rem;
    color: #55ede1;
    margin-left: 15%;
}
}



.item {
    position: relative;
}



.js .item--current {
    opacity: 1;
    pointer-events: auto;
}

.item__img {
    height: 500px;
    width: 100%;
    flex: none;
    background-size: cover;
    background-position: 50% 25%;
    opacity: 1;
}

@media (max-width: 767px) {
.item__img {
        height: 300px;
        flex: none;
        background-size: cover;
        background-position: 50% 0%;
        opacity: 1;
        margin: 400px 0px 0px 0px;
    
    }
}



@media (max-width: 340px) {
.item__img {
    height: 220px;
    flex: none;
    background-size: cover;
    background-position: 50% 0%;
    opacity: 1;
    margin: 220px 0px 0px 0px;
}
}

.item__content {
    height: calc(130vh - 300px);
    overflow: auto;
    margin-bottom: 0px;
    padding: 10px 10px 50px 10px;
}

@media (max-width: 767px) {
.item__content {
    padding: 40px 10px 50px 10px;
}
}

@media (max-width: 380px) {
.item__content {
    padding: 40px 10px 50px 10px;
}
}

@media (max-width: 350px) {
.item__content {
    padding: 40px 10px 50px 10px;
}
}

@media (max-width: 320px) {
.item__content {
    padding: 40px 10px 50px 10px;
}
}



.item__content-title {
    font-size: 2.5rem;
    margin: 0;
    line-height: 1.2;
    pointer-events: none;
    padding: 10px 0px 0px 0px;
    color: #36af96;
    text-align: center;
}

.menu__item span, .item__content-title span {
    display: inline-block;
    white-space: pre;
    pointer-events: none;
    will-change: transform;
}

.item__content-subtitle {
    font-weight: normal;
    margin: 0px 10px 0px 10px;
    font-size: 1.2rem;
    text-align: center;
}

.item__content-text {
    margin: 2vh 0px 10rem 0px;
    position: relative;
    line-height: 1.5;
}

.item__content-text::after {
    content: '';
    width: 2rem;
    height: 2px;
    position: absolute;
    background: currentColor;
    top: calc(100% + 3rem);
}

.item__content-back {
    cursor: pointer;
    color: #35bbc2;
}

@media screen and (min-width: 53em) {
    .frame {
        position: fixed;
        text-align: left;
        z-index: 10000;
        top: 0;
        left: 0;
        display: grid;
        align-content: space-between;
        width: 100%;
        max-width: none;
        height: 100vh;
        padding: 3rem 4rem;
        pointer-events: none;
        grid-template-columns: 50% 50%;
        grid-template-rows: auto auto auto;
        grid-template-areas: 'title ...'
        '... ...'
        'links links';
    }

    .frame__title-wrap {
        grid-area: title;
        display: flex;
    }

    .frame__title {
        margin: 0;
        font-weight: normal;
    }

    .frame__links {
        grid-area: links;
        padding: 0;
        justify-self: end;
    }

    .frame a {
        pointer-events: auto;
    }

    .menu__item {
        font-size: 5vh;
        letter-spacing: 10px;
    }

    .item {
        height: 100%;
        width: 100%;
        display: flex;
    }

    .item__img {
        height: 60%;
        width: 45%;
        background-position: 36% 50%;
        margin-top: 10%;
    }

    .item__content {
        padding: 15vh 2vw 20vh 2vw;
        width: 100%;
        height: 100%;
        flex-direction: column;
        align-items: flex-start;
        overflow: scroll;
    }

    .item__content-title {
        font-size: 3vw;
        color: #36af96;
        margin-left: auto;
        margin-right: auto;
    }

    .item__content-subtitle {
        font-size: 1vw;
        margin-left: auto;
        margin-right: auto;
    }

    .item__content-text {
        margin-bottom: 0;
    }
}




@media screen and (min-width: 650px){	
  .br-pc { display:block; }
  .br-sp { display:none; }
}
@media screen and (max-width: 650px){	
  .br-pc { display:none; }
  .br-sp { display:block; }
}



.footer{
	background-color: #23ab94;
	color: #d44646;
	width: 100%;   
   	font-size: 14px;
    padding: 0px 10px 0px 10px;
    position: fixed;
    bottom: 0; /
}

.footer-menu ul {
	list-style-type: none;
}

.footer-menu li {
	display: inline;
	line-height: 2;
	font-family: Open Sans;
	font-size: 14px;
	padding-right: 15px;
	text-transform: capitalize;
}

.footer-menu li a {
	color: #707570;
	text-decoration: none;
}

.footer p {
	font-size: 13px;
	font-weight: 400;
	color: #ffffff;
	line-height: 0px;
	text-align: center;
    	margin: 0px 10px 20px 10px;
}

.footer-text p {
	font-family: "Open Sans";
	font-size: 12px;
	color: #FFFFFF;
	font-weight: 400;
	line-height: 0px;
	margin: 10px 10px 10px 10px;
}




/* ÃƒÂ£Ã†â€™Ã¢â‚¬ËœÃƒÂ£Ã¢â‚¬Å¡Ã‚Â½ÃƒÂ£Ã¢â‚¬Å¡Ã‚Â³ÃƒÂ£Ã†â€™Ã‚Â³ÃƒÂ£Ã‚ÂÃ‚Â§ÃƒÂ¨Ã‚Â¦Ã¢â‚¬Â¹ÃƒÂ£Ã‚ÂÃ…Â¸ÃƒÂ£Ã‚ÂÃ‚Â¨ÃƒÂ£Ã‚ÂÃ‚ÂÃƒÂ£Ã‚ÂÃ‚Â¯"pc"ÃƒÂ£Ã‚ÂÃ‚Â®classÃƒÂ£Ã‚ÂÃ…â€™ÃƒÂ£Ã‚ÂÃ‚Â¤ÃƒÂ£Ã‚ÂÃ¢â‚¬Å¾ÃƒÂ£Ã‚ÂÃ…Â¸ÃƒÂ§Ã¢â‚¬ÂÃ‚Â»ÃƒÂ¥Ã†â€™Ã‚ÂÃƒÂ£Ã‚ÂÃ…â€™ÃƒÂ¨Ã‚Â¡Ã‚Â¨ÃƒÂ§Ã‚Â¤Ã‚ÂºÃƒÂ£Ã‚ÂÃ¢â‚¬Â¢ÃƒÂ£Ã¢â‚¬Å¡Ã…â€™ÃƒÂ£Ã¢â‚¬Å¡Ã¢â‚¬Â¹ */
.pc { display: block !important; }
.sp { display: none !important; }
 
/* ÃƒÂ£Ã¢â‚¬Å¡Ã‚Â¹ÃƒÂ£Ã†â€™Ã…Â¾ÃƒÂ£Ã†â€™Ã‚Â¼ÃƒÂ£Ã†â€™Ã‹â€ ÃƒÂ£Ã†â€™Ã¢â‚¬Â¢ÃƒÂ£Ã¢â‚¬Å¡Ã‚Â©ÃƒÂ£Ã†â€™Ã‚Â³ÃƒÂ£Ã‚ÂÃ‚Â§ÃƒÂ¨Ã‚Â¦Ã¢â‚¬Â¹ÃƒÂ£Ã‚ÂÃ…Â¸ÃƒÂ£Ã‚ÂÃ‚Â¨ÃƒÂ£Ã‚ÂÃ‚ÂÃƒÂ£Ã‚ÂÃ‚Â¯"sp"ÃƒÂ£Ã‚ÂÃ‚Â®classÃƒÂ£Ã‚ÂÃ…â€™ÃƒÂ£Ã‚ÂÃ‚Â¤ÃƒÂ£Ã‚ÂÃ¢â‚¬Å¾ÃƒÂ£Ã‚ÂÃ…Â¸ÃƒÂ§Ã¢â‚¬ÂÃ‚Â»ÃƒÂ¥Ã†â€™Ã‚ÂÃƒÂ£Ã‚ÂÃ…â€™ÃƒÂ¨Ã‚Â¡Ã‚Â¨ÃƒÂ§Ã‚Â¤Ã‚ÂºÃƒÂ£Ã‚ÂÃ¢â‚¬Â¢ÃƒÂ£Ã¢â‚¬Å¡Ã…â€™ÃƒÂ£Ã¢â‚¬Å¡Ã¢â‚¬Â¹ */
@media only screen and (max-width: 750px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}





/* Navbar & Navmenu color */
:root {
  --background-navbar: rgba(70, 70, 70, 1);
}



.header {
  background: var(--background-navbar);
  position: fixed;
  width: 100%;
  height: 52px;
  top: 0; 
  z-index: 1;

}

/* Nav items */
.nav {
  list-style: none;
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  margin-top: 52px;
  padding: 0 0 10px 0;
  clear: both;
  background: var(--background-navbar);
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transform: scale(1, 0);
  transform-origin: top;
}

/* Hamburger menu button */
.nav-btn:checked ~ .nav {
  transform: scale(1, 1);
  transform-origin: top;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

/* Hamburger menbu text */
.nav a {
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 16px;
  text-transform: capitalize;
  color: #ddd;
  opacity: 0;
  transition: 0.5s;
}

.nav li {
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  padding: 15px 0;
  margin: 0 54px;
  opacity: 0;
  transition: 0.5s;
}

@media (max-width: 320px) {
.nav li {
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  padding: 5px 0;
  margin: 0 54px;
  opacity: 0;
  transition: 0.5s;
}
}

.nav-btn:checked ~ .nav a,
.nav-btn:checked ~ .nav li {
  opacity: 1;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}

.nav-btn {
  display: none;
}

.nav-icon {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding: 24px 14px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.navicon {
  background: #ddd;
  display: block;
  height: 3px;
  width: 26px;
  position: relative;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before,
.navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #ddd;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before {
  top: 9px;
}

.navicon:after {
  bottom: 9px;
}

/* Hamburger Menu Animation Start */
.nav-btn:checked ~ .nav-icon .navicon:before {
  transform: rotate(-45deg);
}

.nav-btn:checked ~ .nav-icon .navicon:after {
  transform: rotate(45deg);
}

.nav-btn:checked ~ .nav-icon:not(.steps) .navicon:before {
  top: 0;
}
.nav-btn:checked ~ .nav-icon:not(.steps) .navicon:after {
  bottom: 0;
}

.nav-btn:checked ~ .nav-icon .navicon {
  background: rgba(0, 0, 0, 0);
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
/* Hamburger nav Animation End */

/* Navbar Container */
.navtext-container {
  width: 100%;
  height: 52px;
  position: absolute;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Navbar Text */
.navtext {
  position: absolute;
  text-transform: uppercase;
  color: #ddd;
  letter-spacing: 4px;
  font-size: 20px;
}







/* Ã£â€šÂ®Ã£Æ’Â£Ã£Æ’Â©Ã£Æ’ÂªÃ£Æ’Â¼ */
/* Lazy Load Styles */
.card-image {
  display: block;
  min-height:27rem; /* layout hack */
  background: #fff center center no-repeat;
  background-size: cover;
    
}

.card-image > img {
  display: block;
  width: 100%;
  opacity: 0; /* visually hide the img element */
}

.card-image.is-loaded {
  filter: none; /* remove the blur on fullres image */
  transition: filter 1s;
}


@media (max-width: 767px) {
.card-image {
  display: block;
  min-height:15rem; /* layout hack */
  background: #fff center center no-repeat;
  background-size: cover;
    
}

.card-image > img {
  display: block;
  width: 100%;
  opacity: 0; /* visually hide the img element */
}

.card-image.is-loaded {
  filter: none; /* remove the blur on fullres image */
  transition: filter 1s;
}
}



/* Ã£â€šÂ®Ã£Æ’Â£Ã£Æ’Â©Ã£Æ’ÂªÃ£Æ’Â¼Ã£â‚¬â‚¬Layout Styles */
.card-list {
  display: block;
  padding: 0;
  font-size: 0;
  text-align: center;
  list-style: none;
  width: 100%;
  margin-left: 0%;
   
    
}

.card {
  display: inline-block;
  width: 380px;
  margin: 1rem;
  font-size: 1rem;
  text-decoration: none;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 0 3rem -1rem rgba(0,0,0,0.5);
  transition: transform 0.1s ease-in-out, box-shadow 0.1s;
}





@media (max-width: 767px) {
.card-list {
  display: block;
  margin: 0px 0px 0px -1px;
  padding: 0;
  font-size: 0;
  text-align: center;
  list-style: none;
    
}
    .card {
  display: inline-block;
  width: 71%;
  max-width: 70rem;
  margin: 1;
  font-size: 1rem;
  text-decoration: none;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 0 3rem -1rem rgba(0,0,0,0.5);
  transition: transform 0.1s ease-in-out, box-shadow 0.1s;
}

}


.card-description {
  display: block;
  padding: 1em 0.5em;
  color: #515151;
  text-decoration: none;
}

.card-description > h2 {
  margin: 0 0 0.5em;
}

.card-description > p {
  margin: 0;
}






.text01 {
    text-decoration: none;
    font-family: Arial;
    text-align: left;
}



.ticket-text {
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    font-size: 0.8em;
    font-weight: 600;
	text-align: left;
    line-height: 1.3em;
    background-color: #fff;
    padding: 10px;
    width: 80%;
    border: solid 1px #afafaf;
}


.center_sns {
    width: 210px;
    margin-left: auto;
    margin-right: auto;
}





/* SNSリンク画像だけクリック許可 */
.center_sns a img {
  pointer-events: auto;
  cursor: pointer;
}





.pc_on {
    display: block !important;
}
.sp_on {
    display: none !important;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 847px) {
    .pc_on {
        display: none !important;
    }
    .sp_on {
        display: block !important;
    }
}




/* SNSリンク画像だけクリック許可 */
.sp_on_img img{
  width: 100%;
}

