body {
    font-family: "M PLUS Rounded 1c";
    background-color: #b4c4dd;
    text-align: center;
}

a {
    text-decoration: none;
    color: #191919;
}

a:active {
    color: #e6e6e6;
  }

a:focus {
    outline: none;
  }

a:hover {
    color: #6475e7;
    text-decoration: none;
}

.wrap {
    width: 100%;
    margin: 0 auto;
    padding:0;
}
.logo {
    width: 90%;
    margin: 0 auto;
}

header {
    text-align: center;
}
/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
    transition: 0.8s ease-in-out;
    transform: translateY(50px);
    opacity: 0;
  }
  .scroll_up.on {
    transform: translateY(0);
    opacity: 1.0;
  }

p,h1,h2,h3,ul,li {
    transform: rotate(0.03deg);  
}

.slash-1 {
    height: 10px;
    background-image: linear-gradient(-45deg,
      hsla(0, 0%, 70%, 0),
      hsla(0, 0%, 70%, 0) 25%,
      hsla(0, 0%, 70%, 1) 25%,
      hsla(0, 0%, 70%, 1) 50%,
      hsla(0, 0%, 70%, 0) 50%,
      hsla(0, 0%, 70%, 0) 75%,
      hsla(0, 0%, 70%, 1) 75%);
    background-size: 10px 10px;
    width: 250px;
    margin: 50px auto;
  }

.video {
    width: 563px;
    height: 563px;
    margin: 0 auto;
}

#video-area {
    width: 563px;
    height: 563px;
    margin: 0 auto;
}

h1 {
    color:#6475e7;
    font-size: 1.5em;
    font-weight: bold;
}

h2 {
    color:#191919;
    font-size: 1em;
    font-weight: bold;
}

p {
    color:#191919;
    margin: 5px 0;
}

p.ss {
    font-size: 0.75em;
    text-align: left;
}

p.s {
    font-size: 1.5em;
}

p.x {
    font-size: 2.5em;
}

section {
    margin-bottom:40px;
}

nav {
    margin:20px 0;
}

nav ul li {
    margin:0 20px;
}
.pushcircle{
    position: relative;
    width:60px;
    height:60px;
    box-sizing: border-box;
    padding: 0 10px;
    text-align: center;
    background:#191919;
    border-radius:50%;
    color: #e6e6e6;
    text-decoration: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin:0 auto;
}

.pushcircle:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 85%;
    height: 85%;
    border: 2px solid #191919;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(1.1);
    transition: .3s ease; 
  }

.pushcircle:hover:after {
    transform: translate(-50%, -50%) scale(1);
    border-color:#e6e6e6;
}
ol, ul {
    list-style-type: none;
    margin:0;
    padding: 0;
  }
  
li {
    list-style-type: none;
  }

.accordion-area{
    list-style: none;
    width: 96%;
    max-width: 900px;
    margin:0 auto;
}

.accordion-area li{
    margin: 10px 0;
}

.accordion-area section {
}


.title {
    position: relative;
    cursor: pointer;
    font-size:1rem;
    font-weight: normal;
    padding: 3% 9% 3% 50px;
    transition: all .5s ease;
}
.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #333;
    
}
.title::before{
    top:48%;
    left: 15px;
    transform: rotate(0deg);
    
}
.title::after{    
    top:48%;
    left: 15px;
    transform: rotate(90deg);
}

.title.close::before{
  transform: rotate(45deg);
}

.title.close::after{
  transform: rotate(-45deg);
}

.box {
    display: none;
    font-size: 0.75em;
    background: #f3f3f3;
    margin:0 3% 3% 3%;
    padding: 3%;
    border-radius: 10px; 
    text-align: left;
}

.box h2 {
    margin:20px 0 10px 0; 
}

.pagetop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 15px;
}
.pagetop a {
    display: block;
    background-color: #e6e6e6;
    text-align: center;
    color: #6475e7;
    font-size: 12px;
    text-decoration: none;
    padding: 5px 10px;
	filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}
.pagetop a:hover {
    display: block;
    background-color: #e6e6e6;
    text-align: center;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    padding:5px 10px;
	filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}

.c-txt {
    color: #191919;
    display: inline-block;
    font-size: 1em;
    font-weight: bold;
    letter-spacing: 0.06em;
  }

  .c-txt.line {
    padding-bottom: 5px;
    position: relative;
  }
  .c-txt.line::before {
    background: #6475e7;
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: auto;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform .3s;
  }
  .c-txt.line:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
  }
p.footer {
    font-size: 0.5em;
}

canvas{
    position: absolute;
    left:0;
    width: 100%;
    margin-top:30px;
}
  @media only screen and (max-width : 599px) {
    body {
        font-family: "M PLUS Rounded 1c";
        background-color: #b4c4dd;
        text-align: center;
    }
    .video {
        margin: 0 auto;
    }
    .wrap {
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }
    
 }

 @media only screen and (max-width : 375px) {
    body {
        font-family: "M PLUS Rounded 1c";
        background-color: #b4c4dd;
        text-align: center;
    }
    .video {
        width: auto!important;
        height: auto!important;
        margin: 0 auto;
    }
    .wrap {
        margin: 0 auto;
        text-align: center;
    }  
 }

.pc {margin:0 auto; display: block !important;}
.sp { display: none !important; }

@media only screen and (max-width: 750px) {
    .pc { display: none !important; }
    .sp {margin:0 auto; display: block !important;}
}