* {
  list-style: none;
  margin: 0px;
  padding: 0px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #333;
  box-sizing: border-box;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small,
strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label,
legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside,
canvas, details, figcaption, figure, footer, header, hgroup, menu, nav,
section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  background: transparent;
}

main, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

body {
  background-color: #ededed;
  background-image: url(../images/bg.webp);
  background-size: auto 100vh;
  background-repeat: no-repeat;
  background-position: 10% top;
}

.bg-img {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 180vw;
  left: 0;
  top: 0;
  overflow: hidden;
}
.bg-img img {
  opacity: 0.7;
}

@media all and (min-width: 767px) {
  body {
    min-width: 1200px;
    background-size: 1920px 960px;
    background-position: center top;
  }
  .bg-img {
    height: 1600px;
  }
  .bg-img img {
    width: 1600px;
    margin-left: calc(50% - 800px);
    opacity: 0.7;
  }
}
header {
  position: fixed;
  z-index: 100;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 50px;
  padding: 0 10px 0 15px;
  background-color: #ededed;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transition: height 0.3s;
}
header.is-open {
  height: 100px;
}
header.is-open .menu-btn span:nth-of-type(1) {
  top: 19px;
}
header.is-open .menu-btn span:nth-of-type(3) {
  top: 19px;
}
header .logo {
  width: auto;
  height: 40px;
  margin: 5px 0;
}
header .menu-btn {
  position: relative;
  width: 40px;
  height: 40px;
  margin: 5px 0;
}
header .menu-btn span {
  position: absolute;
  width: 20px;
  height: 2px;
  left: 10px;
  background-color: #e5004d;
  transition: top 0.3s;
}
header .menu-btn span:nth-of-type(1) {
  top: 13px;
}
header .menu-btn span:nth-of-type(2) {
  top: 19px;
}
header .menu-btn span:nth-of-type(3) {
  top: 25px;
}
header .top-nav {
  width: 100%;
  height: 50px;
}
header .top-nav ul {
  width: 100%;
  max-width: 360px;
  height: 100%;
  margin: 0 0 0 auto;
  padding: 0 10px 10px 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: min(3.5vw, 14px);
  line-height: 1;
}
header .top-nav ul li a {
  transition: color 0.3s;
}
header .top-nav ul li a span {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5em;
  font-size: 50%;
  color: #e5004d;
}
header .top-nav ul li a:active {
  color: #e5004d;
}

@media all and (min-width: 767px) {
  header {
    min-width: 1200px;
    height: 80px;
    padding: 0 max(50% - 560px, 40px) 0 max(50% - 570px, 30px);
  }
  header.is-open {
    height: 80px;
  }
  header .logo {
    height: 60px;
    margin: 0;
  }
  header .menu-btn {
    display: none;
  }
  header .top-nav {
    position: relative;
    width: 360px;
    height: 80px;
  }
  header .top-nav ul {
    padding: 0;
    justify-content: flex-end;
    font-size: 14px;
  }
  header .top-nav ul li a:hover {
    color: #e5004d;
  }
  header .top-nav ul li + li {
    margin-left: 30px;
  }
}
main {
  padding-top: 50px;
}

.top {
  position: relative;
  padding-top: 8%;
}
.top .top-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 87%;
  margin: 0 auto;
}
.top .top-text ul {
  margin: 5% auto 2% 0;
  font-size: 4.5vw;
  line-height: 1;
}
.top .top-text ul li {
  margin-top: 0.3em;
  font-weight: 700;
}
.top .top-text ul li span {
  display: inline-block;
  vertical-align: text-bottom;
  width: 5em;
  margin-right: 0.5em;
  padding: 0.2em 0;
  text-align: center;
  font-size: 90%;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.05em;
  background-image: linear-gradient(to right, #e5004d 0%, #ff7a7a 100%);
  background-color: #e5004d;
  border-radius: 0.7em;
}
.top .top-text ul li strong {
  display: inline-block;
  vertical-align: text-bottom;
  width: 2.2em;
  font-size: 150%;
  font-weight: 700;
}
.top .top-text ul li small {
  display: inline-block;
  vertical-align: baseline;
  width: 2.5em;
  font-size: 75%;
  font-weight: 700;
}
.top .top-photo {
  width: 100%;
  overflow: hidden;
}
.top .top-photo img {
  width: 125%;
  margin-left: -13%;
}
.top .top-banner {
  position: relative;
  margin-top: -8%;
}
.top .top-banner div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  min-height: 20vw;
  margin: 0 auto;
  padding: 2% 3%;
  background-color: #fff;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}
.top .top-banner div img {
  width: 20%;
  margin-right: 5%;
}
.top .top-banner div p {
  text-align: center;
  font-size: 3.7vw;
  line-height: 1.5;
  font-weight: 700;
  color: #e5004d;
}
.top .top-banner div + div {
  margin-top: 5%;
}
.top .top-banner div + div p {
  font-size: 3.4vw;
}
.top .top-banner > p {
  display: flex;
  justify-content: flex-end;
  width: 80%;
  margin: 2% auto 0;
  font-size: 2.5vw;
}
.top .top-end {
  margin: 10% auto 0;
}
.top .top-end p {
  text-align: center;
  color: #e5004d;
  line-height: 1.7;
  font-size: min(3.8vw, 20px);
  font-weight: bold;
}
.top .top-lead {
  width: 80%;
  margin: 10% auto 0;
}
.top .top-lead p {
  font-size: 15px;
  line-height: 1.8;
  font-weight: 500;
}
.top .top-lead p + p {
  margin-top: 1em;
}

@media all and (min-width: 767px) {
  main {
    padding-top: 80px;
  }
  .top {
    position: relative;
    padding-top: 60px;
  }
  .top .top-text {
    display: block;
    width: 480px;
    min-height: 400px;
    margin-left: calc(50% - 560px);
  }
  .top .top-text ul {
    margin: 40px 0 0;
    font-size: 26px;
  }
  .top .top-text ul li {
    margin-top: 12px;
  }
  .top .top-text ul li span {
    width: 116px;
    margin-right: 10px;
    padding: 4px 0;
    font-size: 24px;
    border-radius: 16px;
  }
  .top .top-text ul li strong {
    width: 77px;
    font-size: 34px;
  }
  .top .top-text ul li small {
    width: 55px;
    font-size: 20px;
  }
  .top .top-photo {
    position: absolute;
    width: calc(50% + 160px);
    left: calc(50% - 160px);
    top: 0;
  }
  .top .top-photo img {
    width: 800px;
    margin-left: 0;
  }
  .top .top-banner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    width: 1200px;
    margin: 0 auto;
  }
  .top .top-banner div {
    width: 360px;
    min-height: 100px;
    margin: 0 20px;
    padding: 0 10px;
  }
  .top .top-banner div img {
    width: 70px;
    margin-right: 15px;
  }
  .top .top-banner div p {
    font-size: 16px;
  }
  .top .top-banner div + div {
    margin-top: 0;
  }
  .top .top-banner div + div p {
    font-size: 15px;
  }
  .top .top-banner > p {
    width: 760px;
    margin: 5px auto 0;
    font-size: 10px;
  }
  .top .top-end {
    margin: 40px auto 0;
  }
  .top .top-lead {
    width: 690px;
    margin: 40px auto 0;
  }
}
section h2 {
  margin-bottom: 5%;
  padding: calc(5% + 50px) 0 0;
  text-align: center;
  font-size: 5.5vw;
  line-height: 1;
  font-weight: 700;
  color: #e5004d;
}
section h2 span {
  display: block;
  margin-top: 0.5em;
  font-size: 3vw;
  font-weight: 500;
  letter-spacing: 0.1em;
}

@media all and (min-width: 767px) {
  section h2 {
    margin-bottom: 50px;
    padding: 100px 0 0;
    font-size: 36px;
  }
  section h2 span {
    font-size: 20px;
  }
}
.timetable-tab {
  position: -webkit-sticky;
  position: sticky;
  z-index: 50;
  top: 50px;
  width: 100%;
  height: 46px;
  padding: 10px 20px 0;
  background-color: #ededed;
}
.timetable-tab ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  line-height: 1;
}
.timetable-tab ul li {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: baseline;
  width: 49%;
  height: 36px;
  padding: 7px 0;
  background-color: #e5004d;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.timetable-tab ul li.hide {
  background-color: #ff7a7a;
}
.timetable-tab ul li.hide::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 10px;
  left: 0;
  bottom: 0;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0) 100%);
}
.timetable-tab ul li.hide span {
  color: #ff7a7a;
}
.timetable-tab ul li.hide span b {
  color: #ff7a7a;
}
.timetable-tab ul li span {
  width: 4.5em;
  height: min(6.2vw, 22px);
  margin-right: 0.3em;
  padding: 2px 0;
  text-align: center;
  font-size: min(3.3vw, 12px);
  font-weight: 700;
  color: #e5004d;
  letter-spacing: 0.05em;
  background-color: #fff;
  border-radius: 11px;
}
.timetable-tab ul li span b {
  display: inline-block;
  vertical-align: baseline;
  font-size: min(5vw, 18px);
  font-weight: 900;
  color: #e5004d;
}
.timetable-tab ul li strong {
  margin-right: 0.2em;
  font-size: min(5.5vw, 20px);
  font-weight: 700;
  color: #fff;
}
.timetable-tab ul li small {
  font-size: min(3.8vw, 14px);
  font-weight: 700;
  color: #fff;
}

@media all and (min-width: 767px) {
  .timetable-wrapper {
    background-image: url(../images/bg_pc4.png), url(../images/bg_pc4.png), url(../images/bg_pc4.png);
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: center top, center 1800px, center 3600px;
    background-size: 1600px 1801px, 1600px 1801px, 1600px 1801px;
  }
  .timetable-tab {
    top: 80px;
    height: 80px;
    padding: 15px 0 0;
  }
  .timetable-tab ul {
    justify-content: center;
    width: 800px;
  }
  .timetable-tab ul li {
    width: 370px;
    height: 64px;
    margin: 0 20px;
    padding: 10px 0;
  }
  .timetable-tab ul li.hide::after {
    height: 20px;
  }
  .timetable-tab ul li.hide:hover {
    cursor: pointer;
    background-color: #ff4b4b;
  }
  .timetable-tab ul li.hide:hover span {
    color: #ff4b4b;
  }
  .timetable-tab ul li.hide:hover span b {
    color: #ff4b4b;
  }
  .timetable-tab ul li span {
    height: 44px;
    padding: 2px 0;
    font-size: 24px;
    border-radius: 22px;
  }
  .timetable-tab ul li span b {
    font-size: 36px;
  }
  .timetable-tab ul li strong {
    font-size: 40px;
  }
  .timetable-tab ul li small {
    font-size: 28px;
  }
}
.timetable-content {
  width: calc(100% - 40px);
  margin: 0 auto;
  padding: 30px 0;
  background-color: #fff;
  box-shadow: 2px 10px 10px rgba(0, 0, 0, 0.2);
  transition: opacity 0.5s;
}
.timetable-content.hide {
  display: none;
  opacity: 0;
}
.timetable-content .time {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 30px;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  background-image: linear-gradient(to right, #e5004d 0%, #ff7a7a 100%);
  background-color: #e5004d;
  border-radius: 15px;
}
.timetable-content .text {
  width: 90%;
  margin: 0 auto;
}
.timetable-content .text h3 {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 700;
}
.timetable-content .text h3 span {
  display: inline-block;
  margin-right: 0.5em;
  padding: 0.2em 0.5em;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background-color: #555;
}
.timetable-content .text .title {
  margin-top: 0.5em;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  color: #e5004d;
}
.timetable-content .text .title br.pc {
  display: none;
}
.timetable-content .text .subtitle {
  margin-top: 0.2em;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 700;
  color: #e5004d;
}
.timetable-content .text .summary {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.8;
}
.timetable-content .speaker .name {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
}
.timetable-content .speaker .name small {
  display: inline-block;
  margin-left: 0.3em;
  font-size: 75%;
  font-weight: 700;
}
.timetable-content .speaker .position {
  margin-top: 5px;
  font-size: 12px;
  line-height: 1.5;
}
.timetable-content .speaker .position span {
  letter-spacing: -0.05em;
}
.timetable-content .speaker .profile-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6em;
  margin-top: 10px;
  padding: 0.15em 0;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #e5004d;
  border: solid 1px #e5004d;
  border-radius: 0.65em;
}
.timetable-content .speaker .profile-btn span {
  display: inline-block;
  margin-left: 0.5em;
  font-size: 50%;
  color: #e5004d;
}
.timetable-content .speaker .profile-btn:hover {
  background-color: #e5004d;
  color: #fff;
  cursor: pointer;
}
.timetable-content .speaker .profile-btn:hover span {
  color: #fff;
}
.timetable-content .enquete {
  margin: 30px 0 40px;
  padding: 0 5%;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
}
.timetable-content .enquete span {
  display: inline-block;
  margin-right: 1em;
  font-weight: 500;
  color: #e5004d;
}
.timetable-content .content-text {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 0 5% 0 2%;
}
.timetable-content .content-text .content {
  width: calc(100% - 140px);
  padding-top: 3px;
}
.timetable-content .content-text .content .text {
  width: 100%;
}
.timetable-content .content-large {
  position: relative;
}
.timetable-content .content-large .time {
  margin-left: 2%;
}
.timetable-content .content-large .content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.timetable-content .content-large .content .text {
  order: 2;
  margin-top: 15px;
}
.timetable-content .content-large .content .text h3 {
  position: absolute;
  left: calc(2% + 140px);
  top: 3px;
}
.timetable-content .content-large .content .text .title {
  font-size: 20px;
}
.timetable-content .content-large .content .speaker {
  order: 1;
  width: 100%;
  margin-top: 20px;
}
.timetable-content .content-large .content .speaker img {
  width: 80%;
  max-width: 180px;
  margin: 0 auto;
}
.timetable-content .content-large .content .speaker > div {
  margin-top: 10px;
}
.timetable-content .content-large .content .speaker .name {
  text-align: center;
}
.timetable-content .content-large .content .speaker .position {
  text-align: center;
}
.timetable-content .content-large .content .speaker .profile-btn {
  margin: 10px auto 0;
}
.timetable-content .content-large .content .enquete {
  order: 3;
}
.timetable-content .content-normal .time {
  margin-left: 2%;
}
.timetable-content .content-normal .content .text {
  margin-top: 10px;
}
.timetable-content .content-normal .content .speaker {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  width: 90%;
  max-width: 380px;
  margin: 20px auto 0;
}
.timetable-content .content-normal .content .speaker img {
  width: 38%;
  max-width: 120px;
  margin-right: 5%;
  margin-top: 15px;
}
.timetable-content .content-normal .content .speaker img:nth-of-type(1) {
  margin-top: 0;
}
.timetable-content .content-normal .content .speaker > div {
  width: 57%;
  max-width: 200px;
  margin-top: 15px;
}
.timetable-content .content-normal .content .speaker > div:nth-of-type(1) {
  margin-top: 0;
}
.timetable-content .content-normal .content + .content {
  margin-top: 40px;
}
.timetable-content .content-normal.kitano {
  position: relative;
  margin-bottom: 30px;
}
.timetable-content .content-normal.kitano h3 {
  position: absolute;
  left: calc(2% + 140px);
  top: 3px;
}

@media all and (min-width: 767px) {
  .timetable-content {
    position: relative;
    width: 1080px;
    padding: 50px;
  }
  .timetable-content::after {
    content: "";
    position: absolute;
    z-index: 1;
    width: 1px;
    height: calc(100% - 150px);
    left: 130px;
    top: 60px;
    border-left: dashed 2px #444;
  }
  .timetable-content > div {
    position: relative;
    z-index: 2;
  }
  .timetable-content .time {
    width: 160px;
    height: 36px;
    font-size: 24px;
    border-radius: 18px;
  }
  .timetable-content .text {
    width: 100%;
    margin: 0;
  }
  .timetable-content .text h3 {
    font-size: 18px;
  }
  .timetable-content .text h3 span {
    font-size: 16px;
  }
  .timetable-content .text .title {
    margin-top: 0.5em;
    font-size: 23px;
  }
  .timetable-content .text .title br.pc {
    display: inline;
  }
  .timetable-content .text .title.mh92 {
    min-height: 92px;
  }
  .timetable-content .text .title.mh96 {
    min-height: 96px;
  }
  .timetable-content .text .title.mh120 {
    min-height: 120px;
  }
  .timetable-content .text .title.mh128 {
    min-height: 128px;
  }
  .timetable-content .text .title.mh152 {
    min-height: 152px;
  }
  .timetable-content .text .title.mh211 {
    min-height: 211px;
  }
  .timetable-content .text .title.mh288 {
    min-height: 288px;
  }
  .timetable-content .text .title.mh307 {
    min-height: 307px;
  }
  .timetable-content .text .subtitle {
    margin-top: 0.2em;
    font-size: 20px;
  }
  .timetable-content .text .subtitle.mh56 {
    min-height: 56px;
  }
  .timetable-content .text .subtitle.mh60 {
    min-height: 60px;
  }
  .timetable-content .text .summary {
    margin-top: 15px;
  }
  .timetable-content .text .summary.mh175 {
    min-height: 175px;
  }
  .timetable-content .text .summary.mh200 {
    min-height: 200px;
  }
  .timetable-content .speaker {
    margin: 0;
  }
  .timetable-content .speaker .name {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
  }
  .timetable-content .speaker .name small {
    display: inline-block;
    margin-left: 0.3em;
    font-size: 75%;
    font-weight: 700;
  }
  .timetable-content .speaker .position {
    margin-top: 5px;
    font-size: 12px;
    line-height: 1.5;
  }
  .timetable-content .enquete {
    margin: 40px 0 50px;
    padding: 0;
    font-size: 16px;
  }
  .timetable-content .content-text {
    padding: 0;
  }
  .timetable-content .content-text .content {
    width: 800px;
    padding-top: 5px;
  }
  .timetable-content .content-large {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .timetable-content .content-large .time {
    margin-left: 0;
  }
  .timetable-content .content-large .content {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    width: 800px;
  }
  .timetable-content .content-large .content .text {
    width: 540px;
    margin-top: 0;
  }
  .timetable-content .content-large .content .text h3 {
    position: static;
    left: calc(2% + 140px);
    top: 3px;
  }
  .timetable-content .content-large .content .text .title {
    font-size: 28px;
  }
  .timetable-content .content-large .content .speaker {
    order: 1;
    width: 240px;
    margin-top: 0;
  }
  .timetable-content .content-large .content .speaker img {
    width: 220px;
    max-width: 220px;
    margin: 0;
  }
  .timetable-content .content-large .content .speaker > div {
    margin-top: 10px;
  }
  .timetable-content .content-large .content .speaker .name {
    text-align: left;
  }
  .timetable-content .content-large .content .speaker .position {
    text-align: left;
  }
  .timetable-content .content-large .content .speaker .profile-btn {
    margin: 10px 0 0;
  }
  .timetable-content .content-large .content .enquete {
    order: 3;
  }
  .timetable-content .content-normal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .timetable-content .content-normal .time {
    margin-left: 0;
  }
  .timetable-content .content-normal .content {
    width: 800px;
  }
  .timetable-content .content-normal .content.large {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .timetable-content .content-normal .content .text {
    margin-top: 5px;
  }
  .timetable-content .content-normal .content .text.text2 {
    width: 380px;
  }
  .timetable-content .content-normal .content .speaker {
    width: 380px;
    margin: 20px 0 0;
  }
  .timetable-content .content-normal .content .speaker img {
    width: 140px;
    max-width: 140px;
    margin-right: 20px;
  }
  .timetable-content .content-normal .content .speaker > div {
    width: 220px;
    max-width: 220px;
  }
  .timetable-content .content-normal .content + .content {
    margin-top: 0;
  }
  .timetable-content .content-normal .contents-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    width: 800px;
  }
  .timetable-content .content-normal .contents-wrapper .content {
    width: 380px;
  }
  .timetable-content .content-normal.kitano {
    margin-bottom: 40px;
  }
  .timetable-content .content-normal.kitano h3 {
    position: static;
  }
  .timetable-content .content-normal.kitano .content {
    display: flex;
    width: 100%;
  }
  .timetable-content .content-normal.kitano .content .text {
    width: 360px;
  }
  .timetable-content .content-normal.kitano .content .speaker {
    width: 380px;
    margin-top: 0;
    align-items: center;
  }
  .timetable-content .content-normal.kitano .content .speaker img {
    width: 120px;
  }
}
.outline > img {
  display: none;
}
.outline > div {
  width: 90%;
  margin: 0 auto;
  padding: 30px 20px;
  background-color: #fff;
  box-shadow: 2px 10px 10px rgba(0, 0, 0, 0.2);
}
.outline > div > ul > li h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8em;
  height: 2em;
  margin: 0 auto 10px;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  background-color: #444;
  border-radius: 1em;
}
.outline > div > ul > li p {
  text-align: center;
  font-size: 15px;
  line-height: 1.8;
}
.outline > div > ul > li div img {
  width: auto;
  height: 10vw;
  max-height: 50px;
  margin: 20px auto 0;
}
.outline > div > ul > li ul li {
  padding-left: 1em;
  font-size: 14px;
  line-height: 1.8;
  text-indent: -1em;
}
.outline > div > ul > li ul li + li {
  margin-top: 10px;
}
.outline > div > ul > li + li {
  margin-top: 30px;
}

@media all and (min-width: 767px) {
  .outline {
    position: relative;
  }
  .outline > img {
    display: block;
    position: absolute;
    z-index: 0;
    width: 950px;
    height: 1600px;
    left: calc(50% - 420px);
    top: 0;
    opacity: 0.7;
  }
  .outline > div {
    position: relative;
    z-index: 1;
    width: 800px;
    margin: 0 auto;
    padding: 50px;
  }
  .outline > div > ul > li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .outline > div > ul > li h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 30px;
    margin: 0;
    font-size: 18px;
    border-radius: 16px;
  }
  .outline > div > ul > li p {
    width: 550px;
    padding-left: 20px;
    text-align: left;
    font-size: 18px;
    line-height: 1.8;
  }
  .outline > div > ul > li div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 550px;
    padding-left: 20px;
  }
  .outline > div > ul > li div img {
    width: auto;
    height: 10vw;
    max-height: 50px;
    margin: 0 30px 0 0;
  }
  .outline > div > ul > li ul {
    width: 550px;
    padding-left: 20px;
  }
  .outline > div > ul > li ul li {
    font-size: 16px;
    line-height: 1.8;
  }
  .outline > div > ul > li + li {
    margin-top: 30px;
  }
}
.partners > div {
  width: 90%;
  margin: 0 auto;
  padding: 30px 20px 30px;
  background-color: #fff;
  box-shadow: 2px 10px 10px rgba(0, 0, 0, 0.2);
}
.partners > div div img {
  width: auto;
  height: 20vw;
  max-height: 100px;
  margin: 0 auto;
}
.partners > div div img:last-child {
  margin-top: 15px;
}
.partners > div div:nth-of-type(1) img:nth-of-type(1) {
  margin-bottom: 20px;
}

@media all and (min-width: 767px) {
  .partners {
    position: relative;
    z-index: 2;
    margin-bottom: 0px;
  }
  .partners > div {
    width: 800px;
    margin: 0 auto;
    padding: 40px 0 40px 0;
  }
  .partners > div div {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .partners > div div img {
    width: auto;
    height: 100px;
    max-height: 100px;
    margin: 0;
  }
  .partners > div div img:last-child {
    margin-top: 0px;
  }
  .partners > div div img + img {
    margin-left: 60px;
  }
  .partners > div div + div {
    margin-top: 40px;
  }
  .partners > div div:nth-of-type(1) img:nth-of-type(1) {
    margin-bottom: 0;
  }
}
.sponsors > div {
  width: 90%;
  margin: 0 auto;
  padding: 30px 20px;
  background-color: #fff;
  box-shadow: 2px 10px 10px rgba(0, 0, 0, 0.2);
}
.sponsors > div div img {
  width: auto;
  height: 12vw;
  max-height: 60px;
  margin: 0 auto;
}
.sponsors > div div img + img {
  margin-top: 20px;
}

@media all and (min-width: 767px) {
  .sponsors {
    position: relative;
    z-index: 2;
    margin-bottom: 120px;
  }
  .sponsors > div {
    width: 800px;
    margin: 0 auto;
    padding: 60px 50px;
  }
  .sponsors > div div {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .sponsors > div div img {
    width: auto;
    height: 60px;
    max-height: 60px;
    margin: 0;
  }
  .sponsors > div div img + img {
    margin: 0 0 0 40px;
  }
}
.others {
  position: relative;
  z-index: 2;
  margin-top: 80px;
  padding-bottom: 50px;
  background-image: linear-gradient(to top, #e5004d 0%, #ff7a7a 100%);
}
.others > img {
  display: block;
  position: absolute;
  width: 100%;
  left: 0;
  top: -1px;
}
.others h2 {
  color: #fff;
}
.others h2 span {
  color: #fff;
}
.others ul {
  width: 85%;
  margin: 0 auto 30px;
}
.others ul li {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 14px;
  line-height: 1.8;
  color: #fff;
  font-weight: 500;
}
.others ul li a {
  color: #fff;
  text-decoration: underline;
}
.others ul li + li {
  margin-top: 1em;
}
.others div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 20px;
  font-size: 12px;
  line-height: 1.8;
}
.others div p {
  color: #fff;
}

@media all and (min-width: 767px) {
  .others {
    margin-top: 80px;
    padding-bottom: 50px;
    background-image: linear-gradient(to top, #e5004d 0%, #ff7a7a 100%);
  }
  .others h2 {
    color: #fff;
  }
  .others h2 span {
    color: #fff;
  }
  .others ul {
    width: 700px;
    margin: 0 auto 30px;
  }
  .others ul li {
    padding-left: 1em;
    text-indent: -1em;
    font-size: 15px;
    line-height: 1.8;
    color: #fff;
    font-weight: 500;
  }
  .others ul li + li {
    margin-top: 1em;
  }
  .others div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 20px;
    font-size: 12px;
    line-height: 1.8;
  }
  .others div p {
    color: #fff;
  }
}
.fixed-banner {
  position: fixed;
  z-index: 60;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  right: 0;
  bottom: 0;
}
.fixed-banner ul {
  display: none;
}
.fixed-banner a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 85%;
  height: 45px;
  background-color: #ffbf12;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
.fixed-banner a span {
  font-size: 50%;
}

@media all and (min-width: 767px) {
  .fixed-banner {
    position: fixed;
    width: 270px;
    height: 200px;
    right: 10px;
    bottom: 20px;
  }
  .fixed-banner ul {
    display: block;
    line-height: 1;
  }
  .fixed-banner ul li {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: baseline;
    width: 250px;
    height: 50px;
    margin-bottom: 15px;
    padding: 10px 0;
    background-image: linear-gradient(to right, #e5004d 0%, #ff7a7a 100%);
    border-radius: 10px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    transition: filter 0.3s;
    will-change: filter;
  }
  .fixed-banner ul li:hover {
    cursor: pointer;
    filter: brightness(1.3);
  }
  .fixed-banner ul li span {
    width: 4.5em;
    height: 30px;
    margin-right: 0.3em;
    padding: 2px 0;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #e5004d;
    letter-spacing: 0.05em;
    background-color: #fff;
    border-radius: 15px;
  }
  .fixed-banner ul li span b {
    display: inline-block;
    vertical-align: baseline;
    font-size: 24px;
    font-weight: 900;
    color: #e5004d;
  }
  .fixed-banner ul li strong {
    margin-right: 0.2em;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
  }
  .fixed-banner ul li small {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
  }
  .fixed-banner a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 60px;
    background-color: #ffbf12;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    transition: filter 0.3s;
    will-change: filter;
  }
  .fixed-banner a:hover {
    cursor: pointer;
    filter: brightness(1.2);
  }
  .fixed-banner a span {
    font-size: 50%;
  }
}
@media all and (min-width: 767px) and (max-height: 750px) {
  .fixed-banner {
    height: 80px;
  }
  .fixed-banner ul {
    display: none;
  }
}
.g-modal {
  position: fixed;
  z-index: 300;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  transform: translate3d(0, 0, 0);
  background-color: rgba(255, 255, 255, 0.95);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}
.g-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.g-modal__bg {
  position: absolute;
  z-index: 50;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.g-modal__bg div {
  display: none;
}
.g-modal__close {
  width: 42px;
  transition: opacity 0.3s;
}
.g-modal__close:active {
  opacity: 0.65;
}
.g-modal__close::before, .g-modal__close::after {
  content: "";
  display: block;
  position: absolute;
  width: 42px;
  height: 1px;
  left: 0px;
  top: 20px;
  background-color: #707070;
}
.g-modal__close::before {
  transform: rotate(45deg);
}
.g-modal__close::after {
  transform: rotate(-45deg);
}
.g-modal__close.top {
  position: -webkit-sticky;
  position: sticky;
  z-index: 52;
  top: 24px;
  height: 42px;
  margin: 0 4px 0 auto;
}
.g-modal__close.bottom {
  position: relative;
  height: auto;
  margin: 40px auto 0;
  padding-top: 46px;
}
.g-modal__close.bottom p {
  text-align: center;
  font-size: 12px;
  line-height: 1;
  color: #000;
}
.g-modal__content {
  position: relative;
  z-index: 51;
  width: 100%;
  height: auto;
  max-height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
}
.g-modal__content::-webkit-scrollbar {
  display: none;
}
.g-modal__inner {
  position: relative;
  min-height: calc(100% - 59px);
  padding: 58px 40px 130px 40px;
}
.g-modal__inner li + li {
  margin-top: 60px;
}
.g-modal__photo {
  width: 60vw;
  height: 60vw;
  margin: 0 auto;
}
.g-modal__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.g-modal__profile {
  margin-top: 30px;
}
.g-modal__profile * {
  color: #000;
}
.g-modal__profile .name {
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.1em;
}
.g-modal__profile .name span {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
}
.g-modal__profile .jobtitle {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.5;
}
.g-modal__profile .profile {
  margin-top: 20px;
  font-size: 14px;
  line-height: 2;
}

@media all and (min-width: 767px) {
  .g-modal {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 1000px;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .g-modal__bg {
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: none;
  }
  .g-modal__bg div {
    display: block;
    height: calc(100% + 1px);
  }
  .g-modal__bg::-webkit-scrollbar {
    display: none;
  }
  .g-modal__close:hover {
    opacity: 0.65;
    cursor: pointer;
  }
  .g-modal__close.top {
    top: 14px;
    margin-right: 14px;
  }
  .g-modal__close.bottom {
    display: none;
  }
  .g-modal__content {
    width: 1100px;
    max-height: calc(100vh - 100px);
    background-color: rgba(255, 255, 255, 0.95);
  }
  .g-modal__inner {
    padding: 58px 90px 100px 110px;
  }
  .g-modal__inner li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .g-modal__inner li + li {
    margin-top: 40px;
  }
  .g-modal__photo {
    width: 280px;
    height: 280px;
    margin: 0;
  }
  .g-modal__profile {
    width: 570px;
    margin-top: 0;
    padding-top: 10px;
  }
  .g-modal__profile .name {
    font-size: 24px;
  }
  .g-modal__profile .name span {
    font-size: 16px;
    margin-bottom: 7px;
  }
  .g-modal__profile .jobtitle {
    font-size: 14px;
  }
  .g-modal__profile .profile {
    font-size: 16px;
  }
}