@charset "utf-8";


/*汎用-----------------------------------------------------------------*/
a {
  text-decoration: none;
}

/*全体-----------------------------------------------------------------*/
html {
  height: 100%;
}

body{
  width: 100%;
  padding: 0px;
  margin: 0px;
  font-size: 14px;
}

#wrap{
  max-width: 1500px;
  width: 100%;
  margin: 0px auto;
  padding: 0px;
  position: relative;
  background: linear-gradient(120deg, rgba(216,241,255,1) 0%, rgba(255,255,255,1) 0%, rgba(251,251,255,1) 40%, rgba(255,255,255,1) 40%, rgba(250,250,255,1) 80%, rgba(255,255,255,1) 80%);
  /*background: linear-gradient(135deg,rgba(255,255,255,1),rgba(249,249,255,1));*/
}
input[type=text], textarea, select {
  padding: 5px;
  border-radius: 5px;
  font-size: 15px;
}
input[type=text].long{
  width: calc(100% - 10px);
}
input[type=text].mid{
  width: calc(50% - 10px);
}
input[type=text].mid2{
  width: calc(75% - 80px);
}
input[type=number]{
  width: 100px;
  padding: 5px;
  border-radius: 5px;
  font-size: 14px;
}

textarea.long {
  width: calc(100% - 10px);
}
textarea.mid {
  width: calc(50% - 10px);
}
textarea.longmid {
  width: calc(75% - 10px);
}
button.submit {
  padding: 10px;
  border-radius: 7px;
  border: 1px solid #4b4;
  background: #bfb;
}
button.submit.back {
  border: 1px solid #b44;
  background: #fbb;
}
p.bold {
  font-weight: 600;
}
p.underline {
  text-decoration: underline;
}
.anotherButton {
  display: inline-block;
  width: auto;
  padding: 10px;
  margin-right: 20px;
  border-radius: 7px;
  border: 1px solid #4b4;
  background: #eee;
  cursor: pointer;
}

/*ヘッダーエリア-----------------------------------------------------------------*/
#commonHeader {
  position: fixed;
  top: 0px;
  width: 100%;
  max-width: 1500px;
  height: 90px;
  z-index: 2;
  background: linear-gradient(rgba(0,0,0,0.9),rgba(0,0,0,0));
  display: flex;
  justify-content: space-between;
}
#icon{
  margin: 0px;
  font-size: 24px;
  padding: 20px;
  width: 20%;
}
#icon a {
  color: #fff;
}
Img.ppLogo {
  width: 60%;
}

/*固定表示メニュー*/
#menu {
  width: 50%;
}
ul.navMenu {
  display: flex;
  justify-content: space-between;
  margin-right: 20px;
}
li.menuList {
  list-style: none;
  font-size: 15px;
  color: #fff;
  font-weight: 600;
  width: 25%;
  padding: 20px 30px;
  position: relative;
  border: none;
}
li.menuList:not(:first-child)::before {
  content: "";
  width: 0px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  transition: all .3s;
}
li.menuList a {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  letter-spacing: 0.05em;
  font-weight: 600;
  transition: all .3s;
}
li.menuList:hover a.menuTop {
  color: #7f7;
}
ul.dropdown {
  display: none;
  width: 100%;
  position: absolute;
  top: 63px;
  left: 0;
  padding-left: 0px;
}
li.menuList:hover .dropdown {
  display: block;
}
li.dropdownList {
  list-style: none;
  height: 60px;
  transition: all .3s;
  position: relative;
}
li.dropdownList:not(:first-child)::before{
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
}
li.dropdownList a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  position: relative;
  text-shadow: rgb(0, 0, 0) 1px 0px 0px, rgb(0, 0, 0) 0.540302px 0.841471px 0px, rgb(0, 0, 0) -0.416147px 0.909297px 0px, rgb(0, 0, 0) -0.989992px 0.14112px 0px, rgb(0, 0, 0) -0.653644px -0.756802px 0px, rgb(0, 0, 0) 0.283662px -0.958924px 0px, rgb(0, 0, 0) 0.96017px -0.279415px 0px;
  /*text-shadow: rgb(0, 0, 0) 2px 0px 0px, rgb(0, 0, 0) 1.75517px 0.958851px 0px, rgb(0, 0, 0) 1.0806px 1.68294px 0px, rgb(0, 0, 0) 0.141474px 1.99499px 0px, rgb(0, 0, 0) -0.832294px 1.81859px 0px, rgb(0, 0, 0) -1.60229px 1.19694px 0px, rgb(0, 0, 0) -1.97998px 0.28224px 0px, rgb(0, 0, 0) -1.87291px -0.701566px 0px, rgb(0, 0, 0) -1.30729px -1.5136px 0px, rgb(0, 0, 0) -0.421592px -1.95506px 0px, rgb(0, 0, 0) 0.567324px -1.91785px 0px, rgb(0, 0, 0) 1.41734px -1.41108px 0px, rgb(0, 0, 0) 1.92034px -0.558831px 0px;*/
}
li.dropdownList:hover a {
  border-top: 1px solid #bbb;
  border-bottom: 1px solid #bbb;
}
li.dropdownList a::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  transform: rotate(135deg);
  position: absolute;
  right: 15px;
  top: calc(50% - 5px);
}

/*メイン画像*/
#mainImg, .slideParts, #mainImgOver {
  max-height: 500px;
}
#hamburger {
  display: none;
  height: 33px;
  margin-top: 12px;
  text-align: right;
  padding-right: 25px;
}
#hamburger_iii, #hamburger_x {
  width: 32px;
  height: 32px;
  cursor: pointer;
}
#hamburger_x {
  display: none;
}
#topMain {
  position: relative;
  top: 0px;
  width: 100%;
}
.subTitle {
  margin: 0px;
}
#mainImg {
  width: 100%;
  height: 35vw;
}
#mainImgSlide {
  width: 100%;
  padding-top: calc(((1 / 4) * 100%));
}
.slideParts {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  height: 35vw;
  background-size: cover;
  background-position: center right;
  
  animation: back_switch 14s infinite;
}
.src1 {
  background-image: url("../images/top_asp2.jpg");
}
.src2 {
  background-image: url("../images/top2_asp2.jpg");
}
@keyframes back_switch {
  0%{ opacity: 0;}
  10%{ opacity: 1;}
  50%{ opacity: 1;}
  60%{ opacity: 0;}
  100%{ opacity: 0;}
}
.src1 {
  animation-delay: 0s;
}
.src2 {
  animation-delay: 7s;
}
#mainImgOver {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 35vw;
  background: rgba(0,0,0,0.5);
}
.subTitle {
  font-size: 44px;
  padding: 8vw 5vw 0 5vw;
  color: #fff;
}
.discordArea {
  width: 50%;
  padding: 2vw 6vw 0 6vw;
  display: flex;
  justify-content: space-between;
}
.introArea {
  width: 50%;
  padding: 2vw  6vw 0 6vw;
}
.introArea a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}
.discordButtonText {
  font-weight: 600;
  color: #eee;
}
.discordButton {
  position: relative;
  height: 60px;
  font-size: 19px;
  font-weight: 600;
  border: 3px solid #fff;
  border-radius: 100vh;
  color: #fff;
  padding-right: 4px;
}
.discordButton.join{
  background: rgba(192,64,160,0.8);
  width: 254px;
}
.discordButton.intro{
  background: rgba(255,128,0,0.8);
  width: 254px;
}
.discordButton a {
  text-align: center;
  line-height: 62px;
  color: #fff;
  text-decoration: none;
  position: absolute;
  top: 0;
  left: 0;
  height:100%;
  width: 100%;
}
.arrowImg {
  display: inline-block;
  margin-bottom: 4px;
  width:22px;
  height: 22px;
  vertical-align: middle;
}
.discordButton a:hover{
    opacity: 0.1;
    background-color: #000000;
}

#subPageImg {
}
.subPageSlide {
  width: 100%;
  height: 24vw;
  max-height: 300px;
  background: linear-gradient(rgba(192,210,255,1),rgba(240,240,255,1));
  text-align: center;
  display: grid;
  place-items: center;
}
.subPageSlide p {
  font-size: 36px;
  font-weight: 600;
  color: white;
  text-shadow: 0px 0px 14px rgba(60,80,80,0.7);
}

/*テキストボックスのレイアウト*/
.textContainer {
  margin: 0 auto;
}
.textContainer p {
  text-align: center;
  padding: 0px 20px;
  font-size: 15px;
  line-height: 30px;
  margin-bottom: 25px;
}

.textContainer p.alignLeft {
  text-align: left;
}
.textContainer p.pad40 {
  padding: 0px 40px;
}

@media screen and (min-width: 1500px){
  
  #mainImg, #mainImgOver, .slideParts {
    height: 470px;
  }
  .subTitle {
    font-size: 39px;
    padding: 120px 75px 0 75px;
  }
  .discordArea {
    padding: 35px 90px 0 90px;
  }
  .introArea {
    padding: 35px  90px 0 90px;
  }
  .discordButton {
    height: 50px;
    font-size: 19px;
    border: 3px solid #fff;
  }
  .discordButton a {
    line-height: 52px;
  }
  .discordButton.join{
    width: 285px;
  }
  .discordButton.intro{
    width: 285px;
  }
}

@media screen and (max-width: 1300px){
  #mainImg, #mainImgOver, .slideParts {
    height: 33vw;
  }
  .subTitle {
    font-size: 39px;
    padding: 8vw 5vw 0 5vw;
  }
  .discordArea {
    padding: 0 4vw 0 4vw;
  }
  .introArea {
    padding: 2vw 4vw 0 4vw;
  }
  .discordButton {
    height: 50px;
    font-size: 19px;
    border: 3px solid #fff;
  }
  .discordButton a {
    line-height: 52px;
  }
  .discordButton.join{
    width: 19vw;
  }
  .discordButton.intro{
    width: 19vw;
  }
  .discordButtonText {
    font-size: 14px;
  }
}

@media screen and (max-width: 1150px){
  #mainImg, #mainImgOver, .slideParts {
    height: 35vw;
  }
  #icon {
    width: 24%;
  }
  .subTitle {
    font-size: 36px;
  }
  .discordButton {
    height: 47px;
    font-size: 18px;
    border: 3px solid #fff;
  }
  .discordButton a {
    line-height: 49px;
  }
  .discordButton.join{
    width: 21vw;
  }
  .discordButton.intro{
    width: 21vw;
  }
  .discordButtonText {
    font-size: 13px;
  }
}

@media screen and (max-width: 1000px){
  #icon {
    width: 28%;
  }
  #mainImg, #mainImgOver, .slideParts, .subPageSlide {
    height: 333px;
  }
  .subPageSlide p {
    vertical-align: middle;
  }
  #menu {
    width: 60%;
  }
  .subTitle {
    font-size: 30px;
    padding: 90px 5vw 0 5vw;
  }
  .discordArea {
    width: 60%;
    padding: 0 4vw 0 4vw;
  }
  .discordButton {
    height: 40px;
    font-size: 17px;
    border: 3px solid #fff;
  }
  .discordButton a {
    line-height: 42px;
  }
  .discordButton.join{
    width: 25vw;
  }
  .discordButton.intro{
    width: 25vw;
  }
}

@media screen and (max-width: 850px){
  #icon {
    width: 32%;
  }
  #menu {
    width: 70%;
  }
  .subTitle {
    padding: 100px 5vw 0 5vw;
    font-size: 25px;
  }
  .discordArea {
    width: 70%;
    padding: 0 4vw 0 4vw;
  }
  .discordButton {
    height: 40px;
    font-size: 17px;
    border: 3px solid #fff;
  }
  .discordButton a {
    line-height: 42px;
  }
  .discordButton.join{
    width: 32vw;
  }
  .discordButton.intro{
    width: 32vw;
  }
}

@media screen and (max-width: 700px){
  #icon {
    width: 240px;
  }
  #commonHeader {
    background: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0));
  }
  #hamburger {
  display: block;
}
  #menu {
    width: 200px;
    margin-top: 8px;
    background: linear-gradient(rgba(0,0,0,0.9),rgba(0,0,0,0));
    height: 0px;
  }
  li.menuList {
    padding: 10px;
    width: calc(100% - 40px);
  }
  li.menuList a {
    justify-content: flex-start;
    height: auto;
  }
  .menuTop {
    margin-bottom: 15px;
  }
  ul.navMenu {
    display: none;
    margin: 7px 0px;
    padding-left: 0px;
    flex-flow: column;
    justify-content: flex-end;
  }
  ul.dropdown {
    display: block;
    position: static;
    top: auto;
    left: auto;
    margin-left: 40px;
    width: calc(100% - 40px);
  }
  li.dropdownList {
    height: 40px;
  }
  li.dropdownList a {
    text-align: right;
    justify-content: flex-end;
  }
  .subTitle {
    padding: 100px 5vw 0 5vw;
    font-size: 25px;
  }
  .discordArea {
    width: 80%;
    padding: 0 4vw 0 4vw;
  }
  .discordButton {
    height: 40px;
    font-size: 17px;
    border: 3px solid #fff;
  }
  .discordButton a {
    line-height: 42px;
  }
  .discordButton.join{
    width: 34vw;
  }
  .discordButton.intro{
    width: 34vw;
  }
}

@media screen and (max-width: 550px){
  #mainImg, #mainImgOver, .slideParts {
    height: 400px;
  }
  .subTitle {
    font-size: 23px;
  }
  .discordArea {
    width: calc(100% - 4vw);
    padding: 0 0 0 4vw;
    flex-flow: column;
  }
  .introArea {
    width: calc(100% - 4vw);
    padding: 2vw 0 0 4vw;
  }
  .discordButton.join{
    width: 210px;
  }
  .discordButton.intro{
    width: 210px;
  }
  .discordButtonText {
    font-size: 12px;
  }
  #menu {
    width: 180px;
  }
}

@media screen and (max-width: 400px){
  #mainImg, #mainImgOver, .slideParts {
    height: 430px;
  }
}


/*メインエリア--------------------------------------------------------------------------------*/
#overview {
  margin-top: 5vh;
  background: linear-gradient(rgba(64,80,96,1),rgba(72,88,112,1));
  color: #fff;
}
#overview a {
  color: #cfc;
  font-weight: 600;
}


#news {
  margin-top: 5vh;
  width: 100%;
}
.sectionTitle {
  font-size: 28px;
  font-weight: 300;
  display: grid;
  place-items: center;
}
.sectionTitle p {
  width: auto;
  text-align: center;
  border-bottom: 2px solid #7B8;
}

/*ニュースの見出し*/
.newsArea {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
}
.newsArea a {
  color: #444;
}
.newsContainer {
  width: 25%;
  max-height: 250px;
  height: calc(10px + 18vw);
  border-bottom: 1px solid #7B8;
}
img.newsThumb {
  width: 100%;
  height: 15vw;
  max-height: 200px;
  object-fit: cover;
  border: 1px solid #7B8;
}

@media screen and (max-width: 1150px){
  .newsContainer {
    height: 19vw;
  }
  .newsTitle {
    margin:1vw;
  }
}

@media screen and (max-width: 1000px){
  .newsContainer {
    height: 20vw;
  }
}

@media screen and (max-width: 850px){
  .newsContainer {
    height: 21vw;
  }
}

@media screen and (max-width: 700px){
  .newsContainer {
    width: 320px;
    height: 220px;
    margin-bottom: 20px;
  }
  img.newsThumb {
    width: 100%;
    height: 180px;
    max-height: none;
  }
  .newsArea {
    flex-flow: column;
    align-items: center;
  }
}
@media screen and (max-width: 550px){
  .newsContainer {
    width: 70%;
    height: 45vw;
  }
  img.newsThumb {
    width: 100%;
    height: 35vw;
  }
}


/*運営一覧の見出し-----------------------------------------------------------------------------------------------------------------------------------------*/
.memberArea {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.memberContainer {
  width: 25%;
  height: calc(30px + 18vw);
  margin-bottom: 20px;
}
.memberThumbArea {
  width: 70%;
  height: 15vw;
  max-height: 200px;
  margin: 0 auto;
}
.memberHeadline {
  width: 70%;
  margin: 0 auto;
}
.memberName {
  width: 70%;
  margin: 8px auto;
  color: #444;
  font-size: 16px;
  font-weight: 600;
}
img.memberThumb {
  width: 100%;
  height: 15vw;
  max-height: 200px;
  object-fit: cover;
  border: 1px solid #7B8;
}

@media screen and (max-width: 1150px){
  .memberContainer {
    width: 33%;
    height: calc(30px + 22vw);
  }
  .memberThumbArea, img.memberThumb {
    max-height: none;
    height: 19vw;
  }
  p.memberName {
    margin: 10px auto 0px auto;
  }
}

@media screen and (max-width: 1000px){
  .memberThumbArea {
    margin: 0 3vw;
  }
}

@media screen and (max-width: 850px){
  .memberContainer {
    width: 50%;
    height: calc(30px + 37vw);
  }
  .memberThumbArea, img.memberThumb {
    margin: 0 auto;
    height: 28vw;
  }
}

/*導入ガイド*/
.guideIndexArea {
  width: 100%;
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}
.guideButton {
  position: relative;
  height: 42px;
  width: 20%;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #777;
  border-radius: 100vh;
  padding-right: 4px;
}
.guideButton a {
  text-align: center;
  line-height: 42px;
  color: #555;
  text-decoration: none;
  position: absolute;
  top: 0;
  left: 0;
  height:100%;
  width: 100%;
}
.installImg {
  padding-left: 40px;
}
.installImg.landscape {
  max-width: 600px;
}
.installImg.portrait {
  max-width: 300px;
}

/*リンク集テーブル*/
table.linkTable {
  width: 80%;
  margin: 20px auto;
  border-collapse: collapse;
}
table.linkTable th, table.linkTable td {
  border: 1px solid #7B8;
  padding: 10px;
}
table.linkTable th {
  
}
table.linkTable td {
  padding-left: 20px;
}
img.linkIcon {
  max-width: 100px;
  width: 100px;
  max-height: 100px;
  height: 100px;
  object-fit: cover;
}

/*サポートフォーム*/
.authorSelect {
  padding: 5px 0px;
}

#commonFooter {
  width: 100%;
  height: 90px;
  display: grid;
  place-items: center;
  background: #ddd;
}