@charset "utf-8";


/* ---------------------------------------------------------
 * common
** --------------------------------------------------------- */
body {
/*  position: relative;*/
  color: #000;
  font-size: 16px;
  line-height: 1.8;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
@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; }
}

.text_center {
  text-align: center;
}
/* .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;
}


/* --------------- .coming_soon --------------- */
.coming_soon {
  position: relative;
  display: inline-block;
  padding: 15px 35px;
  background-color: #004B64;
  border-radius: 40px;
  color: #fff;
}
.coming_soon::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 7px;
  top: 6px;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: 2px solid #004B64;
  border-radius: 40px;
}


/* --------------- .btn --------------- */
.btn {
  position: relative;
  display: inline-block;
  background-color: #004B64;
  border: 1px solid #004B64;
  border-radius: 40px;
  color: #fff;
  transition: all ease 0.3s;
}
.btn::after {
  content: '';
  position: absolute;
  z-index: -1;
  left: 7px;
  top: 6px;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: 2px solid #004B64;
  border-radius: 40px;
}
.btn.w {
  background-color: #fff;
  color: #004B64;
}
.btn .arr {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 30px;
  vertical-align: middle;
  transition: all ease 0.3s;
}
.btn.w .arr {
  background-color: #004B64;
}
.btn .arr::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  width: 15px;
  height: 13px;
  margin: auto;
  background-color: #004B64;
  clip-path: polygon(8px 1px, 8px 0, 9px 0, 15px 50%, 9px 13px, 8px 13px, 8px 12px, 13px 7px, 0 7px, 0 6px, 13px 6px);
  transition: all ease 0.3s;
}
.btn.w .arr::before {
  background-color: #fff;
}
@media (max-width: 519px) {
}




/* ---------------------------------------------------------
 * #nav
** --------------------------------------------------------- */
#nav {
  position: relative;
  position: fixed;
  z-index: 1000;
  left: 40px;
  top: 12px;
}
#nav::after {
  content: '';
  position: absolute;
  z-index: -1;
  left: 7px;
  top: 6px;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: 2px solid #004B64;
  border-radius: 40px;
}
#nav .inner {
  position: relative;
  background-color: #004B64;
  border-radius: 32px;
  overflow: hidden;
}
#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: 15px 15px 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: -30px;
  pointer-events: none;
}
@media (max-width: 519px) {
  #nav {
    left: 10px;
    top: 10px;
  }
  #nav .inner {
    display: flex;
    flex-direction: column;
  }
  #nav .deco {
    left: -10px;
    bottom: -27px;
    width: 58px;
  }
}

/* gnavi_btn */
.gnavi_btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 21px 28px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.gnavi_btn.open {
}
.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: 14px 22px;
  }
  .menu-trigger {
    width: 26px;
    height: 17px;
  }
}




/* ---------------------------------------------------------
 * #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 a:hover {
/*  background-color: #0F3568DE;*/
}
@media (max-width: 519px) {
  #app_top {
    flex-direction: row;
    justify-content: space-between;
    left: 0;
    right: 0;
    bottom: 20px;
    padding: 0 20px;
  }
  #app_top a {
    display: inline-flex;
    width: auto;
  }
}

/* .app */
#app_top .app {
  position: relative;
  margin-bottom: 10px;
  padding: 30px 0;
  font-size: 15px;
  letter-spacing: 3px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
#app_top .app .arr {
  margin-top: 10px;
}
#app_top .app img {
  position: absolute;
  right: -35px;
  bottom: -25px;
}
@media (max-width: 519px) {
  #app_top .app {
    padding: 15px 0;
    font-size: 14px;
    letter-spacing: 1px;
    -ms-writing-mode: initial;
    writing-mode: initial;
  }
  #app_top .app:nth-child(1) {
    width: calc(13000% / 320);
    width: 100%;
  }
  #app_top .app:nth-child(2) {
    width: calc(17500% / 320);
  }
  #app_top .app .arr {
    margin-top: 0;
    margin-left: 10px;
  }
  #app_top .app img {
    right: calc(50% - 170px);
  }
}

/* .top */
#app_top .top {
  position: relative;
  top: 0;
  height: 70px;
  font-size: 12px;
  transition: all ease 0.3s;
}
#app_top .top.disable {
  top: 120px;
}
@media (max-width: 519px) {
}




/* ---------------------------------------------------------
 * #fv
** --------------------------------------------------------- */
#fv {
  position: relative;
  text-align: center;
  background-image: url("../img/fv_bg.png");
  background-size: cover;
  background-position: center;
}
#fv img {
  max-width: 1500px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 519px) {
  #fv {
    padding-top: 0;
  }
  #fv img {
    position: static;
    height: auto;
  }
}




/* ---------------------------------------------------------
 * #lead
** --------------------------------------------------------- */
#lead {
  position: relative;
  margin-top: 35px;
  background-image: url("../img/lead_bg.png");
  background-repeat: no-repeat;
  background-position: left top;
}
#lead .inner {
  display: flex;
  justify-content: space-between;
  padding-top: 115px;
}
#lead .img {
  width: calc(60600% / 1200);
}
#lead .img img {
  width: 100%;
}
#lead .content {
  width: calc(51500% / 1200);
  padding-top: 15px;
}
#lead h2 {
  position: relative;
  width: fit-content;
  color: #004B64;
  font-size: 42px;
  font-weight: bold;
  line-height: 1.2;
}
#lead h2 .icon {
  position: absolute;
  left: calc(100% + 10px);
  top: -15px;
}
#lead p {
  margin-top: 30px;
}
#lead .btn_area {
  margin-top: 30px;
}
#lead .btn_area .btn {
  width: 400px;
  max-width: 100%;
  padding: 20px 35px;
  font-size: 18px;
  text-align: center;
}
#lead .btn_area .btn .arr {
  margin-left: 10px;
}
@media (max-width: 519px) {
  #lead {
    position: relative;
    z-index: 1;
    background-image: url("../img/lead_bg_sp.png");
    background-size: 292px auto;
    background-position: top calc(23500vw / 390) left;
  }
  #lead .inner {
    display: block;
    padding: 0 20px 0;
    background-position: bottom right -40px;
    background-size: 90%;
  }
  #lead .img {
    width: 100%;
  }
  #lead .img img {
  }
  #lead .content {
    width: 100%;
    padding-left: 0;
    margin-top: 50px;
  }
  #lead h2 {
    font-size: 30px;
  }
  #lead h2 .icon {
    left: calc(100% - 15px);
    top: -20px;
    width: 35px;
  }
  #lead p {
    margin-top: 20px;
    font-size: 15px;
  }
  #lead .btn_area .btn {
    width: 100%;
    padding: 20px;
    font-size: 15px;
    text-align: center;
  }
}




/* ---------------------------------------------------------
 * #umedahall
** --------------------------------------------------------- */
#umedahall {
  position: relative;
  z-index: 2;
  margin-top: 120px;
  background-image: linear-gradient(to bottom, transparent 200px, #F3F1EB 200px, #F3F1EB calc(100% - 110px), transparent calc(100% - 110px));
}
/* .header */
#umedahall .header {
  display: flex;
  justify-content: space-between;
  padding-bottom: 80px;
}
#umedahall .header .content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: calc(calc(51000% / 1200) + 20px);
  max-width: 510px;
  padding-left: 20px;
  padding-bottom: 40px;
  margin-left: auto;
  margin-right: 120px;
  background-image: url("../img/umedahall_bg.png");
  background-repeat: no-repeat;
  background-position: left 20px top;
}
#umedahall .header .bg {
  position: absolute;
  left: -20px;
  top: 0;
  max-width: 100%;
}
#umedahall .header h2 {
  position: relative;
  width: fit-content;
  color: #004B64;
  font-size: 42px;
  font-weight: bold;
  line-height: 1.2;
}
#umedahall .header h2 .icon {
  position: absolute;
  right: calc(100% - 40px);
  bottom: 100%;
}
#umedahall .header h2 .icon2 {
  position: absolute;
  left: calc(100% - 20px);
  bottom: 100%;
}
#umedahall .header p {
  width: 100%;
  max-width: 500px;
  margin-top: 20px;
}
#umedahall .header .img {
  width: calc(72200% / 1500);
  height: 480px;
}
#umedahall .header .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 519px) {
  #umedahall {
    margin-top: 40px;
    padding-bottom: 50px;
    background-image: linear-gradient(to bottom, transparent 50px, #F9FFE7 50px);
  }
  #umedahall .header {
    position: relative;
    z-index: 2;
    display: block;
    padding-bottom: 40px;
  }
  #umedahall .header .content {
    width: 100%;
    padding-right: 20px;
    padding-top: 100px;
    margin-left: 0;
    margin-right: 0;
    background-size: 80% auto;
  }
  #umedahall .header .bg {
    left: 30px;
    top: -50px;
    width: calc(27000% / 390);
  }
  #umedahall .header h2 {
    width: 100%;
    font-size: 30px;
    text-align: center;
  }
  #umedahall .header h2 .icon {
    width: 46px;
  }
  #umedahall .header h2 .icon2 {
    left: calc(100% - 50px);
    width: 58px;
  }
  #umedahall .header h2 img {
    max-width: 100%;
  }
  #umedahall .header p {
/*    max-width: 500px;*/
/*    margin-top: 20px;*/
  }
  #umedahall .header .img {
    width: 100%;
    height: auto;
    padding: 0 20px;
  }
  #umedahall .header .img img {
    width: 100%;
    height: auto;
  }
}

/* .detail */
#umedahall .detail {
  position: relative;
}
#umedahall .detail .deco_l,
#umedahall .detail .deco_r {
  position: absolute;
}
#umedahall .detail .deco_l {
  left: 0;
  top: -50px;
  width: calc(39200% / 1500);
}
#umedahall .detail .deco_r {
  right: 0;
  top: -80px;
  width: calc(33700% / 1500);
}
#umedahall .detail .box {
  padding: 40px 65px 60px;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 7px 7px 0px 0px #DE82A1;
}
#umedahall .detail table {
  width: 100%;
}
#umedahall .detail th,
#umedahall .detail td {
  border-bottom: 1px dashed #000;
}
#umedahall .detail th {
  padding: 10px 20px 10px 0;
  vertical-align: top;
}
#umedahall .detail th span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 36px;
  background-color: #008D6F;
  border-radius: 50px;
  color: #fff;
  font-weight: bold;
}
#umedahall .detail td {
  padding: 13px 0;
}
#umedahall .detail td a {
  display: inline-block;
  padding-right: 20px;
  background-image: url("../img/ico_linkout.svg");
  background-repeat: no-repeat;
  background-position: right center;
}
@media (max-width: 519px) {
  #umedahall .detail {
    position: relative;
    z-index: 1;
  }
  #umedahall .detail .deco_l {
    left: 0;
    top: -145px;
    width: calc(17600% / 390);
  }
  #umedahall .detail .deco_r {
    display: none;
  }
  #umedahall .detail .box {
    padding: 30px 20px;
  }
  #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;
}
#umedahall .access td:last-child {
  text-align: right;
}
@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 {
    max-width: 100%;
  }
  #umedahall .access p {
    margin-top: 10px;
    font-size: 15px;
  }
  #umedahall .access table {
    margin-top: 10px;
  }
  #umedahall .access tr {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: wrap;
  }
  #umedahall .access td {
    display: block;
    padding: 10px 0;
    font-size: 15px;
  }
  #umedahall .access td:nth-child(1) {
    width: 100%;
    padding-bottom: 5px;
    margin-bottom: 0;
    border-bottom: none;
    font-weight: bold;
  }
  #umedahall .access td:nth-child(2) {
    width: calc(100% - 80px);
    padding-top: 0;
    padding-bottom: 5px;
    margin-bottom: 0;
  }
  #umedahall .access td:nth-child(3) {
    width: 80px;
    padding-top: 0;
    padding-bottom: 5px;
    margin-bottom: 0;
  }
}




/* ---------------------------------------------------------
 * #company
** --------------------------------------------------------- */
#company {
  position: relative;
  z-index: 1;
  margin: 60px 0;
  padding-left: 20px;
  overflow: hidden;
}
#company .bg {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
}
#company .box {
  max-width: calc(100vw - 20px);
  width: calc(100vw - calc(calc(100vw - 1200px) / 2));
  margin-left: auto;
  background-color: #FFF8E4;
  border-radius: 20px 0 0 20px;
}
#company .inner {
  display: grid;
  gap: 30px;
  grid-template-areas:
    "h2       p"
    "btn_area btn_area";
  max-width: 1200px;
  padding: 100px 0;
}
#company h2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  grid-area: h2;
  color: #004B64;
  font-size: 42px;
  font-weight: bold;
  line-height: 1;
}
#company h2 .icon {
  position: absolute;
  left: 220px;
  bottom: 60px;
}
#company p {
  width: fit-content;
  position: relative;
  grid-area: p;
  align-self: center;
}
#company p .icon {
  position: absolute;
  left: calc(100% + 10px);
  bottom: 20px;
}
#company .btn_area {
  position: relative;
  z-index: 1;
  grid-area: btn_area;
  text-align: center;
}
#company .btn_area a,
#company .btn_area .coming_soon {
  padding: 20px 35px;
  font-size: 18px;
}
#company .btn_area .btn .arr {
  margin-left: 10px;
}
@media (max-width: 519px) {
  #company {
    overflow: visible;
    margin: 80px 0 60px;
    padding-left: 50px;
  }
  #company .bg {
    top: -60px;
    max-width: 90%;
    margin-block: 0;
  }
  #company .box {
    max-width: 100%;
    width: 100%;
    border-radius: 30px 0 0 30px;
  }
  #company .inner {
    display: block;
    margin-left: -30px;
    padding: 60px 0 45px;
  }
  #company h2 {
    position: relative;
    display: block;
    width: fit-content;
    margin-inline: auto;
    font-size: 30px;
  }
  #company h2 .icon {
    position: absolute;
    left: auto;
    right: 95%;
    bottom: 90%;
    width: 45px;
  }
  #company h2 .icon2 {
    position: absolute;
    left: 110%;
    bottom: 10px;
    width: 38px;
  }
  #company p {
    margin-top: 10px;
  }
  #company .btn_area {
    margin-top: 20px;
    padding-right: 20px;
  }
  #company .btn_area a,
  #company .btn_area .coming_soon {
    display: block;
/*    font-size: 14px;*/
/*    font-weight: bold;*/
  }
}




/* ---------------------------------------------------------
 * #event
** --------------------------------------------------------- */
#event {
  position: relative;
  z-index: 1;
  background-color: #F3F1EB;
}
#event .inner {
  padding: 50px 0 100px;
}
@media (max-width: 519px) {
  #event {
  }
  #event .inner {
    padding-bottom: 60px;
  }
}

#event h2 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  max-width: 100%;
  width: 245px;
  aspect-ratio: 245 / 93;
  padding-bottom: 10px;
  margin-inline: auto;
  background-image: url("../img/event_tit_bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: #004B64;
  font-size: 42px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}
#event h2 .icon {
  position: absolute;
  left: 90%;
  bottom: calc(100% - 55px);
}
#event h2 .icon2 {
  position: absolute;
  right: 110%;
  bottom: 20px;
}
#event .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#event .wrapper > section {
  position: relative;
  width: calc(calc(100% - 40px) / 2);
  margin-top: 40px;
  padding: 40px;
  background-color: #fff;
  border-radius: 30px;
}
#event .wrapper > section.fullwidth {
  width: 100%;
  padding: 40px 50px;
}
#event .wrapper > section.fullwidth .flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
#event .wrapper > section.fullwidth .img {
  flex-shrink: 0;
}
#event .wrapper > section.fullwidth .img img {
}
#event .wrapper > section.fullwidth .content {
}
#event h3 {
  position: relative;
  margin-bottom: 30px;
  color: #004B64;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}
#event h3 img {
  max-width: 100%;
}
#event .photo {
  display: block;
  margin-inline: auto;
  max-width: 100%;
}
#event p {
  margin-top: 20px;
}
#event p.note {
  margin-top: 5px;
  font-size: 14px;
}
#event p.note2 {
  margin-top: 5px;
  text-align: left;
}
#event p.note2 span {
  display: inline-block;
  padding: 3px 7px;
  background-color: #FFFABC;
  color: #004B64;
  font-weight: bold;
}
#event ul {
  text-align: left;
  line-height: 32px;
}
#event ul.simple {
  color: #004B64;
  font-size: 15px;
  font-weight: bold;
}
#event li {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
  padding: 5px 5px 5px 15px;
  background-color: #FFFABC;
  font-size: 14px;
}
#event ul.simple li {
  color: #004B64;
  font-size: 15px;
  font-weight: bold;
}
#event ul.time_only {
  margin-bottom: 20px;
}
#event ul.time_only li {
  display: inline-block;
}
#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-color: #AACC48;
}
#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 {
  flex-shrink: 0;
  display: inline-block;
  width: 120px;
  margin-right: 10px;
  color: #004B64;
  font-size: 19px;
  font-weight: bold;
}
#event .btn_area {
  margin-top: 20px;
  text-align: center;
}
#event .btn_area .btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 55px;
  font-size: 17px;
}
#event .btn_area .btn .arr {
  margin-left: 10px;
}
@media (max-width: 519px) {
  #event h2 {
    width: 193px;
    font-size: 30px;
  }
  #event h2 .icon {
    width: 46px;
    left: 80%;
    bottom: 30px;
  }
  #event .wrapper {
    display: block;
  }
  #event .wrapper > section {
    width: 100%;
/*    margin-top: 40px;*/
    padding: 30px 15px;
/*    border-radius: 30px;*/
  }
  #event .wrapper > section.fullwidth {
    padding: 30px;
  }
  #event .wrapper > section.fullwidth .flex {
/*    justify-content: center;*/
/*    align-items: center;*/
    flex-direction: column;
    gap: 0;
  }
  #event h3 {
    display: block;
    font-size: 28px;
  }
  #event p {
    font-size: 15px;
  }
  #event ul {
  }
  #event li {
  }
  #event li::before {
  }
  #event li:not(:first-child)::after {
  }
  #event li span {
  }
  #event .btn_area {
    margin-top: 30px;
    padding: 0 20px;
  }
  #event .btn_area .btn {
    width: 100%;
    padding: 20px;
    font-size: 15px;
  }
}

/* #bonus */
#bonus h2 {
  width: 268px;
  aspect-ratio: 268 / 95;
  background-image: url("../img/bonus_tit_bg.png");
}
#bonus h2 .icon2 {
  right: 95%;
  bottom: 20px;
}
@media (max-width: 519px) {
  #bonus h2 {
    width: 205px;
    background-image: url("../img/bonus_tit_bg_sp.png");
    font-size: 30px;
  }
  #bonus h2 .icon {
    width: 46px;
    left: 80%;
    bottom: 30px;
  }
  #bonus h2 .icon2 {
    right: 90%;
    bottom: 0;
  }
}

/* #special */
#special h2 {
  width: 334px;
  aspect-ratio: 334 / 95;
  background-image: url("../img/special_tit_bg.png");
}
#special h2 .icon2 {
  right: 100%;
  bottom: 30px;
}
#special .ico_teikyo {
  margin-right: 15px;
}
#special h3 {
  margin-bottom: 0;
}
@media (max-width: 519px) {
  #special h2 {
    width: 253px;
    background-image: url("../img/special_tit_bg_sp.png");
    font-size: 30px;
  }
  #special h2 .icon {
    width: 46px;
    left: 80%;
    bottom: 30px;
  }
  #special h2 .icon2 {
    right: 55%;
    bottom: 50px;
  }
  #special .img {
    margin-top: 20px;
  }
  #special .ico_teikyo {
    width: 90px;
    height: auto;
    margin-right: 10px;
    margin-bottom: 3px;
  }
}

/* #content */
#content h2 {
  width: 355px;
  aspect-ratio: 355 / 95;
  background-image: url("../img/content_tit_bg.png");
}
#content h2 .icon {
  left: 90%;
  bottom: calc(100% - 55px);
}
#content h2 .icon2 {
  right: 85%;
  bottom: 50px;
}
#content .koushi {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
}
#content .preparation {
  width: 100%;
  margin-top: 40px;
  padding: 40px;
  background-color: #fff;
  border-radius: 30px;
  color: #004B64;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}
#content .fullwidth {
}
#content .fullwidth .subttl {
  margin-top: 20px;
}
#content .koushi p {
  margin-top: 0 !important;
}
#content .ico_koushi {
  margin-right: 15px;
}
#content h3 {
  position: relative;
}
#content h3 .icon2 {
  position: absolute;
  bottom: 20px;
}
#content .subttl {
  margin-top: 30px;
}
#content section:not(.fullwidth) p {
  margin-top: 10px;
}
#content section:not(.fullwidth) li {
  margin-top: 5px;
}
#content .ico_kyoryoku {
  margin-right: 15px;
}
@media (max-width: 519px) {
  #content h2 {
    width: 272px;
    font-size: 30px;
    background-image: url("../img/content_tit_bg_sp.png");
  }
  #content h2 .icon {
    width: 46px;
    left: 80%;
    bottom: 30px;
  }
  #content .koushi {
    justify-content: center;
    align-items: center;
    line-height: 1.4;
  }
  #content .preparation {
    margin-top: 40px;
    padding: 20px 0;
    font-size: 20px;
  }
  #content h2 + p {
    font-size: 14px;
  }
  #content h3 .icon2 {
    left: 85%;
    bottom: 25px;
  }
  #content .fullwidth .img img {
    width: 70%;
  }
  #content .sp_flex {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    line-height: 1.4;
  }
  #content .ico_koushi {
    width: 53px;
    margin-right: 10px;
  }
  #content .subttl {
    max-width: 100%;
    height: auto;
  }
  #content .kyoryoku {
    text-align: center;
  }
  #content .ico_kyoryoku {
    width: 50px;
    height: auto;
    margin-right: 10px;
    margin-bottom: 3px;
  }
}




/* ---------------------------------------------------------
 * #flow
** --------------------------------------------------------- */
#flow {
  padding-top: 80px;
  padding-bottom: 120px;
}
#flow h2 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  width: 751px;
  aspect-ratio: 751 / 95;
  margin-inline: auto;
  margin-bottom: 40px;
  background-image: url("../img/flow_tit_bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: #004B64;
  font-size: 42px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}
#flow h2 .icon {
  position: absolute;
  left: 100%;
  bottom: calc(100% - 20px);
}
#flow h2 .icon2 {
  position: absolute;
  right: 100%;
  bottom: calc(100% - 20px);
}
#flow .inner {
  position: relative;
  padding-top: calc(30000% / 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: calc(6000% / 1200);
  top: calc(18000% / 294);
  width: calc(30000% / 1200);
  padding-right: 14px;
  text-align: center;
}
#flow .inner .btn_area .btn {
  max-width: 300px;
  width: 100%;
  padding: 13px;
  font-size: 18px;
}
#flow .inner .btn_area .btn span {
  margin-left: 15px;
}
#flow .inner .btn_area p {
  margin-top: 15px;
  padding-left: 10px;
  font-size: 15px;
  text-align: left;
}
@media (max-width: 1199px) {
  #flow .inner .btn_area .btn {
    width: calc(23.75rem + ((1vw - 12px) * 62.5));
  }
}
@media (max-width: 519px) {
  #flow {
    padding-top: 40px;
    padding-bottom: 0;
  }
  #flow .wrapper {
  }
  #flow h2 {
    width: calc(31000vw / 390);
    aspect-ratio: 616 / 277;
    margin-bottom: 20px;
    background-image: url("../img/flow_tit_bg_sp.png");
    font-size: 30px;
  }
  #flow h2 .icon {
    position: absolute;
    left: 75%;
    bottom: 55%;
    width: 46px;
  }
  #flow h2 .icon2 {
    right: 75%;
    bottom: calc(100% - 45px);
  }
  #flow .inner {
    width: calc(60400% / 670);
    padding-top: calc(188500% / 604);
    background-image: url("../img/flow_bg_sp.png");
  }
  #flow .inner .btn_area {
    left: calc(15000% / 1200);
    top: calc(15500vw / 390);
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  #flow .inner .btn_area .btn {
    width: 90%;
    font-size: 15px;
  }
  #flow .inner .btn_area p {
    padding-left: 20px;
    font-size: 14px;
  }
}




/* ---------------------------------------------------------
 * #footer
** --------------------------------------------------------- */
#footer {
  padding: 30px 0px 10px;
  background: #008D6F;
  color: #fff;
}
#footer .wrapper {
  max-width: 1340px;
}
#footer .inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#footer .logo {
}
#footer .logo img {
  max-width: 100%;
}
#footer .content {
  display: flex;
  padding-top: 30px;
}
#footer .left {
  width: 300px;
}
#footer .left dl {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  line-height: 2;
}
#footer .left dt {
  position: relative;
  display: flex;
  align-items: center;
  width: 100px;
  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% - 100px);
}
#footer .left dd span {
  font-size: 14px;
}
#footer .right {
  flex-shrink: 0;
  padding-left: 50px;
  margin-left: 50px;
  border-left: 1px solid #fff;
}
#footer .right .ttl {
  flex-shrink: 0;
  font-size: 15px;
}
#footer .right p {
  width: 100%;
  margin-top: 10px;
  padding-right: 80px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
}
#footer .right p span {
  font-size: 15px;
  font-weight: normal;
}
#footer .note {
  margin-top: 30px;
  font-size: 14px;
  text-align: center;
}
#footer .copy {
  margin-top: 20px;
  font-size: 11px;
  text-align: center;
}
@media (max-width: 519px) {
  #footer .wrapper {
    padding-bottom: 110px;
  }
  #footer .inner {
    display: block;
  }
  #footer .logo {
  }
  #footer .logo img {
    max-width: 100%;
    width: 100%;
  }
  #footer .content {
    display: block;
    width: 270px;
    padding-left: 0;
    margin-left: auto;
    margin-right: auto;
  }
  #footer .left {
    margin-top: 30px;
  }
  #footer .left dl {
  }
  #footer .left dt {
  }
  #footer .left dd {
  }
  #footer .right {
    padding-top: 20px;
    padding-left: 0;
    margin-top: 20px;
    margin-left: 0;
    border-top: 1px solid #fff;
    border-left: none;
    text-align: center;
  }
  #footer .right .ttl {
    font-size: 14px;
  }
  #footer .right p {
    padding-right: 0;
    margin-top: 10px;
    font-size: 17px;
  }
  #footer .right p span {
    display: inline-block;
    white-space: nowrap;
  }
  #footer .sp_contact_footer {
    margin-top: 30px;
    text-align: center;
  }
  #footer .sp_contact_footer .ttl {
    font-size: 14px;
  }
  #footer .sp_contact_footer p {
    font-size: 17px;
    font-weight: bold;
  }
  #footer .note {
    text-align: left;
  }
  #footer .copy {
    margin-top: 20px;
    font-size: 10px;
  }
}