@charset "utf-8";
/*---------------------------

Trad　Green / #004831
Fresh Green / #c4d700

---------------------------*/
/*-------------------------
  01-リセット
-------------------------*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
::before, ::after {
  box-sizing: inherit;
}
h1, h2, h3, h4, h5, h6 {
  font-size: 1rem;
  line-height: 1.4;
}
summary, ul, ol {
  list-style: none;
  display: block;
}
summary::-webkit-details-marker {
  display: none;
}
button {
  border: none;
  outline: none;
  appearance: none;
  cursor: pointer;
  font-size: 1rem;
}
/*-------------------------
  02-レイアウト・共用
-------------------------*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 68px;
  font-family: "Noto Serif JP", serif;
  /*font-family: 'Noto Sans JP', sans-serif;*/
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.06em;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}
body {
  background-color: #004831;
  color: #fff;
}
@media (min-width: 1000px) {
  html {
    font-size: 18px;
  }
  body {
    /*background: linear-gradient(0deg, #004831, #000000);*/
  }
}
a {
  text-decoration: none;
}
@media (hover: hover) {
  a:hover {
    text-decoration: underline;
    cursor: pointer;
  }
}
img {
  max-width: 100%;
  height: auto;
  border: none;
}
p {
  line-height: 1.6;
}
p:not(:last-child) {
  margin-bottom: 1em;
}
iframe {
  max-width: 100%;
  overflow: hidden;
}
.inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
main .inner {
  max-width: 1000px;
}
.txt-S {
  font-size: smaller;
}
.txt-L {
  font-size: larger;
}
.txt-keep {
  word-break: keep-all;
  overflow-wrap: break-word;
}
.txt-border {
  border: 1px solid #fff;
  padding: 0.3em;
}
@media (min-width: 768px) {
  .txt-C {
    text-align: center;
  }
}
.img-C {
  display: block;
  margin: 0 auto;
}
ol.defaultStyle {
  list-style: decimal;
  margin-left: 1.5em;
}
ol.defaultStyle li:not(:last-child) {
  margin-bottom: 0.5em;
}
.only-sp {
  display: block;
}
@media (min-width: 1000px) {
  .only-sp {
    display: none;
  }
}
.only-pc {
  display: none;
}
@media (min-width: 1000px) {
  .only-pc {
    display: block;
  }
}
@media (min-width: 768px) {
  .flex {
    display: flex;
    align-items: flex-start;
    gap: 2em;
  }
}
/*-------------------------
  03-#siteHeader
-------------------------*/
#siteHeader {
  background-color: #004831;
  width: 100%;
  height: 68px;
  position: fixed;
  top: 0;
  display: flex;
  align-items: center;
  z-index: 9999;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
#siteHeader h1 {
  color: #fff;
  max-width: 250px;
}
#siteHeader a {
  color: #fff;
}
@media (min-width: 1000px) {
  #siteHeader {
    border-bottom: 2px solid #c4d700;
  }
  #siteHeader h1 {
    max-width: inherit;
  }
  .siteHeader-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
/*-------------------------
  04-#gnavi
-------------------------*/
#gnavi ul {
  display: none;
}
.gnavi-toggle, #gnavi.toggled ul {
  display: block;
}
.gnavi-toggle {
  border: 0;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  background-color: #c4d700;
  width: 68px;
  height: 68px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9999;
  padding: 10px;
}
.toggled .gnavi-toggle {
  background-color: transparent;
}
.gnavi-toggle svg line {
  fill: none;
  stroke: #004831;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4px;
  transition: transform 0.2s ease;
}
.gnavi-toggle svg line.top {
  transform-origin: 24px 12px;
}
.gnavi-toggle svg line.bottom {
  transform-origin: 24px 36px;
}
.toggled .gnavi-toggle svg line.top {
  transform: translate(0px, 12px) rotate(45deg);
  stroke: #c4d700;
}
.toggled .gnavi-toggle svg line.bottom {
  transform: translate(0px, -12px) rotate(-45deg);
  stroke: #c4d700;
}
.toggled .gnavi-toggle svg line.middle {
  opacity: 0;
}
#gnavi .gnavi-menu-container {
  width: 100vw;
  /*min-height: 30vh;*/
  padding: 20px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #004831;
  transition: transform 0.2s ease-out;
  transition-delay: 0.1s;
  transform: translateY(-100vh);
}
#gnavi.toggled .gnavi-menu-container {
  transform: translateY(0px);
}
#gnavi-menu a {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 1em;
  text-align: center;
}
@media (hover: hover) {
  #gnavi-menu a:hover {
    color: #c4d700;
    text-decoration: none;
  }
}
#gnavi-menu a.gnavi-menu-register {
  border-radius: 5px;
  background: linear-gradient(90deg, #D2AC46, #F8F4BF 30%, #D2AC46);
  color: #004831;
  font-weight: bold;
  padding: 0.5em;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5), inset 0px -3px 6px -2px rgba(0, 0, 0, 0.3);
  margin-bottom: 0;
  line-height: 1;
}
@media (hover: hover) {
  #gnavi-menu a.gnavi-menu-register:hover {
    background: linear-gradient(90deg, #9E9E9E, #E8E8E8 30%, #9E9E9E);
  }
}
@media (min-width: 1000px) {
  #gnavi ul {
    display: block;
  }
  .gnavi-toggle {
    display: none;
  }
  #gnavi .gnavi-menu-container {
    transform: none;
    width: auto;
    min-height: auto;
    padding: 0;
    position: static;
    background: none;
  }
  #gnavi #gnavi-menu {
    display: table;
  }
  #gnavi-menu li {
    display: table-cell;
  }
  #gnavi-menu a {
    font-size: 0.8rem;
    margin: 0 1em 0 0;
  }
  #gnavi-menu a.gnavi-menu-register {
    margin: 0;
    padding: 0.5em 2em;
  }
}
/*-------------------------
  05-main
-------------------------*/
main {
  margin-top: 68px;
}
section {
  padding: 3em 0;
}
h2 {
  font-size: 1.6em;
  font-weight: 700;
  text-align: center;
  color: #E2D06E;
  text-shadow: 1px 2px 5px #000000;
  margin: 0 auto 0.5em auto;
  background-image: url("../img/ico-ball.png"), url("../img/ico-ball.png");
  background-repeat: no-repeat;
  background-position: left 60%, right 60%;
  padding: 0 30px;
  width: fit-content;
  word-break: keep-all;
}
@media (min-width: 1000px) {
  h2 {
    font-size: 2em;
    letter-spacing: 0.2em;
  }
}
#KV {
  padding: 0;
  background-color: #000;
}
.pic-KV img {
  margin: 0 auto;
  display: block;
}
#iframe-movie {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 16 / 9;
  margin: 1em auto;
  display: block;
}
#concept {
  background-color: #000;
}
#concept h2 {
  background: none;
}
#contents {
  background: linear-gradient(0deg, #004831, #000000);
}
#contents ul {
  margin-top: 3em;
}
#contents ul li {
  background-image: url("../img/line-TL.svg"), url("../img/line-TR.svg"), url("../img/line-BL.svg"), url("../img/line-BR.svg");
  background-repeat: no-repeat;
  background-position: left top, right top, left bottom, right bottom;
  padding: 1em;
  margin-bottom: 1em;
}
#contents ul h3 {
  font-size: 1.2em;
  color: #E2D06E;
  text-align: center;
  margin-bottom: 0.5em;
}
#contents ul img {
  width: 100%;
  height: auto;
  margin-bottom: 0.5em;
}
#contents ul p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8em;
}
@media (min-width: 768px) {
  #contents ul {
    display: flex;
    justify-content: space-between;
  }
  #contents ul li {
    width: 30%;
    margin-bottom: 0;
  }
}
#theme {
  background: url("../img/bg-theme.jpg") no-repeat top left -250px / cover;
}
@media (min-width: 768px) {
  #theme {
    background-position: top left;
  }
}
#theme ul {
  margin-top: 3em;
}
#theme ul li {
  color: #004831;
  margin-bottom: 0.5em;
  background: #fff url("../img/bg-theme_part.jpg");
  padding: 1em;
  position: relative;
}
#theme ul li::before {
  content: "1";
  background-color: #004831;
  color: #fff;
  font-size: 0.8em;
  line-height: 1;
  padding-top: 0.8em;
  padding-left: 0.8em;
  width: 4em;
  height: 4em;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  clip-path: polygon(4em 0%, 0% 0%, 0% 4em);
}
#theme ul li:nth-child(2)::before {
  content: "2";
}
#theme ul li:nth-child(3)::before {
  content: "3";
}
#theme ul h3 {
  color: #004831;
  text-align: center;
  margin-bottom: 0.5em;
}
@media (min-width: 768px) {
  #theme ul span {
    display: block;
  }
}
#theme ul h3 .txt-L {
  font-size: 2em;
}
#theme ul p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8em;
}
@media (min-width: 768px) {
  #theme ul {
    display: flex;
    justify-content: space-between;
  }
  #theme ul li {
    width: 30%;
    margin-bottom: 0;
  }
}
.link-register {
  background: linear-gradient(90deg, #D2AC46, #F8F4BF 30%, #D2AC46), url("../img/bg-gold.jpg");
  background-blend-mode: lighten;
  text-align: center;
}
.link-register a {
  display: block;
  background: url("../img/ico-arrow-bottom.svg") no-repeat bottom 1em center;
  padding: 1em 1em 2em 1em;
  font-weight: 700;
  font-size: 1.4em;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #004831;
}
@media (hover: hover) {
  .link-register a:hover {
    text-decoration: none;
  }
}
.link-register.link-down a {
  background: url("../img/ico-arrow-top.svg") no-repeat top 0.5em center;
  padding: 1.5em 1em 1.5em 1em;
}
#speakers {
  background: url("../img/bg-speakers.jpg") no-repeat top center / auto 250px;
}
#speakers ul {
  margin-top: 3em;
  width: 100%;
}
#speakers ul p {
  font-size: 0.7em;
}
#speakers ul img {
  width: 100px;
  height: 100px;
  vertical-align: top;
  margin-right: 10px;
}
#speakers .name-speakers {
  display: inline-block;
  background: url("../img/line-C.svg") no-repeat bottom center;
  padding-bottom: 1em;
  margin-bottom: 0.5em;
}
#speakers ul p b {
  font-size: 1.6em;
  display: inline-block;
}
#speakers ul li a,
#speakers ul li > div{
  display: flex;
  margin-bottom: 10px;
}
#speakers .comingsoon {
  margin-top: 2em;
  color: #E2D06E;
}

@media (hover: hover) {
  #speakers ul li a:hover {
    text-decoration: none;
    transform: translateY(-10px);
  }
}
@media (min-width: 768px) {
  #speakers {
    background-size: 1200px 500px;
  }
  #speakers ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  #speakers ul li {
    width: calc((100% - 30px) / 4);
  }
  #speakers ul li a,
  #speakers ul li > div{
    display: block;
    margin-bottom: 10px;
  }
  #speakers ul img {
    margin-bottom: 0.3em;
    width: 100%;
    height: auto;
    margin-right: 0;
  }
  #speakers ul p {
    text-align: center;
    letter-spacing: 0em;
  }
}
#speakers #more-speakers {
  background: #004831 url("../img/ico-arrow-more.svg") no-repeat top center;
  padding: 50px 0.5em 0 0.5em;
  color: #E2D06E;
  margin: 0 auto;
  display: block;
  text-shadow: 1px 2px 5px #000000;
  font-size: 1.2em;
  letter-spacing: 0.2em;
}
#speakers #more-speakers.close-speakers {
  background-image: url("../img/ico-arrow-close.svg");
}
#speakers .open + .wrap-more-speakers #more-speakers {
  background-image: url("../img/ico-arrow-close.svg");
}
.wrap-more-speakers {
  background: #004831 url("../img/line-more-speakers.svg") no-repeat bottom 0.6em center;
}
#speakers .hidden {
  display: none;
}
.list-speakers {
  position: relative;
  height: auto;
  max-height: 830px;
  overflow: hidden;
  transition: max-height 1s;
}
.list-speakers::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  transition: 1s;
  background: linear-gradient(to bottom, transparent 730px, #004831 100%);
  pointer-events: none;
}
.list-speakers.open:after {
  z-index: -1;
  opacity: 0;
}

#timetable {
  background-color: #000;
}
#timetable table {
  border-spacing: 0.5em 0;
  font-size: 0.7em;
  width: 100%;
  table-layout: fixed;
  height: 100%;
}
#timetable th, #timetable td {
  padding: 0.3em;
  vertical-align: top;
  position: relative;
}
#timetable td {
  background-color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  color: #000;
  height: 100%;
}
#timetable .border-T_00 {
  background: #fff url("../img/line-time_00.png") repeat-x top left;
}
#timetable .border-T_30 {
  background: #fff url("../img/line-time_30.png") repeat-x top left;
}
#timetable .ttl-time {
  width: 3em;
}

#timetable th .time {
  display: block;
  position: absolute;
  top: -0.7em;
  right: 0;
}

#timetable .ttl-stageA, #timetable .ttl-stageB, #timetable .ttl-pitchStage {
  background-color: #fff;
  font-size: 2em;
  color: #094835;
  vertical-align: middle;
}
#timetable td div, #timetable td a {
  width: 100%;
  height: 100%;
  padding: 0.5em;
  display: block;
}
#timetable td .timetable-session {
  background-color: #f3f7cc;
}
#timetable td .timetable-satellite {
  /*background-color: #e3fafa;*/
  background-color: #f3f7cc;
}
#timetable td .timetable-other {
  background-color: #eee;
  text-align: center;
}
#timetable td .timetable-time {
  display: block;
  background-color: #094835;
  color: #fff;
  text-align: center;
  margin-bottom: 0.3em;
}
#timetable td .timetable-type {
  display: inline-block;
  background-color: #c4d700;
  padding: 0 0.5em;
  border-radius: 3px;
  font-size: 0.9em;
}
#timetable td .timetable-satellite .timetable-type {
  background-color: #ccc;
}
#timetable td .timetable-title {
  font-weight: 700;
}
#timetable td ul.timetable-speaker {
  display: none;
}
@media (min-width: 768px) {
  #timetable td ul.timetable-speaker {
    display: block;
    border-top: 1px solid #c4d700;
    padding-top: 0.5em;
    margin-top: 0.5em;
  }
  #timetable td ul.timetable-speaker li {
    display: flex;
    gap: 10px;
  }
  #timetable td ul.timetable-speaker li img {
    width: 70px;
  }
}
@media (hover: hover) {
  #timetable td a:hover {
    background-color: #004831;
    color: #fff;
    text-decoration: none;
  }
  #timetable td a:hover .timetable-time {
    background-color: #c4d700;
    color: #000;
  }
  #timetable td a:hover .timetable-type {
    color: #000;
  }
}
#register {
  background-color: #000;
}
.js-accordion summary {
  position: relative;
  color: #E2D06E;
  cursor: pointer;
  border-bottom: 1px solid #000;
  padding: 0.5em 30px 0.5em 0.5em;
}
.js-accordion summary::after, .js-accordion summary::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 12px;
  background-color: #E2D06E;
  transition: all 0.3s;
  top: calc(50% - 6px);
  right: 0.5em;
}
.js-accordion summary::after {
  transform: rotate(90deg);
}
.js-accordion.is-opened summary::before {
  transform: rotate(90deg);
}
.js-accordion .content {
  overflow: hidden;
  padding: 1em 2em;
  height: auto;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s;
  font-size: 0.9em;
  font-family: 'Noto Sans JP', sans-serif;
}
.js-accordion:not(.is-opened) > .content {
  height: 0;
  opacity: 0;
  visibility: hidden;
  padding-top: 0;
}
.js-accordion .content a {
  color: #fff;
  text-decoration: underline;
}
#sponsor {
  background: linear-gradient(90deg, #D2AC46, #F8F4BF 30%, #D2AC46), url("../img/bg-gold.jpg");
  background-blend-mode: lighten;
  padding: 8px 0 0 0;
  margin-bottom: 0;
  text-align: center;
}
.wrap-sponsor {
  /*background: #004831;*/
}
.header-sponsor {
  clip-path: polygon(100% 0%, 0% 0%, 0% calc(100% - 30px), 50% 100%, 100% calc(100% - 30px));
  background: #004831;
  padding: 3em 0;
}
.logo-sponsor {
  background-color: #fff;
  clip-path: polygon(100% 0%, 50% 30px, 0% 0%, 0% 100%, 100% 100%);
  margin-top: -22px;
  padding: 3em;
}
.sponsor-SMBC {
  display: block;
  margin: 0 auto 30px auto;
}
#sponsor h3 {
  margin-bottom: 1em;
  text-align: center;
  display: inline-block;
  color: #004831;
  padding: 0 0.3em;
}
.sponsor-platinum h3 {
  background-color: #d5e1e8;
}
.sponsor-gold h3 {
  background-color: #eae8ac;
}
.sponsor-silver h3 {
  background-color: #E9EAEA;
}
.sponsor-bronze h3 {
  background-color: #DFCAAE;
}
#sponsor ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}
@media (min-width: 1000px) {
  #sponsor ul {
    gap: 70px;
    margin-bottom: 100px;
  }
}
#map img, #info img {
  margin-bottom: 1.5em;
}
#map .flex {
  margin-top: 3em;
}
@media (max-width: 767px) {
  #map .flex {
    display: block;
  }
  .map-list {
    width: fit-content;
    margin: 0 auto;
  }
}
.map-list {
  font-size: 0.9em;
}
.map-list li:not(:last-child) {
  margin-bottom: 1em;
}
.map-list b {
  display: inline-block;
  background-color: #92d15f;
  color: #004831;
  padding: 0 0.5em;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.2em;
  margin-bottom: 0.3em;
}
/*-------------------------
  06-#siteFooter
-------------------------*/
#siteFooter {
  background-color: #004831;
  color: #fff;
}
#siteFooter .inner {
  padding: 3em 0;
}
.outline-line {
  display: flex;
  margin-top: 1em;
  padding-bottom: 1em;
}
.outline-list dt {
  font-weight: bold;
  width: 25%;
}
.outline-list dd {
  width: 75%;
}
.outline-line:not(:last-child) {
  border-bottom: 1px solid #1d760e;
}
@media (min-width: 1000px) {
  .outline-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .outline-line {
    width: 45%;
  }
  .outline-line:nth-child(5), .outline-line:nth-child(6) {
    border: none;
  }
}
.copyright {
  display: block;
  background-color: #000;
  color: #707070;
  text-align: center;
  padding: 1em;
  font-size: 0.7rem;
  min-height: 120px;
}
.bnr-footer {
  position: fixed;
  bottom: 0;
  left: calc(50% - 350px/2);
}
@media (min-width: 768px) {
  .copyright {
    min-height: 190px;
  }
  .bnr-footer {
    bottom: 20px;
    right: 20px;
    left: auto;
  }
}
/*-------------------------
  07-.mordal
-------------------------*/
.modal {
  display: none;
  padding: 0;
}
.modal.is-open {
  display: block;
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.modal-contents {
  background-color: #000;
  border: 10px solid #004831;
  padding: 1.5em;
  margin: 0 1.5em;
  overflow-y: auto;
  max-width: 1000px;
  max-height: 70vh;
}
.modal-btn-close {
  border-radius: 5px;
  text-align: center;
  margin: 2em auto 0;
  background: #004831;
  color: #fff;
  padding: 0.5em 3em;
  display: block;
  letter-spacing: 0.2em;
}
.modal-header {
  border: 2px solid #004831;
  margin-bottom: 1.5em;
  background-color: #004831;
  /*background: #004831 url("../img/bg-modal-title.svg");*/
}
.modal-header-label {
  display: flex;
  align-items: stretch;
}
.modal-header .modal-header-date {
  font-family: 'Noto Sans JP', sans-serif;
  background-color: #fff;
  color: #000;
  padding: 0.2em 0.5em;
  border-right: 2px solid #004831;
  margin-bottom: 0;
  width: 50%;
  text-align: center;
}
.modal-header .modal-header-type {
  font-family: 'Noto Sans JP', sans-serif;
  background-color: #E2D06E;
  color: #004831;
  padding: 0.2em 0.5em;
  margin-bottom: 0;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-header-title {
  color: #fff;
  padding: 0.5em 1em;
}
.modal-profile {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 1em;
  margin-top: 2em;
  /*background: url("../img/border-modal.svg") repeat-x top left / 5px 5px;*/
  border-top: 1px solid #E2D06E;
  padding-top: 2em;
}
.modal-profile-name .txt-S {
  line-height: 1.2;
  display: inline-block;
  margin-bottom: 0.5em;
}
.modal-profile-career {
  grid-column: 1/3;
  font-family: 'Noto Sans JP', sans-serif;
}
@media (min-width: 768px) {
  .modal-header {
    display: flex;
    align-items: center;
  }
  .modal-header-label {
    flex-direction: column;
    align-items: stretch;
  }
  .modal-header .modal-header-date {
    border-right: none;
    border-bottom: 2px solid #004831;
    width: auto;
  }
  .modal-header .modal-header-type {
    width: auto;
  }
  .modal-profile {
    grid-template-columns: 180px 1fr;
    align-items: start;
  }
  .modal-profile img {
    width: 180px;
    height: auto;
    grid-row: 1/3;
  }
  .modal-profile-career {
    grid-column: 2/3;
  }
}
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.modal[aria-hidden="false"] .modal-overlay {
  animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}
.modal[aria-hidden="false"] .modal-contents {
  animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}
.modal[aria-hidden="true"] .modal-overlay {
  animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}
.modal[aria-hidden="true"] .modal-contents {
  animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}
.modal .modal-contents, .modal .modal-overlay {
  will-change: transform;
}
#close a {
  text-decoration: underline;
  color: #fff;
}