@charset "utf-8";
/* CSS Document */
 /*header */
.header{
	height: 0;
}
.header-logo {
    display: none;
    
  }

.header nav ul {
	display: block;
	
}
.header nav li {
  display: block;
	float: none;}

  .open-button {
    display: block;
    position: absolute;
    right: 40px;
    top: 30px;
    width: 40px;
    height: 40px;
    cursor: pointer;
	  
  }
  .open-button span, .open-button span:before, .open-button span:after {
    position: absolute;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #fff;
    display: block;
    content: "";
	 z-index: 1000;
  }
  .open-button span:before {
    bottom: -8px;
  }
  .open-button span:after {
    bottom: -16px;
  }
  .close-button {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    font-size: 20px;
    padding: 20px;
  }
  .header nav {
    display: none;
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #000;
    width: 50%;
    height: 100%;
    padding-top: 67px;
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.4);
  }
  .header nav ul li {
    border-bottom: solid 1px rgba(255, 255, 255, 0.5);
  }
  .header nav ul li:first-child {
    border-top: solid 1px rgba(255, 255, 255, 0.5);
  }
  .header nav ul li a {
    font-weight: 600;
    line-height: 40px;
    vertical-align: middle;
    text-decoration: none;
    color: #333;
  }

@media(max-width:500px){
  .open-button{
    right: 10px;
  
  }
  .header nav{
    width:70%;
  }
  
}

/*トップセクション*/
.section__top {
  display: flex;
  position: relative;
  width: 100%;
  height: 100vh;
  ;
}
.section__top-l, .section__top-r {
  width: 50%;
}
.section__top-l {
  background-color: #FAC670;
  background-image: url("../images/Top/papas-strong.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  justify-content: center;
}
.section__top-logo {
  position: absolute;
  top: 20px;
  left: 35%;
  padding: 5px;
}
.section__top-r {
  background: #1a1b19;
}
.container p {
  margin: 0 0 20px;
}
.maru {
  width: 100%;
  display: flex;
}
.maru img {
  width: auto;
  height: 100px;
}
.maru ul {
  position: absolute;
  display: flex;
  flex-flow: wrap;
  top: 60%;
  list-style: none;
  justify-content: center;
  z-index: 1000;
}
.maru ul li {
  margin: 0 0;
  padding: 0 0;
}
.gosenfu {
  position: absolute;
  border: none;
  bottom: 0;
}
.gosenfu img {
  object-fit: cover;
}
#maru-p {
  border-radius: 50%;
  background: #91C3CE;
  width: 120px;
  height: 120px;
  color: #000;
  font-size: 16px;
  text-align: center;
  line-height: 120px;
  margin: 0 0;
  padding: 0 0;
}
.container {
  width: 100%;
  margin: auto;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  padding: 0 0 50px;
}
.animate {
  font-size: 50px;
  line-height: 60px;
  color: antiquewhite;
  margin: 30% 0 0;
  border-bottom: 2px solid #ccc;
}
.animate span {
  display: inline-block;
}
.animate span:nth-of-type(2) {
  animation-delay: .05s;
}
.animate span:nth-of-type(3) {
  animation-delay: .1s;
}
.animate span:nth-of-type(4) {
  animation-delay: .15s;
}
.animate span:nth-of-type(5) {
  animation-delay: .2s;
}
.animate span:nth-of-type(6) {
  animation-delay: .25s;
}
.animate span:nth-of-type(7) {
  animation-delay: .3s;
}
.animate span:nth-of-type(8) {
  animation-delay: .35s;
}
.animate span:nth-of-type(9) {
  animation-delay: .4s;
}
.animate span:nth-of-type(10) {
  animation-delay: .45s;
}
.animate span:nth-of-type(11) {
  animation-delay: .5s;
}
.animate span:nth-of-type(12) {
  animation-delay: .55s;
}
.animate span:nth-of-type(13) {
  animation-delay: .6s;
}
.animate span:nth-of-type(14) {
  animation-delay: .65s;
}
.animate span:nth-of-type(15) {
  animation-delay: .7s;
}
.animate span:nth-of-type(16) {
  animation-delay: .75s;
}
.animate span:nth-of-type(17) {
  animation-delay: .8s;
}
.animate span:nth-of-type(18) {
  animation-delay: .85s;
}
.animate span:nth-of-type(19) {
  animation-delay: .9s;
}
.animate span:nth-of-type(20) {
  animation-delay: .95s;
}
.four span {
  color: #E6E1E1;
  opacity: 0;
  transform: translate(0, -100px) rotate(360deg) scale(0);
  animation: revolveDrop .5s forwards;
}
@keyframes revolveDrop {
  30% {
    transform: translate(0, -50px) rotate(180deg) scale(1);
  }
  60% {
    transform: translate(0, 20px) scale(.8) rotate(0deg);
  }
  100% {
    transform: translate(0) scale(1) rotate(0deg);
    opacity: 1;
  }
}
.fade-in {
  font-size: 40px;
  opacity: 0;
  animation-name: sample01;
  animation-duration: 5s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
@keyframes sample01 {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in1 {
  opacity: 0;
  animation-name: sample02;
  animation-duration: 10s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
@keyframes sample02 {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in2 {
  opacity: 0;
  animation-name: sample03;
  animation-duration: 3s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
@keyframes sample03 {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
#maru-g {
  border-radius: 50%;
  background: #FAC670;
  width: 130px;
  height: 130px;
  color: #000;
  font-size: 16px;
  text-align: center;
  line-height: 130px;
  left: 32%;
  top: 53%;
}
#maru-m {
  border-radius: 50%;
  background: #F37925;
  width: 110px;
  height: 110px;
  color: #000;
  font-size: 16px;
  text-align: center;
  line-height: 110px;
}
#maru-m2 {
  border-radius: 50%;
  background: #F37925;
  width: 120px;
  height: 120px;
  color: #000;
  font-size: 16px;
  text-align: center;
  line-height: 120px;
}
#maru-v {
  border-radius: 50%;
  background: #F5E1BE;
  width: 130px;
  height: 130px;
  color: #000;
  font-size: 16px;
  text-align: center;
  line-height: 130px;
  bottom: 0;
}
#maru-t {
  border-radius: 50%;
  background: #C0A8E6;
  width: 120px;
  height: 120px;
  color: #000;
  font-size: 16px;
  text-align: center;
  line-height: 120px;
}
#maru-t2 {
  border-radius: 50%;
  background: #C0A8E6;
  width: 130px;
  height: 130px;
  color: #000;
  font-size: 16px;
  text-align: center;
  line-height: 130px;
}
section h2 {
  margin: 20px;
}
@media(max-width:1220px) {
  .animate {
    margin-top: 20%
  }
}
@media(max-width:1024px) {
  .section__top {
    display: flex;
    flex-flow: wrap;
  }
  .section__top-r, .section__top-l {
    width: 100vw;
  }
  .section__top-logo {
    position: absolute;
    top: 8px;
    left: 20px;
  }
  .section__top r {
    height: 20%;
  }
  .section__top-l {
    height: 90%;
    
  }
  .animate {
    font-size: 40px;
    line-height: 60px;
    margin: 10px 0 20px;
    border-bottom: 2px solid #ccc;
  }
  .container {
    padding-bottom: 0;
  }
  .maru, .gosenfu {
    display: none;
  }
}
@media(max-width:768px) {
  .section__top {
    display: flex;
    flex-flow: wrap;
  }
  .section__top-r, .section__top-l {
    width: 100vw;
  }
  .section__top-l {
    height: 80%;
   
  }
  .container {
    padding-bottom: 10px;
  }
  .section__top-logo {
    margin-top: 5px;
    padding: 20px;
  }
  .section__top-r {
    height: 20%;
  }
  .maru {
    display: none;
  }
  .section__top-logo {
    margin-top: 5px;
    padding: 10px;
  }
  .section__top-logo img {
    width: 50%;
    height: auto;
  }
  .animate {
    font-size: 30px;
    line-height: 60px;
    color: antiquewhite;
    margin: 0 auto;
    border-bottom: 2px solid #ccc;
  }
  .gosenfu {
    display: none;
  }
}
/*ニュースセクション*/
.section__news {
  margin-top: 50px;
}
.js-news {
  display: flex;
}
.js-news-title, .js-news-detail {
  width: 50%;
}
.js-news-title {
  margin-top: 30px;
}
.js-news-title button {
  width: 90%;
  padding: 20px;
  margin-right: 30px;
  text-align: left;
  font-size: 1.6rem;
  color: black;
  font-family: 'Noto Sans JP';
  max-width: 900px;
  justify-content: center;
}
.js-news-title button p {
  display: flex;
  float: right;
}
.sankaku {
  float: right;
}
.sankaku2 {
  display: none;
}
.js-news-detail {
  margin-top: -95px;
  height: 600px;
  color: #333;
  background-image: url("../images/About/poster.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  object-fit: contain;
}
.js-news-detail h3 {
  padding: 30px;
  text-align: center;
  font-size: 3.0rem;
}
.js-news-detail p {
  padding: 0 60px;
  margin: 60px;
  font-size: 2.0rem;
  font-weight: 400;
  line-height: 2.4rem;
}
.detail {
  margin-left: 120px;
  margin-right: 120px;
  padding: 20px;
  background: #E7E7E7;
}
.js-news-detail button {
  display: flex;
  margin: 20px 30px 30px auto;
  padding: 10px;
}
.et_pb_module {
  display: block;
  margin: 20px 0 0 40px;
  position: relative;
}
.et_pb_module.sq::before {
  content: "";
  width: 20vw;
  height: 70px;
  background: #000;
  display: flex;
  position: absolute;
  left: 0;
  bottom: -5px;
  transform: translateY(50%);
  border-radius: 0 5px 5px 0;
  margin-top: 3%;
  padding-bottom: 10px;
  z-index: 100;
}
.secList {
  display: inline-block;
  padding: 0.3em 1em;
  text-decoration: none;
  border: solid 2px #FAC670;
  border-radius: 3px;
  transition: .4s;
}
.secList:hover {
  font-weight: 600;
}
#fuu {
  border: solid 2px #F37925;
}
#fuu:hover {
  background: #F37925;
}
#euu {
  border: solid 2px #FAC670;
}
#euu:hover {
  background: #FAC670;
}
#guu {
  border: solid 2px #F5E1BE;
}
#guu:hover {
  background: #F5E1BE;
}
#huu {
  border: solid 2px #91C3CE;
}
#huu:hover {
  background: #91C3CE;
}
.et_pb_text_inner1 {
  background-color: #F37925;
  height: 600px;
}
.et_pb_text_inner2 {
  background-color: #FAC670;
  height: 600px;
}
.et_pb_text_inner3 {
  background-color: #F5E1BE;
  height: 600px;
}
.et_pb_text_inner4 {
  background-color: #91C3CE;
  height: 600px;
}
@media(max-width:1440px) {
  .detail {
    margin: 10px 20px 20px;
  }
}
@media(max-width:1024px) {
  .js-news-detail {
    margin-top: -62px;
  }
  .js-news-detail h3 {
    font-size: 2.2rem;
  }
  .js-news-detail p {
    padding: 20px;
    margin: 20px auto;
  }
}
@media(max-width:768px) {
  .section__news {
    margin-top: 10px;
  }
  .section__news h2 {
    margin-bottom: 20px;
  }
  .js-news {
    display: flex;
    flex-flow: wrap;
    margin: 0 auto;
  }
  .js-news-title, .js-news-detail {
    width: 100vw;
    height: auto;
  }
  .js-news-title {
    margin: 0 auto;
    height: auto;
  }
  .js-news-title button {
    width: 90%;
  }
  .sankaku {
    display: none;
  }
  .sankaku2 {
    display: flex;
    float: right;
  }
  .js-news-detail {
    background-image: none;
  }
  .et_pb_module {
    margin: 20px 5px;
  }
  .js-news-detail {
    margin: 0 auto;
  }
  .js-news-detail h3 {
    font-size: 2.0rem;
  }
  .js-news-detail p {
    padding: 0 10px;
    margin: 20px;
    font-size: 1.6rem;
  }
  .detail {
    margin: 20px;
    padding: 15px;
  }
  .et_pb_text_inner1 {
    height: auto;
    padding-bottom: 5px;
  }
  .et_pb_text_inner2 {
    height: auto;
    padding-bottom: 5px;
  }
  .et_pb_text_inner3 {
    height: auto;
    padding-bottom: 5px;
  }
  .et_pb_text_inner4 {
    height: auto;
    padding-bottom: 5px;
  }
}
@media(max-width:391px) {
  .js-news-title, .js-news-detail {}
  .js-news-title {
    display: flex;
    flex-flow: wrap;
    margin-bottom: 20px;
  }
  .js-news-title button {
    padding: 5px;
    margin: 0 auto 10px 10px;
    width: 150px;
  }
  .sankaku {
    display: none;
  }
  .et_pb_module {
    margin: 0 auto;
  }
  .js-news-detail h3 {
    font-size: 1.8rem;
  }
}
/*アバウトセクション*/
.section__about-l, .section__about-r {
  width: 50%;
}
.section__about-l {
  display: block;
}
.section__about {
  background-color: #000000;
  color: #FFFFFF;
}
.about {
  display: flex;
}
.section__about h2 {
  padding: 20px;
  flex-flow: wrap;
}
.about h3 {
  margin: 0 40px 20px;
}
.about-profile {
  padding: 20px;
  margin: 30px;
  border: solid #FFFFFF 1px;
}
.section__about-r {
  background-image: url("../images/About/papas2.jpg");
  background-repeat: no-repeat;
  background-position: top;
  padding: 20px;
  margin: 10px;
  background-size: cover;
}
.profile, .position {
  margin: 0 40px 30px;
  padding-right: 20px;
  line-height: 3.0rem;
}
.profile a {
  display: none;
}
.image-s {
  display: none;
}
.lisence {
  margin: 60px 20px 40px;
  padding: 20px;
  background: #FFFFFF;
  color: #000000
}
#more3, #close {
  display: none;
}
@media(max-width:1440px) {
  .position {
    margin: 20px, auto;
  }
}
@media(max-width:1040px) {
  .section__about {
    display: flex;
    flex-flow: wrap;
  }
  .section__about-l {
    width: 100vw;
  }
  .section__about-r {
    display: none;
  }
  .about-profile {
    margin: 20px;
  }
  .position, .profile {
    margin: 0 auto 20px;
    padding: 20px;
  }
  .position {
    display: flex;
    flex-flow: row-reverse;
  }
  .profile {
    padding-top: 0;
  }
  .image-s {
    display: flex;
    padding: 5px;
  }
  .image-s img {
    width: 40vw;
    padding: 10px;
  }
  .lisence {
    margin: 20px 30px;
  }
}
@media(max-width:768px) {
  .section__about h3 {
    margin: 0 0 20px;
  }
  .position, .profile {
    margin: 0 auto 20px;
    padding: 0 20px;
  }
  .position-detail {
    padding: 10px;
  }
  .profile a {
    display: block;
    color: antiquewhite;
  }
  .more3 {
    max-height: 0;
    transform: scaleY(0);
    transform-origin: center top;
    transition: .3s ease;
    transition-property: transform, max-height;
  }
  .morefix3:target + .more3 {
    max-height: 99999px;
    transform: scaleY(1);
  }
  .morefix3 {
    position: fixed;
    top: 0;
  }
}
@media(max-width:500px) {
  .position{
    display: block;
  }
  .image-s img {
    width: 65vw;
    padding: 10px;
  }
  .profile {
    padding: 0 10px;
  }
  .position-detail {
    font-size: 1.5rem;
    line-height: 2.4rem;
    padding: 5px;
    margin-right: -10px;
  }
  .lisence {
    margin: 10px auto;
    font-size: 1.4rem;
    line-height: 2.0rem;
  }
}
/*ワークスセクション*/
.section__works-mobile {
  display: none;
}
.section__works {
  background-color: #1a1b19;
}
.section__works h2 {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0;
  padding: 40px 20px 0;
  color: #FFFFFF;
}
.js-works {
  display: flex;
}
.js-works-title, .js-works-detail {
  width: 50%;
}
.js-works-detail button {
  padding: 10px;
}
.js-works-title button {
  width: 95%;
  padding: 22px 10px;
  margin-right: 20px;
  margin-bottom: -5px;
  text-align: right;
  font-size: 2.8rem;
  color: black;
  font-family: 'Comic Sans MS';
  z-index: 1;
  max-width: 960px;
}
.js-works-title button p {
  display: inline-flex;
  font-size: 2.0rem;
}
.section__works {
  position: relative;
}
.js-works-detail {
  margin-top: -83px;
  height: 700px;
  background-image: url("../images/works/guitar.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.js-works-detail h3 {
  padding: 30px;
  text-align: center;
}
.js-works-detail p {
  padding: 0 60px;
  margin: 60px;
  color: #333;
}
.js-works-detail button {
  display: flex;
  float: right;
  margin: 80px 120px;
}
#music {
  background: #F37925;
  border: none;
}
#music:hover {
  border: solid 2px #F37925;
  background-color: aliceblue;
}
#guitar {
  background: #FAC670;
  border: none;
}
#guitar:hover {
  border: solid 2px #FAC670;
  background-color: aliceblue;
}
#volunteer {
  background: #F5E1BE;
  border: none;
}
#volunteer:hover {
  border: solid 2px #F5E1BE;
  background-color: aliceblue;
}
#products {
  background: #91C3CE;
  border: none;
}
#products:hover {
  border: solid 2px #91C3CE;
  background-color: aliceblue;
}
#therapy {
  background: #C0A8E6;
  border: none;
}
#therapy:hover {
  background-color: aliceblue;
  border: solid 2px #C0A8E6;
}
.et_pb_text_inner5 {
  background-color: #F37925;
  height: 700px;
}
.et_pb_text_inner6 {
  background-color: #FAC670;
  height: 700px;
  border-bottom: 3px solid #333;
}
.et_pb_text_inner7 {
  background-color: #F5E1BE;
  height: 700px;
}
.et_pb_text_inner8 {
  background-color: #91C3CE;
  height: 700px;
}
.et_pb_text_inner9 {
  background-color: #C0A8E6;
  height: 700px;
}
@media(min-width:2140px) {
  .et_pb_module.sq::before {
    background: #1a1b19;
    left: 4%
  }
}
@media(max-width:1080px) {
  .js-works-title button {
    padding: 18px;
  }
  .et_pb_module.sq::before {
    height: 60px;
  }
  .js-works-title button {
    font-size: 1.8rem;
  }
}
@media(max-width:768px) {
  .section__works {
    display: none;
  }
  .section__works-mobile {
    display: block;
  }
  .section__works-mobile h2 {
    margin-bottom: 40px;
  }
  .section__works-mobile-left, .section__works-mobile-right {
    display: flex;
    align-items: center;
  }
  .section__works-mobile-right {
    flex-flow: row-reverse;
  }
  .section__works-detail-m {
    float: right;
    padding: 5px;
    margin: 5px;
  }
  .section__works-mobile button {
    flex-flow: wrap;
    float: right;
    margin: 5px;
    padding: 5px;
  }
  .section__works-title-m h3 {
    border-radius: 0 100% 100% 0/0 50% 50% 0;
    background: #F37925;
    width: 200px;
    height: 400px;
    color: #000;
    font-size: 4.0rem;
    text-align: left;
    padding-left: 5px;
    line-height: 400px;
  }
  .guitar {
    display: flex;
    flex-flow: row-reverse
  }
  .section__works-detail-g {
    float: left;
    padding: 5px;
    margin: 5px;
  }
  .section__works-title-g h3 {
    border-radius: 100% 0 0 100%/50% 0 0 50%;
    background: #FAC670;
    width: 200px;
    height: 400px;
    color: #000;
    font-size: 4.0rem;
    text-align: right;
    padding-right: 5px;
    line-height: 400px;
  }
  .section__works-title-v h3 {
    border-radius: 0 100% 100% 0/0 50% 50% 0;
    background: #F5E1BE;
    width: 200px;
    height: 400px;
    color: #000;
    font-size: 4.0rem;
    text-align: left;
    padding-left: 5px;
    line-height: 400px;
  }
  .section__works-title-t h3 {
    border-radius: 100% 0 0 100%/50% 0 0 50%;
    background: #C0A8E6;
    width: 200px;
    height: 400px;
    color: #000;
    font-size: 4.0rem;
    text-align: right;
    padding-right: 5px;
    line-height: 400px;
  }
  .section__works-title-p h3 {
    border-radius: 0 100% 100% 0/0 50% 50% 0;
    background: #91C3CE;
    width: 200px;
    height: 400px;
    color: #000;
    font-size: 4.0rem;
    text-align: left;
    padding-left: 5px;
    line-height: 400px;
  }
  .book{
    margin-top: 10px;
  }
}
@media(max-width:499px) {
  .section__works-title-m h3, .section__works-title-g h3, .section__works-title-v h3, .section__works-title-t h3, .section__works-title-p h3 {
    width: 150px;
    height: 300px;
    font-size: 3.0rem;
    line-height: 300px;
  }
}
/*ライブセクション*/
.section__live {
  background-color: #FAC670;
}
.section__live h2 {
  margin: 0 0;
  padding: 40px 0 0 40px;
}
.video {
  width: 100%;
  position: relative;
  padding-top: 57.25%;
}
.video iframe {
  position: absolute;
  top: 6%;
  left: 10%;
  width: 80%;
  height: 80%;
}
.video-detail{
  font-size: 2.0rem;
  padding: 20px;
  margin-left: 20px;
  line-height: 3.0rem;
  
}
.band-name{
  font-weight: 600;
  background-color: #C0A8E6;
  padding: 5px;
}
@media(max-width:768px) {
  .section__live {
    margin-top: 20px;
  }
  .section__live h2 {
    margin: 0 auto 0 10px;
    padding: 20px 0 0 20px;
  }
  .video-detail{
  font-size: 1.8rem;
  padding: 20px;
  margin-left: 20px;
  line-height: 2.4rem;
  
}
}
/*プロダクツセクション*/
.products {
  display: flex;
}
.products h2 {
  padding: 20px 0 0 20px;
}
.section__products-l, .section__products-r {
  width: 100vw;
}
.section__products-l {
  background: #91C3CE;
}
.cd {
  display: flex;
  flex-flow: row wrap;
  padding: 20px;
  margin-top: 20px;
}
.sale{
  padding: 5px;
  text-align: center;
}
.cd img {
  width: 280px;
  height: auto;
  align-items: center;
  box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.6);
}
.soundtext {
  padding: 0 0 10px;
  text-align: center;
  align-items: center;
  font-size: 2.0rem;
  color: #3E3D3D;
}
.cd audio {
  align-items: center;
  width: 90%;
  padding: 10px;
}
.cd1, .cd2, .cd3 {
  margin: 0 auto 30px;
  border-bottom: 3px solid #DFD9DA;
}
.section__products-l h3{
  text-align: center;
  margin-bottom: 20px;
}
.section__products-l button{
  margin-right: 20px;
  margin-bottom: 20px;
}
.section__products-r {
  background: #F5E1BE;
  margin-top: 0;
}
.section__products-r h2 {
  font-family: "Noto Sans JP";
  text-align: center;
  margin: 10px 0 20px;
  font-size: 2.2rem;
}
.section__products-r p {
  padding: 30px;
  margin: 0 auto;
}
.contact-p{
  text-align: center;
  margin-bottom: 20px;
}
@media(max-width:768px) {
.sale{
  padding: 5px;
  text-align: left;
  margin-left: 20px;
  }}

/*.cd528 {
  margin: 20px auto 20px;
  padding-left: 15%
}
.more {
  margin: 0 60px 30px;
}
Result Skip Results Iframe EDIT ON body {
  background: #111;
}
.hidden {
  opacity: 0;
}
.console-container {
  font-family: Khula;
  font-size: 4em;
  text-align: center;
  height: 200px;
  width: 600px;
  display: block;
  position: absolute;
  color: white;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.console-underscore {
  display: inline-block;
  position: relative;
  top: -0.14em;
  left: 10px;
}*/
/*formデザイン↓*/
.section__products-r form{
  background:#333333;
  width:80%;
  height: auto;
  padding:20px 40px;
  margin: 20px auto;
  
}
 .section__products-r form div{
  padding: 10px 20px;
   margin-bottom: 10px;
}
.section__products-r h1{
  text-align:center;
  font-size:30px;
  color:#fff;
}
.submit {
  border:none;
  color:#fff;
  display:block;
  margin:0 200px;
  text-align:center;
  background:#0E79EA;
  padding:7px 70px;
  border-radius: 17px;
  cursor: pointer;
  
}
.section__products-r label {
  display:block;
  float:left;
  width:200px;
  color:#fff;
  margin-bottom: 20px;
}
.section__products-r span {
  background:#F37925;
  padding:4px 4px;
  font-size:12px;
  color:#000;
  margin-right:10px;
  border-radius: 3px;
}
.text,  .dropdown{
  border:0px ;
  padding: 10px;
  color: #000;
  background: #F5F5F5;
  border-radius: 6px;
  
}
textarea{
  border:0px ;
  padding-right: 20px;
  color: #000;
  background: #F5F5F5;
  border-radius: 6px;
}
#comments2{
  display: none;
}
@media(max-width:960px) {
  .products {
    display: flex;
    flex-flow: wrap;
    margin: 0 auto;
  }
  .section__products-r form div{
  padding: 5px 20px;
   margin-bottom: 10px;
}
  
}
@media(max-width:590px) {
  .section__products-r form{
  
  width:75%;
  
  
}
  .contact-p{
  text-align: left;
  margin-left: 10px;
}
  .section__products-r h2 {
    padding: 10px;
    font-size: 2.0rem;
  }
  .section__products-r p {
    padding: 10px;
  }
  .submit{
    margin: 0 auto;
  }
  #comments{
  display: none;
}
#comments2{
  display: block;
}
}
