@charset "UTF-8";
html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-size: 18px;
  line-height: 1.75;
  word-break: break-all;
  line-break: strict;
  word-wrap: break-word;
  overflow-wrap: break-word;
  letter-spacing: 0.1rem;
  font-feature-settings: "palt";
  position: relative;
  text-align: justify;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #3e3a39;
}

.hidden_box {
  overflow-x: hidden;
}

img {
  width: 100%;
  height: auto;
}

p {
  text-align: justify;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
@media (max-width: 540px) {
  p {
    font-size: 1.6rem;
  }
}

* {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

html.wf-active {
  visibility: visible;
}

.pc-only {
  display: none;
}
@media (min-width: 991px) {
  .pc-only {
    display: block;
  }
}

.sp-only {
  display: none;
}
@media (max-width: 540px) {
  .sp-only {
    display: block;
  }
}

.sp-tab-only {
  display: none;
}
@media (max-width: 1240px) {
  .sp-tab-only {
    display: block;
  }
}

#top {
  padding: 0;
}

.yellow_mark_title {
  display: flex;
  width: 100%;
  margin: 50px auto;
}
@media (max-width: 540px) {
  .yellow_mark_title {
    margin: 20px auto;
  }
}
.yellow_mark_title::before {
  content: "";
  display: block;
  width: 20px;
  height: auto;
  background-color: #ffe33f;
  border-radius: 20px;
  margin-right: 15px;
}
@media (max-width: 540px) {
  .yellow_mark_title::before {
    width: 10px;
  }
}

.title_bg {
  width: 100%;
  background-color: #00a4c5;
  border-radius: 15px 120px 120px 15px;
  display: flex;
  color: #fff;
  padding: 1rem 8rem 1rem 3rem;
  align-items: center;
  gap: 30px;
  flex-flow: row wrap;
}
@media (max-width: 540px) {
  .title_bg {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 15px;
    padding: 15px;
  }
}
.title_bg.or {
  background-color: #ea545e;
  padding: 0rem 4rem 0 2rem;
  width: auto;
  min-width: 393px;
}
@media (max-width: 540px) {
  .title_bg.or {
    min-width: 10px;
    flex-direction: column;
    border-radius: 15px;
    padding: 15px;
  }
}

.menu {
  width: 100%;
  padding: 0 10px;
  background-color: #009fc9;
}
@media screen and (max-width: 840px) {
  .menu {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(66, 123, 185, 0.9);
    z-index: 100;
    flex: none;
    margin: 0;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: all ease 0.3s;
    padding: 50px;
  }
  .menu.open {
    pointer-events: all;
    opacity: 1;
  }
}
@media screen and (max-width: 540px) {
  .menu {
    padding: 20px;
  }
}

.menu_wrap {
  display: flex;
  flex-flow: row wrap;
  gap: 30px;
  height: 50px;
  justify-content: center;
  align-items: center;
}
.menu_wrap > a {
  color: #fff;
  font-size: 1.5rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.menu_wrap > a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 840px) {
  .menu_wrap {
    flex-flow: column;
    gap: 30px;
    justify-content: start;
    width: 100%;
    padding-top: 80px;
  }
  .menu_wrap > a {
    display: block;
    width: 100%;
    color: #fff;
    font-size: 3rem;
    font-weight: normal;
    border-bottom: 1px solid #fff;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 540px) {
  .menu_wrap {
    gap: 10px;
  }
  .menu_wrap > a {
    font-size: 1.8rem;
  }
}

.hamburger {
  display: none;
  background-color: #009fc9;
}
@media screen and (max-width: 840px) {
  .hamburger {
    display: flex;
    gap: 7px;
    flex-flow: column;
    justify-content: center;
    aspect-ratio: 1/1;
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    padding: 9px;
    z-index: 101;
    aspect-ratio: 1/1;
  }
  .hamburger span {
    height: 2px;
    width: 100%;
    background-color: #fff;
    transform-origin: center;
    transition: all 0.3s ease;
  }
}
.hamburger.open span {
  background-color: #fff;
}
.hamburger.open span:nth-of-type(1) {
  transform: translateY(9px) rotate(15deg);
}
.hamburger.open span:nth-of-type(2) {
  opacity: 0;
  transform: translateX(-100%);
}
.hamburger.open span:nth-of-type(3) {
  transform: translateY(-9px) rotate(-15deg);
}

.gnav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
}

.menu-gnav-container,
.menu-page-menu-container {
  width: 100%;
  height: 68px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 10px;
  background: #009fc9;
}

.menu-gnav-container ul,
.menu-page-menu-container ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 68px;
  gap: 2rem;
  flex-flow: row wrap;
}

.menu-gnav-container ul li a,
.menu-page-menu-container ul li a {
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
}

.menu-gnav-container ul li a:hover,
.menu-page-menu-container ul li a:hover {
  border-bottom: 2px solid #ffffff;
}

.fv_container {
  width: 100%;
  aspect-ratio: 1400/900;
  background-image: url(./img/fv_dome.webp), url(./img/fv_bg.webp);
  background-repeat: no-repeat;
  background-size: 33%, cover;
  background-position: right 0 bottom 0, top;
  position: relative;
}
.fv_container .fv_img {
  position: absolute;
  width: 39vw;
  top: 21%;
  right: 8%;
}
@media (max-width: 840px) {
  .fv_container .fv_img {
    top: 47%;
  }
}
.fv_container h1 {
  width: 41.6vw;
  position: absolute;
  top: 20%;
  left: 8%;
}
@media (max-width: 840px) {
  .fv_container h1 {
    width: 73.6vw;
    top: 2%;
  }
}
.fv_container .fv_catch {
  width: 41.5vw;
  font-size: 2.4vw;
  position: absolute;
  top: 52%;
  left: 9%;
}
.fv_container .fv_catch p {
  font-weight: 500;
  line-height: 1.4;
}
.fv_container .fv_catch .catch_sub {
  font-size: 1.4vw;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-weight: 400;
}
@media (max-width: 840px) {
  .fv_container .fv_catch {
    top: 52%;
    left: 12%;
  }
}
.fv_container .fv_spot {
  width: 9%;
  position: absolute;
  top: 63%;
  right: 5%;
}

#date_and_venue {
  width: 100%;
  background-color: #ddeef5;
  padding: 60px 0 55px;
}
#date_and_venue .date_ctn {
  width: 83%;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 75px;
  padding: 60px 0 40px;
}
@media (max-width: 540px) {
  #date_and_venue .date_ctn {
    border-radius: 20px;
    padding: 30px 20px;
  }
}
#date_and_venue .date_ctn dl {
  width: 75%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}
@media (max-width: 540px) {
  #date_and_venue .date_ctn dl {
    width: 90%;
    flex-direction: column;
  }
}
#date_and_venue .date_ctn .dl_organizer {
  margin-top: 10px;
}
#date_and_venue .date_ctn .dl_organizer dt {
  margin-top: 50px;
}
@media (max-width: 540px) {
  #date_and_venue .date_ctn .dl_organizer dt {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 1.4rem;
  }
}
#date_and_venue .date_ctn .dt_large {
  font-size: 2rem;
  font-weight: 300;
  background-color: #00a4c5;
  color: #fff;
  font-weight: 500;
  text-align: center;
  padding: 0.3rem 1.5rem;
  display: inline-block;
  border-radius: 50px;
  width: 19%;
  max-width: 139px;
}
@media (max-width: 540px) {
  #date_and_venue .date_ctn .dt_large {
    font-size: 1.8rem;
    width: auto;
  }
}
#date_and_venue .date_ctn .dd_large {
  width: 79%;
  font-size: 2.9rem;
  font-weight: 500;
  padding-left: 2rem;
}
@media (max-width: 540px) {
  #date_and_venue .date_ctn .dd_large {
    width: auto;
    font-size: 2.6rem;
    margin-bottom: 3rem;
    padding-left: 0;
  }
}
#date_and_venue .date_ctn .dt_small {
  font-size: 1.6rem;
  font-weight: 300;
  background-color: #005084;
  color: #fff;
  font-weight: 500;
  text-align: center;
  padding: 0 0.5rem;
  text-align: center;
  display: inline-block;
  border-radius: 50px;
  width: 13%;
}
@media (max-width: 540px) {
  #date_and_venue .date_ctn .dt_small {
    width: auto;
    padding: 0 1.5rem;
  }
}
#date_and_venue .date_ctn .dd_small {
  font-size: 1.7rem;
  width: 87%;
  padding-left: 2rem;
  font-weight: 400;
}
@media (max-width: 540px) {
  #date_and_venue .date_ctn .dd_small {
    width: auto;
    font-size: 1.4rem;
    padding-left: 0;
  }
}
#date_and_venue .marker {
  background: linear-gradient(transparent 70%, #ffe33f 60%);
  padding: 0 0.05em;
  font-weight: 600;
}

#outline {
  background: url(./img/outline_bg.webp) #fff;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 48px 0 105px;
}
@media (max-width: 540px) {
  #outline {
    background-size: cover;
    padding-top: 0;
    padding-bottom: 50px;
  }
}
#outline .outline_title {
  position: relative;
  display: flex;
  justify-content: center;
}
#outline .outline_title figure {
  width: 90%;
  max-width: 485px;
  aspect-ratio: 1200/367;
}
@media (max-width: 540px) {
  #outline .outline_title figure {
    width: 40%;
  }
}
#outline .outline_title h2 {
  position: absolute;
  top: 54%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  max-width: 340px;
  margin: 0 auto;
  background-color: #005084;
  color: #fff;
  padding: 0rem 2.5rem;
  font-size: 4.8rem;
  font-weight: 600;
  border-radius: 50px;
}
@media (max-width: 540px) {
  #outline .outline_title h2 {
    font-size: 2.8rem;
    width: 60%;
  }
}
#outline .outline_ctn {
  width: 83%;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  border: #005084 solid 1px;
  border-radius: 75px;
  padding: 60px 0 40px;
  box-shadow: rgba(0, 0, 0, 0.2784313725) 9px 9px 7px;
  position: relative;
}
@media (max-width: 540px) {
  #outline .outline_ctn {
    width: 90%;
    padding: 20px 0;
    border-radius: 30px;
  }
}
#outline .outline_ctn .fig_left {
  width: 10%;
  height: auto;
  position: absolute;
  bottom: -23%;
  left: 0;
}
@media (max-width: 540px) {
  #outline .outline_ctn .fig_left {
    width: 17%;
    bottom: -4%;
  }
}
#outline .outline_ctn .fig_right {
  width: 10%;
  height: auto;
  position: absolute;
  bottom: -23%;
  right: 0;
}
@media (max-width: 540px) {
  #outline .outline_ctn .fig_right {
    width: 17%;
    bottom: -4%;
  }
}
#outline .outline_ctn_inner {
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 540px) {
  #outline .outline_ctn_inner {
    width: 90%;
  }
}
#outline .outline_ctn_inner p {
  font-size: 2.1rem;
  margin-top: 3rem;
}
@media (max-width: 540px) {
  #outline .outline_ctn_inner p {
    font-size: 1.5rem;
    margin-top: 0;
    padding-bottom: 40px;
  }
}

.section_title {
  margin: 0 auto;
}
.section_title h3 {
  color: #005084;
  font-size: 4.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 540px) {
  .section_title h3 {
    font-size: 2.4rem;
    line-height: 1.4;
    justify-content: space-around;
    text-align: center;
  }
}
.section_title h3::before, .section_title h3::after {
  content: "";
  background-image: url(./img/section_deco.webp);
  width: 6%;
  aspect-ratio: 1/0.5;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 540px) {
  .section_title h3::before, .section_title h3::after {
    width: 15%;
  }
}

#schedule {
  background: url(./img/schedule_bg.webp) no-repeat top/cover;
  padding: 168px 0 184px;
}
#schedule .schedule_content {
  width: 90%;
  max-width: 1200px;
  margin: 40px auto 0;
}
@media (max-width: 540px) {
  #schedule {
    padding: 50px 0;
  }
}

#program {
  padding-top: 100px;
  background-image: url(./img/program_day1_bg_01.webp), url(./img/program_day1_bg_02.webp), url(./img/program_day1_bg_03.webp);
  background-repeat: no-repeat;
  background-size: 65%, 59%, 24%;
  background-position: top 0 left 0, top 4% right 0, top 28% left -1%;
}
#program .bg_wrapper01 {
  width: 100%;
  height: 100%;
  background-image: url(./img/program_day1_bg_04.webp), url(./img/program_day1_bg_05.webp), url(./img/program_day2_bg_01.webp);
  background-repeat: no-repeat;
  background-size: 33%, 40%, 100%;
  background-position: top 34% right 0, top 49% left 16%, top 70% left 0%;
}
#program .bg_wrapper02 {
  padding-bottom: 300px;
  width: 100%;
  height: 100%;
  background-image: url(./img/program_day2_bg_02.webp);
  background-repeat: no-repeat;
  background-size: 65%, 59%, 24%;
  background-position: bottom 0 left 0;
}
@media (max-width: 840px) {
  #program .bg_wrapper02 {
    padding-bottom: 170px;
  }
}
@media (max-width: 540px) {
  #program .bg_wrapper02 {
    padding-bottom: 50px;
  }
}
#program .program_wrapper {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
#program .program_day_area {
  margin-top: 55px;
  position: relative;
  width: 100%;
  margin-bottom: 145px;
}
@media (max-width: 540px) {
  #program .program_day_area {
    margin-bottom: 170px;
  }
}
#program .program_day_area .day {
  width: 34%;
}
@media (max-width: 540px) {
  #program .program_day_area .day {
    width: 60%;
  }
}
#program .program_day_area .program_date_area {
  position: absolute;
  bottom: -58%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 50px auto 25px;
  padding-left: 5%;
}
@media (max-width: 540px) {
  #program .program_day_area .program_date_area {
    flex-direction: column;
    align-items: flex-start;
    bottom: auto;
    top: 34%;
  }
}
#program .program_day_area .program_date_area .date {
  width: 45%;
}
@media (max-width: 540px) {
  #program .program_day_area .program_date_area .date {
    width: 70%;
  }
}
#program .program_day_area .program_date_area .venue_container {
  display: inline-block;
  background-color: #e5e5e6;
  border-radius: 10px;
  padding: 25px 50px 10px;
  color: #231815;
  font-weight: 400;
}
@media (max-width: 540px) {
  #program .program_day_area .program_date_area .venue_container {
    margin-top: 10px;
    padding: 10px 20px 0;
  }
}
#program .program_day_area .program_date_area .venue_container span {
  font-size: 2.5rem;
  font-weight: 600;
}
#program .title_area {
  flex: 1;
  width: -moz-max-content;
  width: max-content;
}
#program .title_area .title_time {
  font-size: 2.5rem;
  line-height: 1;
  width: -moz-max-content;
  width: max-content;
}
@media (max-width: 540px) {
  #program .title_area .title_time {
    font-size: 1.8rem;
    width: auto;
  }
}
#program .title_area .title_title {
  font-size: 3.5rem;
  font-weight: 600;
  width: -moz-max-content;
  width: max-content;
}
@media (max-width: 540px) {
  #program .title_area .title_title {
    font-size: 2.4rem;
    width: auto;
  }
}
#program .theme_area {
  display: flex;
  flex: 2;
  gap: 1.5em;
  align-items: center;
}
@media (max-width: 840px) {
  #program .theme_area {
    align-items: start;
    flex-flow: column;
    gap: 10px;
  }
}
#program .theme_area .theme {
  width: 100px;
}
#program .theme_title {
  font-size: 2.7rem;
  line-height: 1.2;
  font-weight: 500;
}
#program .theme_title span {
  font-size: 2.1rem;
  font-weight: 500;
}
@media (max-width: 540px) {
  #program .theme_title {
    font-size: 2rem;
  }
  #program .theme_title span {
    font-size: 1.6rem;
  }
}
#program .description {
  margin-bottom: 50px;
}
@media (max-width: 540px) {
  #program .description {
    font-size: 1.6rem;
  }
}
#program .speaker_area {
  width: 100%;
  display: flex;
  margin: 30px 0;
  align-items: center;
  gap: 50px;
}
@media (max-width: 840px) {
  #program .speaker_area {
    align-items: flex-start;
  }
}
@media (max-width: 540px) {
  #program .speaker_area {
    flex-direction: column;
    gap: 20px;
  }
}
#program .speaker_area.none_img {
  padding-left: 95px;
  justify-content: left;
  gap: 56px;
}
@media (max-width: 840px) {
  #program .speaker_area.none_img {
    padding-left: 0;
  }
}
@media (max-width: 540px) {
  #program .speaker_area.none_img {
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
}
#program .speaker_area.none_img span {
  font-size: 2.8rem;
  font-weight: 500;
}
#program .speaker_area.day2 {
  margin-bottom: 200px;
}
#program .speaker_area.day2 p {
  line-height: 1;
}
@media (max-width: 540px) {
  #program .speaker_area.day2 p {
    line-height: 1.4;
  }
}
#program .speaker_area.day2 span {
  font-size: 2.8rem;
  font-weight: 500;
}
#program .speaker_area figure {
  width: 100%;
  min-width: 210px;
  aspect-ratio: 217/280;
  border-radius: 20px;
  overflow: hidden;
}
#program .speaker_area figure img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 540px) {
  #program .speaker_area figure {
    width: 60%;
    margin: 0 auto;
  }
}
#program .speaker_area .speaker_position {
  width: 127px;
  background-color: #00a4c5;
  border-radius: 6px;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
}
#program .speaker_area .speaker_position.day2 {
  width: 175px;
}
@media (max-width: 540px) {
  #program .speaker_area .speaker_position {
    width: 100%;
  }
}
#program .speaker_area dl dt p span {
  font-size: 2.8rem;
  font-weight: 500;
}
#program .speaker_area dl dt p.possition {
  background-color: #eaf5f9;
  border-radius: 10px;
  padding: 1.5rem 2rem;
  display: inline-block;
}
@media (max-width: 540px) {
  #program .speaker_area dl dt p {
    text-align: center;
    margin-top: 10px;
    line-height: 1.5;
  }
}
#program .speaker_area dl dd {
  display: flex;
}
@media (max-width: 840px) {
  #program .speaker_area dl dd {
    flex-direction: column;
  }
}
@media (max-width: 540px) {
  #program .speaker_area dl dd p {
    font-size: 1.6rem;
  }
}
#program .speaker_area dl dd div {
  width: 50%;
}
#program .line_dot {
  display: block;
  width: 100%;
}
#program .program_bg_bl {
  position: relative;
  margin: 213px auto;
  background-color: #eff7fa;
  border-radius: 24px;
  width: 100%;
  padding: 65px 43px;
  align-items: flex-end;
}
@media (max-width: 840px) {
  #program .program_bg_bl {
    padding: 25px 15px;
    margin: 30px auto;
  }
}
@media (max-width: 540px) {
  #program .program_bg_bl {
    padding: 25px 15px;
    margin: 30px auto;
  }
}
#program .program_bg_bl:nth-of-type(2) {
  margin-bottom: 200px;
}
#program .program_bg_bl .title_area.prog_16-18 {
  flex: 2.5;
}
#program .program_bg_bl h4 {
  font-size: 2.9rem;
  color: #009fc9;
  font-weight: 600;
  margin-bottom: 40px;
}
@media (max-width: 540px) {
  #program .program_bg_bl h4 {
    font-size: 1.6rem;
  }
}
#program .program_bg_bl .ilst_prog_01 {
  position: absolute;
  top: 23%;
  right: -3%;
  width: 20%;
}
@media (max-width: 540px) {
  #program .program_bg_bl .ilst_prog_01 {
    top: 7%;
    right: 2%;
  }
}
#program .program_bg_bl .ilst_prog_02 {
  position: absolute;
  bottom: -10%;
  right: -4%;
  width: 22%;
}
@media (max-width: 540px) {
  #program .program_bg_bl .ilst_prog_02 {
    right: 3%;
    width: 27%;
    bottom: -15%;
  }
}
#program .program_bg_bl .txt-area {
  width: 82%;
}
@media (max-width: 540px) {
  #program .program_bg_bl .txt-area {
    width: 100%;
  }
}
#program .program_bg_bl .pic_area {
  margin-top: 95px;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
@media (max-width: 540px) {
  #program .program_bg_bl .pic_area {
    margin-top: 20px;
    display: block;
  }
}
#program .program_bg_bl .pic_area .pic1 figure {
  aspect-ratio: 674/514;
}
#program .program_bg_bl .pic_area .pic2 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 540px) {
  #program .program_bg_bl .pic_area .pic2 {
    display: block;
  }
}
#program .program_bg_bl .pic_area figure {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
#program .program_bg_bl .pic_area img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#program .day2_prog {
  width: 100%;
}
#program .day2_prog_ctn {
  position: relative;
  margin-top: 100px;
  width: 72%;
  border: #00a4c5 solid 2.5px;
  border-radius: 20px;
  padding: 25px 8% 25px 18%;
}
@media (max-width: 840px) {
  #program .day2_prog_ctn {
    padding: 50px 30px 20px;
  }
}
@media (max-width: 540px) {
  #program .day2_prog_ctn {
    width: 100%;
    padding: 45px 25px 20px;
    margin-top: 70px;
  }
}
#program .day2_prog_ctn.day2_02, #program .day2_prog_ctn.day2_04 {
  margin-left: auto;
}
#program .day2_prog_ctn.day2_03 p {
  font-weight: 700;
  font-size: 2.3rem;
  margin-left: 3rem;
}
@media (max-width: 540px) {
  #program .day2_prog_ctn.day2_03 p {
    font-size: 1.8rem;
  }
}
#program .day2_prog_ctn .ctn_number {
  position: absolute;
  top: -20%;
  left: 35px;
  width: 14%;
}
@media (max-width: 540px) {
  #program .day2_prog_ctn .ctn_number {
    top: -6%;
    left: 23px;
  }
}
#program .day2_prog_ctn .ctn_illustration {
  position: absolute;
}
#program .day2_prog_ctn .ctn_illustration.day2_01 {
  top: -25%;
  right: -30%;
  width: 34%;
}
@media (max-width: 540px) {
  #program .day2_prog_ctn .ctn_illustration.day2_01 {
    top: auto;
    bottom: -15%;
    width: 25%;
  }
}
#program .day2_prog_ctn .ctn_illustration.day2_02 {
  bottom: 5%;
  left: -38%;
  width: 45%;
}
@media (max-width: 540px) {
  #program .day2_prog_ctn .ctn_illustration.day2_02 {
    bottom: auto;
    left: auto;
    top: -11%;
    right: 2%;
  }
}
#program .day2_prog_ctn .ctn_illustration.day2_03 {
  top: 2%;
  right: -30%;
  width: 34%;
}
@media (max-width: 540px) {
  #program .day2_prog_ctn .ctn_illustration.day2_03 {
    top: -20%;
    right: 3%;
  }
}
#program .day2_prog_ctn .ctn_illustration.day2_04 {
  bottom: -14%;
  left: -30%;
  width: 41%;
}
@media (max-width: 540px) {
  #program .day2_prog_ctn .ctn_illustration.day2_04 {
    bottom: auto;
    top: -22%;
    left: auto;
    right: 4%;
  }
}
#program h5 {
  font-size: 3rem;
  font-weight: 700;
  background-color: #e6f3f8;
  padding: 0.5rem 2.5rem;
  border-radius: 50px;
}
@media (max-width: 540px) {
  #program h5 {
    font-size: 2rem;
  }
}
#program ul {
  list-style: none;
  padding-left: 0;
  margin-left: 2.5rem;
}
#program ul li {
  position: relative;
  padding-left: 1.2em;
  font-size: 2.3rem;
  font-weight: 600;
}
@media (max-width: 540px) {
  #program ul li {
    padding-left: 1.5rem;
    font-size: 1.8rem;
  }
}
#program ul li::before {
  content: "●";
  color: #ffe33f;
  font-size: 12px;
  position: absolute;
  left: 0;
  top: 0.9em;
}
@media (max-width: 540px) {
  #program ul li::before {
    font-size: 9px;
  }
}
#program ul li span {
  font-size: 1.8rem;
}
@media (max-width: 540px) {
  #program ul li span {
    font-size: 1.6rem;
  }
}
#program .prog_theme_area {
  display: flex;
  gap: 2rem;
  align-items: baseline;
  margin-top: 2rem;
}
@media (max-width: 840px) {
  #program .prog_theme_area {
    display: block;
  }
}
#program .prog_theme_area .prog_theme {
  padding: 0rem 1rem;
  border: #a5a5a5 solid 1px;
  border-radius: 20px;
  font-size: 1.6rem;
  letter-spacing: normal;
  transform: translateY(2px);
}
@media (max-width: 840px) {
  #program .prog_theme_area .prog_theme {
    text-align: center;
    margin-bottom: 5px;
  }
}
#program .prog_theme_area p {
  font-weight: 700;
}
@media (max-width: 540px) {
  #program {
    padding-top: 50px;
  }
}

#application {
  padding: 100px 0;
  background-image: url(./img/application_bg_top.webp), url(./img/application_bg_bottom.webp);
  background-repeat: no-repeat;
  background-size: 80%;
  background-position: top right, bottom left;
}
#application .wrapper {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
#application .application_ctn {
  position: relative;
  margin-top: 75px;
  width: 92%;
  border-radius: 24px;
  background-color: #eff7fa;
  padding: 52px 60px 40px;
}
@media (max-width: 540px) {
  #application .application_ctn {
    min-width: 10px;
    padding: 20px 25px;
    margin-left: auto;
    margin-right: auto;
  }
}
#application .application_ctn.step02 {
  margin-left: auto;
}
@media (max-width: 540px) {
  #application .application_ctn.step02 {
    margin-left: auto;
    margin-right: auto;
  }
}
#application .application_ctn .ctn_number {
  position: absolute;
  top: -22px;
  left: 60px;
  width: 20%;
}
@media (max-width: 540px) {
  #application .application_ctn .ctn_number {
    left: 25px;
    width: 40%;
  }
}
#application .application_ctn h4 {
  font-size: 4.9rem;
  font-weight: 700;
}
@media (max-width: 840px) {
  #application .application_ctn h4 {
    font-size: 4rem;
  }
}
@media (max-width: 540px) {
  #application .application_ctn h4 {
    font-size: 2rem;
  }
}
#application .application_ctn .app_period_ctn {
  background-color: #fff;
  border: #ea545e solid 1.7px;
  border-radius: 10px;
  padding: 10px 30px;
  display: flex;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 540px) {
  #application .application_ctn .app_period_ctn {
    display: block;
    padding: 15px;
  }
}
#application .application_ctn .app_period_ctn .app_period {
  background-color: #ea545e;
  color: #fff;
  text-align: center;
  padding: 0.2rem 2.5rem;
  border-radius: 50px;
}
@media (max-width: 540px) {
  #application .application_ctn .app_period_ctn .app_period {
    padding: 0.2rem 1rem;
    margin-bottom: 1rem;
  }
}
#application .application_ctn .app_period_ctn p {
  color: #ea545e;
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 700;
  font-family: "deuterium-variable", sans-serif;
  font-variation-settings: "wght" 480;
}
@media (max-width: 540px) {
  #application .application_ctn .app_period_ctn p {
    font-size: 2rem;
    line-height: 1.2;
  }
}
#application .application_ctn .app_period_ctn p span {
  font-size: 5.5rem;
}
@media (max-width: 540px) {
  #application .application_ctn .app_period_ctn p span {
    font-size: 2.8rem;
  }
}
#application .application_ctn .app_period_ctn p span {
  font-family: "europa", sans-serif;
  font-weight: 700;
  font-style: normal;
}
#application .application_ctn .app_period_ctn p span.year {
  font-size: 2.2rem;
}
#application .application_ctn .app_period_ctn p span.small {
  font-family: "europa", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 3.5rem;
}
#application .bg_wh {
  position: relative;
  background-color: #fff;
  margin-top: 28px;
  padding: 25px 43px;
}
@media (max-width: 540px) {
  #application .bg_wh {
    padding: 15px;
  }
}
#application .bg_wh .ctn_illustration {
  position: absolute;
}
#application .bg_wh .ctn_illustration.step01 {
  bottom: -4%;
  right: -13%;
  width: 25%;
}
#application .bg_wh .ctn_illustration.step02 {
  bottom: 1%;
  left: -21%;
  width: 22%;
}
#application .bg_wh .ctn_illustration.step03 {
  top: -13%;
  right: -17%;
  width: 28%;
}
#application .bg_wh ol {
  list-style: none;
  padding-left: 0;
  counter-reset: number;
}
#application .bg_wh ol li {
  position: relative;
  margin-bottom: 1.5rem;
  font-size: 2.8rem;
  font-weight: 600;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media (max-width: 540px) {
  #application .bg_wh ol li {
    font-size: 1.8rem;
    gap: 1rem;
  }
}
#application .bg_wh ol li small {
  font-size: 1.6rem;
}
#application .bg_wh ol li small.annotation {
  font-size: 1.4rem;
}
#application .bg_wh ol li::before {
  counter-increment: number 1;
  content: counter(number) " ";
  width: 40px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.7rem;
  color: #ffffff;
  font-weight: 700;
  background-color: #888888;
  border-radius: 50%;
  line-height: 1;
}
@media (max-width: 540px) {
  #application .bg_wh ol li::before {
    width: 25px;
    font-size: 1.8rem;
  }
}
#application .bg_wh ol li p {
  display: inline-block;
  font-weight: 700;
  line-height: 1.4;
  width: 90%;
}
@media (max-width: 840px) {
  #application .bg_wh ol li p {
    flex: 1;
  }
}
#application .bg_wh ol li p span {
  color: #009fc9;
  font-weight: 700;
}
#application .bg_wh ol li .li_txt {
  width: 90%;
}
@media (max-width: 540px) {
  #application .bg_wh ol li .li_txt {
    width: 80%;
  }
  #application .bg_wh ol li .li_txt p {
    width: 100%;
  }
}
#application .bg_wh ol li .fee_ctn {
  width: 100%;
  display: flex;
  align-items: end;
  gap: 25px;
}
@media (max-width: 540px) {
  #application .bg_wh ol li .fee_ctn {
    display: block;
  }
}
#application .bg_wh ol li .fee_ctn .fee_title {
  width: 88px;
  height: 88px;
  font-size: 1.9rem;
  background-color: #005084;
  color: #fff;
  font-weight: 700;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 540px) {
  #application .bg_wh ol li .fee_ctn .fee_title {
    margin: 0 auto;
  }
}
#application .bg_wh ol li .fee_ctn .fee_detail {
  font-size: 2.8rem;
  color: #4c4948;
  width: -moz-max-content;
  width: max-content;
  flex: 1;
}
@media (max-width: 1240px) {
  #application .bg_wh ol li .fee_ctn .fee_detail {
    font-size: 1.8rem;
  }
}
@media (max-width: 540px) {
  #application .bg_wh ol li .fee_ctn .fee_detail {
    width: 100%;
  }
}
#application .bg_wh ol li .fee_ctn .fee_detail p {
  width: 100%;
}
@media (max-width: 540px) {
  #application .bg_wh ol li .fee_ctn .fee_detail p {
    font-size: 1.4rem;
    text-align: center;
    line-height: 1;
    margin: 20px auto;
  }
  #application .bg_wh ol li .fee_ctn .fee_detail p .slash {
    display: none !important;
  }
}
#application .bg_wh ol li .fee_ctn .fee_detail span {
  font-size: 4.2rem;
  color: #005084;
}
@media (max-width: 1240px) {
  #application .bg_wh ol li .fee_ctn .fee_detail span {
    font-size: 3.2rem;
  }
}
#application .bg_wh ol li .fee_ctn .fee_detail span.slash {
  display: inline-block;
  width: 4.2rem;
  height: 1.7px;
  background-color: #3e3a39;
  rotate: -45deg;
  transform: translate(11px, -13px);
}
#application .bg_wh ol li .fee_ctn .fee_detail .fee_annotation {
  background-color: #edefef;
  padding: 0.15rem;
  text-align: center;
  font-size: 1.75rem;
}
@media (max-width: 540px) {
  #application .bg_wh ol li .fee_ctn .fee_detail .fee_annotation {
    font-size: 1.4rem;
  }
}
#application .bg_wh ul {
  list-style: none;
}
#application .bg_wh ul li {
  position: relative;
}
#application .bg_wh ul li::before {
  content: "";
  display: block;
  width: 23px;
  height: 23px;
  background-color: #005084;
  border-radius: 23px;
  margin-right: 15px;
  position: absolute;
  top: 1.4rem;
  left: -3rem;
}
@media (max-width: 540px) {
  #application .bg_wh ul li::before {
    width: 12px;
    height: 12px;
  }
}
#application .bg_wh ul li p {
  width: 90%;
}
#application .bg_wh ul li span {
  font-size: 2.8rem;
  font-weight: 600;
}
@media (max-width: 540px) {
  #application .bg_wh ul li span {
    font-size: 1.8rem;
  }
}
#application .go_application_area {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 120px auto 285px;
}
#application .go_application_area p {
  font-weight: 7001;
}
@media (max-width: 840px) {
  #application .go_application_area {
    margin: 60px auto 5px;
  }
}
@media (max-width: 540px) {
  #application {
    padding: 50px 0;
  }
}

.btn_application {
  display: flex;
  align-items: center;
  background-color: #009fc9;
  color: #fff;
  font-size: 2.4rem;
  width: 435px;
  border-radius: 100px;
  padding: 1rem 0 1rem 5%;
  position: relative;
  margin-top: 60px;
  cursor: pointer;
}
@media (max-width: 540px) {
  .btn_application {
    font-size: 1.8rem;
    width: 100%;
    padding: 10px 50px;
    margin-top: 20px;
  }
}
.btn_application .arrow_circle {
  background-color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 20px;
}
.btn_application .arrow_circle figure {
  width: 96%;
}
@media (max-width: 540px) {
  .btn_application .arrow_circle {
    font-size: 1.4rem;
  }
}
.btn_application p {
  margin-bottom: 0;
}
.btn_application.rev {
  width: -moz-fit-content;
  width: fit-content;
  padding: 1rem 50px 1rem 80px;
  margin: 50px auto;
}
.btn_application.rev .arrow_circle {
  right: initial;
  left: 20px;
  transform: rotate(180deg);
}
.btn_application.rev .arrow_circle figure {
  margin: 0 !important;
}

#access {
  background-color: #009fc9;
  padding: 60px 0 87px;
}
#access .access_ctn {
  background-color: #fff;
  width: 90%;
  max-width: 1300px;
  margin: 60px auto 0;
  border-radius: 35px;
  padding: 80px 50px 85px;
}
#access .access_ctn .day1_area {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 25px;
}
@media (max-width: 540px) {
  #access .access_ctn .day1_area {
    display: block;
  }
}
#access .access_ctn .day1_area .map_ctn {
  width: 100%;
  flex: 1;
}
#access .access_ctn .day1_area .map_ctn iframe {
  width: 100%;
  height: -webkit-fill-available;
  height: -moz-available;
  height: stretch;
}
#access .access_ctn .day1_area .access_detail_area {
  flex: 1;
  width: 46%;
}
@media (max-width: 540px) {
  #access .access_ctn .day1_area .access_detail_area {
    width: 100%;
  }
}
#access .access_ctn .day1_area .access_detail_area figure {
  width: 100%;
}
@media (max-width: 540px) {
  #access .access_ctn {
    padding: 40px 20px 40px;
    margin: 0 auto;
  }
}

#notices {
  background-color: #009fc9;
}
#notices .yellow_mark_title {
  margin: 0 auto 28px;
}
#notices .yellow_mark_title::before {
  width: 9px;
  height: auto;
}
#notices .bg_wh_round {
  background-color: #fdf1ef;
  border-radius: 120px 0 0 0;
  padding: 113px 0 185px;
}
@media (max-width: 540px) {
  #notices .bg_wh_round {
    padding: 50px 0;
    border-radius: 80px 0 0 0;
  }
}
#notices .h2_bg_bl {
  width: 323px;
  font-size: 4.8rem;
  font-weight: 500;
  text-align: center;
  margin: 0 auto;
  /* padding: 0.1rem; */
  line-height: 1.5;
  background-color: #005084;
  border-radius: 100px;
  color: #fff;
  margin-bottom: 128px;
}
@media (max-width: 540px) {
  #notices .h2_bg_bl {
    font-size: 2.8rem;
    width: 60%;
    margin-bottom: 50px;
  }
}
#notices .notices_ctn {
  width: 77%;
  max-width: 1112px;
  margin: 58px auto 0;
  background-color: #fff;
  border-radius: 20px;
  padding: 38px 62px;
}
@media (max-width: 840px) {
  #notices .notices_ctn {
    width: 90%;
  }
}
@media (max-width: 540px) {
  #notices .notices_ctn {
    width: 85%;
    padding: 20px 15px;
  }
}
#notices h3 {
  font-size: 2.4rem;
  font-weight: 500;
}
@media (max-width: 540px) {
  #notices h3 {
    font-size: 1.8rem;
  }
}
#notices p {
  font-size: 2.1rem;
}
@media (max-width: 540px) {
  #notices p {
    font-size: 1.6rem;
  }
}
#notices p .under-line {
  text-decoration: underline;
  text-decoration-color: #f0cc00;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
#notices ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0.5rem;
}
#notices ul li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 2.1rem;
}
@media (max-width: 540px) {
  #notices ul li {
    font-size: 1.6rem;
  }
}
#notices ul li::before {
  content: "●";
  color: #ea545e;
  font-size: 7px;
  position: absolute;
  left: 0;
  top: 2em;
}
@media (max-width: 540px) {
  #notices ul li::before {
    top: 1.3em;
  }
}

#program_contact {
  background-color: #fff;
  padding: 96px 0 20rem;
}
@media (max-width: 840px) {
  #program_contact {
    width: 90%;
    margin: 0 auto;
  }
}
#program_contact h3 {
  margin: 0 auto 78px;
  display: block;
  width: 80%;
  max-width: 423px;
  font-size: 4.8rem;
  text-align: center;
  padding: 0.25rem;
  background-color: #005084;
  border-radius: 50px;
  color: #fff;
}
@media (max-width: 540px) {
  #program_contact h3 {
    font-size: 2rem;
  }
}
#program_contact .layout {
  max-width: 780px;
  margin: 0 auto;
  padding: 0;
  border-radius: 50px;
}
#program_contact p {
  letter-spacing: 0.01em;
  font-weight: 500;
}
@media (max-width: 540px) {
  #program_contact p {
    font-size: 2.2rem;
  }
}
#program_contact p:nth-of-type(1) {
  font-size: 3.1rem;
  border-bottom: 3px dotted #000;
  padding-bottom: 1.5rem;
}
@media (max-width: 540px) {
  #program_contact p:nth-of-type(1) {
    font-size: 2rem;
  }
}
#program_contact p:nth-of-type(1) > span {
  font-size: 2rem;
  font-weight: 500;
}
@media (max-width: 540px) {
  #program_contact p:nth-of-type(1) > span {
    font-size: 1.6rem;
  }
}
#program_contact p:nth-of-type(2) {
  font-size: 2.2rem;
}
@media (max-width: 540px) {
  #program_contact p:nth-of-type(2) {
    font-size: 1.6rem;
  }
}
#program_contact .btn_layout {
  display: flex;
  flex-flow: row wrap;
  margin-top: 3rem;
  gap: 2rem;
}
@media (max-width: 540px) {
  #program_contact .btn_layout {
    display: block;
  }
}
#program_contact .btn_layout [class^=btn_item_] {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 50px;
  border: #000 1px solid;
  height: 45px;
  width: calc((100% - 2rem) / 2);
}
@media (max-width: 540px) {
  #program_contact .btn_layout [class^=btn_item_] {
    width: 100%;
    margin-bottom: 15px;
  }
}
#program_contact .btn_layout .btn_item_tel {
  font-size: 2.7rem;
  font-weight: 500;
}
@media (max-width: 540px) {
  #program_contact .btn_layout .btn_item_tel {
    font-size: 2rem;
  }
}
#program_contact .btn_layout .btn_item_mail {
  font-size: 2.4rem;
  font-weight: 500;
}
@media (max-width: 540px) {
  #program_contact .btn_layout .btn_item_mail {
    font-size: 2rem;
  }
}
#program_contact .btn_layout .btn_item_mail img {
  width: 33px;
  height: auto;
  margin-right: 12px;
}

.form {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-flow: column;
  gap: 10px;
}
.form .address-out {
  width: 160px !important;
}
.form input,
.form textarea {
  background-color: #fff;
  font-size: 18px;
  border-radius: 10px;
  padding: 10px 15px;
  border: 1px solid #ddd;
  color: #000;
}
.form dl {
  display: flex;
  flex-flow: row wrap;
}
.form dt {
  width: 300px;
}
.form dd {
  width: calc(100% - 300px);
}
.form p {
  margin-top: 30px;
  margin-bottom: 30px;
}
.form dt,
.form dd,
.form p {
  letter-spacing: 0.1rem;
  color: #005084;
}
@media screen and (max-width: 840px) {
  .form .mwform-radio-field {
    display: block;
    margin-left: 0 !important;
    margin-bottom: 5px !important;
  }
  .form dt {
    margin-bottom: 10px;
  }
  .form dt,
  .form dd {
    width: 100%;
  }
  .form input[type=text],
  .form input[type=email],
  .form input[type=url],
  .form textarea {
    width: 100%;
  }
}

.go {
  text-align: center;
}
.go input {
  background-color: #428196;
  color: #fff;
}
.go button[type=submit] {
  border-radius: 10px;
  padding: 10px 15px;
  border: 1px solid #ddd;
  background-color: #428196;
  color: #fff;
}

.page {
  padding: 80px 0;
  background-color: #b0e1ff;
}
.page h3 {
  color: #005084;
  font-size: 4.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
}
@media (max-width: 540px) {
  .page h3 {
    font-size: 2.4rem;
    line-height: 1.4;
    justify-content: space-around;
    text-align: center;
  }
}
.page h3::before, .page h3::after {
  content: "";
  background-image: url(./img/section_deco.webp);
  width: 6%;
  aspect-ratio: 1/0.5;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 540px) {
  .page h3::before, .page h3::after {
    width: 15%;
  }
}
.page .inner {
  max-width: 1200px;
  width: 95%;
  margin: 0 auto;
}

.content_inner {
  padding: 66px 50px;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  flex-flow: column;
  gap: 10px;
  position: relative;
}
@media screen and (max-width: 540px) {
  .content_inner {
    padding: 36px 20px;
  }
}

#members_page .page {
  background-color: transparent;
  padding: 0;
}
#members_page .page h3 {
  margin: 80px auto 0;
}
#members_page {
  /*全国大学コンソーシアム協議会*/
}
#members_page .size-thumbnail570 {
  max-width: 570px;
}
#members_page .size-thumbnail1140 {
  max-width: 1140px;
  width: 100%;
}
#members_page .members-table {
  width: 90%;
  border-collapse: separate;
  border-spacing: 5px;
  margin: 0 auto;
  letter-spacing: 0.1rem;
  line-height: 1.5;
}
#members_page .members-table th {
  border-bottom: 1px solid #000;
  width: 25%;
  text-align: center;
  color: #000;
  font-size: 1.6rem;
  padding: 1.6rem 0 1.6rem 0;
}
#members_page .members-table td {
  border-bottom: 1px solid #ccc;
  text-align: center;
  font-size: 1.6rem;
  padding: 1.6rem 0 1.6rem 0;
}
#members_page .members-message {
  text-align: left !important;
  text-align: justify !important;
  padding: 1.6rem !important;
}
#members_page .members-photo {
  width: 90%;
  height: auto;
  margin: 25px auto;
}
#members_page .members-photo2 {
  width: 60%;
  height: auto;
  margin: 25px auto;
}
#members_page .orange {
  color: #000;
}
#members_page .members-torikumi {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
  letter-spacing: 0.1rem;
  font-size: 1.6rem;
  gap: 15px;
}
#members_page .members-torikumi01 {
  background-color: #009fc9;
  color: #fff;
  text-align: left;
  margin: 0 a;
  padding: 0 30px;
}
#members_page .members-torikumi02 {
  background-color: #f8f8f8;
  text-align: justify;
  padding: 2rem;
  width: 100%;
}
#members_page .members-torikumi03 {
  background-color: #f8f8f8;
  text-align: justify;
  padding: 2rem;
  width: 100%;
  color: #000 !important;
  font-size: 2.4rem !important;
  text-align: center !important;
}
#members_page .map {
  max-width: 870px;
  margin: 100px auto 0;
  position: relative;
  display: flex;
  flex-flow: row;
  justify-content: flex-end;
}
#members_page .mapbox {
  width: 670px;
}
#members_page .areabox {
  display: flex;
  flex-flow: column;
  justify-content: center;
  width: 120px;
}
#members_page .areatext {
  width: 100%;
  height: 3.2rem;
  padding: 0.7rem;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 10px;
  border-radius: 0.5rem;
}
#members_page .areatext p {
  text-align: center;
  line-height: 1;
}
#members_page .preftext table {
  width: 95%;
  margin: 0 auto !important;
  font-size: 1.2rem;
}
#members_page .preftext td {
  width: 50%;
  text-align: left;
  letter-spacing: 0.2rem;
  padding: 2px 0;
}
#members_page .pt-cl td {
  width: 100%;
  text-align: center;
  display: block;
}
#members_page .preftext- {
  display: flex;
  flex-flow: row wrap;
  gap: 0.7rem 1.6rem;
  text-align: left;
  letter-spacing: 0.2rem;
  padding-left: 0.9rem;
}
#members_page .pt-cl- {
  flex-flow: column !important;
  text-align: center !important;
  justify-content: center;
}
#members_page .preftext p {
  font-size: 1.6rem;
  margin-bottom: 0 !important;
}
#members_page {
  /*ポジション*/
}
#members_page .hokkaido-posi {
  position: absolute;
  top: 1rem;
  right: 31rem;
}
#members_page .chubu-posi {
  position: absolute;
  top: 12rem;
  left: 32rem;
}
#members_page .chugoku-posi {
  position: absolute;
  top: 19rem;
  left: 16rem;
}
#members_page .chukyu-posi {
  position: absolute;
  top: 26rem;
  left: 2rem;
}
#members_page .kyusyu-posi {
  position: absolute;
  top: 38rem;
  left: 2rem;
}
#members_page .tohoku-posi {
  position: absolute;
  top: 17rem;
  right: 0rem;
}
#members_page .kanto-posi {
  position: absolute;
  top: 27rem;
  right: 13rem;
}
#members_page .kinki-posi {
  position: absolute;
  top: 44rem;
  right: 24rem;
}
#members_page {
  /*ここまで*/
}
#members_page .arealink {
  width: 100%;
  height: 100%;
  transition: all 0.5s 0s ease;
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
}
#members_page .arealink:hover {
  background-color: #fff;
  opacity: 0.3;
}
#members_page .chiiki {
  font-size: 2.4rem !important;
  text-align: center !important;
  margin-bottom: 48px !important;
  letter-spacing: 0.2rem;
  font-weight: normal;
  color: #fff;
}
#members_page .chiiki::after, #members_page .chiiki::before {
  content: none;
}
#members_page .plink {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s 0s ease;
  z-index: 10;
}
#members_page .plink:hover {
  background-color: #fff;
  opacity: 0.3;
}
#members_page .ho-color {
  color: #049aca;
}
#members_page .ho-bccolor {
  background-color: #049aca;
}
#members_page .to-color {
  color: #99b559;
}
#members_page .to-bccolor {
  background-color: #99b559;
}
#members_page .ka-color {
  color: #e09a30;
}
#members_page .ka-bccolor {
  background-color: #e09a30;
}
#members_page .ch-color {
  color: #dac636;
}
#members_page .ch-bccolor {
  background-color: #dac636;
}
#members_page .ki-color {
  color: #8f7b6a;
}
#members_page .ki-bccolor {
  background-color: #8f7b6a;
}
#members_page .cg-color {
  color: #83509c;
}
#members_page .cg-bccolor {
  background-color: #83509c;
}
#members_page .ck-color {
  color: #000;
}
#members_page .ck-bccolor {
  background-color: #000;
}
#members_page .ky-color {
  color: #cb4f87;
}
#members_page .ky-bccolor {
  background-color: #cb4f87;
}
#members_page .preflayout {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  gap: 33px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 1140px) {
  #members_page .preflayout {
    justify-content: center;
  }
}
#members_page .preflayout-c {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 33px;
  width: 90%;
  margin: 0 auto;
}
#members_page .prefbox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  width: 320px;
  height: 215px;
  position: relative;
  padding: 2rem 2rem 7.5rem 2rem;
  margin-bottom: 5rem;
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.3));
}
#members_page .imgbox {
  width: 100%;
  height: 100%;
}
#members_page .imgbox img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
}
#members_page .membersname {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0.1rem;
  color: #fff;
  height: 6rem;
  position: absolute;
  bottom: 0;
  padding: 5px !important;
  margin-bottom: 0 !important;
}
#members_page .pref {
  font-size: 1.4rem;
  position: absolute;
  bottom: -4rem;
}
#members_page .dl_beside {
  display: flex;
  flex-flow: row wrap;
  width: 50rem;
  margin-top: 1rem;
}
#members_page .dl_beside dt {
  width: 18rem;
}
#members_page .dl_beside dd {
  width: 32rem;
}
@media (max-width: 780px) {
  #members_page .ac-item {
    width: 100%;
  }
}
@media (max-width: 768px) {
  #members_page .midashi1 {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
  }
  #members_page .midashi2 {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
  }
  #members_page .dl_beside {
    flex-flow: column;
    width: 100%;
  }
  #members_page .dl_beside dt {
    width: 100%;
  }
  #members_page .dl_beside dd {
    width: 100%;
  }
  #members_page .hokkaido-posi {
    position: absolute;
    top: 0;
    left: 0;
  }
  #members_page .chubu-posi {
    position: absolute;
    top: 0;
    left: 0;
  }
  #members_page .chugoku-posi {
    position: absolute;
    top: 0;
    left: 0;
  }
  #members_page .chukyu-posi {
    position: absolute;
    top: 0;
    left: 0;
  }
  #members_page .kyusyu-posi {
    position: absolute;
    top: 0;
    left: 0;
  }
  #members_page .tohoku-posi {
    position: absolute;
    top: 0;
    left: 0;
  }
  #members_page .kanto-posi {
    position: absolute;
    top: 0;
    left: 0;
  }
  #members_page .kinki-posi {
    position: absolute;
    top: 0;
    left: 0;
  }
  #members_page .map {
    width: 90%;
    margin: 5rem auto;
    flex-flow: column;
    justify-content: space-between;
    position: static;
  }
  #members_page .mapbox {
    width: 100%;
  }
  #members_page .areabox {
    width: 80%;
    margin: 20px auto;
    position: relative !important;
  }
  #members_page .pt-cl td {
    display: inline-block;
    text-align: left;
    width: 50%;
  }
  #members_page .preftext table {
    width: 90%;
  }
  #members_page .preflayout {
    justify-content: center;
  }
  #members_page .chiiki {
    margin-bottom: 0 !important;
  }
  #members_page .members-table th {
    border-bottom: 2px dotted #ccc;
    width: 100%;
    display: block;
    padding-bottom: 0.5rem !important;
  }
  #members_page .members-table td {
    border-bottom: 1px solid #000;
    width: 100%;
    display: block;
    margin-bottom: 20px;
    background-color: #fff;
  }
  #members_page {
    /*マージン・パディングセット*/
  }
  #members_page .mt-200 {
    margin-top: 100px;
  }
  #members_page .mt-150 {
    margin-top: 750px;
  }
  #members_page .mt-100 {
    margin-top: 50px;
  }
  #members_page .mt-50 {
    margin-top: 25px;
  }
  #members_page .mb-200 {
    margin-bottom: 100px;
  }
  #members_page .mb-150 {
    margin-bottom: 75px;
  }
  #members_page .mb-100 {
    margin-bottom: 50px;
  }
  #members_page .mb-50 {
    margin-bottom: 25px;
  }
}/*# sourceMappingURL=content.css.map */