@charset "utf-8";


/* ---------------------------------------------------------
 * common
** --------------------------------------------------------- */
body {
/*  position: relative;*/
  color: #000;
  font-size: 16px;
  line-height: 1.8;
/*  font-family: 'Noto Sans JP', sans-serif;*/
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
/*  text-align: justify;*/
/*  letter-spacing: 1px;*/
}
@media (min-width: 960px) {
  .hide-l  { display: none !important; }
}
@media (max-width: 959px) and (min-width: 520px) {
  .hide-m  { display: none !important; }
}
@media (min-width: 520px) {
  .hide-ml  { display: none !important; }
}
@media (max-width: 519px) {
  .hide-s  { display: none !important; }
}

/* webfont */
.ff_Ropa {
  font-family: 'Ropa Sans', sans-serif;
}

/* .rollover  */
.rollover {
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.rollover:hover {
  opacity: 0.7;
}
/* clearfix */
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}


/* --------------- .wrapper --------------- */
.wrapper {
  max-width: 1240px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
}


/* --------------- .btn --------------- */
.btn {
  position: relative;
  display: inline-block;
  background-color: #121B45;
  border-radius: 40px;
  color: #fff;
}
.btn.shadow {
  box-shadow: 5px 7px 0 #EFEB55;
}
.btn::after {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: -5px;
  right: -5px;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 40px;
}
.btn .arr {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 30px;
  vertical-align: middle;
}
.btn .arr::before,
.btn .arr::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  margin: auto;
}
.btn .arr::before {
  width: 12px;
  height: 1px;
  background-color: #121B45;
}
.btn .arr::after {
  width: 9px;
  height: 9px;
  border-top: 1px solid #121B45;
  border-right: 1px solid #121B45;
  transform-origin: center;
  transform: rotate(45deg);
}
@media (max-width: 519px) {
}




/* ---------------------------------------------------------
 * #nav
** --------------------------------------------------------- */
#nav {
  position: fixed;
  z-index: 1000;
  left: 40px;
  top: 30px;
}
#nav .inner {
  position: relative;
}
#nav .gnavi_btn {
}
#nav .gnavi {
  max-width: 0;
  max-height: 0;
  overflow: hidden;
  transition: all ease 0.3s;
  opacity: 0;
}
#nav .gnavi.active {
  max-width: var(--max-width);
  max-height: var(--max-height);
  opacity: 1;
}
#nav .gnavi ul {
  padding: 10px 30px 30px;
}
#nav .gnavi li:not(:first-child) {
  margin-top: 15px;
}
#nav .gnavi a {
  display: block;
  padding-right: 80px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  word-break: keep-all;
}
#nav .gnavi a:hover {
  text-decoration: underline;
}
#nav .deco {
  position: absolute;
  left: 0px;
  bottom: -20px;
  pointer-events: none;
}
@media (max-width: 519px) {
  #nav {
    left: 15px;
    top: 15px;
  }
  #nav .inner {
  }
  #nav .deco {
    left: -10px;
    bottom: -17px;
    width: 46px;
  }
}

/* gnavi_btn */
.gnavi_btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 20px 30px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.gnavi_btn.open {
  background: rgba(0, 0, 0, 0);
}
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.menu-trigger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 34px;
  height: 24px;
}
.menu-trigger span {
  position: relative;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.gnavi_btn .menu-trigger span:nth-of-type(1) {
  top: 0%;
}
.gnavi_btn .menu-trigger span:nth-of-type(3) {
  bottom: 0%;
}
.gnavi_btn.open .menu-trigger span:nth-of-type(1) {
  top: 50%;
  transform-origin: center;
  transform: translateY(-50%) rotate(-45deg);
}
.gnavi_btn.open .menu-trigger span:nth-of-type(2) {
  opacity: 0;
}
.gnavi_btn.open .menu-trigger span:nth-of-type(3) {
  bottom: 50%;
  transform-origin: center;
  transform: translateY(50%) rotate(45deg);
}
@media (max-width: 519px) {
  .gnavi_btn {
    padding: 17px 24px;
  }
  .menu-trigger {
    width: 26px;
    height: 19px;
  }
}




/* ---------------------------------------------------------
 * #app_top
** --------------------------------------------------------- */
#app_top {
  position: fixed;
  z-index: 1000;
  right: 40px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#app_top a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  transition: all ease 0.3s;
}
#app_top .btn .arr {
  background-color: #EFEB55;
}
#app_top a:hover {
/*  background-color: #121B45DE;*/
}
@media (max-width: 519px) {
  #app_top {
    left: 0;
    right: 0;
    bottom: 20px;
    padding: 0 20px;
  }
  #app_top a {
    display: inline-flex;
    width: auto;
  }
}

/* .app */
#app_top .app {
  position: relative;
  padding: 30px 0;
  font-size: 15px;
  letter-spacing: 3px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
#app_top .app span {
  margin-top: 10px;
}
#app_top .app img {
  position: absolute;
  left: 0;
  top: -34px;
}
@media (max-width: 519px) {
  #app_top .app {
    width: 100%;
    max-width: 340px;
    min-width: 280px;
    padding: 20px;
/*    font-size: 15px;*/
    letter-spacing: 1px;
    -ms-writing-mode: initial;
    writing-mode: initial;
  }
  #app_top .app span {
    margin-top: 0;
    margin-left: 10px;
  }
  #app_top .app img {
    right: calc(50% - 170px);
  }
}

/* .top */
#app_top .top {
  position: relative;
  top: 0;
  margin-top: 30px;
  padding: 20px 0;
  font-size: 12px;
  transition: all ease 0.3s;
}
#app_top .top.disable {
  top: 120px;
}
#app_top .top img {
  position: absolute;
  left: 0;
  top: -15px;
}
@media (max-width: 519px) {
}




/* ---------------------------------------------------------
 * #fv
** --------------------------------------------------------- */
#fv {
  position: relative;
  padding-top: 30px;
  background: #EFEB55;
  text-align: center;
}
#fv > img {
  max-width: 100%;
}
#fv .inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#fv .inner h1 {
  margin-top: 50px;
  margin-left: auto;
  margin-right: calc(calc(calc(100% - 1500px) / 2) + 100px);
  text-align: right;
}
#fv .inner h1 img {
  max-width: 100%;
}
@media (max-width: 1499px) {
  #fv .inner h1 {
    width: calc(83300% / 1500);
    margin-right: calc(10000% / 1500);
  }
}
@media (max-width: 519px) {
  #fv {
    padding-top: 0;
    background-image: none;
  }
  #fv h1 img {
    width: 100%;
  }
}




/* ---------------------------------------------------------
 * #lead
** --------------------------------------------------------- */
#lead {
  padding: 150px 0 110px;
  background-image: url("../img/lead_bg.png");
  background-repeat: no-repeat;
  background-position: left 0 top 50px;
  background-size: calc(129100% / 1500) auto;
}
#lead .wrapper {
  display: flex;
  justify-content: space-between;
}
#lead .img {
  width: calc(60600% / 1200);
}
#lead .img img {
  max-width: 100%;
}
#lead .content {
  width: calc(51500% / 1200);
}
#lead h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}
#lead h2 .deco {
  position: absolute;
  bottom: -20px;
  right: -90px;
}
#lead p {
}
#lead .note {
  margin-top: 20px;
  font-size: 14px;
}
#lead .btn_area {
  margin-top: 30px;
}
#lead .btn_area .btn {
  padding: 25px 35px;
  font-size: 18px;
}
#lead .btn_area .btn .arr {
  margin-left: 10px;
}
@media (max-width: 519px) {
  #lead {
    padding: 100px 0 20px;
    background-image: url("../img/lead_bg_sp.png");
    background-position: left 0 top calc(25.1875rem + ((1vw - 5.2px) * 55));
    background-size: 95% auto;
  }
  #lead .wrapper {
    display: block;
  }
  #lead .img {
    width: 100%;
  }
  #lead .img img {
    max-width: 100%;
  }
  #lead .content {
    width: 100%;
  }
  #lead h2 {
    margin-top: 50px;
    margin-bottom: 30px;
  }
  #lead h2 img:not(.deco) {
    height: 30px;
  }
  #lead h2 .deco {
    bottom: -20px;
    right: -110px;
    width: 113px;
  }
  #lead p {
    font-size: 15px;
  }
  #lead .note {
    font-size: 13px;
  }
  #lead .btn_area {
    margin-top: 50px;
    text-align: center;
  }
  #lead .btn_area .btn {
    padding: 20px;
    font-size: 15px;
  }
}




/* ---------------------------------------------------------
 * #umedahall
** --------------------------------------------------------- */
#umedahall {
  padding-bottom: 80px;
  /* background-color: #c0e8f9; */
  background-image: url("../img/umedahall_img.png"), url("../img/umedahall_bg.jpg"), url("../img/umedahall_bg2.jpg");
  background-repeat: no-repeat;
  background-position: left calc(50% - 320px) top 70px, left 0 top 0, left top 100px;
  background-size: auto, auto, cover;
}
#umedahall .main_img {
  height: 0;
  text-align: right;
}
#umedahall .main_img img {
  width: calc(722px + calc(calc(100% - 1500px) / 2));
  object-position: center;
  object-fit: cover;
}
@media (max-width: 1499px) {
  #umedahall .main_img img {
    width: calc(72200% / 1500);
    height: auto;
  }
}
@media (max-width: 1239px) {
  #umedahall {
    background-position: left -135px top 68px, left 0 top 130px;
    background-size: calc(132900% / 1200), cover;
  }
}
@media (max-width: 519px) {
  #umedahall {
    background-image: url("../img/umedahall_img_sp.png"), url("../img/umedahall_bg_sp.jpg");
    background-repeat: no-repeat;
    background-position: left top 50px, left top calc(5rem + ((1vw - 5.2px) * 15));
    background-size: 80% auto, 100% calc(100% - calc(5rem + ((1vw - 5.2px) * 15)));
  }
  #umedahall .main_img {
    height: auto;
    margin-top: 30px;
    text-align: center;
  }
  #umedahall .main_img img {
    width: 100%;
  }
}

/* .header */
#umedahall .header {
  margin-top: 280px;
}
#umedahall .header .content {
  width: calc(48000% / 1200);
}
#umedahall .header h2 {
}
#umedahall .header p {
  margin-top: 10px;
}
@media (max-width: 519px) {
  #umedahall .header {
    padding-top: 170px;
    margin-top: 0;
  }
  #umedahall .header .content {
    width: 100%;
  }
  #umedahall .header h2 {
    text-align: center;
  }
  #umedahall .header h2 img {
    height: 30px;
  }
}

/* .detail */
#umedahall .detail {
  margin-top: 130px;
}
#umedahall .detail .box {
  padding: 40px 65px 60px;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 7px 7px 0px 0px #0F3568;
}
#umedahall .detail table {
  width: 100%;
}
#umedahall .detail th,
#umedahall .detail td {
  border-bottom: 1px dashed #000;
}
#umedahall .detail th {
  padding: 10px 30px 10px 0;
  vertical-align: top;
}
#umedahall .detail th span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 42px;
  background: #F39800;
  border-radius: 60px;
  color: #fff;
  font-weight: bold;
}
#umedahall .detail td {
  padding: 18px 0;
}
@media (max-width: 519px) {
  #umedahall .detail {
    margin-top: 40px;
  }
  #umedahall .detail .box {
    padding: 30px 20px;
    box-shadow: none;
  }
  #umedahall .detail th,
  #umedahall .detail td {
    display: block;
  }
  #umedahall .detail th {
    border-bottom: none;
    padding: 0;
  }
  #umedahall .detail th span {
    width: 100%;
    height: 36px;
  }
  #umedahall .detail td {
    padding: 10px 0;
    margin-bottom: 10px;
    font-size: 15px;
  }
}

/* .access */
#umedahall .access {
  display: flex;
  justify-content: space-between;
  margin-top: 35px;
}
#umedahall .access .map {
  width: calc(100% - 410px);
}
#umedahall .access .map iframe {
  max-width: 100%;
}
#umedahall .access .train {
  width: 370px;
}
#umedahall .access img {
}
#umedahall .access p {
  margin-top: 10px;
  font-size: 15px;
}
#umedahall .access table {
  margin-top: 20px;
}
#umedahall .access td {
  padding: 10px 0;
  font-size: 15px;
}
@media (max-width: 519px) {
  #umedahall .access {
    display: block;
    margin-top: 30px;
  }
  #umedahall .access .map {
    width: 100%;
  }
  #umedahall .access .map iframe {
    width: 100%;
    height: 200px;
  }
  #umedahall .access .train {
    width: 100%;
    margin-top: 30px;
  }
  #umedahall .access .ttl {
    text-align: center;
  }
  #umedahall .access .ttl img {
    width: 175px;
  }
  #umedahall .access p {
    margin-top: 10px;
    font-size: 15px;
  }
  #umedahall .access table {
    margin-top: 10px;
  }
  #umedahall .access tr {
    display: flex;
    flex-wrap: wrap;
  }
  #umedahall .access td {
    padding: 10px 0;
    font-size: 15px;
  }
  #umedahall .access td:nth-child(1) {
    display: block;
    width: 100%;
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
    font-weight: bold;
  }
  #umedahall .access td:nth-child(2) {
    display: block;
    width: calc(100% - 80px);
    padding-top: 0;
    margin-bottom: 0;
  }
  #umedahall .access td:nth-child(3) {
    display: block;
    width: 80px;
    padding-top: 0;
    margin-bottom: 0;
  }
}




/* ---------------------------------------------------------
 * #company
** --------------------------------------------------------- */
#company {
  position: relative;
  margin-top: 60px;
  /* background-image: url("../img/company_bg.png"), url("../img/company_img.png"); */
  background-image: url("../img/company_bg.png");
  background-repeat: no-repeat;
  background-position: left calc(50% - 310px) top 80px, right top;
}
#company::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 60px;
  right: 0;
  width: calc(calc(calc(100% - 1500px) / 2) + 1200px);
  height: 862px;
  /* background-image: linear-gradient(360deg, #E7EEFB 0%, #E1F0F8 100%); */
  background: #FFF797;
  border-radius: 30px 0px 0px 30px;
}
#company .header_wrapper {
  width: 100%;
  max-width: 910px;
  padding-top: 140px;
  padding-left: 100px;
  margin-left: auto;
  margin-right: auto;
}
#company .header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}
#company .header h2 {
}
#company .header p {
  letter-spacing: 1.5px;
}
#company .btn_area {
  margin-top: 30px;
  text-align: center;
}
#company .btn_area .btn {
  padding: 20px 85px;
  font-size: 18px;
}
#company .btn_area .btn span {
  margin-left: 20px;
}
#company .img {
  margin-top: 45px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
}
#company .img img {
  max-width: 100%;
}
#company > p {
  margin-top: 30px;
  text-align: center;
}
#company > p a {
  color: #005BAC;
  font-weight: bold;
  text-decoration: underline;
}
#company > p a:hover {
  text-decoration: none;
}
@media (max-width: 1499px) {
  #company {
    background-position: left 0 top 200px;
  }
  #company::before {
    width: 80%;
    height: calc(86200vw / 1500);
  }
}
@media (max-width: 519px) {
  #company {
    margin-top: 0;
    padding-top: 80px;
    background-image: url("../img/company_bg_sp.png");
    background-position: left top 220px;
    background-size: contain;
  }
  #company::before {
    top: 180px;
    width: calc(34000% / 390);
    height: 88%;
  }
  #company .header_wrapper {
    max-width: none;
    padding-top: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
  #company .header {
    display: block;
    text-align: center;
  }
  #company .header h2 img {
    height: 30px;
  }
  #company .header p {
    margin-top: 10px;
    letter-spacing: 0;
  }
  #company .btn_area .btn {
    font-size: 15px;
  }
  #company .img img {
    width: 100%;
  }
}




/* ---------------------------------------------------------
 * #event
** --------------------------------------------------------- */
#event {
  margin-top: 150px;
  padding-top: 130px;
  padding-bottom: 130px;
  background-color: #DFF0DE;
}
#event h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 92px;
  background-image: url("../img/event_tit_bg.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: relative;
}
#event .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#event section {
  width: calc(50% - 20px);
  margin-top: 40px;
  padding: 40px 50px;
  background-color: #fff;
  border-radius: 30px;
  text-align: center;
}
#event img {
  max-width: 100%;
}
#event h3 {
  position: relative;
  display: inline-block;
}
#event h3 .deco {
  position: absolute;
  /* bottom: calc(100% - 40px);
  right: -100px; */
  top: -40px;
  right: -110px;
}
#event .photo {
  display: block;
  width: 100%;
  margin-top: 20px;
}
#event p {
  margin-top: 20px;
  text-align: left;
}
#event .bgy {
  margin-top: 20px;
  padding: 10px;
  background-color: #F7F5AA;
  text-align: center;
  line-height: 1.4;
}
#event .bgy span {
  color: #0E64D7;
  font-size: 19px;
  font-weight: bold;
}
#event ul {
  text-align: left;
}
#event li {
  position: relative;
  margin-top: 20px;
  padding: 5px 10px 5px 20px;
  background-color: #F5F9FF;
  font-size: 15px;
}
#event li::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 0;
  bottom: 0;
  display: block;
  width: 10px;
  height: 4px;
  margin-top: auto;
  margin-bottom: auto;
  background-image: linear-gradient(90deg, #0C3388, #006DA1);
}
/*#event li:not(:first-child)::after {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  display: block;
  width: 1px;
  height: 14px;
  margin-left: auto;
  margin-right: auto;
  border-right: 1px dashed #000;
}*/
#event li span {
  display: inline-block;
  margin-right: 10px;
  color: #0E64D7;
  font-size: 19px;
  font-weight: bold;
}
@media (max-width: 519px) {
  #event {
    margin-top: 140px;
    padding-top: 60px;
    padding-bottom: 120px;
  }
  #event h2 {
    height: 69px;
    background-image: url("../img/event_tit_bg_sp.png");
  }
  #event h2 img {
    height: 30px;
  }
  #event .wrapper {
    display: block;
  }
  #event section {
    width: 100%;
    margin-top: 50px;
    padding: 30px 20px;
  }
  #event section:first-child {
    margin-top: 20px;
  }
  #event h3 {
    display: block;
  }
  #event h3 img {
    max-width: 100%;
  }
  #event h3 .deco {
    top: auto;
    bottom: calc(100% + 10px);
    right: -15px;
  }
  #event section:nth-child(2) h3 .deco {
    right: -30px;
  }
  #event .photo {
    margin-top: 15px;
  }
  #event p {
    font-size: 15px;
  }
  #event ul {
  }
  #event li {
  }
  #event li::before {
  }
  #event li:not(:first-child)::after {
  }
  #event li span {
  }
}



/*ORK追加*/
#event .btn_area {
  margin-top: 30px;
  text-align: center;
}

#event .btn_area .btn {
  padding: 20px 85px;
  font-size: 18px;
}
#event .btn_area .btn span {
  margin-left: 20px;
}


@media (max-width: 519px) {

  #event .btn_area .btn {
    font-size: 15px;
  }

}



/* ---------------------------------------------------------
 * #flow
** --------------------------------------------------------- */
#flow {
  padding-top: 85px;
  padding-bottom: 120px;
  background-color: #FFFFFF;
}
#flow h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 92px;
  background-image: url("../img/flow_tit_bg.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
#flow .inner {
  position: relative;
  padding-top: calc(29400% / 1200);
  background-image: url("../img/flow_bg.png");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
}
#flow .inner .btn_area {
  position: absolute;
  z-index: 1;
  left: 0;
  top: calc(14000% / 294);
  width: calc(41000% / 1200);
  text-align: center;
}
#flow .inner .btn_area .btn {
  padding: 20px 60px;
  font-size: 18px;
}
#flow .inner .btn_area .btn span {
  margin-left: 15px;
}
#flow .inner .btn_area p {
  margin-top: 10px;
  font-size: 15px;
}
@media (max-width: 519px) {
  #flow {
    padding-top: 50px;
    padding-bottom: 80px;
  }
  #flow .wrapper {
    padding: 0 35px;
  }
  #flow h2 {
    height: auto;
    aspect-ratio: 780 / 288;
    background-image: url("../img/flow_tit_bg_sp.png");
    background-size: cover;
    background-position: top center;
  }
  #flow h2 img {
    height: 30px;
  }
  #flow .inner {
    margin-top: 10px;
    padding-top: calc(179200% / 640);
    background-image: url("../img/flow_bg_sp.png");
  }
  #flow .inner .btn_area {
    top: calc(13000vw / 390);
    width: 100%;
  }
  #flow .inner .btn_area .btn {
    padding: 20px 75px;
    font-size: 15px;
  }
  #flow .inner .btn_area p {
    font-size: 14px;
  }
}




/* ---------------------------------------------------------
 * #footer
** --------------------------------------------------------- */
#footer {
  padding-top: 60px;
  padding-bottom: 10px;
  background-color: #121B45;
  color: #fff;
}
#footer .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#footer .logo {
}
#footer .logo img {
  max-width: 100%;
}
#footer .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#footer .left {
  width: 320px;
  border-right: 1px solid #fff;
}
#footer .left dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  line-height: 2;
}
#footer .left dt {
  position: relative;
  width: 70px;
  padding-left: 10px;
}
#footer .left dt::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 5px;
  height: 1px;
  margin-top: auto;
  margin-bottom: auto;
  background-color: #fff;
}
#footer .left dd {
  width: calc(100% - 70px);
}
#footer .right {
  padding-left: 35px;
}
#footer .right .ttl {
  font-size: 15px;
}
#footer .right p {
  margin-top: 10px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
}
#footer .note {
  margin-top: 65px;
  font-size: 14px;
  text-align: center;
}
#footer .copy {
  margin-top: 10px;
  font-size: 11px;
  text-align: center;
}
@media (max-width: 519px) {
  #footer {
    padding-bottom: 110px;
  }
  #footer .wrapper {
    display: block;
  }
  #footer .logo {
    text-align: center;
  }
  #footer .logo img {
    max-width: 100%;
    width: calc(30000vw / 390);
  }
  #footer .content {
    display: block;
  }
  #footer .left {
    width: calc(32000vw / 390);
    margin: 30px auto 15px;
    padding-bottom: 15px;
    border-right: none;
    border-bottom: 1px solid #fff;
  }
  #footer .left dt {
    display: flex;
    align-items: center;
  }
  #footer .right {
    padding-left: 0;
    text-align: center;
  }
  #footer .right .ttl {
    font-size: 14px;
  }
  #footer .right p {
    font-size: 17px;
  }
  #footer .note {
    margin-top: 30px;
    padding: 0 20px;
    font-size: 13px;
    text-align: left;
  }
  #footer .copy {
    font-size: 10px;
  }
}

#event .comingsoon {
  background: #F1FDFF;
  text-align: center;
  padding: 10px 0;
}

#company .comingsoon {
  color: #fff;
  text-align: center;
}
#company .comingsoon span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 70px;
  background-color: #aaa;
  border-radius: 100px;
  color: #fff;
  font-size: 19px;
}

.balloon {
  position: relative;
}
.balloon::before {
  content: '';
  position: absolute;
  background: url("../img/cloud.png") no-repeat;
  display: block;
  width: 269px;
  height: 86px;
  z-index: -1;
}
@media (max-width: 519px) {
  .balloon::before {
    height: auto;
    aspect-ratio: 166 / 199;
    background-size: cover;
  }
}

#umedahall .balloon::before {
  top: -40px;
  right: -83px;
}

#company .balloon::before {
  top: -70px;
  left: -75px;
}

#event .balloon::before {
  top: -30px;
  left: 330px;
  right: 0;
  margin: auto;
}
@media (max-width: 519px) {
  #umedahall .balloon::before {
    top: -30px;
    right: -20px;
    width: 130px;
    height: 42px;
  }

  #company .balloon::before {
    display: none;
  }

  #event .balloon::before {
    top: -30px;
    left: auto;
    right: 10px;
    width: 130px;
    height: 42px;
  }
}


a.external {
  vertical-align: middle;
}
a.external::after {
  content: '';
  display: inline-block;
  background: url("../img/external.svg") center / contain no-repeat;
  width: 13px;
  height: 15px;
  margin-left: 4px;
  position: relative;
  top: 2px;
}