@charset "UTF-8";
/*-------------------------------
フォント設定
-------------------------------*/
/*-------------------------------
色設定
-------------------------------*/
/*-------------------------------
文字太さ設定
-------------------------------*/
/*-------------------------------
mixin
-------------------------------*/
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px); /* 開始時はマイナス指定 */
  }
  100% {
    opacity: 1;
    transform: translateY(0); /* 終了時の位置をデフォルトに */
  }
}
.fade {
  opacity: 0;
  transform: translateY(20px);
}
.fade.-in {
  animation: fadeIn 0.5s ease-out forwards;
  animation-fill-mode: both;
}

.fadeChild {
  opacity: 0;
  transform: translateY(20px);
}
.fadeChild.-in {
  animation: fadeIn 0.5s ease-out forwards;
  animation-fill-mode: both;
}

/*-------------------------------
全体設定
-------------------------------*/
html {
  height: 100%;
  font-size: 62.5%;
}

body {
  position: relative;
  background-color: #fff;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-family: "Zen Maru Gothic", Meiryo, sans-serif;
  color: #001c31;
  font-weight: 500;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
body.-active {
  height: 100%;
  overflow: hidden;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.4s;
}
a:hover {
  opacity: 0.7;
}

.container {
  width: 100%;
  max-width: 1240px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/*-------------------------------
Utility
-------------------------------*/
.u-mtA {
  margin-top: auto !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-mt60 {
  margin-top: 60px !important;
}

.u-mt70 {
  margin-top: 70px !important;
}

.u-mt80 {
  margin-top: 80px !important;
}

.u-mt90 {
  margin-top: 90px !important;
}

.u-mt100 {
  margin-top: 100px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-mb60 {
  margin-bottom: 60px !important;
}

.u-mb70 {
  margin-bottom: 70px !important;
}

.u-mb80 {
  margin-bottom: 80px !important;
}

.u-mb90 {
  margin-bottom: 90px !important;
}

.u-mb100 {
  margin-bottom: 100px !important;
}

.u-ml10 {
  margin-left: 10px !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-mb80-40 {
  margin-bottom: 80px !important;
}
@media (max-width: 767px) {
  .u-mb80-40 {
    margin-bottom: 40px !important;
  }
}

.u-mb60-30 {
  margin-bottom: 60px !important;
}
@media (max-width: 767px) {
  .u-mb60-30 {
    margin-bottom: 30px !important;
  }
}

.u-wbr {
  word-break: keep-all;
}

.u-textLink {
  text-decoration: underline;
  word-break: break-all;
}

.u-pc {
  display: inline-block;
}
@media (max-width: 1024px) {
  .u-pc {
    display: none;
  }
}

.u-pcTab {
  display: none;
}
@media (min-width: 768px) {
  .u-pcTab {
    display: inline-block;
  }
}

.u-sp {
  display: none;
}
@media (max-width: 767px) {
  .u-sp {
    display: inline-block;
  }
}

.u-fG {
  flex-grow: 1;
}

/*-------------------------------
ヘッダー
-------------------------------*/
.header {
  height: 62px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
@media (max-width: 767px) {
  .header {
    height: 50px;
  }
}

.headerInner {
  height: 100%;
  display: flex;
  justify-content: right;
  align-items: flex-end;
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .headerInner {
    align-items: center;
    padding: 10px 16px;
  }
}

.headerLogo {
  width: 100%;
  max-width: 100px;
}
@media (max-width: 767px) {
  .headerLogo {
    max-width: 60px;
  }
}
.headerLogo_link {
  display: block;
}

.headerNavWrap {
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .headerNavWrap {
    position: fixed;
    top: 0;
    right: -100%;
    display: block;
    height: 100%;
    width: 80%;
    background-color: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    z-index: 8;
    padding: 60px 30px 40px;
    overflow: auto;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: 0.2s;
  }
  .headerNavWrap.-on {
    right: 0;
    visibility: visible;
    opacity: 1;
    pointer-events: all;
  }
}

.nav {
  display: flex;
  align-items: center;
  margin-right: 15px;
  padding: 5px 20px;
  background-color: #f5f9fb;
  border-radius: 30px;
}
@media (max-width: 1024px) {
  .nav {
    display: block;
    margin-right: 0;
    padding: 0;
    background-color: transparent;
  }
}
.nav_item {
  position: relative;
}
.nav_item:not(:first-child) {
  border-left: 1px solid #0099cc;
  padding: 5px 0 5px 10px;
  margin-left: 10px;
}
@media (max-width: 1024px) {
  .nav_item {
    height: auto;
    border-bottom: solid 1px #0099cc;
    padding: 0;
    margin: 0;
  }
  .nav_item:not(:first-child) {
    border-left: none;
    padding: 0;
    margin: 0;
  }
}
.nav_item.-sp {
  display: none;
}
@media (max-width: 1024px) {
  .nav_item.-sp {
    display: block;
  }
}
.nav_link {
  position: relative;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
  transition: 0.2s;
}
.nav_link:hover {
  opacity: 1;
  color: #0099cc;
}
@media (max-width: 1024px) {
  .nav_link {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    color: #005fa8;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
@media (max-width: 767px) {
  .nav_link {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0em;
    padding: 16px 0;
  }
}
.nav_icon {
  margin-left: 10px;
}
@media (max-width: 1024px) {
  .nav_icon {
    display: none;
    margin-left: 0;
    font-size: 20px;
  }
  .-sp .nav_icon {
    display: inline-block;
  }
}

.headerBtnWrap {
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .headerBtnWrap {
    display: none;
  }
}

.headerBtn {
  min-width: 150px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 10px 15px;
  background-color: #26b7bc;
  border-radius: 30px;
  box-shadow: 0px 5px 0px #1d959a;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
  transition: 0.2s;
}
.headerBtn:hover {
  opacity: 1;
  transform: translateY(5px);
  box-shadow: none;
}
@media (max-width: 1024px) {
  .headerBtn {
    width: 100%;
    padding: 12px;
    border-radius: 30px;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
@media (max-width: 767px) {
  .headerBtn {
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
.headerBtn.-time {
  margin-right: 10px;
  background-color: #fabe00;
  box-shadow: 0px 5px 0px #d9a500;
  color: #001c31;
}
.headerBtn.-time:hover {
  box-shadow: none;
}

.headerSubLink {
  display: none;
  margin-top: 40px;
}
@media (max-width: 1024px) {
  .headerSubLink {
    display: block;
  }
}
.headerSubLink_item {
  position: relative;
  padding-left: 1em;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media (max-width: 767px) {
  .headerSubLink_item {
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
.headerSubLink_item::before {
  content: "";
  height: 5px;
  width: 5px;
  display: block;
  position: absolute;
  top: 8px;
  left: 0;
  background-color: #fff;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .headerSubLink_item::before {
    top: 7px;
  }
}

.navBtn {
  width: 50px;
  height: 50px;
  z-index: 11;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  padding: 10px;
  background: linear-gradient(90deg, #0099cc, #005fa8);
  visibility: hidden;
  opacity: 0;
}
@media (max-width: 1024px) {
  .navBtn {
    visibility: visible;
    opacity: 1;
  }
}
.navBtn_wrap {
  height: 100%;
  width: 100%;
  position: relative;
}
.navBtn_item {
  height: 2px;
  width: 100%;
  background-color: #fff;
  display: block;
  transition: 0.2s;
  position: absolute;
}
.navBtn_item:nth-child(1) {
  top: 0;
  left: 0;
}
.navBtn_item:nth-child(2) {
  top: 7px;
  left: 0;
}
.navBtn_item:nth-child(3) {
  bottom: 0;
  left: 0;
}
.navBtn_text {
  margin-top: 4px;
  color: #fff;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0em;
}
.navBtn.-on .navBtn_item:nth-of-type(1) {
  transform: rotate(45deg);
  top: 7px;
}
.navBtn.-on .navBtn_item:nth-of-type(2) {
  opacity: 0;
}
.navBtn.-on .navBtn_item:nth-of-type(3) {
  transform: rotate(-45deg);
  bottom: 7px;
}

/*-------------------------------
サイト内共通コンポーネント
-------------------------------*/
.pageSection {
  position: relative;
  padding: 80px 0;
}
@media (max-width: 767px) {
  .pageSection {
    padding: 50px 0;
  }
}
.pageSection.-lightBlue::before {
  content: "";
  height: 100%;
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -3;
  background-color: #f5f9fb;
}
.pageSection.-lightGreen::before {
  content: "";
  height: 100%;
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -3;
  background-color: #ecfeff;
}
.pageSection.-stripe::after {
  content: "";
  height: 100%;
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  background-image: url(../image/StripeWhite.svg);
  background-repeat: repeat;
  background-size: 50px 50px;
}
.pageSection_decoration.-headLine {
  height: 8px;
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(90deg, #005fa8 0% 25%, #0099cc 25% 50%, #26b7bc 50% 75%, #fabe00 75% 100%);
}
.pageSection_decoration.-wave {
  height: 28px;
  width: 100%;
  display: block;
  position: absolute;
  top: -28px;
  left: 0;
  z-index: -1;
  background-image: url(../image/lineProgram.svg);
  background-repeat: repeat-x;
}
@media (max-width: 767px) {
  .pageSection_decoration.-wave {
    top: -15px;
    background-size: 320px;
  }
}
.pageSection_decoration.-cloud {
  height: 100%;
  width: 90%;
  max-width: 1200px;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  background-image: url(../image/titleProgram.svg);
  background-repeat: no-repeat;
}

.heading.-sizeL {
  text-align: center;
}
.heading.-sizeL .heading_text {
  color: #005fa8;
  font-size: 36px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
}
@media (max-width: 767px) {
  .heading.-sizeL .heading_text {
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
.heading.-sizeM {
  width: 100%;
  max-width: 335px;
  margin: 0 auto;
  border: 2px solid #005fa8;
  padding: 10px 0;
  text-align: center;
  color: #005fa8;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
}
@media (max-width: 767px) {
  .heading.-sizeM {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
.heading.-ribbon {
  max-width: 463px;
  margin: 0 auto;
  display: block;
  position: relative;
  text-align: center;
}
@media (max-width: 767px) {
  .heading.-ribbon {
    max-width: 280px;
  }
}
.heading.-ribbon::before, .heading.-ribbon::after {
  content: "";
  position: absolute;
  width: 10px;
  bottom: -10px;
  z-index: 0;
}
.heading.-ribbon::before {
  left: -40px;
}
@media (max-width: 767px) {
  .heading.-ribbon::before {
    left: -30px;
  }
}
.heading.-ribbon::after {
  right: -40px;
}
@media (max-width: 767px) {
  .heading.-ribbon::after {
    right: -30px;
  }
}
.heading.-ribbon .heading_text {
  display: block;
  position: relative;
  z-index: 2;
  padding: 17px 0;
  margin: 0;
  color: #fff;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
}
@media (max-width: 767px) {
  .heading.-ribbon .heading_text {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
.heading.-ribbon .heading_text::before, .heading.-ribbon .heading_text::after {
  position: absolute;
  content: "";
  top: 100%;
  border: none;
  border-bottom: solid 10px transparent;
}
.heading.-ribbon .heading_text::before {
  left: 0;
}
.heading.-ribbon .heading_text::after {
  right: 0;
}
.heading.-ribbon.-blue {
  width: 100%;
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
}
.heading.-ribbon.-blue::before {
  border: 35px solid #0089b7;
  border-left: 15px solid transparent;
}
@media (max-width: 767px) {
  .heading.-ribbon.-blue::before {
    border: 32px solid #0089b7;
    border-left: 12px solid transparent;
  }
}
.heading.-ribbon.-blue::after {
  border: 35px solid #0089b7;
  border-right: 15px solid transparent;
}
@media (max-width: 767px) {
  .heading.-ribbon.-blue::after {
    border: 32px solid #0089b7;
    border-right: 12px solid transparent;
  }
}
.heading.-ribbon.-blue .heading_text {
  background-color: #0099cc;
}
.heading.-ribbon.-blue .heading_text::before {
  border-right: solid 10px #005fa8;
}
@media (max-width: 767px) {
  .heading.-ribbon.-blue .heading_text::before {
    border-right: solid 15px #005fa8;
  }
}
.heading.-ribbon.-blue .heading_text::after {
  border-left: solid 10px #005fa8;
}
@media (max-width: 767px) {
  .heading.-ribbon.-blue .heading_text::after {
    border-left: solid 15px #005fa8;
  }
}
.heading.-ribbon.-green::before {
  border: 35px solid #23a5a5;
  border-left: 15px solid transparent;
}
@media (max-width: 767px) {
  .heading.-ribbon.-green::before {
    border: 32px solid #23a5a5;
    border-left: 12px solid transparent;
  }
}
.heading.-ribbon.-green::after {
  border: 35px solid #23a5a5;
  border-right: 15px solid transparent;
}
@media (max-width: 767px) {
  .heading.-ribbon.-green::after {
    border: 32px solid #23a5a5;
    border-right: 12px solid transparent;
  }
}
.heading.-ribbon.-green .heading_text {
  background-color: #26b7bc;
}
.heading.-ribbon.-green .heading_text::before {
  border-right: solid 10px #178484;
}
@media (max-width: 767px) {
  .heading.-ribbon.-green .heading_text::before {
    border-right: solid 15px #178484;
  }
}
.heading.-ribbon.-green .heading_text::after {
  border-left: solid 10px #178484;
}
@media (max-width: 767px) {
  .heading.-ribbon.-green .heading_text::after {
    border-left: solid 15px #178484;
  }
}

.contentGrid {
  display: grid;
}
@media (max-width: 1024px) {
  .contentGrid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.contentGrid.-col2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 1024px) {
  .contentGrid.-col2 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.contentGrid.-col3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .contentGrid.-col3 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.contentGrid.-col4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
  .contentGrid.-col4 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.contentGrid.-col5 {
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1024px) {
  .contentGrid.-col5 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.contentGrid.-gap10 {
  gap: 10px;
}
.contentGrid.-gap20 {
  gap: 20px;
}
.contentGrid.-gap40 {
  gap: 40px;
}
.contentGrid.-gap40-20 {
  gap: 40px;
}
@media (max-width: 1024px) {
  .contentGrid.-gap40-20 {
    gap: 20px;
  }
}
.contentGrid > *:only-child {
  grid-column: 2/3;
  justify-self: center;
}

.contentFlex {
  display: flex;
}
@media (max-width: 1024px) {
  .contentFlex {
    flex-direction: column;
  }
}
.contentFlex.-center {
  justify-content: center;
}
.contentFlex.-gap40 {
  gap: 40px;
}
.contentFlex.-gap20 {
  gap: 20px;
}
.contentFlex.-gap40-20 {
  gap: 40px;
}
@media (max-width: 1024px) {
  .contentFlex.-gap40-20 {
    gap: 20px;
  }
}

.contentFlexItem {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .contentFlexItem {
    max-width: none;
  }
}
.contentFlexItem.-w373 {
  max-width: 373px;
  margin: 0 auto;
}
.contentFlexItem.-w600 {
  max-width: 600px;
  margin: 0 auto;
}

.headBox {
  display: flex;
  flex-direction: column;
  padding: 3px;
  background-color: #005fa8;
  border-radius: 15px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}
.headBox.-flex {
  max-width: 270px;
}
@media (max-width: 1024px) {
  .headBox.-flex {
    max-width: none;
  }
}
.headBox_title {
  padding: 10px 0;
  background-color: #005fa8;
  text-align: center;
  color: #fff;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media (max-width: 767px) {
  .headBox_title {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}
.headBox_title.-left {
  text-align: left;
}
.headBox_title.-small {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .headBox_title.-small {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.1em;
  }
}
.-market .headBox_title {
  display: flex;
  justify-content: center;
  align-items: center;
}
.headBox_content {
  display: flex;
  flex-direction: column;
  padding: 20px;
  background-color: #fff;
  border-radius: 0 0 13px 13px;
  flex-grow: 1;
}
@media (max-width: 767px) {
  .headBox_content {
    padding: 16px;
  }
}
.headBox_content.-noTitle {
  border-radius: 16px;
}
.headBox_subTitle {
  padding: 10px 0;
  border: 2px solid #005fa8;
  text-align: center;
  color: #005fa8;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
}
.-market .headBox_imageWrap {
  width: 100%;
  position: relative;
}
@media (max-width: 1024px) {
  .-market .headBox_imageWrap {
    max-width: 224px;
    margin: 0 auto;
  }
}
.-market .headBox_imageWrap::before {
  content: "";
  display: block;
  padding-top: 66.97%;
}
.-market .headBox_image {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.headBox_image.-hA {
  height: auto;
}
.headBox_text {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0em;
}
.headBox_text.-middle {
  font-size: 30px;
  line-height: 1.5;
  letter-spacing: 0em;
}
.headBox_text.-large {
  font-size: 60px;
  line-height: 1;
  letter-spacing: 0em;
}
.headBox_text.-bold {
  font-weight: 700;
}
.headBox_text.-flexGrow {
  flex-grow: 1;
}
@media (max-width: 767px) {
  .headBox_text {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
  .headBox_text.-middle {
    font-size: 26px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
  .headBox_text.-large {
    font-size: 50px;
    line-height: 1;
    letter-spacing: -0.05em;
  }
  .headBox_text.-spFull {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
}

.box {
  display: flex;
  flex-direction: column;
  padding: 20px;
  background-color: #fff;
  border: 3px solid #005fa8;
  border-radius: 15px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.16);
}
@media (max-width: 767px) {
  .box {
    padding: 16px;
  }
}
.box.-p40 {
  padding: 40px;
}
@media (max-width: 767px) {
  .box.-p40 {
    padding: 16px;
  }
}
.box_title {
  color: #005fa8;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
  flex-grow: 1;
}
.box_content {
  display: flex;
  flex-direction: column;
}
.box_timeWrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #f7f7f7;
}
.box_time {
  color: #005fa8;
  font-weight: 700;
}
.box_label {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 8px;
  background-color: #fff;
  border: 1px solid #fabe00;
  border-radius: 3px;
}
.box_label.-reserve {
  justify-content: space-between;
  background-color: #fa005e;
  border: 1px solid #fa005e;
}
.box_label.-reserve:hover {
  cursor: pointer;
}
.box_label.-reserve.-disable {
  background-color: #aaa;
  border: 1px solid #aaa;
  pointer-events: none;
}
.box_labelText {
  color: #005fa8;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
}
.-reserve .box_labelText {
  color: #fff;
}
.-reserve .box_labelIcon {
  color: #fff;
}
.box_flex {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.box_imageWrap {
  max-width: 120px;
  margin-right: 20px;
}
.box_imageWrap.-bigWidth {
  max-width: none;
  width: 70%;
  margin: 0 auto;
}
.box_textWrap {
  width: 100%;
}
.box_text {
  font-weight: 700;
}
.box_text.-small {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0em;
}
.box_text.-middle {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media (max-width: 767px) {
  .box_text.-middle {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
.box_middleText {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media (max-width: 767px) {
  .box_middleText {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}

.btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  background-color: #fabe00;
  border-radius: 30px;
  box-shadow: 0px 5px 0px #d9a500;
  transition: 0.2s;
}
.btn:hover {
  opacity: 1;
  transform: translateY(5px);
  box-shadow: none;
  cursor: pointer;
}
.btn.-w300 {
  max-width: 300px;
  margin: 0 auto;
}
.btn.-disable {
  justify-content: center;
  background-color: #aaa;
  box-shadow: none;
  pointer-events: none;
}
.btn_text {
  width: calc(100% - 45px);
  text-align: center;
  color: #001c31;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
}
@media (max-width: 767px) {
  .btn_text {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
.-disable .btn_text {
  color: #fff;
}
.btn_icon {
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  background-color: #fff;
  border-radius: 50%;
  color: #fabe00;
}

.text {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media (max-width: 767px) {
  .text {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
.text.-center {
  text-align: center;
}
.text.-small {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media (max-width: 767px) {
  .text.-small {
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
.text.-middle {
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media (max-width: 767px) {
  .text.-middle {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
.text.-large {
  font-size: 30px;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media (max-width: 767px) {
  .text.-large {
    font-size: 26px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
.text.-bold {
  font-weight: 700;
}
.text.-indent1 {
  text-indent: -1em;
  padding-left: 1em;
}
.text.-indent2 {
  text-indent: -2em;
  padding-left: 2em;
}
.text_link {
  font-weight: 700;
  text-decoration: underline;
}

.modalItem {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
.modalItem.-active {
  opacity: 1;
  visibility: visible;
}
.modalItem_bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
}
.modalItem_contentsWrap {
  width: 90%;
  height: 80vh;
  max-width: 800px;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 40px;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .modalItem_contentsWrap {
    padding: 16px;
  }
}
.modalItem_contents {
  height: 100%;
  padding: 0 20px;
  overflow: auto;
  overscroll-behavior-y: contain;
}
@media (max-width: 767px) {
  .modalItem_contents {
    padding: 0 10px;
  }
}
.modalItem_timeWrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #f7f7f7;
}
.modalItem_time {
  color: #005fa8;
  font-weight: 700;
}
.modalItem_recruitText {
  color: #005fa8;
  font-size: 16px;
  text-align: center;
  font-weight: 700;
}
.modalItem_label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background-color: #fff;
  border: 1px solid #fabe00;
  border-radius: 3px;
}
.modalItem_label.-reserve {
  justify-content: space-between;
  background-color: #fa005e;
  border: 1px solid #fa005e;
}
.modalItem_label.-reserve:hover {
  cursor: pointer;
}
.modalItem_label.-reserve.-disable {
  background-color: #aaa;
  border: 1px solid #aaa;
  pointer-events: none;
}
.modalItem_labelText {
  color: #005fa8;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
}
.-reserve .modalItem_labelText {
  color: #fff;
}
.-reserve .modalItem_labelIcon {
  color: #fff;
}
.modalItem_title {
  text-align: center;
  color: #005fa8;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
}
.modalItem_flex {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.modalItem_flex.-borderBottom {
  padding-bottom: 20px;
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 16px;
}
.modalItem_imageWrap {
  width: 100%;
  max-width: 120px;
  margin-right: 20px;
}
.modalItem_imageWrap.-bigWidth {
  max-width: 275px;
  width: 70%;
  margin: 0 auto;
}
.modalItem_nameWrap {
  width: 100%;
}
.modalItem_name {
  font-weight: 700;
}
.modalItem_name.-small {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0em;
}
.modalItem_name.-middle {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media (max-width: 767px) {
  .modalItem_name.-middle {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
.modalItem_middleName {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media (max-width: 767px) {
  .modalItem_middleName {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
.modalItem_position {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media (max-width: 767px) {
  .modalItem_position {
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
.modalItem_subTitle {
  display: inline-block;
  padding: 5px 10px;
  background-color: #0099cc;
  border-radius: 5px;
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
}
.modalItem_subTitle.-width100 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
}
.modalItem_profileWrap {
  padding-bottom: 20px;
  border-bottom: 1px solid #ebebeb;
}
@media (max-width: 767px) {
  .modalItem_profileWrap {
    padding-bottom: 30px;
  }
}
.modalItem_textWrap {
  padding-bottom: 20px;
  border-bottom: 1px solid #eaeaea;
}
.modalItem_textLink {
  text-decoration: underline;
}
.modalItem_textStrong {
  font-weight: 600;
}
.modalItem_dl {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .modalItem_dl {
    display: block;
    margin-bottom: 10px;
  }
}
.modalItem_dt {
  width: 17%;
}
@media (max-width: 767px) {
  .modalItem_dt {
    width: 100%;
  }
}
.modalItem_dd {
  width: 83%;
}
@media (max-width: 767px) {
  .modalItem_dd {
    width: 100%;
  }
}
.modalItem_text > a {
  display: inline-block;
  text-decoration: underline;
  word-break: break-all;
}
.modalItem_text > a:hover {
  text-decoration: none;
}
.modalItem_close {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -15px;
  right: -15px;
  background-color: #000;
  border: 3px solid #fff;
  border-radius: 50%;
  cursor: pointer;
}
.modalItem_closeText {
  color: #fff;
  font-size: 25px;
  line-height: 1;
  letter-spacing: 0em;
}

/*-------------------------------
Megribaとは？
-------------------------------*/
.aboutBox {
  padding: 60px;
  background-color: #fff;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .aboutBox {
    padding: 16px;
  }
}
.aboutBox.-first {
  position: relative;
  margin-top: 45px;
  padding: 70px 60px 60px;
}
@media (max-width: 767px) {
  .aboutBox.-first {
    padding: 50px 16px 16px;
  }
}
.aboutBox_wrap {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .aboutBox_wrap {
    flex-direction: column-reverse;
  }
}
.aboutBox_title {
  text-align: center;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 900;
}
@media (max-width: 767px) {
  .aboutBox_title {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
.aboutBox_text {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 900;
}
@media (max-width: 767px) {
  .aboutBox_text {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
.aboutBox_imageWrap {
  max-width: 200px;
  margin-left: 20px;
}
@media (max-width: 767px) {
  .aboutBox_imageWrap {
    margin: 0 auto 20px;
  }
}

/*-------------------------------
開催概要
-------------------------------*/
.tableBlock {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 15px;
}
@media (max-width: 767px) {
  .tableBlock {
    border-spacing: 0 10px;
  }
}
.tableBlock_heading {
  width: 20%;
  padding: 10px;
  text-align: center;
  background-color: #fff;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  vertical-align: middle;
  color: #005fa8;
  font-weight: 900;
}
.-blue .tableBlock_heading {
  padding: 10px 10px 10px 30px;
  text-align: left;
  background-color: #f5f9fb;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
@media (max-width: 767px) {
  .tableBlock_heading {
    min-width: 80px;
    padding: 6px;
  }
  .-blue .tableBlock_heading {
    min-width: auto;
    width: 100%;
    display: block;
    padding: 10px 10px 0;
    text-align: center;
    border-bottom-left-radius: 0;
    border-top-right-radius: 20px;
  }
}
.tableBlock_data {
  position: relative;
  padding: 10px 10px 10px 20px;
  background-color: #fff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.-blue .tableBlock_data {
  background-color: #f5f9fb;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
@media (max-width: 767px) {
  .tableBlock_data {
    padding: 10px 10px 10px 10px;
  }
  .-blue .tableBlock_data {
    width: 100%;
    display: block;
    border-top-right-radius: 0;
    border-bottom-left-radius: 20px;
  }
}
.tableBlock_data::before {
  content: "";
  height: 70%;
  width: 1px;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #ecfeff;
}
.tableBlock_dataSmallText {
  font-size: 11px;
}

/*-------------------------------
プログラム
-------------------------------*/
.timeTableWrap {
  padding: 80px 20px 0;
}
@media (max-width: 767px) {
  .timeTableWrap {
    padding: 50px 20px 0;
  }
}

.timeTable {
  max-width: 335px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .timeTable {
    max-width: none;
  }
}

/*-------------------------------
ビジネス系イベント
-------------------------------*/
.subTitle {
  text-align: center;
  color: #005fa8;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
}
@media (max-width: 767px) {
  .subTitle {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}

.eventTitle {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #005fa8;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
}
@media (max-width: 767px) {
  .eventTitle {
    flex-direction: column;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
.eventTitle_decoration {
  position: relative;
  padding: 4px 8px;
  background-color: #005fa8;
  border-radius: 5px;
  color: #fabe00;
}
@media (max-width: 767px) {
  .eventTitle_decoration {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
.eventTitle_decoration::before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: -7px;
  transform: translateY(-50%) rotate(-90deg);
  clip-path: polygon(100% 0, 0 0, 50% 80%);
  background-color: #005fa8;
}
@media (max-width: 767px) {
  .eventTitle_decoration::before {
    top: auto;
    bottom: -10px;
    right: auto;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
  }
}
.eventTitle_text {
  text-align: center;
}
.-decoration .eventTitle_text {
  margin-left: 10px;
}
@media (max-width: 767px) {
  .-decoration .eventTitle_text {
    margin-left: 0;
    margin-top: 5px;
    text-align: center;
  }
}

.frameBox {
  padding: 40px;
  border: 10px solid #f5f9fb;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .frameBox {
    padding: 16px;
    border: 6px solid #f5f9fb;
  }
}
.frameBox_blueBox {
  padding: 25px 30px;
  background-color: #f5f9fb;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .frameBox_blueBox {
    padding: 16px;
  }
}
.frameBox_blueBoxTitle {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
}
.frameBox_blueBoxTitle::before {
  content: "";
  height: 2px;
  width: 50px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #0099cc;
}

.blueBox {
  display: flex;
  flex-direction: column;
  padding: 20px;
  background-color: #f5f9fb;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .blueBox {
    padding: 16px;
  }
}
.contentFlex .blueBox {
  width: 100%;
  max-width: 220px;
}
@media (max-width: 1024px) {
  .contentFlex .blueBox {
    max-width: none;
  }
}
.blueBox_imageWrap {
  width: 100%;
  max-width: 120px;
  margin-right: 20px;
}
.blueBox_imageWrap.-center {
  margin: 0 auto;
}
.blueBox_flex {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.blueBox_title {
  color: #005fa8;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
}
.blueBox_textWrap {
  width: 100%;
}
.blueBox_text {
  color: #005fa8;
  font-weight: 700;
}
.blueBox_text.-small {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0em;
}
.blueBox_middleText {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0em;
}
.blueBox_link {
  text-decoration: underline;
  word-break: break-all;
}
.blueBox_link:hover {
  opacity: 1;
  text-decoration: none;
}

/*-------------------------------
フッター
-------------------------------*/
.footer {
  width: 100%;
  background-color: #fff;
}

.footerSubLink {
  padding: 10px 0;
  background-color: #005fa8;
}

.footerSubLinkList {
  display: flex;
  align-items: center;
  border-left: 1px solid #fff;
}
@media (max-width: 767px) {
  .footerSubLinkList {
    display: block;
    border-left: none;
  }
}

.footerSubLinkItem {
  border-right: 1px solid #fff;
}
@media (max-width: 767px) {
  .footerSubLinkItem {
    border-right: none;
  }
  .footerSubLinkItem:not(:last-child) {
    border-bottom: 1px solid #fff;
  }
}
.footerSubLinkItem_link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 30px;
}
@media (max-width: 767px) {
  .footerSubLinkItem_link {
    justify-content: space-between;
  }
}
.footerSubLinkItem_text {
  margin-right: 15px;
  color: #fff;
}
.footerSubLinkItem_icon {
  color: #fff;
  font-size: 20px;
}

.footerOutSideLink {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .footerOutSideLink {
    padding: 40px 0;
  }
}

.footerOutSideLinkList {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .footerOutSideLinkList {
    display: block;
  }
}

.footerOutSideLinkItem {
  width: 100%;
  max-width: 260px;
}
@media (max-width: 767px) {
  .footerOutSideLinkItem {
    margin: 0 auto 20px;
  }
}

.footerLogo {
  position: relative;
  padding: 50px 0;
}
.footerLogo_headLine {
  height: 8px;
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background: linear-gradient(90deg, #005fa8 0% 25%, #0099cc 25% 50%, #26b7bc 50% 75%, #fabe00 75% 100%);
}
.footerLogo_imageWrap {
  max-width: 300px;
  position: relative;
  margin: 0 auto;
}

.footerCopy {
  padding: 20px 0;
  background-color: #0099cc;
  text-align: center;
}
.footerCopy_text {
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0em;
}

/*-------------------------------
TOPへ戻るボタン
-------------------------------*/
.toTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9;
  display: none;
}
.toTop.-show {
  display: block;
}
@media (max-width: 767px) {
  .toTop {
    bottom: 10px;
    right: 10px;
  }
}
.toTop_link {
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fabe00;
  box-shadow: 0px 5px 0px #d9a500;
  border-radius: 50%;
  font-size: 20px;
}
.toTop_link > i {
  color: #fff;
}
.toTop_link:hover {
  opacity: 1;
  transform: translateY(5px);
  box-shadow: none;
  cursor: pointer;
}
@media (max-width: 767px) {
  .toTop_link {
    height: 40px;
    width: 40px;
  }
}

/*-------------------------------
coming soon 画面
-------------------------------*/
.comingSoon {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.comingSoon_imageWrap {
  max-width: 700px;
  margin: 0 auto;
}
.comingSoon_text {
  text-align: center;
  color: #005fa8;
  font-size: 60px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 900;
}
@media (max-width: 767px) {
  .comingSoon_text {
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}/*# sourceMappingURL=layout.css.map */