@charset "UTF-8";
@import url(//fonts.googleapis.com/earlyaccess/notosansjapanese.css);
:root {
  --color_text: #333;
  --color_link_text: #04B;
  --color_link_hover: #4d7fb3;
  --color_header_hover: #E01A22;
  --color_footer_bg: #F8F0DE;
  --color_content_bg: #F2F2EA;
  --color_white: #fff;
  --color_black: #000;
}
#wholewrapper {
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Osaka, Arial, sans-serif;
}
#wholewrapper * {
  box-sizing: border-box;
}
img {
  max-width: 100%;
}
ul, li {
  margin: 0;
  padding: 0;
  color: var(color_text);
  list-style: none;
}
a {
  text-decoration: none;
  color: var(--color_text);
}
p > a, div > a {
  color: var(--color_link_text);
}
p > a:hover, div > a:hover {
  color: var(--color_link_hover);
}
a.arrow {
  position: relative;
  margin-top: 5px;
  padding-left: 21px;
  color: var(--color_text);
}
@media print, screen and (min-width: 1024px) {
  a.arrow:hover {
    color: var(--color_link_text);
  }
}
@media screen and (max-width: 767px) {
  a.arrow {
    font-size: 12px;
    margin-top: 5px;
    padding-left: 13px;
  }
}
a.arrow::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: url(../media/images/eajs/carret_right.svg) no-repeat center / 100%;
  left: 2px;
  top: 4px;
}
@media screen and (max-width: 767px) {
  a.arrow::before {
    width: 10px;
    height: 10px;
    background-size: 10px;
    top: 3px;
  }
}
a.arrow.middle::before {
  top: 7px;
}
h1, h2, h3, p {
  margin: 0;
  line-height: 1.3;
}
header {
  border-top: 8px solid #E01A22;
  position: fixed;
  width: 100%;
  z-index: 100;
  background: var(--color_white);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.16));
}
@media screen and (max-width: 1023px) {
  header {
    height: 80px;
  }
}
@media screen and (max-width: 767px) {
  header {
    border-top-width: 4px;
    height: 60px;
  }
}
header .inner {
  margin: 0 121px 0 95px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media print, screen and (max-width: 1300px) {
  header .inner {
    margin: 0 20px 0 20px;
  }
}
@media screen and (max-width: 767px) {
  header .inner {
    position: relative;
    margin: 0;
    padding: 4px 1px 0 4px;
  }
}
header .inner h1 {
  max-width: 283px;
  width: 100%;
}
@media print, screen and (max-width: 1150px) {
  header .inner h1 {
    max-width: 270px;
  }
}
@media screen and (max-width: 1023px) {
  header .inner h1 {
    max-width: 250px;
  }
}
@media screen and (max-width: 767px) {
  header .inner h1 {
    max-width: 188px;
  }
}
header .inner h1 a {
  display: block;
  aspect-ratio: 3.8767123288;
}
header .inner h1 a img {
  transform: translateY(6px);
}
@media screen and (max-width: 767px) {
  header .inner h1 a img {
    transform: none;
  }
}
header .header_nav {
  position: relative;
  display: flex;
  font-size: 18px;
  font-weight: 500;
  transform: translateY(-2px);
}
@media print, screen and (max-width: 1150px) {
  header .header_nav {
    font-size: 17px;
  }
}
@media screen and (max-width: 1023px) {
  header .header_nav {
    align-items: center;
  }
}
@media screen and (max-width: 1023px) {
  header .header_nav {
    position: static;
    align-items: center;
    margin-top: -10px;
    transform: none;
  }
}
@media screen and (max-width: 767px) {
  header .header_nav {
    font-size: 14px;
  }
}
@media print, screen and (min-width: 1024px) {
  header .header_nav a:hover {
    color: var(--color_header_hover);
  }
}
header .header_nav .header_nav_list {
  display: flex;
  gap: 54px;
  margin: 0;
  margin-right: 54px;
  padding: 0;
}
@media print, screen and (max-width: 1150px) {
  header .header_nav .header_nav_list {
    gap: 0 30px;
    margin-right: 30px;
  }
}
@media screen and (max-width: 1023px) {
  header .header_nav .header_nav_list {
    position: absolute;
    display: none;
    visibility: hidden;
    opacity: 0;
    top: 73px;
    left: 0;
    right: 0;
    width: 100%;
    margin-right: 0;
  }
  header .header_nav .header_nav_list.nav_open {
    display: block;
    background: rgba(0, 0, 0, 0.8);
    visibility: visible;
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  header .header_nav .header_nav_list {
    top: 56px;
  }
}
header .header_nav .header_nav_list li {
  list-style: none;
  position: relative;
}
@media screen and (max-width: 1023px) {
  header .header_nav .header_nav_list li:first-child {
    display: none;
  }
}
header .header_nav .header_nav_list li::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 18px;
  background-color: var(--color_black);
  top: 0px;
  right: -28px;
}
@media print, screen and (max-width: 1150px) {
  header .header_nav .header_nav_list li::after {
    right: -15px;
  }
}
@media screen and (max-width: 1023px) {
  header .header_nav .header_nav_list li a {
    display: block;
    padding: 20px;
    border-bottom: 1px solid #ccc;
    color: var(--color_white);
  }
}
@media screen and (max-width: 767px) {
  header .header_nav .header_nav_list li a {
    padding: 20px 31px;
  }
}
header .header_nav .header_nav_list .sp {
  display: none;
}
@media screen and (max-width: 1023px) {
  header .header_nav .header_nav_list .sp {
    display: block;
  }
}
header .header_nav .nav_link {
  margin-right: 33px;
}
@media screen and (max-width: 1023px) {
  header .header_nav .nav_link {
    font-size: 17px;
  }
}
@media screen and (max-width: 767px) {
  header .header_nav .nav_link {
    margin-right: 21px;
    font-size: 14px;
  }
}
header .header_nav .pc_lang {
  display: flex;
  gap: 23px;
}
@media screen and (max-width: 1023px) {
  header .header_nav .pc_lang {
    display: none;
  }
}
header .header_nav .pc_lang .jp_page {
  position: relative;
}
header .header_nav .pc_lang .jp_page::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 18px;
  background-color: var(--color_black);
  top: 0px;
  right: -13px;
}
header .sp_menu {
  display: none;
}
@media screen and (max-width: 1023px) {
  header .sp_menu {
    display: block;
    margin-right: 14px;
    width: 60px;
    aspect-ratio: 1;
    background: url(../media/images/eajs/sp_button_open.svg) no-repeat center / cover;
  }
  header .sp_menu.open {
    background-image: url(../media/images/eajs/sp_button_close.svg);
  }
}
@media screen and (max-width: 767px) {
  header .sp_menu {
    width: 30px;
  }
}
html[lang="ja"] .pc_lang .jp_page {
  pointer-events: none;
}
html[lang="en"] .pc_lang .jp_page::after {
  display: none;
}
html[lang="en"] .pc_lang .en_page {
  pointer-events: none;
}
footer {
  border-bottom: none;
  padding: 0;
  background: var(--color_footer_bg);
}
footer .footer_box {
  display: flex;
  flex-flow: row wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 44px 0 33px;
  gap: 20px 0.9%;
}
@media print, screen and (max-width: 1200px) {
  footer .footer_box {
    padding: 40px 20px 30px;
  }
}
@media screen and (max-width: 767px) {
  footer .footer_box {
    display: block;
    padding: 30px;
  }
}
footer .footer_box .banner_img {
  aspect-ratio: 4.4242424242;
  max-width: 292px;
  flex: 0 0 24.3%;
}
@media screen and (max-width: 767px) {
  footer .footer_box .banner_img {
    margin: 0 auto;
  }
  footer .footer_box .banner_img + .banner_img {
    margin-top: 8px;
  }
}
footer .footer_box .banner_img a {
  display: block;
}
@media print, screen and (min-width: 1024px) {
  footer .footer_box .banner_img a {
    transition: 0.5s;
  }
  footer .footer_box .banner_img a:hover {
    opacity: 0.8;
  }
}
footer .footer_box .banner_img a[href^="http"]::after {
  display: none;
}
footer .footer_box .banner_img img {
  display: block;
}
footer .footer_bottom {
  min-height: 149px;
  background: var(--color_header_hover);
  color: var(--color_white);
  display: flex;
  align-items: center;
}
@media print, screen and (max-width: 1200px) {
  footer .footer_bottom {
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  footer .footer_bottom {
    min-height: unset;
    padding: 25px 20px;
  }
}
footer .footer_bottom .inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-left: 7px;
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  footer .footer_bottom .inner {
    display: block;
    padding-left: 0;
  }
}
footer .footer_bottom .inner .title {
  margin-right: 26px;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  footer .footer_bottom .inner .title {
    margin-right: 0;
    margin-bottom: 6px;
    font-size: 17px;
  }
}
footer .footer_bottom .inner .title .en {
  letter-spacing: 0.02em;
  margin-left: 5px;
}
@media screen and (max-width: 767px) {
  footer .footer_bottom .inner .title .en {
    margin-left: 7px;
  }
}
footer .footer_bottom .inner i {
  margin-top: 2px;
  margin-right: 8px;
  font-size: 21px;
}
@media screen and (max-width: 767px) {
  footer .footer_bottom .inner i {
    margin-top: 6px;
    margin-left: 3px;
    margin-right: 7px;
    font-size: 17px;
  }
}
footer .footer_bottom .inner a {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  color: var(--color_white);
  letter-spacing: 0.007em;
}
@media print, screen and (min-width: 1024px) {
  footer .footer_bottom .inner a {
    transition: 0.5s;
  }
  footer .footer_bottom .inner a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 767px) {
  footer .footer_bottom .inner a {
    font-size: 13px;
  }
}
#main {
  padding-top: 90px;
}
@media screen and (max-width: 767px) {
  #main {
    padding-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  #main .sp_wrap {
    display: block;
  }
}
#main .scroll_position {
  margin-top: -90px;
  padding-top: 90px;
}
@media screen and (max-width: 767px) {
  #main .scroll_position {
    margin-top: -60px;
    padding-top: 60px;
  }
}
#main .section_title {
  font-family: "Open Sans", sans-serif;
  font-size: 30px;
}
@media screen and (max-width: 767px) {
  #main .section_title {
    font-size: 23px;
  }
}
#main .title_text {
  position: relative;
  display: inline-block;
  margin-top: 13px;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  #main .title_text {
    margin-top: 9px;
    font-size: 12px;
  }
}
#main .title_text::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  top: -10px;
  background: var(--color_black);
}
@media screen and (max-width: 767px) {
  #main .title_text::before {
    height: 2px;
    left: 0;
    right: 0;
    top: -6px;
  }
}
#main > section .title_item {
  text-align: center;
}
#main .section_line {
  position: relative;
}
#main .section_line::before, #main .section_line::after {
  position: absolute;
  content: "";
  width: 50%;
  height: 8px;
  top: 0;
}
@media screen and (max-width: 767px) {
  #main .section_line::before, #main .section_line::after {
    height: 4px;
  }
}
#main .section_line::before {
  left: 0;
  background: #E01A22;
}
#main .section_line::after {
  right: 0;
  background: var(--color_link_text);
}
#main div.inner {
  max-width: none;
  margin: 0;
  padding: 0;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #main div.inner {
    max-width: 675px;
    padding: 0 20px;
  }
}
#main img {
  max-width: 100%;
}
#main .button {
  margin: 0 auto;
  display: block;
  text-align: center;
  max-width: 500px;
  max-height: 72px;
  width: 100%;
  padding: 24px 0;
  background: var(--color_link_text);
  font-size: 24px;
  line-height: 1;
  color: var(--color_white);
}
@media screen and (max-width: 767px) {
  #main .button {
    max-width: 250px;
    padding: 18px 0;
    font-size: 18px;
  }
}
@media print, screen and (min-width: 1024px) {
  #main .button {
    transition: 0.5s;
  }
  #main .button:hover {
    opacity: 0.8;
  }
}
#main .kv {
  position: relative;
  max-width: none;
  aspect-ratio: 1.6197975253;
}
@media print, screen and (max-width: 980px) {
  #main .kv {
    margin-bottom: 33%;
  }
}
@media screen and (max-width: 767px) {
  #main .kv {
    aspect-ratio: unset;
    margin-bottom: 30px;
  }
}
#main .kv .kv_img_main {
  position: relative;
  top: -90px;
  aspect-ratio: 1.6197975253;
}
@media screen and (max-width: 767px) {
  #main .kv .kv_img_main {
    top: -60px;
    aspect-ratio: 0.8426966292;
  }
}
#main .kv .kv_img_main img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
#main .kv .kv_img_title {
  max-width: 647px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 45%;
  top: 11.2%;
}
html[lang="en"] #main .kv .kv_img_title {
  top: 8%;
  width: 35%;
}
@media print, screen and (max-width: 980px) {
  #main .kv .kv_img_title {
    top: 8%;
  }
}
@media screen and (max-width: 767px) {
  #main .kv .kv_img_title {
    width: 75%;
    top: 2.5%;
  }
}
#main .kv .sns_nav {
  display: flex;
  gap: 10px;
  position: absolute;
  top: 27px;
  right: 30px;
}
@media screen and (max-width: 767px) {
  #main .kv .sns_nav {
    display: block;
    top: 130px;
    right: 10px;
  }
}
#main .kv .sns_nav .sns_icon {
  flex: 0 0 42px;
}
@media screen and (max-width: 767px) {
  #main .kv .sns_nav .sns_icon {
    width: 32px;
  }
}
#main .kv .sns_nav .sns_icon a {
  display: block;
}
#main .kv .sns_nav .sns_icon img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 767px) {
  #main .kv .sns_nav .sns_icon + .sns_icon {
    margin-top: 10px;
  }
}
#main .kv .kv_content {
  position: absolute;
  bottom: 0;
  transform: translateY(7%);
  left: 0;
  right: 0;
  margin: 0 auto;
  padding-bottom: 0;
  max-width: 1200px;
  text-align: center;
}
@media print, screen and (max-width: 1200px) {
  #main .kv .kv_content {
    padding: 0 60px;
  }
}
@media print, screen and (max-width: 980px) {
  #main .kv .kv_content {
    bottom: -42%;
    transform: none;
  }
}
@media screen and (max-width: 767px) {
  #main .kv .kv_content {
    position: relative;
    transform: none;
    margin: -150px 0 0;
    padding: 0 20px;
  }
}
#main .kv .kv_item {
  display: flex;
  gap: 47px;
  justify-content: center;
  padding: 50px 30px 75px;
  background: var(--color_white);
}
@media screen and (max-width: 767px) {
  #main .kv .kv_item {
    display: block;
    margin-bottom: 27px;
    padding: 6px 20px 0;
  }
}
#main .kv .kv_item .kv_content_img {
  flex: 0 0 335px;
  transform: translate(-35px, -10px);
}
@media screen and (max-width: 1023px) {
  #main .kv .kv_item .kv_content_img {
    flex: 0 0 260px;
  }
}
@media screen and (max-width: 767px) {
  #main .kv .kv_item .kv_content_img {
    margin: 0 auto;
    max-width: 175px;
    transform: translateX(-13px);
  }
}
#main .kv .kv_item .kv_content_img img {
  display: block;
  width: 100%;
}
#main .kv .kv_item .kv_text_box {
  text-align: left;
  max-width: 519px;
  transform: translateX(-35px);
}
@media screen and (max-width: 767px) {
  #main .kv .kv_item .kv_text_box {
    margin-top: 11px;
    max-width: none;
    transform: translateX(0);
  }
}
#main .kv .kv_item .kv_text_box .kv_text {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.69;
}
@media screen and (max-width: 767px) {
  #main .kv .kv_item .kv_text_box .kv_text {
    font-size: 12px;
  }
}
#main .kv .kv_item .kv_text_box .kv_text a {
  color: var(--color_link_text);
}
@media screen and (max-width: 767px) {
  #main > section:has(.section_line) {
    padding-right: 20px;
    padding-left: 20px;
  }
}
#main .intro {
  margin: 0 auto;
  margin-top: 58px;
  max-width: 1200px;
}
@media print, screen and (max-width: 1200px) {
  #main .intro {
    padding: 0 30px;
  }
}
@media screen and (max-width: 767px) {
  #main .intro {
    margin: 30px 0;
    padding: 0;
  }
}
#main .intro .bg {
  background: var(--color_content_bg) url(../media/images/eajs/intro_bg.png) no-repeat center / 100% auto;
}
#main .intro .detail {
  margin: 0 auto;
  padding: 32px 0 36px 7px;
  max-width: 700px;
}
@media screen and (max-width: 767px) {
  #main .intro .detail {
    padding: 10px 40px 7px 15px;
  }
}
#main .intro .detail_text {
  display: flex;
  margin-bottom: 10px;
  font-size: 18px;
}
html[lang="en"] #main .intro .detail_text {
  display: block;
}
@media screen and (max-width: 767px) {
  #main .intro .detail_text {
    margin-bottom: 7px;
    font-size: 13px;
  }
}
#main .intro .detail_text p {
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  #main .intro .detail_text p {
    line-height: 1.6;
  }
}
#main .intro .detail_text .left {
  flex: 0 0 122px;
}
@media screen and (max-width: 767px) {
  #main .intro .detail_text .left {
    flex: 0 0 85px;
  }
}
html[lang="en"] #main .intro .detail_text .left {
  font-weight: normal;
}
html[lang="en"] #main .intro .detail_text .left:after {
  content: ":";
}
#main .intro .detail_text .right span {
  white-space: nowrap;
}
html[lang="en"] #main .intro .detail_text .right {
  font-weight: 600;
}
#main section.info .inner {
  margin: 80px auto;
}
@media print, screen and (max-width: 1200px) {
  #main section.info .inner {
    padding: 0 30px;
  }
}
@media screen and (max-width: 767px) {
  #main section.info .inner {
    margin: 45px auto 30px;
    padding: 0 20px;
  }
}
#main section.info .info_topics {
  max-width: 1024px;
  transform: translateX(-12px);
  margin: 0 auto;
  margin-top: 45px;
}
@media print, screen and (max-width: 1200px) {
  #main section.info .info_topics {
    transform: none;
  }
}
@media screen and (max-width: 767px) {
  #main section.info .info_topics {
    margin-top: 25px;
  }
}
#main section.info .info_topics li {
  border-top: 1px dotted #707070;
  padding-left: 27px;
}
@media screen and (max-width: 767px) {
  #main section.info .info_topics li {
    padding-left: 0;
  }
}
#main section.info .info_topics li:last-child {
  border-bottom: 1px dotted #707070;
}
#main section.info .info_topics a {
  display: flex;
  align-items: center;
  min-height: 50px;
}
@media print, screen and (min-width: 1024px) {
  #main section.info .info_topics a:not(.text):hover {
    color: var(--color_link_text);
  }
}
@media screen and (max-width: 767px) {
  #main section.info .info_topics a {
    display: block;
    padding: 7px 0;
  }
}
#main section.info .info_topics a.text {
  cursor: default;
  pointer-events: none;
}
#main section.info .info_topics .date {
  margin-right: 44px;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  #main section.info .info_topics .date {
    font-size: 12px;
  }
}
#main section.info .info_topics .topics_title {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  #main section.info .info_topics .topics_title {
    margin-top: 9px;
    font-size: 14px;
    font-size: 13.5px;
    line-height: 1.4;
  }
}
#main section.program .inner {
  padding: 61px 0 80px;
}
@media print, screen and (max-width: 1200px) {
  #main section.program .inner {
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  #main section.program .inner {
    padding: 22px 0 30px;
  }
}
#main section.program .title_text {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  #main section.program .title_text {
    margin-top: 14px;
  }
}
#main section.program .content {
  text-align: center;
  margin-top: 45px;
}
@media screen and (max-width: 767px) {
  #main section.program .content {
    margin-top: 32px;
  }
}
#main section.program .content p.text {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  #main section.program .content p.text {
    font-size: 12px;
  }
}
#main section.keynote .inner {
  padding: 61px 0 81px;
}
@media print, screen and (max-width: 1200px) {
  #main section.keynote .inner {
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  #main section.keynote .inner {
    padding: 28px 0 29px;
  }
}
#main section.keynote .title_text {
  margin-top: 19px;
}
@media screen and (max-width: 767px) {
  #main section.keynote .title_text {
    margin-top: 14px;
  }
}
#main section.keynote .title_text::before {
  width: 64px;
}
@media screen and (max-width: 767px) {
  #main section.keynote .title_text::before {
    width: 50px;
    top: -4px;
  }
}
#main section.keynote .keynotel_list {
  margin-top: 57px;
}
@media screen and (max-width: 767px) {
  #main section.keynote .keynotel_list {
    margin-top: 31px;
  }
}
#main section.keynote .keynotel_list li + li {
  margin-top: 57px;
}
@media screen and (max-width: 767px) {
  #main section.keynote .keynotel_list li + li {
    margin-top: 31px;
  }
}
#main section.keynote .keynote_item {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  #main section.keynote .keynote_item {
    display: block;
  }
}
#main section.keynote .keynote_item:last-child {
  margin-bottom: 0;
}
#main section.keynote .keynote_item .keynote_img {
  aspect-ratio: 1;
  max-width: 180px;
  flex: 0 0 180px;
  margin-right: 51px;
}
@media screen and (max-width: 767px) {
  #main section.keynote .keynote_item .keynote_img {
    margin: 0 auto 25px;
    max-width: 188px;
  }
}
#main section.keynote .keynote_box {
  max-width: 729px;
  width: 100%;
}
#main section.keynote .keynote_box .keynote_title {
  border-bottom: 2px solid #CCCCCC;
  padding-bottom: 12px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  #main section.keynote .keynote_box .keynote_title {
    padding-bottom: 10px;
    font-size: 18px;
  }
}
#main section.keynote .keynote_box .keynote_title .en {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  #main section.keynote .keynote_box .keynote_title .en {
    font-size: 11px;
  }
}
#main section.keynote .keynote_box .keynote_detail {
  position: relative;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  #main section.keynote .keynote_box .keynote_detail {
    margin-top: 25px;
  }
}
#main section.keynote .keynote_box .keynote_detail .name {
  margin-top: 42px;
  font-size: 21px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  #main section.keynote .keynote_box .keynote_detail .name {
    margin-top: 12px;
    font-size: 15px;
  }
}
#main section.keynote .keynote_box .keynote_detail .job {
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  #main section.keynote .keynote_box .keynote_detail .job {
    font-size: 13px;
  }
}
#main section.keynote .keynote_box .keynote_detail .abstract {
  position: absolute;
  display: inline-block;
  right: 0;
  min-width: 104px;
  line-height: 1;
  border: 1px solid #707070;
  padding: 7px 0 6px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  #main section.keynote .keynote_box .keynote_detail .abstract {
    min-width: 78px;
    padding: 5px 0 4px;
    font-size: 11px;
    transform: none;
  }
}
#main section.keynote .keynote_box .keynote_detail .abstract::after {
  position: absolute;
  content: "";
  display: inline-block;
  background-image: url(../media/images/eajs/toggle-button.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: rotate(-180deg);
  width: 9px;
  height: 7px;
  right: 10px;
  top: 11px;
}
@media screen and (max-width: 767px) {
  #main section.keynote .keynote_box .keynote_detail .abstract::after {
    width: 6px;
    height: 5px;
    right: 5px;
    top: 7px;
  }
}
#main section.keynote .keynote_box .keynote_detail .abstract.is-open::after {
  transform: rotate(0deg);
  top: 10px;
  right: 11px;
}
@media screen and (max-width: 767px) {
  #main section.keynote .keynote_box .keynote_detail .abstract.is-open::after {
    right: 5px;
    top: 9px;
  }
}
#main section.keynote .keynote_box .en {
  font-family: "Open Sans", sans-serif;
  margin-top: 13px;
}
@media screen and (max-width: 767px) {
  #main section.keynote .keynote_box .en {
    margin-top: 33px;
  }
}
#main section.keynote .keynote_box .en .keynote_title {
  padding-bottom: 14px;
}
@media screen and (max-width: 767px) {
  #main section.keynote .keynote_box .en .keynote_title {
    padding-bottom: 11px;
  }
}
#main section.keynote .keynote_box .en .pc_wrap {
  display: block;
}
@media screen and (max-width: 767px) {
  #main section.keynote .keynote_box .en .pc_wrap {
    display: inline;
  }
}
#main section.keynote .keynote_box .en .name {
  margin-top: 30px;
  font-size: 23px;
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Osaka, Arial, sans-serif;
}
#main section.keynote .keynote_box .en .name.en {
  font-family: "Open Sans", sans-serif;
}
@media screen and (max-width: 767px) {
  #main section.keynote .keynote_box .en .name {
    margin-top: 14px;
    font-size: 18px;
  }
}
#main section.keynote .keynote_box .en .job {
  transform: translateY(-1px);
}
#main section.keynote .keynote_box .abstract_text {
  display: none;
  margin-top: 31px;
  transition: height 0.3s ease;
}
#main section.keynote .keynote_box .abstract_text.is-visible {
  display: block;
  height: auto;
  transition: height 0.3s ease;
}
@media screen and (max-width: 767px) {
  #main section.keynote .keynote_box .abstract_text.is-visible {
    margin: 20px -3px 0;
  }
}
#main section.keynote .keynote_box .abstract_text.is-visible p {
  line-height: 1.38;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  #main section.keynote .keynote_box .abstract_text.is-visible p {
    line-height: 1.5;
    font-size: 12px;
  }
}
#main section.location .inner {
  padding: 60px 0 60px;
}
@media print, screen and (max-width: 1200px) {
  #main section.location .inner {
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  #main section.location .inner {
    padding: 30px 0 30px;
  }
}
#main section.location .title_text {
  margin-top: 19px;
}
@media screen and (max-width: 767px) {
  #main section.location .title_text {
    margin-top: 15px;
  }
}
#main section.location .contents_box {
  display: flex;
  justify-content: space-between;
  max-width: 960px;
  margin: 40px auto 60px;
}
@media screen and (max-width: 767px) {
  #main section.location .contents_box {
    display: block;
    margin: 30px auto 34px;
  }
}
#main section.location .contents_box .location_detail {
  padding-left: 25px;
  border-left: 10px solid #DCDCDC;
  max-width: 480px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  #main section.location .contents_box .location_detail {
    border-left-width: 4px;
    padding-left: 12px;
  }
  #main section.location .contents_box .location_detail + .location_detail {
    margin-top: 30px;
  }
}
#main section.location .contents_box .location_box .location_title {
  font-size: 21px;
  position: relative;
  transform: translateY(-5px);
}
@media screen and (max-width: 767px) {
  #main section.location .contents_box .location_box .location_title {
    font-size: 16px;
    transform: translateY(-2px);
  }
}
#main section.location .contents_box .location_box .location_title::before {
  content: "";
  display: inline-block;
}
#main section.location .contents_box .location_box .venue::before {
  margin-right: 11px;
  width: 35px;
  height: 47px;
  background: url(../media/images/eajs/venue.svg) no-repeat center / 100%;
  transform: translateY(4px);
}
@media screen and (max-width: 767px) {
  #main section.location .contents_box .location_box .venue::before {
    margin-right: 11px;
    width: 26px;
    height: 35px;
    background-size: cover;
    background-size: cover;
    transform: translateY(2px);
  }
}
@media screen and (max-width: 767px) {
  #main section.location .contents_box .location_box .train {
    transform: translateY(-7px);
  }
}
#main section.location .contents_box .location_box .train::before {
  margin-right: 12px;
  width: 43px;
  height: 49px;
  background: url(../media/images/eajs/train.svg) no-repeat center / 100%;
  transform: translateY(4px);
}
@media screen and (max-width: 767px) {
  #main section.location .contents_box .location_box .train::before {
    width: 33px;
    height: 37px;
    background-size: cover;
    transform: translateY(7px);
  }
}
#main section.location .contents_box .location_box address {
  font-style: normal;
  font-size: 16px;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  #main section.location .contents_box .location_box address {
    margin-top: 8px;
    font-size: 12px;
  }
}
#main section.location .contents_box .location_box address .zip {
  display: block;
  margin-top: 7px;
}
@media screen and (max-width: 767px) {
  #main section.location .contents_box .location_box address .zip {
    margin-top: 5px;
  }
}
#main section.location .contents_box .location_box .location_list {
  margin-top: 21px;
}
@media screen and (max-width: 767px) {
  #main section.location .contents_box .location_box .location_list {
    margin-top: 13px;
  }
}
#main section.location .contents_box .location_box .location_list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 20px;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  #main section.location .contents_box .location_box .location_list li {
    margin-bottom: 10px;
    font-size: 12px;
  }
}
#main section.location .contents_box .location_box .location_list li:last-child {
  margin-bottom: 0;
}
#main section.location .contents_box .location_box .location_list li::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: url(../media/images/eajs/carret_right.svg) no-repeat center / 100%;
  left: 0px;
  top: 1px;
}
@media print, screen and (min-width: 1024px) {
  #main section.location .contents_box .location_box .location_list li a:hover {
    color: var(--color_link_text);
  }
}
#main section.location .caution {
  position: relative;
  margin: 0 auto;
  margin-bottom: 60px;
  border-radius: 60px;
  padding: 28px 35px 24px 68px;
  max-width: 960px;
  width: 100%;
  transform: translateX(-32px);
  background: var(--color_content_bg);
}
@media print, screen and (max-width: 1200px) {
  #main section.location .caution {
    transform: none;
  }
}
@media screen and (max-width: 1023px) {
  #main section.location .caution {
    padding-right: 30px;
    padding-left: 70px;
    border-radius: 50px;
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  #main section.location .caution {
    margin-bottom: 30px;
    padding: 18px 20px 18px 52px;
  }
}
#main section.location .caution::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 50%;
  bottom: 50%;
  margin: auto 0;
  width: 21px;
  height: 30px;
  background: url(../media/images/eajs/ranch.svg) no-repeat center / 100%;
}
@media screen and (max-width: 767px) {
  #main section.location .caution::before {
    width: 16px;
    height: 24px;
    left: 21px;
    background-size: cover;
  }
}
#main section.location .caution .text {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  #main section.location .caution .text {
    font-size: 12px;
  }
}
#main .google-map {
  aspect-ratio: 3.6828644501;
  width: 100%;
}
@media screen and (max-width: 767px) {
  #main .google-map {
    aspect-ratio: 1.2776831346;
  }
}
#main .google-map iframe {
  display: block;
  height: 100%;
  width: 100%;
}
.pagetop {
  position: fixed;
  bottom: 14px;
  right: 15px;
  transition: 0.5s;
  z-index: 150;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  .pagetop {
    bottom: 7px;
    right: 10px;
  }
}
.pagetop.view {
  opacity: 1;
  visibility: visible;
}
.pagetop img {
  width: 48px;
}
@media screen and (max-width: 767px) {
  .pagetop img {
    width: 24px;
  }
}
/*# sourceMappingURL=./eajs.css.map */