@charset "UTF-8";
/*container*/
.container {
  margin: auto;
  width: 100vw;
}
.container .noscroll {
  overflow: hidden;
}

/*baseHeader*/
.baseHeader {
  background: var(--BBB, linear-gradient(107deg, #CE128B 8.38%, #4A246F 88.94%));
  margin: auto;
  width: auto;
  height: 500px;
}
.baseHeader .menuBar {
  display: flex;
  margin: 0 auto;
  width: 100vw;
  justify-content: space-between;
}
.baseHeader .menuBar .logo1 {
  padding-top: 20px;
  margin-left: 30px;
  width: 180px;
}
.baseHeader .menuBar .logo1 img {
  width: 180px;
}
@media only screen and (max-width: 710px) {
  .baseHeader .menuBar .logo1 {
    margin-left: 5px;
  }
}
.baseHeader .menuBar .headerNav {
  display: flex;
  z-index: 20;
  margin-right: 10px;
  margin-top: 10px;
  padding-top: 20px;
}
.baseHeader .menuBar .headerNav li {
  list-style: none;
  box-sizing: border-box;
}
.baseHeader .menuBar .headerNav li a {
  color: #eee;
  text-decoration: none;
  font-family: "Arial", "Helvetica", "sans-serif";
  font-size: 18px;
  font-weight: 400;
  box-sizing: border-box;
}
.baseHeader .menuBar .headerNav li a:hover {
  color: #b3a3fa;
  font-size: 20px;
  border-bottom: 1px solid #b3a3fa;
  margin: 0 5px 5px 5px;
}
@media only screen and (max-width: 980px) {
  .baseHeader .menuBar .headerNav li {
    width: 70vw;
    border-bottom: 1px solid #4A246F;
    box-sizing: border-box;
    text-align: left;
    padding: 0;
    padding-top: 30px;
    padding-left: 10px;
  }
  .baseHeader .menuBar .headerNav li a {
    color: #4A246F;
    padding: 10px;
    box-sizing: border-box;
    font-size: 24px;
  }
  .baseHeader .menuBar .headerNav li a:hover {
    border-bottom: none;
    font-size: 26px;
  }
}
.baseHeader .menuBar .headerNav li + li {
  margin-left: 10px;
}
.baseHeader .menuBar .headerNav.open {
  display: block;
}
@media only screen and (max-width: 980px) {
  .baseHeader .menuBar .headerNav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 20;
    width: 50vw;
    height: 100vh;
    margin-bottom: 15px;
    padding-top: 0;
    margin: 0 auto;
    display: none;
    border-top: 1px solid #4A246F;
    background-color: #fff;
    text-align: center;
  }
  .baseHeader .menuBar .headerNav li + li {
    margin-left: 0;
  }
  .baseHeader .menuBar .headerNav li:first-child {
    border-top: #4A246F;
    margin-top: 55px;
  }
}
.baseHeader .menuBar .navHamburger .buttonTrigger,
.baseHeader .menuBar .navHamburger .buttonTrigger span {
  display: inline-block;
  box-sizing: border-box;
  text-decoration: none;
  transition: all 0.4s;
  z-index: 30;
}
.baseHeader .menuBar .navHamburger .buttonTrigger {
  background-color: #4A246F;
  border-radius: 4px;
  display: none;
  position: fixed;
  top: 15px;
  right: 10px;
  width: 50px;
  height: 50px;
  z-index: 30;
}
@media only screen and (max-width: 980px) {
  .baseHeader .menuBar .navHamburger .buttonTrigger {
    display: block;
    position: fixed;
  }
}
.baseHeader .menuBar .navHamburger .buttonTrigger span {
  position: absolute;
  left: 6px;
  width: 75%;
  height: 2px;
  background-color: #ded6ff;
}
.baseHeader .menuBar .navHamburger .buttonTrigger span:nth-of-type(1) {
  top: 10px;
}
.baseHeader .menuBar .navHamburger .buttonTrigger span:nth-of-type(2) {
  top: 25px;
}
.baseHeader .menuBar .navHamburger .buttonTrigger span:nth-of-type(3) {
  top: 40px;
}
.baseHeader .menuBar .navHamburger .buttonTrigger.active {
  background-color: #fff;
}
.baseHeader .menuBar .navHamburger .buttonTrigger.active span:nth-of-type(1) {
  transform: translateY(15px) rotate(-45deg);
  background-color: #4A246F;
}
.baseHeader .menuBar .navHamburger .buttonTrigger.active span:nth-of-type(2) {
  opacity: 0;
}
.baseHeader .menuBar .navHamburger .buttonTrigger.active span:nth-of-type(3) {
  transform: translateY(-15px) rotate(45deg);
  background-color: #4A246F;
}
.baseHeader .menuBar .overlay {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100vw;
  height: 100vh;
  background-color: rgba(133, 68, 173, 0.5);
  opacity: 0;
  transition: all 0.3s;
}
.baseHeader .menuBar .overlayOpen {
  visibility: visible;
  opacity: 1;
}
.baseHeader .headerTitle {
  position: relative;
  top: 30%;
  left: 0;
  margin-left: 50px;
}
.baseHeader .headerTitle h1 {
  font-family: "Arial", "Helvetica", "sans-serif";
  font-size: 60px;
  font-weight: 900;
  margin-bottom: 20px;
  color: #eee;
  text-shadow: 7px 7px 4px rgba(0, 0, 0, 0.25);
}
.baseHeader .headerTitle p {
  font-family: "Arial", "Helvetica", "sans-serif";
  font-size: 40px;
  font-weight: 700;
  color: #eee;
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}
.baseHeader .headerTitle .down {
  margin-top: 50px;
  font-size: 3em;
  text-align: center;
  color: #fff;
  z-index: 10;
}
@media only screen and (max-width: 710px) {
  .baseHeader .headerTitle {
    margin-left: 5px;
  }
  .baseHeader .headerTitle h1 {
    color: #eee;
    text-shadow: 7px 7px 4px rgba(0, 0, 0, 0.25);
    font-family: Arial;
    font-size: 48px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    letter-spacing: 6.72px;
  }
  .baseHeader .headerTitle p {
    color: #eee;
    text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
    font-family: Arial;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 5.04px;
  }
  .baseHeader .headerTitle .down {
    font-size: 3em;
  }
}
@media only screen and (max-width: 500px) {
  .baseHeader .headerTitle h1 {
    font-size: 32px;
  }
  .baseHeader .headerTitle p {
    font-size: 28px;
  }
  .baseHeader .headerTitle .down {
    font-size: 2em;
  }
}

/*backgroundContainer*/
.backgroundContainer {
  padding-top: 60px;
  padding-bottom: 135px;
  background-image: url(../images/backgroundimg.jpg);
  width: 100vw;
  height: 100%;
}

/*baseContact*/
.baseContact {
  background: linear-gradient(110deg, #45236D 11.79%, #6F1D76 24.91%, #AE1583 73.97%, #D2108B 89.02%);
  padding-bottom: 50px;
}
.baseContact h2 {
  font-size: 48px;
  color: #fff;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  padding-top: 80px;
}
.baseContact .contactp {
  width: 80vw;
  justify-content: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  color: #fff;
  font-weight: normal;
  padding: 40px 0;
  margin: 0 auto;
  text-align: center;
  line-height: 25px;
}

  /*
.baseContact .button {
      .telButton{
          margin: 0 auto;
          text-align: center;
          box-sizing: border-box;
          margin-bottom: 40px;
          border-radius: 74px;
          background-color: #fff;
          max-width: 625px;
          min-width: 300px;
          width: 70vw;


          a{
              text-decoration: none;
              color: #333;
              text-align: center;
              font-family: Arial;
              font-size: 20px;
              background-color: #fff;
              border-radius: 74px;
              padding: 30px 0;
              max-width: 625px;
              min-width: 300px;
              width: 70vw;
              box-sizing: border-box;
              line-height: 40px;
          }

          a:hover{
              color: #fff;
          }

          .telNumber{
              font-size: 28px;
              font-weight: bold;

              i{
                  padding-right: 20px;
              }
          }

      }

      .telButton:hover{
          background-color: #1e00a3;
      }
}
*/

.baseContact .button .formButton {
  margin: 0 auto;
  text-align: center;
  box-sizing: border-box;
  margin-bottom: 40px;
  border-radius: 74px;
  background-color: #fff;
  max-width: 625px;
  min-width: 300px;
  width: 70vw;
}
.baseContact .button .formButton a {
  text-decoration: none;
  color: #333;
  text-align: center;
  font-family: Arial;
  font-weight: bold;
  font-size: 20px;
  background-color: #fff;
  border-radius: 74px;
  padding: 30px 0;
  max-width: 625px;
  min-width: 300px;
  width: 70vw;
  box-sizing: border-box;
  line-height: 60px;
}
.baseContact .button .formButton a:hover {
  color: #fff;
}
.baseContact .button .formButton i {
  padding-left: 20px;
}
.baseContact .button .formButton:hover {
  background-color: #1e00a3;
}
@media only screen and (max-width: 500px) {
  .baseContact h2 {
    font-size: 28px;
  }
  .baseContact .contactp {
    font-size: 16px;
  }
  .baseContact .button .telButton a {
    font-size: 14px;
    line-height: 22px;
  }
  .baseContact .button .telButton .telNumber {
    font-size: 20px;
  }
  .baseContact .button .formButton a {
    font-size: 18px;
    line-height: 40px;
  }
}

/*baseFooter*/
.baseFooter {
  text-align: center;
  background-color: #fff;
}
.baseFooter .footerLogoImg {
  padding-top: 30px;
  font-size: 20px;
}
.baseFooter .footerLogoImg img {
  width: 150px;
}
.baseFooter .footerAbout {
  font-size: 12px;
  color: #9e9c9c;
  margin-top: 30px;
  margin-bottom: 20px;
}
.baseFooter .footerNav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
}
.baseFooter .footerNav li {
  list-style: none;
}
.baseFooter .footerNav li + li {
  margin-left: 20px;
}
.baseFooter .footerNav a {
  text-decoration: none;
  color: #000;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
.baseFooter .footerNav a:hover {
  color: rgba(166, 73, 222, 0.5019607843);
}
.baseFooter .copyright {
  margin: 0 auto;
  color: #333;
  font-size: 12px;
  padding-bottom: 30px;
}
.baseFooter .copyright ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.baseFooter .copyright li {
  border-left: solid 1px #333;
  padding-left: 10px;
  list-style: none;
}
.baseFooter .copyright li:first-child {
  border-left: none;
}
.baseFooter .copyright li:last-child {
  border-left: none;
  margin-left: 20px;
}
.baseFooter .copyright li + li {
  margin-left: 10px;
}
.baseFooter .copyright a {
  text-decoration: none;
  color: #333;
}

/*home header*/
.homeHeader {
  position: relative;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.5);
}
.homeHeader .videoArea {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.homeHeader .videoArea video {
  position: absolute;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.homeHeader .menuBar {
  display: flex;
  margin: 0 auto;
  width: 100vw;
  justify-content: space-between;
}
.homeHeader .menuBar .logo1 {
  padding-top: 20px;
  margin-left: 30px;
  width: 180px;
}
.homeHeader .menuBar .logo1 img {
  width: 180px;
}
.homeHeader .menuBar .headerNav {
  display: flex;
  z-index: 20;
  margin-right: 10px;
  margin-top: 10px;
  padding-top: 20px;
}
.homeHeader .menuBar .headerNav li {
  list-style: none;
  box-sizing: border-box;
}
.homeHeader .menuBar .headerNav li a {
  color: #eee;
  text-decoration: none;
  font-family: "Arial", "Helvetica", "sans-serif";
  font-size: 18px;
  font-weight: 400;
  box-sizing: border-box;
}
.homeHeader .menuBar .headerNav li a:hover {
  color: #b3a3fa;
  font-size: 20px;
  border-bottom: 1px solid #b3a3fa;
  margin: 0 5px 5px 5px;
}
@media only screen and (max-width: 980px) {
  .homeHeader .menuBar .headerNav li {
    width: 70vw;
    border-bottom: 1px solid #4A246F;
    box-sizing: border-box;
    text-align: left;
    padding: 0;
    padding-top: 30px;
    padding-left: 10px;
  }
  .homeHeader .menuBar .headerNav li a {
    color: #4A246F;
    padding: 10px;
    box-sizing: border-box;
    font-size: 24px;
  }
  .homeHeader .menuBar .headerNav li a:hover {
    border-bottom: none;
    font-size: 26px;
  }
}
.homeHeader .menuBar .headerNav li + li {
  margin-left: 10px;
}
.homeHeader .menuBar .headerNav.open {
  display: block;
}
@media only screen and (max-width: 980px) {
  .homeHeader .menuBar .headerNav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 20;
    width: 50vw;
    height: 100vh;
    margin-bottom: 15px;
    padding-top: 0;
    margin: 0 auto;
    display: none;
    border-top: 1px solid #4A246F;
    background-color: #fff;
    text-align: center;
  }
  .homeHeader .menuBar .headerNav li + li {
    margin-left: 0;
  }
  .homeHeader .menuBar .headerNav li:first-child {
    border-top: #4A246F;
    margin-top: 55px;
  }
}
.homeHeader .menuBar .navHamburger .buttonTrigger,
.homeHeader .menuBar .navHamburger .buttonTrigger span {
  display: inline-block;
  box-sizing: border-box;
  text-decoration: none;
  transition: all 0.4s;
  z-index: 30;
}
.homeHeader .menuBar .navHamburger .buttonTrigger {
  background-color: #4A246F;
  border-radius: 4px;
  display: none;
  position: fixed;
  top: 15px;
  right: 10px;
  width: 50px;
  height: 50px;
  z-index: 30;
}
@media only screen and (max-width: 980px) {
  .homeHeader .menuBar .navHamburger .buttonTrigger {
    display: block;
    position: fixed;
  }
}
.homeHeader .menuBar .navHamburger .buttonTrigger span {
  position: absolute;
  left: 6px;
  width: 75%;
  height: 2px;
  background-color: #ded6ff;
}
.homeHeader .menuBar .navHamburger .buttonTrigger span:nth-of-type(1) {
  top: 10px;
}
.homeHeader .menuBar .navHamburger .buttonTrigger span:nth-of-type(2) {
  top: 25px;
}
.homeHeader .menuBar .navHamburger .buttonTrigger span:nth-of-type(3) {
  top: 40px;
}
.homeHeader .menuBar .navHamburger .buttonTrigger.active {
  background-color: #fff;
}
.homeHeader .menuBar .navHamburger .buttonTrigger.active span:nth-of-type(1) {
  transform: translateY(15px) rotate(-45deg);
  background-color: #4A246F;
}
.homeHeader .menuBar .navHamburger .buttonTrigger.active span:nth-of-type(2) {
  opacity: 0;
}
.homeHeader .menuBar .navHamburger .buttonTrigger.active span:nth-of-type(3) {
  transform: translateY(-15px) rotate(45deg);
  background-color: #4A246F;
}
.homeHeader .menuBar .overlay {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100vw;
  height: 100vh;
  background-color: rgba(133, 68, 173, 0.5);
  opacity: 0;
  transition: all 0.3s;
}
.homeHeader .menuBar .overlayOpen {
  visibility: visible;
  opacity: 1;
}
.homeHeader .mainVisualText {
  position: relative;
  margin: auto;
  margin-left: 50px;
  z-index: 10;
  top: 30%;
  left: 0;
}
.homeHeader .mainVisualText .title h1 {
  color: #fff;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 48px;
  font-weight: normal;
  letter-spacing: 5.76px;
  line-height: 80px;
  text-shadow: 7px 7px 4px rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width: 700px) {
  .homeHeader .mainVisualText .title h1 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 500px) {
  .homeHeader .mainVisualText .title h1 {
    font-size: 24px;
    text-align: center;
    margin: 0 auto;
  }
}
.homeHeader .mainVisualText .homedown {
  margin-top: 20px;
  font-size: 3em;
  text-align: center;
  color: #fff;
  z-index: 20;
}
@media only screen and (max-width: 500px) {
  .homeHeader .mainVisualText {
    margin: 0 auto;
  }
}

/*about us*/
.aboutUs {
  margin: 0 auto;
  margin-top: 60px;
  width: 80vw;
  height: auto;
  background: var(--BBB, linear-gradient(107deg, #CE128B 8.38%, #4A246F 88.94%));
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25) inset, 40px 40px 4px 0px rgba(133, 68, 173, 0.25);
  border-radius: 15px;
}
.aboutUs h2 {
  padding-top: 80px;
  font-size: 64px;
  font-family: Arial, sans-serif;
  color: #fff;
  text-align: center;
  font-weight: 900;
  letter-spacing: 3.8px;
}
.aboutUs h3 {
  margin-top: 60px;
  color: #fff;
  font-size: 48px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
  letter-spacing: 5.7px;
  text-align: center;
}
.aboutUs .aboutUsp {
  margin: 0 auto;
  width: 60%;
  margin-top: 80px;
  margin-bottom: 60px;
  font-size: 20px;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
  line-height: 34px;
}
.aboutUs .moreButton {
  text-align: center;
  box-sizing: border-box;
  padding-bottom: 50px;
}
.aboutUs .moreButton a {
  background-color: #eee;
  margin: 0 auto;
  border-radius: 85px;
  font-size: 24px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 1.5px;
  text-align: center;
  box-sizing: border-box;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5) inset;
  padding: 20px 50px;
  text-decoration: none;
  color: #333;
}
.aboutUs .moreButton a:hover {
  background-color: #1e00a3;
  color: #fff;
}
.aboutUs .moreButton i {
  padding-left: 20px;
}
@media only screen and (max-width: 500px) {
  .aboutUs .moreButton a {
    font-size: 18px;
    padding: 15px 30px;
  }
}
@media only screen and (max-width: 750px) {
  .aboutUs {
    width: 100vw;
    border-radius: 0;
    text-align: left;
    box-shadow: none;
  }
  .aboutUs h2 {
    text-align: center;
    padding: 20px;
    color: #eee;
    font-family: Arial;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 2.16px;
  }
  .aboutUs h3 {
    text-align: center;
    padding: 20px;
    color: #eee;
    font-family: Arial;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 1.8px;
    line-height: 34px;
  }
  .aboutUs .aboutUsp {
    width: 80%;
    padding-left: 20px;
    text-align: left;
    font-size: 16px;
  }
}

.ourBusiness {
  text-align: center;
  margin: 0 auto;
  margin-top: 140px;
  padding-bottom: 60px;
  border-radius: 15px;
  height: auto;
}
.ourBusiness h2 {
  font-size: 42px;
  font-family: Arial, Helvetica, sans-serif;
  text-shadow: 0px 10px 4px rgba(133, 68, 173, 0.25);
  color: #333;
  text-align: center;
  font-weight: 900;
  letter-spacing: 3.8px;
}
.ourBusiness .ourBusinessImg {
  width: 80vw;
  margin: 0 auto;
  height: auto;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
  text-align: center;
  margin-top: 60px;
}
.ourBusiness .ourBusinessImg img {
  width: 80vw;
  margin: 0 auto;
  height: auto;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
}
.ourBusiness .ourBusinessText {
  width: 80vw;
  margin: 0 auto;
  background-color: #fff;
  height: auto;
  justify-content: center;
  padding-bottom: 20px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.25) inset;
}
.ourBusiness .ourBusinessText h3 {
  padding-top: 60px;
  margin-bottom: 80px;
  font-size: 32px;
  font-family: Arial, Helvetica, sans-serif;
  color: #000;
  text-align: center;
  font-weight: bold;
}
.ourBusiness .ourBusinessText .ourBusinessp {
  justify-content: center;
  text-align: left;
  margin: 0 auto;
  width: 60%;
  margin-top: 80px;
  margin-bottom: 60px;
  font-size: 24px;
  font-family: Arial, Helvetica, sans-serif;
  color: #000;
  line-height: 34px;
}
.ourBusiness .ourBusinessText .moreButton {
  text-align: center;
  box-sizing: border-box;
  margin-bottom: 50px;
}
.ourBusiness .ourBusinessText .moreButton a {
  background: var(--BBB, linear-gradient(107deg, #CE128B 8.38%, #4A246F 88.94%));
  margin: 0 auto;
  border-radius: 85px;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 1.5px;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  box-sizing: border-box;
  padding: 20px 50px;
  text-decoration: none;
  color: #fff;
}
.ourBusiness .ourBusinessText .moreButton a:hover {
  background: #1e00a3;
  color: #fff;
}
.ourBusiness .ourBusinessText .moreButton i {
  padding-left: 20px;
}
@media only screen and (max-width: 500px) {
  .ourBusiness .ourBusinessText .moreButton a {
    font-size: 18px;
    padding: 15px 30px;
  }
}
@media only screen and (max-width: 750px) {
  .ourBusiness {
    border-radius: 0;
  }
  .ourBusiness .ourBusinessImg {
    width: 100vw;
    border-radius: 0;
  }
  .ourBusiness .ourBusinessImg img {
    border-radius: 0;
    width: 100%;
  }
  .ourBusiness .ourBusinessText {
    width: 100%;
    background: none;
    border-radius: 0;
    box-shadow: none;
  }
  .ourBusiness .ourBusinessText .ourVisinessp {
    width: 90%;
    font-size: 16px;
  }
}
@media only screen and (max-width: 500px) {
  .ourBusiness .ourBusinessImg {
    width: 100vw;
    border-radius: 0;
  }
  .ourBusiness .ourBusinessImg img {
    border-radius: 0;
    width: 100%;
  }
}

/*influencer*/
.influencerPresen {
  background-color: #fff;
  padding-top: 40px;
}
.influencerPresen h2 {
  font-size: 42px;
  font-family: Arial, Helvetica, sans-serif;
  text-shadow: 0px 10px 4px rgba(133, 68, 173, 0.25);
  color: #333;
  text-align: center;
  font-weight: 900;
  letter-spacing: 3.8px;
  margin-bottom: 40px;
}
.influencerPresen .influencer {
  display: flex;
  justify-content: space-evenly;
  margin: 0 auto;
}
.influencerPresen .influencerLast {
  margin-top: 30px;
  padding-bottom: 50px;
}
.influencerPresen .influencer .influencerContents {
  width: 300px;
}
.influencerPresen .influencer .influencerImg {
  text-align: center;
}
.influencerPresen .influencer .influencerImg img {
  width: 180px;
}
.influencerPresen .influencer .influencerText {
  text-align: center;
}
.influencerPresen .influencer .influencerText .influencerName {
  font-size: 22px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 20px;
}
.influencerPresen .influencer .influencerText .influencerURL {
  margin-bottom: 10px;
}
.influencerPresen .influencer .influencerText .influencerURL a {
  text-decoration: none;
  font-size: 22px;
  font-family: Arial, Helvetica, sans-serif;
  color: #000;
  border-bottom: 1px solid #000;
}
.influencerPresen .influencer .influencerText .influencerURL a:hover {
  color: rgba(166, 73, 222, 0.5019607843);
  border-bottom: 1px solid rgba(166, 73, 222, 0.5019607843);
}
.influencerPresen .influencer .influencerText .influencerURL i {
  padding-right: 10px;
}

@media only screen and (max-width: 750px) {
  .influencerPresen .influencer {
    display: block;
    width: 80%;
    margin: 0 auto;
    background: none;
    border-radius: 0;
    box-shadow: none;
  }
  .influencerPresen .influencer .influencerContents {
    width: 100%;
    display: flex;
    margin-bottom: 30px;
  }
  .influencerPresen .influencer .influencerImg img {
    width: 150px;
  }
  .influencerPresen .influencer .influencerText {
    align-items: center;
    text-align: left;
    margin-left: 20px;
  }
  .influencerPresen .influencer .influencerText .influencerURL a {
    font-size: 16px;
    text-align: left;
  }
}

/*service*/
/*aboutConnectASP*/
.aboutConnectASP {
  background-color: #fff;
  width: 80%;
  margin: 0 auto;
}
.aboutConnectASP .mainTitle h2 {
  padding-top: 100px;
  font-size: 32px;
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  text-align: center;
  font-weight: 900;
}
.aboutConnectASP .mainTitle h3 {
  margin-top: 20px;
  margin-bottom: 55px;
  font-size: 26px;
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  text-align: center;
  font-weight: 900;
}
@media only screen and (max-width: 710px) {
  .aboutConnectASP .mainTitle h2 {
    padding-top: 60px;
    margin: 0 auto;
    width: 80%;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
  }
  .aboutConnectASP .mainTitle h3 {
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 55px;
    width: 80%;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
  }
}
.aboutConnectASP .pBox {
  width: 70%;
  margin: 0 auto;
}
.aboutConnectASP .pBox p {
  margin-bottom: 70px;
  font-size: 20px;
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  font-weight: 400;
  letter-spacing: 1.8px;
  line-height: 34px;
}
@media only screen and (max-width: 710px) {
  .aboutConnectASP .pBox {
    width: 100%;
    margin: 0 auto;
  }
  .aboutConnectASP .pBox p {
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    font-weight: 300;
    letter-spacing: 1.8px;
    line-height: 24px;
    margin-bottom: 70px;
  }
}

.connectASP {
  width: 70vw;
  border: solid 10px;
  -o-border-image: linear-gradient(107deg, #CE128B 8.38%, #4A246F 88.94%) 1;
     border-image: linear-gradient(107deg, #CE128B 8.38%, #4A246F 88.94%) 1;
  margin: 0 auto;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25) inset, 40px 40px 4px 0px rgba(133, 68, 173, 0.25);
  background-color: #fff;
}
.connectASP .connectASPImg {
  width: 70vw;
  margin: 0 auto;
  height: auto;
  text-align: center;
}
.connectASP .connectASPImg img {
  width: 70vw;
  margin: 0 auto;
  height: auto;
}
.connectASP .pbox {
  background-color: #fff;
  width: 70vw;
  margin: 0 auto;
}
.connectASP .pbox h3 {
  padding-top: 60px;
  padding-bottom: 55px;
  font-size: 26px;
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  text-align: center;
  font-weight: 900;
}
.connectASP .pbox p {
  width: 70%;
  margin: 0 auto;
  margin-bottom: 70px;
  font-size: 20px;
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  font-weight: 400;
  letter-spacing: 1.8px;
  line-height: 34px;
}
.connectASP .button {
  text-align: center;
  box-sizing: border-box;
  padding-bottom: 50px;
}
.connectASP .button a {
  background: var(--BBB, linear-gradient(107deg, #CE128B 8.38%, #4A246F 88.94%));
  margin: 0 auto;
  border-radius: 85px;
  font-size: 24px;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  box-sizing: border-box;
  padding: 20px 50px;
  text-decoration: none;
  color: #fff;
}
.connectASP .button a:hover {
  background: #1e00a3;
  color: #fff;
}
.connectASP .button i {
  padding-left: 20px;
}
@media only screen and (max-width: 500px) {
  .connectASP .button a {
    font-size: 18px;
    padding: 15px 30px;
  }
}
@media only screen and (max-width: 710px) {
  .connectASP {
    border: 0;
    width: 100%;
    box-shadow: none;
  }
  .connectASP .connectASPImg {
    width: 100vw;
  }
  .connectASP .connectASPImg img {
    width: 100vw;
  }
  .connectASP .pbox {
    width: 100vw;
    margin: 0 auto;
  }
  .connectASP .pbox h3 {
    padding-top: 40px;
    padding-bottom: 40px;
    font-size: 24px;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    text-align: center;
    font-weight: 400;
  }
  .connectASP .pbox p {
    width: 70%;
    margin: 0 auto;
    padding-bottom: 50px;
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    font-weight: 300;
    letter-spacing: 1.8px;
    line-height: 24px;
  }
}

/*company*/
/*company detail*/
.companyDetail {
  border-radius: 30px;
  background: var(--BBB, linear-gradient(107deg, #CE128B 8.38%, #4A246F 88.94%));
  margin: 0 auto;
  width: 80%;
  padding-top: 63px;
  padding-bottom: 63px;
  text-align: center;
}
.companyDetail table {
  width: 80%;
  margin: 0 auto;
  border-collapse: collapse;
  border-spacing: 10px;
}
.companyDetail table td {
  border-bottom: solid 1px #eee;
  padding-top: 40px;
}
.companyDetail table .left {
  min-width: 200px;
  margin: 0 auto;
  text-align: left;
  font-size: 32px;
  font-style: normal;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 3.24px;
  color: #eee;
  padding-left: 5px;
}
.companyDetail table .right {
  width: 70%;
  text-align: left;
  font-size: 24px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 2.16px;
  color: #eee;
  padding-left: 50px;
}
.companyDetail table .right iframe{
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 810px) {
  .companyDetail {
    width: 90%;
    padding: 10px;
    border-radius: 5px;
  }
  .companyDetail table {
    width: auto;
    margin: 10px;
    padding-top: 35px;
    padding-bottom: 35px;
    background-color: #fff;
    display: block;
  }
  .companyDetail table .tablerow {
    display: block;
  }
  .companyDetail table td {
    display: list-item;
    list-style: none;
    border: none;
    margin-left: 30px;
  }
}
@media only screen and (max-width: 810px) and (max-width: 500px) {
  .companyDetail table td {
    margin-left: 15px;
  }
}
@media only screen and (max-width: 810px) {
  .companyDetail table .left {
    width: 70%;
    font-size: 32px;
    color: #333;
    border-bottom: 1px solid #333;
    line-height: 35px;
    font-weight: 700;
    letter-spacing: 1.8px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    padding-left: 5px;
  }
}
@media only screen and (max-width: 810px) and (max-width: 500px) {
  .companyDetail table .left {
    font-size: 24px;
  }
}
@media only screen and (max-width: 810px) {
  .companyDetail table .right {
    font-size: 24px;
    color: #333;
    padding-bottom: 3px;
    font-weight: 500;
    letter-spacing: 1.35px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  }
}
@media only screen and (max-width: 810px) and (max-width: 500px) {
  .companyDetail table .right {
    font-size: 16px;
    text-align: left;
  }
}

/*message*/
.message {
  margin: 0 auto;
  width: 100%;
  background-color: #fff;
  padding-top: 100px;
  padding-bottom: 50px;
  border-bottom: 1px solid #333;
}
.message .messageTitle {
  margin: 0 auto;
  width: 80%;
  text-align: center;
  font-family: Arial;
  color: #333;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 3.6px;
}
.message .messageText {
  margin: 0 auto;
  width: 80%;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  color: #333;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 3.6px;
  line-height: 28px;
  margin-top: 45px;
  margin-bottom: 60px;
}
@media only screen and (max-width: 710px) {
  .message .messageTitle {
    margin: 0 auto;
    width: 80%;
    text-align: center;
    font-family: Arial;
    color: #333;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 3.6px;
  }
  .message .messageText {
    margin: 0 auto;
    width: 80%;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    color: #333;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 3.6px;
    line-height: 28px;
    margin-top: 45px;
    margin-bottom: 60px;
  }
}

/*vision*/
.companyVision {
  margin: 0 auto;
  margin-top: 100px;
  text-align: center;
}
.companyVision .visionDetail {
  margin-bottom: 60px;
  background-color: #fff;
}
.companyVision .visionDetail h2 {
  color: #333;
  text-align: center;
  text-shadow: 10px 10px 4px rgba(133, 68, 173, 0.25);
  font-family: Arial;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 9.6px;
  padding: 40px 0;
}
.companyVision .visionDetail .pbox {
  margin: 0 auto;
  text-align: center;
}
.companyVision .visionDetail .pbox .subtitle {
  font-size: 32px;
  color: #333;
  text-align: center;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  padding: 30px 0;
}
.companyVision .visionDetail .pbox .pcontent {
  text-align: left;
  margin: 0 auto;
  width: 80%;
  font-size: 20px;
  color: #333;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 3.6px;
  padding-bottom: 40px;
}
@media only screen and (max-width: 710px) {
  .companyVision {
    width: 100%;
    text-align: left;
  }
  .companyVision .visionDetail {
    margin-bottom: 0;
  }
  .companyVision .visionDetail h2 {
    padding: 20px 0 10px 30px;
    color: #333;
    text-align: left;
    text-shadow: 0px 4px 4px rgba(75, 36, 111, 0.61);
    font-family: Arial;
    font-size: 36px;
    font-weight: 900;
    letter-spacing: 5.4px;
  }
  .companyVision .visionDetail .pbox {
    border-radius: 5px;
  }
  .companyVision .visionDetail .pbox .subtitle {
    font-size: 24px;
  }
  .companyVision .visionDetail .pbox .pcontent {
    font-size: 18px;
    padding-bottom: 20px;
  }
}

/*contact*/
.contactForm {
  width: 80%;
  max-width: 980px;
  margin: 40px auto;
  flex: 1;
  border: 1px solid #4A246F;
}
.contactForm h2 {
  padding-top: 60px;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 3.8px;
  text-align: center;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  color: #333;
}
.contactForm .contactp {
  text-align: center;
  color: #333;
  margin: 40px auto;
  font-size: 18px;
  line-height: 26px;
}
.contactForm .form {
  width: 90%;
  margin: 0 auto;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}
.contactForm .form .formlabel {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  color: #333;
  font-size: 18px;
  font-weight: bold;
  margin: auto;
  margin-top: 13px;
  flex: 1;
  width: 90%;
  max-width: 410px;
}
.contactForm .form .formlabel .must {
  background-color: #4A246F;
  color: #fff;
  font-size: 12px;
  border-radius: 6px;
  margin-right: 8px;
  padding: 7px;
}
.contactForm .form .formlabel .labelTitle{
  margin-top: 4px;
}
@media only screen and (max-width: 980px) {
  .contactForm .form .formlabel {
    max-width: inherit;
    display: flex;
    margin-bottom: 20px;
  }
}
.contactForm .form input {
  background-color: rgba(222, 214, 255, 0.4392156863);
  flex: 1;
  width: 90%;
  max-width: 410px;
  height: 40px;
  border: none;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 18px;
  color: #333;
  padding-left: 0.5em;
  padding-right: 0.5em;
}
@media only screen and (max-width: 980px) {
  .contactForm .form {
    padding: 16px 14px;
    display: block;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 40px;
  }
}
.contactForm .form textarea {
  height: 216px;
  flex: 1;
  width: 90%;
  max-width: 410px;
  padding-left: 0.5em;
  padding-right: 0.5em;
  background-color: rgba(222, 214, 255, 0.4392156863);
  border: none;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 18px;
  color: #333;
}
@media only screen and (max-width: 980px) {
  .contactForm .form textarea {
    flex: inherit;
  }
}
.contactForm .btn {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}
.contactForm .btn input {
  background-color: rgba(222, 214, 255, 0.4392156863);
  color: #333;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 24px;
  margin: auto 15px;
  width: 140px;
  height: 46px;
  border: 0;
}
.contactForm .btn input:hover {
  background-color: #1e00a3;
  color: #fff;
}
@media only screen and (max-width: 500px) {
  .contactForm {
    border: none;
    width: 90%;
  }
  .contactForm input {
    font-size: 16px;
  }
}
/*# sourceMappingURL=style.css.map */