@charset "UTF-8";
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 92px;
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  #header {
    height: 75px;
  }
}
#header .header-wrap {
  height: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 0 3vw;
}
#header .header-wrap #logo {
  width: 25%;
  padding: 10px;
  position: absolute;
  left: 20px;
}
@media screen and (max-width: 768px) {
  #header .header-wrap #logo a {
    display: flex;
    height: 100%;
    align-items: center;
  }
}
#header .header-wrap #logo a:hover svg path {
  fill: #000 !important;
  transition: 0.5s;
}
#header .header-wrap #logo img {
  width: 48px;
}
@media screen and (max-width: 768px) {
  #header .header-wrap #logo {
    width: 70%;
    padding: 0;
  }
}
#header .header-wrap #nav {
  width: 100%;
  display: flex;
  padding-top: 10px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #header .header-wrap #nav {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    margin: 0;
    background: rgb(255, 255, 255);
    opacity: 0;
    overflow: auto;
    z-index: 1;
    transition: 0.3s ease-in-out;
    flex-wrap: wrap;
    background: #fff;
    flex-flow: column;
  }
}
@media screen and (max-width: 768px) {
  #header .header-wrap #nav .share-wrap {
    padding-top: 40px;
    color: #fff;
    text-align: center;
  }
}
#header .header-wrap #nav .share-wrap .title {
  padding-bottom: 24px;
}
#header .header-wrap #nav .share-wrap .share-content svg {
  width: 80px;
  height: 80px;
}
@media screen and (max-width: 768px) {
  #header .header-wrap #nav .share-wrap .share-content svg circle {
    fill: #FFFFFF;
  }
}
#header .header-wrap #nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #header .header-wrap #nav ul {
    flex-direction: column;
    align-items: center;
    border: none;
    justify-content: flex-start;
    height: auto;
  }
}
#header .header-wrap #nav ul li {
  display: flex;
  padding-left: 2vw;
}
@media screen and (max-width: 768px) {
  #header .header-wrap #nav ul li {
    padding: 0 0 24px;
  }
}
#header .header-wrap #nav ul li a {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 400;
  color: #000;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  #header .header-wrap #nav ul li a {
    height: auto;
    font-size: 2.4rem;
    font-weight: bold;
  }
}
#header .header-wrap #nav ul li a small {
  width: 100%;
  text-align: center;
  padding-top: 5px;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  #header .header-wrap #nav ul li a small {
    padding-top: 10px;
    font-size: 1.4rem;
  }
}
#header .header-wrap #nav ul li a:hover {
  opacity: 1;
}
#header .header-wrap #nav ul li a:hover:after {
  width: 100%;
}
#header .header-wrap #open {
  display: none;
}
@media screen and (max-width: 768px) {
  #header .header-wrap #open {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 62px;
    height: 62px;
    margin: 6.5px 0;
    text-align: center;
    font-size: 1rem;
    color: #000;
    cursor: pointer;
    z-index: 100;
    transition: 0.2s ease-in-out;
  }
}
@media screen and (max-width: 768px) {
  #header .header-wrap #open div {
    position: relative;
    display: block;
    width: 32px;
    height: 32px;
    margin: 12px auto;
  }
}
@media screen and (max-width: 768px) {
  #header .header-wrap #open div span {
    position: absolute;
    left: 0;
    display: block;
    width: 32px;
    height: 2px;
    background: #000;
    border-radius: 2px;
    transition: 0.2s ease-in-out;
  }
}
@media screen and (max-width: 768px) {
  #header .header-wrap #open div span:nth-child(1) {
    top: 8px;
  }
}
@media screen and (max-width: 768px) {
  #header .header-wrap #open div span:nth-child(2) {
    top: 16px;
  }
}
@media screen and (max-width: 768px) {
  #header .header-wrap #open div span:nth-child(3) {
    top: 24px;
  }
}
#header .entry {
  position: absolute;
  right: 0;
  top: 0;
  margin: 8px 0;
}
@media screen and (max-width: 768px) {
  #header .entry {
    position: fixed;
    z-index: 1;
  }
}
#header .entry a {
  color: #fff;
}
#header .entry a button {
  background: rgba(0, 0, 0, 0.84);
  color: #fff;
  text-align: left;
  font-size: 2.4rem;
  padding: 16px 32px;
  border-radius: 50px 0 0 50px;
}
@media screen and (max-width: 768px) {
  #header .entry a button {
    position: fixed;
    bottom: 0;
    right: 0;
    padding: 16px 32px;
    border-radius: 50px 0 0 0px;
  }
}
#header .entry a button:hover {
  background: rgb(0, 0, 0);
  transition: 0.5s;
}
#header .entry a button small {
  font-size: 1rem;
  display: block;
  padding-bottom: 6px;
}
#header .entry a:hover {
  color: #fff;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  #header.open nav {
    background: #0AEBD7 !important;
  }
}
@media screen and (max-width: 768px) {
  #header.open #open span:nth-child(1) {
    top: 16px !important;
    transform: rotate(45deg);
  }
}
@media screen and (max-width: 768px) {
  #header.open #open span:nth-child(2) {
    width: 0;
    left: -24px;
  }
}
@media screen and (max-width: 768px) {
  #header.open #open span:nth-child(3) {
    top: 16px !important;
    left: 0;
    width: 32px;
    transform: rotate(-45deg);
  }
}
#header.open #nav {
  pointer-events: auto;
  top: 0;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  #header.open svg {
    fill: rgb(255, 255, 255) !important;
  }
}

footer {
  background: rgba(0, 0, 0, 0.1);
}
footer div.wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px 20px;
}
@media screen and (max-width: 768px) {
  footer div.wrap {
    padding: 0 20px 20px;
  }
}
footer .logo-wrap {
  color: #fff;
  padding-top: 60px !important;
}
footer .logo-wrap .logo-content {
  padding-top: 40px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  footer .logo-wrap .logo-content {
    flex-wrap: wrap;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  footer .logo-wrap .logo-content a:nth-child(2) img {
    max-width: 180px !important;
    margin-top: 20px;
    margin-left: -10px;
  }
}
footer .logo-wrap .logo-content svg {
  padding-right: 40px;
}
@media screen and (max-width: 768px) {
  footer .logo-wrap .logo-content svg {
    min-width: 240px;
    width: 240px;
    height: 100%;
    display: block;
  }
}
footer .share-wrap {
  color: #fff;
  padding-top: 40px !important;
}
footer .share-wrap .share-content {
  padding-top: 24px;
  display: flex;
  align-items: center;
}
footer .share-wrap .share-content img {
  width: 48px;
  margin-right: 20px;
}
footer .share-wrap .share-content a:hover {
  opacity: 1;
}
footer .share-wrap .share-content svg {
  width: 81px;
}
footer .share-wrap .share-content svg:first-child {
  margin-left: -15px;
  margin-right: 12px;
}
footer .share-wrap .share-content svg circle {
  fill: #FFFFFF;
}
footer .share-wrap .share-content svg circle:hover {
  fill: #FAFAFA;
}
footer .foot-wrap {
  padding-bottom: 0 !important;
}
footer .foot-wrap .foot-content {
  border-top: solid #000 1px;
  padding-top: 20px;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  footer .foot-wrap .foot-content {
    flex-direction: column-reverse;
  }
}
footer .foot-wrap .foot-content svg {
  width: 48px;
}
@media screen and (max-width: 768px) {
  footer .foot-wrap .foot-content svg {
    padding-top: 44px;
  }
}
footer .foot-wrap .foot-content ul {
  display: flex;
}
@media screen and (max-width: 768px) {
  footer .foot-wrap .foot-content ul {
    display: block;
  }
}
footer .foot-wrap .foot-content ul li:first-child {
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  footer .foot-wrap .foot-content ul li {
    padding-bottom: 20px;
  }
}
footer .wrapper {
  color: #fff;
  padding: 40px 0px 0;
}
footer .wrapper .copyright {
  text-align: left;
  padding: 16px 0 100px;
  color: rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 768px) {
  footer .wrapper .copyright {
    text-align: right;
    margin-top: -48px;
    margin-right: 0;
    padding: 66px 0 80px;
  }
}

body {
  background: rgb(10, 235, 215);
  margin-bottom: -20px;
}

.hosoku {
  color: rgba(0, 0, 0, 0.4);
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .hosoku {
    font-size: 1.2rem;
  }
}

svg {
  max-width: 100%;
}

.animationWrap {
  width: 100%;
}

#fv {
  height: auto;
  width: 100%;
  z-index: 1;
}
#fv img.line {
  position: fixed;
}
#fv img.line.right-img {
  right: 0;
  top: 80px;
}
#fv img.line.left-img {
  left: 0;
  top: 80vh;
}
#fv img.line.bg {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
#fv .first {
  position: fixed;
  font-size: 3.6rem;
  line-height: 1.6;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  max-width: 1200px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #fv .first {
    white-space: nowrap;
    font-size: 1.8rem;
    padding-left: 20px;
  }
}
#fv .second {
  position: fixed;
  font-size: 3.6rem;
  line-height: 1.6;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  max-width: 1200px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #fv .second {
    white-space: nowrap;
    font-size: 1.8rem;
    padding-left: 20px;
    top: 40%;
  }
}
#fv .thard {
  position: fixed;
  font-size: 3.6rem;
  line-height: 1.6;
  top: 70%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  max-width: 1200px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #fv .thard {
    white-space: nowrap;
    font-size: 1.8rem;
    padding-left: 20px;
    top: 55%;
  }
}
#fv .last {
  position: fixed;
  font-size: 8rem;
  line-height: 1.6;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  text-align: center;
}
@media screen and (max-width: 768px) {
  #fv .last {
    font-size: 3.6rem;
    text-align: left;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  #fv .last h2 {
    display: inline-block;
    text-align: left;
  }
}
#fv .last svg {
  margin: auto;
}
#fv .wrap {
  display: inline-block;
  position: absolute;
  width: 100%;
  top: 55%;
}
#fv .wrap svg {
  display: block;
  max-width: 600px;
  margin: 120px auto 0;
}
@media screen and (max-width: 768px) {
  #fv .wrap svg {
    width: 100%;
    margin-top: 64px;
  }
}
#fv .wrap svg.zenkai {
  margin: 40px auto;
}
@media screen and (max-width: 768px) {
  #fv .wrap svg.zenkai {
    width: 80%;
    margin: -20px auto 20px;
  }
}
#fv .wrap svg.powered-by {
  width: 60%;
}
#fv .wrap div {
  text-align: center;
}

#about {
  background: #fafafa;
  padding: 0 0 50px;
  margin-top: 240px;
  padding: 60px 0 0;
}
@media screen and (max-width: 768px) {
  #about {
    margin-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  #about header {
    padding-top: 48px;
  }
}
#about img.bg {
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  #about img.bg {
    left: -20%;
  }
}
#about section h3.masthead {
  margin-top: 120px;
  line-height: 1.6;
  font-size: 3.2rem;
}
@media screen and (max-width: 768px) {
  #about section h3.masthead {
    font-size: 2rem;
  }
}
#about section ul {
  max-width: 1000px;
  margin: 0 auto 160px;
}
@media screen and (max-width: 768px) {
  #about section ul {
    margin: 0 auto 100px;
  }
}
#about section ul li {
  display: flex;
  padding: 40px 0 20px;
  border-bottom: solid #000 2px;
}
@media screen and (max-width: 768px) {
  #about section ul li {
    flex-wrap: wrap;
  }
}
#about section ul li .number {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 140px;
}
@media screen and (max-width: 768px) {
  #about section ul li .number {
    justify-content: flex-start;
  }
}
#about section ul li .number span {
  color: #000;
  font-size: 9rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #about section ul li .number span {
    font-size: 10.4rem;
  }
}
#about section ul li .text-content {
  color: #000;
  padding-left: 80px;
}
@media screen and (max-width: 768px) {
  #about section ul li .text-content {
    padding: 0;
  }
}
#about section ul li .text-content h4 {
  font-size: 3.2rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  #about section ul li .text-content h4 {
    font-size: 2.4rem;
    line-height: 1.5;
  }
}
#about section ul li .text-content h4 strong {
  font-size: 110%;
}
#about section ul li .text-content p {
  font-size: 1.6rem;
  padding: 20px 80px 0 0;
}
@media screen and (max-width: 768px) {
  #about section ul li .text-content p {
    padding: 16px 0 0 0;
  }
}

#program {
  background: #0AEBD7;
}
#program .bg {
  position: absolute;
  right: 0;
  top: 94px;
}
@media screen and (max-width: 768px) {
  #program .bg {
    right: -20%;
    top: 0px;
  }
}
#program header {
  text-align: right;
  color: #000;
  padding-top: 100px;
  padding-bottom: 100px;
}
#program header h2 i {
  line-height: 1;
  position: static;
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  #program header h2 i {
    padding-top: 12px;
    position: static;
  }
}
#program section ul {
  max-width: 1000px;
  margin: auto;
}
#program section ul li {
  display: flex;
  margin: 80px 0;
}
@media screen and (max-width: 768px) {
  #program section ul li {
    flex-wrap: wrap;
  }
}
#program section ul li:nth-child(2) {
  flex-direction: row-reverse;
}
#program section ul li:nth-child(2) div {
  text-align: right;
}
@media screen and (max-width: 768px) {
  #program section ul li:nth-child(2) div {
    text-align: left;
  }
}
#program section ul li div {
  width: 25%;
}
@media screen and (max-width: 768px) {
  #program section ul li div {
    width: 100%;
  }
}
#program section ul li div span {
  opacity: 0.4;
  padding-bottom: 10px;
  display: block;
}
@media screen and (max-width: 768px) {
  #program section ul li div span {
    font-size: 1.2rem;
  }
}
#program section ul li div h3 {
  font-size: 8rem;
}
@media screen and (max-width: 768px) {
  #program section ul li div h3 {
    font-size: 5.6rem;
  }
}
#program section ul li p {
  font-size: 2.8rem;
  width: 50%;
}
@media screen and (max-width: 768px) {
  #program section ul li p {
    width: 100%;
    font-size: 2rem;
    padding-top: 16px;
  }
}
#program section ul li p strong {
  position: relative;
  margin: 0 10px;
  padding: 0 5px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  #program section ul li p strong {
    margin: 0px;
  }
}
#program section ul li p strong:after {
  content: "";
  position: absolute;
  width: 80%;
  height: 46px;
  background: #0AEBD7;
  transform: matrix(1, 0, 0, -1, 0, 0);
  left: 10%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  #program section ul li p strong:after {
    height: 24px;
    width: 80%;
    left: 10%;
    top: 0px;
  }
}

#schedule {
  background: #fafafa;
  padding-top: 120px;
}
#schedule img.bg {
  position: absolute;
  top: 120px;
  left: 0;
}
@media screen and (max-width: 768px) {
  #schedule img.bg {
    left: -20%;
    top: 40px;
  }
}
#schedule section ul {
  max-width: 1000px;
  margin: 120px auto 28px;
}
@media screen and (max-width: 768px) {
  #schedule section ul {
    margin: 120px auto 20px;
  }
}
#schedule section ul li {
  position: relative;
  margin: 40px 0 100px;
  border-top: solid #000 5px;
  padding: 30px 72px;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  background: #fff;
  justify-content: space-between;
  box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.08);
  -webkit-filter: drop-shadow(0px 2px 16px rgba(0, 0, 0, 0.08));
}
#schedule section ul li:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  bottom: -60px;
  left: 0;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  border-width: 60px 490px 0 490px;
  z-index: 1;
}
#schedule section ul li:last-child {
  margin: 40px 0 20px;
}
#schedule section ul li:last-child:after {
  display: none;
}
@media screen and (max-width: 768px) {
  #schedule section ul li {
    flex-wrap: wrap;
    border-left: none;
    border-top: solid #000 8px;
    padding: 16px 32px;
  }
}
#schedule section ul li .text-content h4 {
  font-size: 4.8rem;
}
@media screen and (max-width: 768px) {
  #schedule section ul li .text-content h4 {
    font-size: 2.4rem;
  }
}
#schedule section ul li .text-content h4 small {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  #schedule section ul li .text-content h4 small {
    display: block;
    font-size: 1.6rem;
    padding-top: 10px;
  }
}
#schedule section ul li .text-content p {
  font-size: 1.6rem;
  padding: 20px 0 0;
}
@media screen and (max-width: 768px) {
  #schedule section ul li .text-content p {
    font-size: 1.4rem;
    padding: 16px 0 0;
  }
}
@media screen and (max-width: 768px) {
  #schedule section ul li .time {
    display: flex;
    flex-wrap: wrap;
    padding-top: 20px;
  }
}
#schedule section ul li .time .content {
  display: flex;
  padding-left: 40px;
  padding-right: 120px;
  margin: 0 0 10px;
}
@media screen and (max-width: 768px) {
  #schedule section ul li .time .content {
    padding-left: 0;
    padding-right: 0;
    width: 50%;
  }
}
#schedule section ul li .time .content span {
  font-weight: bold;
  background-color: #0AEBD7;
  border-radius: 5px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  padding: 2px 4px;
}
@media screen and (max-width: 768px) {
  #schedule section ul li .time .content span {
    padding: 4px 8px;
    font-size: 1.4rem;
    border-radius: 8px;
  }
}
#schedule section ul li .time .content p {
  padding-left: 5px;
  padding-right: 5px;
  font-size: 1.4rem;
  color: rgba(0, 0, 0, 0.4);
}

#guest {
  background: #fafafa;
}
#guest section {
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  #guest section {
    padding-bottom: 80px;
  }
}
#guest .bg {
  position: absolute;
  right: 0;
  top: 0px;
}
@media screen and (max-width: 768px) {
  #guest .bg {
    right: -20%;
    top: 0px;
  }
}
#guest header {
  text-align: right;
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  #guest header {
    padding-top: 80px;
  }
}
#guest section .list-wrap {
  max-width: 1000px;
  margin: auto;
}
#guest section .list-wrap ul {
  padding: 80px 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#guest section .list-wrap ul li {
  display: inline-block;
  width: 48%;
  margin: 60px 0 -40px;
}
@media screen and (max-width: 768px) {
  #guest section .list-wrap ul li {
    width: calc(100% + 40px);
    margin: 0px -20px 0px;
    padding: 60px 0 0;
  }
}
#guest section .list-wrap ul li:nth-child(2n) {
  padding-top: 80px;
  margin-right: -40px;
}
@media screen and (max-width: 768px) {
  #guest section .list-wrap ul li:nth-child(2n) {
    margin: 0px -20px 0px;
    padding: 60px 0 0;
  }
}
#guest section .list-wrap ul li .wrap {
  display: flex;
  position: relative;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  #guest section .list-wrap ul li .wrap {
    justify-content: flex-end;
  }
}
#guest section .list-wrap ul li .wrap .img-wrap {
  height: 300px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #guest section .list-wrap ul li .wrap .img-wrap {
    margin-top: 0;
    height: 300px;
    position: absolute;
    left: 0;
  }
}
#guest section .list-wrap ul li .wrap .img-wrap img.guest-img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  #guest section .list-wrap ul li .wrap .img-wrap img.guest-img {
    width: 300px;
    height: 300px;
  }
}
#guest section .list-wrap ul li .wrap .text-wrap {
  position: relative;
  z-index: 1;
  padding: 20px 10px 20px 30px;
  background: #0AEBD7;
  height: auto;
  width: 100%;
  margin-top: -60px;
  padding-top: 80px;
  margin-left: 80px;
}
@media screen and (max-width: 768px) {
  #guest section .list-wrap ul li .wrap .text-wrap {
    height: auto;
    width: 100%;
    margin-top: 240px;
    margin-left: 40px;
  }
}
#guest section .list-wrap ul li .wrap .text-wrap:after {
  content: "";
  background: #0AEBD7;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: -40px;
  z-index: 2;
  opacity: 0.2;
}
@media screen and (max-width: 768px) {
  #guest section .list-wrap ul li .wrap .text-wrap:after {
    display: none;
  }
}
#guest section .list-wrap ul li .wrap .text-wrap:before {
  content: "";
  background: #0AEBD7;
  position: absolute;
  width: 100%;
  height: 40px;
  right: 0;
  top: -40px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  #guest section .list-wrap ul li .wrap .text-wrap:before {
    display: none;
  }
}
#guest section .list-wrap ul li .wrap .text-wrap .role {
  width: 100%;
  font-size: 1.4rem;
  line-height: 1.4;
  padding: 20px 0 10px;
}
#guest section .list-wrap ul li .wrap .text-wrap h4 {
  width: 100%;
  padding: 10px 0 0px;
  font-size: 2rem;
}
#guest section .list-wrap ul li .wrap .text-wrap p {
  padding-right: 10px;
  padding-bottom: 24px;
}
#guest section .list-wrap ul li .wrap .text-wrap a {
  width: 100%;
  font-size: 1.4rem;
  text-decoration: underline;
}
#guest section .list-wrap ul li .wrap .english-name {
  color: #fff;
  font-weight: bold;
  position: absolute;
  bottom: -6px;
  left: 0px;
  font-size: 4.2rem;
  z-index: 3;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  #guest section .list-wrap ul li .wrap .english-name {
    top: 270px;
    left: 0px;
    font-size: 3.6rem;
    height: 36px;
  }
}

#support {
  background: #fafafa;
  padding-top: 120px;
}
@media screen and (max-width: 768px) {
  #support {
    padding-bottom: 32px;
  }
}
#support img.bg {
  position: absolute;
  top: 120px;
  left: 0;
}
@media screen and (max-width: 768px) {
  #support img.bg {
    left: -20%;
    top: 40px;
  }
}
#support section {
  padding-bottom: 120px;
}
#support section h3 {
  font-size: 4.8rem;
  font-style: normal;
  font-weight: 900;
  line-height: 64px;
  letter-spacing: 0.1em;
  padding-top: 140px;
}
@media screen and (max-width: 768px) {
  #support section h3 {
    padding-top: 80px;
    font-size: 42px;
  }
}
#support section div.img_wrap {
  margin-top: -30px;
  position: relative;
  z-index: -1;
}
#support section p {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 46px;
  padding: 32px 0;
}
#support section div.box {
  background: rgba(0, 0, 0, 0.03);
  border-radius: 16px;
  padding: 52px 64px;
  display: flex;
}
@media screen and (max-width: 768px) {
  #support section div.box {
    flex-wrap: wrap;
    padding: 24px;
  }
}
#support section div.box div.icon_wrap {
  width: 100px;
  height: 100px;
}
@media screen and (max-width: 768px) {
  #support section div.box div.icon_wrap {
    width: 80px;
    height: 80px;
  }
}
#support section div.box div.icon_wrap img.pc {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#support section div.box div.text_wrap {
  width: calc(100% - 100px);
  padding-left: 64px;
}
@media screen and (max-width: 768px) {
  #support section div.box div.text_wrap {
    width: 100%;
    padding: 24px 0 0;
  }
}
#support section div.box div.text_wrap h4 {
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.1em;
  padding-bottom: 16px;
}
#support section div.box div.text_wrap p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.1em;
  padding: 0;
}

#entry {
  background: rgba(0, 0, 0, 0.84);
}
#entry img.bg {
  position: absolute;
  top: 96px;
  right: 0;
}
@media screen and (max-width: 768px) {
  #entry img.bg {
    right: -20%;
    top: 0;
  }
}
#entry header {
  text-align: right;
  padding-top: 140px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #entry header {
    padding-top: 60px;
  }
}
#entry section .entry-wrap {
  max-width: 1000px;
  margin: 120px auto;
  padding: 40px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  #entry section .entry-wrap {
    margin: 80px auto 10px;
  }
}
#entry section .entry-wrap .box {
  text-align: center;
  padding: 0 0 64px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #entry section .entry-wrap .box {
    padding: 0 0 60px;
  }
}
#entry section .entry-wrap .box:nth-child(3) {
  padding: 0px;
}
#entry section .entry-wrap .box h4 {
  text-align: left;
  font-size: 2.4rem;
  padding: 16px 0;
  font-weight: normal;
  border-bottom: solid #fff 1px;
}
@media screen and (max-width: 768px) {
  #entry section .entry-wrap .box h4 {
    font-size: 1.6rem;
  }
}
#entry section .entry-wrap .box div {
  font-size: 9.8rem;
  padding-top: 32px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #entry section .entry-wrap .box div {
    font-size: 4.8rem;
    line-height: 1.5;
    white-space: nowrap;
    text-align: left;
  }
}
#entry section .entry-wrap .box p {
  font-size: 2.4rem;
  padding-top: 32px;
  text-align: left;
  font-weight: bold;
}
#entry section .entry-wrap .box span.caution {
  font-size: 1.6rem;
  text-align: left;
  display: block;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #entry section .entry-wrap .box span.caution {
    font-size: 1.4rem;
  }
}
#entry section .entry-wrap button {
  background: #0AEBD7;
  color: #000;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.08);
  border-radius: 200px;
  font-size: 2.4rem;
  margin-bottom: 80px;
  left: 0;
  width: 100%;
  padding: 30px 0px;
  bottom: -32px;
  font-weight: bold;
}
#entry section .entry-wrap button:hover {
  background: #09D1BF;
  transition: 0.5s;
}

/*============================
#instagram
============================*/
article#instagram section div.wrap {
  background: linear-gradient(90deg, #D300C5 0%, #FF0069 53.65%, #FF7A00 100%);
  border-radius: 16px;
  margin: 94px 0 0;
  color: #fff;
  display: flex;
}
@media screen and (max-width: 768px) {
  article#instagram section div.wrap {
    padding: 4px;
    display: block;
    margin: 64px 0 0;
  }
}
article#instagram section div.wrap div.box {
  padding: 46px 0 46px 64px;
}
@media screen and (max-width: 768px) {
  article#instagram section div.wrap div.box {
    padding: 20px 10px;
    color: #333;
    background: #fff;
    border-radius: 16px;
  }
}
article#instagram section div.wrap div.box h2 {
  font-weight: 900;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.84);
}
@media screen and (max-width: 768px) {
  article#instagram section div.wrap div.box h2 {
    color: #282828;
  }
}
article#instagram section div.wrap div.box p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.7);
  padding: 16px 0 32px;
}
@media screen and (max-width: 768px) {
  article#instagram section div.wrap div.box p {
    color: #282828;
  }
}
article#instagram section div.wrap div.box a {
  width: 235px;
  height: 48px;
  background: rgba(0, 0, 0, 0.85);
  border-radius: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  article#instagram section div.wrap div.box a {
    width: 100%;
  }
}
article#instagram section div.wrap div.box a button {
  color: #fff;
}
article#instagram section div.wrap div.box a button img {
  padding-left: 8px;
  margin-top: -4px;
}
@media screen and (max-width: 768px) {
  article#instagram section div.wrap div.img {
    position: absolute;
    top: 22px;
    right: 32px;
    z-index: 0;
  }
}
#voice .bg {
  position: absolute;
  left: 0;
  top: 96px;
}
@media screen and (max-width: 768px) {
  #voice .bg {
    left: -20%;
    top: 0;
  }
}
#voice header {
  text-align: left;
  padding-top: 144px;
}
@media screen and (max-width: 768px) {
  #voice header {
    padding-top: 100px;
  }
}
#voice section {
  padding-top: 52px;
}
#voice section ul {
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
}
#voice section ul.box {
  margin-bottom: 102px;
}
@media screen and (max-width: 768px) {
  #voice section ul.box {
    margin-bottom: 0;
  }
}
#voice section ul.box li {
  border-radius: 50px 50px 50px 0;
  background: #282828;
  color: #fff;
  width: calc(50% - 20px);
  padding: 48px;
  margin-bottom: 40px;
}
#voice section ul.box li:nth-child(2n+1) {
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  #voice section ul.box li:nth-child(2n+1) {
    margin: 0 0 32px;
  }
}
#voice section ul.box li:nth-child(2n) {
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  #voice section ul.box li:nth-child(2n) {
    margin: 0 0 32px;
  }
}
@media screen and (max-width: 768px) {
  #voice section ul.box li {
    width: 100%;
    margin: 0 0 32px;
  }
}
#voice section ul.box li h3 {
  font-size: 2.4rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #voice section ul.box li h3 {
    width: auto;
  }
}
#voice section ul.box li p {
  font-size: 1.6rem;
  padding: 24px 0;
  line-height: 1.5;
}
#voice section ul.horizon {
  justify-content: space-between;
  margin-left: -20px;
  margin-right: -20px;
  max-width: 1040px;
}
@media screen and (max-width: 768px) {
  #voice section ul.horizon {
    display: none;
  }
}
#voice section ul.horizon li {
  border-radius: 50px 50px 50px 0;
  background: #282828;
  color: #fff;
  width: calc(33% - 40px);
  padding: 48px;
  margin-bottom: 40px;
  margin-left: 20px;
  margin-right: 20px;
}
#voice section ul.horizon li h3 {
  font-size: 2.4rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #voice section ul.horizon li h3 {
    width: auto;
  }
}
#voice section ul.horizon li p {
  font-size: 1.6rem;
  padding: 24px 0;
  line-height: 1.5;
}
#message {
  background: #fafafa;
}
#message .bg {
  position: absolute;
  right: 0;
  top: 96px;
}
@media screen and (max-width: 768px) {
  #message .bg {
    right: -30%;
    top: 0;
  }
}
#message header {
  text-align: right;
  padding-top: 144px;
}
@media screen and (max-width: 768px) {
  #message header {
    padding-top: 100px;
  }
}
#message section .wrap {
  max-width: 1000px;
  margin: auto;
}
#message section .wrap .message-wrap {
  margin: 160px auto;
}
@media screen and (max-width: 768px) {
  #message section .wrap .message-wrap {
    margin: auto;
  }
}
#message section .wrap .message-img {
  position: relative;
  width: 100%; /*横幅いっぱいにwidthを指定*/
  height: 0px; /*高さはpaddingで指定するため0*/
  padding-top: 56.25%; /*高さを指定（padding-bottomでも同様)*/
}
#message section .wrap .message-img iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#message section .wrap .message-img #youtube {
  position: absolute;
  top: 0px;
  cursor: pointer;
}
#message section .wrap .message-img:hover {
  opacity: 1;
}
#message section .wrap .message-img a:hover {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  #message section .wrap .message-img {
    margin: 160px auto 80px;
  }
}
#message section .wrap .message-img:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  transform: rotate(-10deg);
  background: #0AEBD7;
  left: 0;
  top: 0;
  z-index: -1;
}
#message section .wrap .sound-cloud {
  width: 100%;
}
#message section .wrap .sound-cloud .rect {
  fill: #F27123;
  cursor: pointer;
}
#message section .wrap .sound-cloud .rect:hover {
  fill: #D9651F;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  #message section .wrap .sound-cloud {
    border-radius: 20px;
    box-shadow: 0px 12px 24px rgba(161, 124, 124, 0.08);
  }
}
#message section .wrap a:hover {
  opacity: 1;
}

#faq .bg {
  position: absolute;
  left: 0;
  top: 96px;
}
@media screen and (max-width: 768px) {
  #faq .bg {
    left: -30%;
    top: 0;
  }
}
#faq header {
  padding: 120px 40px 120px;
}
@media screen and (max-width: 768px) {
  #faq header {
    padding: 120px 20px;
  }
}
#faq dl {
  background: #FFF;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  font-size: 1.6rem;
  margin-bottom: 32px;
}
#faq dl:hover {
  background: #FAFAFA;
}
#faq dl dt {
  position: relative;
  padding: 24px 48px 24px 64px;
  font-weight: 700;
  line-height: 1.4;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #faq dl dt {
    padding: 84px 24px 24px 24px;
  }
}
#faq dl dt:after {
  content: url(../img/faq-arrow/bottom.png);
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  font-size: 2.6rem;
  font-weight: 300;
  color: #0AEBD7;
}
@media screen and (max-width: 768px) {
  #faq dl dt:after {
    top: 48px;
    transform: translateY(-50%);
    font-size: 4.2rem;
  }
}
#faq dl dt:before {
  content: "Q";
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  font-size: 3rem;
  font-weight: 300;
  color: #0AEBD7;
}
@media screen and (max-width: 768px) {
  #faq dl dt:before {
    top: 48px;
    transform: translateY(-50%);
    font-size: 4.2rem;
  }
}
#faq dl dt.on:after {
  content: url(../img/faq-arrow/top.png);
}
#faq dl dd {
  position: relative;
  display: none;
  padding: 16px 16px 48px 64px;
  font-weight: 300;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  #faq dl dd {
    padding: 56px 24px 48px 24px;
    font-weight: 300;
    line-height: 1.4;
    font-size: 1.6rem;
  }
}
#faq dl dd:before {
  content: "A";
  position: absolute;
  top: 10px;
  left: 24px;
  font-size: 3rem;
  font-weight: 300;
  color: #0AEBD7;
}
@media screen and (max-width: 768px) {
  #faq dl dd:before {
    top: 0px;
    font-size: 4.2rem;
  }
}

.scroll {
  position: fixed;
  bottom: 120px;
  right: 120px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .scroll {
    position: fixed;
    right: calc(50% - 0px);
    bottom: 160px;
  }
}
.scroll span {
  position: absolute;
  bottom: -60px;
  left: -20px;
}

.icon-scroll, .icon-scroll:before {
  position: absolute;
  left: 50%;
}

.icon-scroll {
  width: 40px;
  height: 70px;
  margin-left: -20px;
  top: 50%;
  margin-top: -35px;
  box-shadow: inset 0 0 0 1px #000;
  border-radius: 25px;
}

.icon-scroll:before {
  content: "";
  width: 8px;
  height: 8px;
  background: #000;
  margin-left: -4px;
  top: 8px;
  border-radius: 4px;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-name: scroll;
}

@keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(46px);
  }
}
.note {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px 20px;
}
@media screen and (max-width: 768px) {
  .note {
    padding: 0 20px 20px;
  }
}
.note a {
  display: block;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.2) 4px 4px 5px;
}/*# sourceMappingURL=common.css.map */