@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}
body {
  margin: 0;
  padding: 0;
  font-family: "游ゴシック", "Yu Gothic", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  font-size: 14px;
  color: #282828;
  overflow-x: hidden;
  text-align: left;
  font-weight: 500;
}
:root {
--main-bg-color: #004098;
--sub-bg-color: #DCEBFB;
--main-border-color: #004098;
--sub-border-color: #DCEBFB;
--main-button-bg-color: #004098;
--sub-color2: #004098;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
@media (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
a,
a:visited {
  color: #282828;
}
a:hover {
  color: #d64f49;
  text-decoration: none;
}
header.rHeader {
  position: relative !important;
  /* background-image: url(../images/mainvisual.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; */
  width: 100%;
  /* padding-top: 50.7142857143%; */
  z-index: 3;
}
header.rHeader .main-visual {
  width: 100%;
  aspect-ratio: 1400 / 710;
}
@media (max-width: 768px) {
  header.rHeader .main-visual {
    aspect-ratio: 780 / 700;
    position: relative;
    top: 46px;
  }
}
.main-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
nav#rnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding: 0 35px;
  margin: 20px 25px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 35px;
  z-index: 1000;
}
nav#rnav h1 img {
  width: 153px;
  height: 43px;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}
.nav-menu ul {
  display: flex;
  gap: 30px;
}
@media (max-width: 1239px) {
  .nav-menu ul {
    display: block;
  }
}
.nav-menu li a {
  text-decoration: none;
  color: #282828;
  font-weight: bold;
}
.nav-menu li a:hover {
  color: #d64f49;
  text-decoration: none;
}
.nav-menu li img {
  vertical-align: middle;
  margin-right: 5px;
  display: inline;
}
.nav-menu ul {
  font-size: 0.8em;
  margin-top: 0.2em;
}
.nav-menu ul.mainList {
  border-right: 1px solid #959595;
  padding-right: 15px;
  font-size: 1em;
  margin-top: 0;
}
@media (max-width: 1239px) {
  .nav-menu {
    gap: 0;
  }
  .nav-menu ul:first-child {
    border: none;
  }
  .nav-menu ul {
    font-size: 1em;
    margin-top: 0;
  }
  .nav-menu li {
    padding: 9px 0;
  }
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    display: block;
    transition: 0.3s;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.no-scroll {
  overflow: hidden;
  height: 100%;
}
@media (max-width: 1239px) {
  #VcArea-header.rHeader {
    position: relative;
  }
  nav#rnav {
    height: 30px;
    padding: 8px;
    padding-left: 2.5%;
    padding-right: 2.5%;
    width: 95%;
    margin: 0 auto;
    position: fixed;
    border-radius: 0;
    background-color: #fff;
  }
  nav#rnav h1 img {
    width: auto;
    height: 30px;
    vertical-align: middle;
  }
    .hamburger {
        display: flex;
    }
    .hamburger.active {
      position: fixed;
      top: 30px;
      right: 30px;
      display: flex !important;
      gap: 4px;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 40px;
        background: #fff;
        padding: 20px;
        z-index: 1000;
        left: 50%;
        width: calc(100vw - 40px);
        margin-left: -50vw;
    }

    .nav-menu.active {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        margin: 10px;
        padding: 40px 20px 20px;
        width: calc(100% - 60px);
        border-radius: 20px;
    }
    .nav-menu.active h1.sp {
      text-align: left;
    }
    .nav-menu.active h1.sp img {
      display: inline;
    }
    .nav-menu ul.mainList {
      border-right: none;
      padding-right: 0;
    }
    .nav-menu li {
      border-bottom: 1px solid #1d6ebe;
      padding-bottom: 9px;
    }
}

main {
  width: 1240px;
  margin: 0 auto;
}
section.about,
section.event,
section.news {
  width: 1240px;
  margin: 0 auto;
}
.partsWrap01 {
    padding-top: 110px;
}
@media screen and (max-width: 768px) {
    .partsWrap01 {
        padding-top: 0px;
    }
    #wrap {
        padding: 46px 0 0 0;
    }
}
.contIn1170 {
    max-width: 1240px;
    width: auto;
    margin: 0px auto;
    position: relative;
}
@media (min-width:769px) and (max-width: 1239px) {
  section.about,
  section.event,
  section.news {
    width: 95%;
    margin: 0 auto;
  }
}
.textCenter {
  text-align: center;
  width: 100%;
}
section.about {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  background-image: url(../images/about_bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0;
  padding-bottom: 0;
  /* min-height: 490px; */
  /* margin-bottom: 145px; */
  margin-bottom: 0;
}
@media (max-width: 768px) {
  section.about {
    background-image: url(../images/about_bg_sp.png);
    top: 0;
    left: 0;
    margin-left: 0;
    max-width: 100%;
    margin-bottom: 0;
    padding-bottom: 0;
    min-height: auto;
  }
}
@media (min-width:769px) and (max-width: 1239px) {
  section.about {
    background-image: url(../images/about_bg_sp.png);
    top: 0;
    /* right: 50%;
    left: 0;
    margin-right: -50vw;
    margin-left: 0; */
    margin-bottom: 0;
    padding-bottom: 0;
    min-height: auto;
  }
}
.inner {
  max-width: 1240px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  main, section.about, section.event, section.news, .inner {
    width: 95%;
    margin: 0 auto;
    /* z-index: -1; */
  }
}
@media (min-width:769px) and (max-width: 1239px) {
  .inner,
  #wrap {
    width: 95%;
    margin: 0 auto;
  }
}
/* .about .inner {
  display: flex;
  position: static;
} */

.about-img {
  position: absolute;
  top: 110px;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  z-index: 0;
  pointer-events: none;
}
.about-img img {
    width: 50vw;
    margin-left: 0;
    max-width: 800px;
}
.about .inner > p img {
  width: 50vw;
  height: auto;
  display: block;
  margin: 0 auto 0 0;
}
.about .inner {
  margin-bottom: 150px;
  padding-bottom: 90px;
}
/* .about .inner > div {
  margin-left: 40vw;
  margin-top: 50px;
  padding-left: 110px;
  width: 530px;
} */
 .about .inner > div {
  margin-left: auto;
  padding-left: 40px;
  width: 550px;
  margin-top: 30px;
}
@media (min-width:769px) and (max-width: 1239px) {
  main {
    width: 95%;
    max-width: 95%;
    margin: 0 auto;
  }
  .about .inner {
    width: 95%;
    max-width: 95%;
    margin: 0 auto;
  }
  .about .inner > div {
    width: 40vw;
  }
}
@media (max-width: 768px) {
  section.about {
    background-image: none;
  }
  .about .inner {
    display: block;
    padding-bottom: 60px;
    margin-bottom: 0;
    width: 100%;
  }
  .about .inner > p {
    position: relative;
    width: 95%;
    margin: 0 auto;
  }
  .about .inner > p img,
  .about .inner > div {
    width: 95%;
    margin: 0 auto;
  }
  .about .inner > div {
    padding-left: 0;
  }
  .about-img {
    position: relative;
    top: 0;
    left: 0;
    margin-left: 0;
    max-width: 100%;
  }
  .about-img img {
    width: 100%;
  }
  .about .inner > div {
    position: relative;
  }
}
#VcArea-MainColum .about .inner > div h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  font-size: 40px;
  margin-bottom: 60px;
  padding-left: 0;
  text-align: left;
}
.about .inner > div h2 span {
  font-family: "游ゴシック", "Yu Gothic", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  font-size: 14px;
  display: block;
  font-weight: normal;
}
.about .inner > div h2 span::before {
  content: "●";
  color: #e84242;
  margin-right: 0.5em;
}




@media (max-width: 768px) {
  #VcArea-MainColum .about .inner > div h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    font-size: 32px;
    margin-bottom: 30px;
    text-align: left;
    padding-left: 0;
  }
}
#VcArea-MainColum h2.topH2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  font-size: 43px;
  padding-left: 0;
}
@media (max-width: 768px) {
  #VcArea-MainColum h2.topH2 {
    font-size: 32px;
    padding-left: 0;
    margin-bottom: 10px;
  }
}
#VcArea-MainColum h2.topH2 span {
  font-family: "游ゴシック", "Yu Gothic", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  font-size: 16px;
  line-height: 20px;
  display: block;
  font-weight: bold;
  line-height: 1.4em;
}
h2.topH2 span::before {
  content: "●";
  color: #e84242;
  margin-right: 0.5em;
}
.about .inner > div p.aboutText {
  margin-bottom: 50px;
  text-align: left;
}
.btn01 {
  width: 260px;
  height: 54px;
  line-height: 54px;
  background-color: #2d70ca;
  background-image: url(../images/btn_arrow_2x.png);
  background-size: 36px 36px;
  background-repeat: no-repeat;
  background-position: 210px 9px;
  color: #fff;
  text-align: center;
  border-radius: 27px;
  position: relative;
}
@media (max-width: 768px) {
  .btn01 {
    margin: 0 auto;
  }
}
.btn01 a {
  color: #fff;
  text-decoration: none;
}
.btn01 a::before{
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top:0;
  left:0;
}
.btn02 {
  width: 260px;
  height: 54px;
  line-height: 54px;
  background-color: #fff;
  background-image: url(../images/btn_arrow_02_2x.png);
  background-size: 36px 36px;
  background-repeat: no-repeat;
  background-position: 210px 9px;
  color: #282828;
  text-align: center;
  border-radius: 27px;
  position: relative;
}
.btn02 a {
  color: #282828;
  text-decoration: none;
}
.btn02 a::before{
content: '';
display: block;
width: 100%;
height: 100%;
position: absolute;
top:0;
left:0;
}
.btn02-2 {
  width: 260px;
  height: 54px;
  line-height: 54px;
  background-color: #fff;
  background-image: url(../images/btn_arrow_02_2x.png);
  background-size: 36px 36px;
  background-repeat: no-repeat;
  background-position: 160px 9px;
  color: #282828;
  text-align: left;
  border-radius: 27px;
  position: relative;
}
.btn02-2 a {
  color: #282828;
  text-decoration: none;
}
.btn02-2 a::before{
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top:0;
  left:0;
}
@media (max-width: 768px) {
  .btn02-2 {
    margin: 0 auto;
    width: 200px;
  }
}
.topBg01 {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  background-image: url(../images/event_news_bg.png);
  background-size: cover;
  background-position: center 0px;
  background-repeat: no-repeat;
  padding: 60px 0;
  background-attachment: local;
  /* min-height: 1517px; */
}
@media (min-width:769px) and (max-width: 1239px) {
  .topBg01 {
    /* padding: 0 0 60px 0; */
  }
}
.eventListPart01 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.eventListPart01 .photo {
  position: relative;
}
.eventListPart01 .photo p {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 8px 11px;
  background: #e84242;
  color: #fff;
  font-size: 14px;
  z-index: 2;
}
.eventListPart01 .photo img {
  position: relative;
  margin-bottom: 10px;
}
.eventListPart01 > div {
  width: 350px;
  border-radius: 5px;
  padding: 26px 20px;
  background-color: #fff;
}
@media (min-width:769px) and (max-width: 1239px) {
  .eventListPart01 > div {
    width: 27%;
  }
}
@media (max-width: 768px) {
  .eventListPart01 > div {
    width: 100%;
    margin-bottom: 25px;
  }
}
.eventListPart01 .photo p {
  position: absolute;
  top: 0;
  left: 0;
}
.eventListPart01 .place span {
  display: inline-block;
  color: #2d70ca;
  border: 1px solid #2d70ca;
  border-radius: 15px;
  line-height: 22px;
  padding: 3px 12px;
  margin-right: 10px;
  white-space: nowrap;
  margin-bottom: 8px;
  font-size: 0.7em;
}
.eventListPart01 .date {
  margin-bottom: 20px;
}
.eventListPart01 .place {
  margin-block-end: 0;
}
.eventListPart01 .tag span {
  display: inline-block;
  line-height: 24px;
  background-color: #dedede;
  padding: 3px 8px;
  margin-right: 10px;
  white-space: nowrap;
  margin-bottom: 10px;
  font-size: 0.7em;
}
.eventListPart01 .tag {
  margin-block-end: 0;
}
.eventListPart01 h3 {
  font-size: 20px;
  font-weight: bold;;
}
@media (max-width: 768px) {
  .eventListPart01 h3 {
    font-size: 16px;
  }
  .eventListPart01 .place,
  .eventListPart01 .tag {
    margin-block-end: 0;
  }
}
.event .btn01 {
  margin: 60px auto 130px;
}
@media (max-width: 768px) {
  .event .btn01 {
    margin: 40px auto 60px;
  }
  .event img {
    width: 100%;
    height: auto;
  }
}
.news {
  margin-bottom: 140px;
}
@media (max-width: 768px) {
  .news {
    margin-bottom: 0;
  }
}
.news .inner {
  background-color: #fff;
  box-shadow: 0px 0px 10px 0px #f7f7f7;
  padding: 65px 80px;
  border-radius: 5px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
@media (min-width:769px) and (max-width: 1239px) {
  .news .inner {
    padding: 30px;
    width: calc(100% - 60px);
  }
}
.topNewsTitle {
  width: 365px;
}
@media (max-width: 768px) {
  .news .inner {
    padding: 30px;
    width: auto;
    position: relative;
    z-index: 100;
  }
  .topNewsTitle {
    width: 100%;
  }
}
.topNewsTitle .btn02-2 {
  /* margin-top: 80px; */
  position: absolute;
  bottom: 65px;
}
.topNewsList {
  width: calc(100% - 365px);
  font-size: 0.9em;
  min-height: 160px;
}
@media (max-width: 768px) {
  .topNewsList {
    min-height: auto;
  }
}
@media (min-width:769px) and (max-width: 1239px) {
  .topNewsTitle {
    width: 30%;
  }
  .topNewsList {
    font-size: 0.8em;
    width: 70%;
    min-height: 282px;
  }
  .btn02-2 {
    width: 25%;
    font-size: 0.8em;
    background-position: 110px 9px;
  }
}
.topNewsList dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.topNewsList dt {
  width: 41%;
  padding: 35px 0;
  border-bottom: 1px solid #c5c5c5;
  font-size: 14px;
}
.topNewsList dd {
  width: 59%;
  padding: 35px 0;
  border-bottom: 1px solid #c5c5c5;
  font-weight: bold;
  font-size: 16px;
}
.topNewsList dd a {
  text-decoration: none;
}
@media (max-width: 768px) {
  .topNewsTitle,
  .topNewsList,
  .topNewsList dt,
  .topNewsList dd {
    width: 100%;
    padding: 0 0 15px;
  }
  .topNewsList dt {
    border: none;
    padding: 15px 0 5px;
  }
}
@media (min-width:769px) and (max-width: 900px) {
  .topNewsList dt,
  .topNewsList dd {
    width: 100%;
    padding: 10px 0;
  }
  .topNewsList dt {
    border: none;
  }
}
.topNewsList dl dt span {
  width: 87px;
  height: 24px;
  background-color: #b2cff0;
  border-radius: 14px;
  margin-left: 29px;
  margin-right: 25px;
  padding: 6px 15px;
  font-weight: bold;
  word-break: keep-all;
  font-size: 13px;
}
.topSpecialMember {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  background-image: url(../images/top_special_bg.png);
  background-size: cover;
  background-position: center 0px;
  background-repeat: no-repeat;
  padding: 90px 0 30px;
  z-index: 1;
}
.topSpecialMember h2,
.topSpecialMember > .inner > p {
  margin-bottom: 60px;
}
.topSmArea p {
  font-size: 15px;
  margin-bottom: 20px;
}
.topSpecialMember .btn02 {
  margin: 60px auto;
}
@media (max-width: 768px) {
  .topSpecialMember .btn02 {
    margin: 0 auto;
  }
}
.topSpecialMember .inner > h2,
.topSpecialMember .inner > p {
  color: #fff;
}
.topSmArea {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.topSmArea div {
  width: 510px;
  padding: 45px;
  background-color: #e9f1f9;
  margin-bottom: 45px;
  border-radius: 5px;
}
@media (min-width:769px) and (max-width: 1239px) {
  .topSmArea div {
    width: 37%;
  }
}
@media (max-width: 768px) {
  .topSmArea div {
    width: 100%;
    padding: 45px 25px;
  }
}
.topSmArea h3 {
  position: relative;
  font-size: 26px;
  padding-left: 2em;
  top: -15px;
  font-weight: bold;
}
.topSmArea h3 span {
  position: absolute;
  top: -30px;
  left: -18px;
  color: #1d71bf;
  font-size: 48px;
}
.topSmArea h3 span::after{
  content: " ";
  display: inline-block;
  width: 80px;
  height:2px;
  background: #1d71bf;
  transform: rotate(-45deg);
  position: relative;
  top: 0px;
  left: -30px;
}
@media (max-width: 768px) {
  .topSmArea h3 {
    font-size: 24px;
  }
  .topSmArea img {
    width: 100%;
    height: auto;
  }
}
.commonContact {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  background-image: url(../images/top_contact_bg.png);
  background-size: cover;
  background-position: center 0px;
  background-repeat: no-repeat;
  background-attachment: local;
  /* padding: 60px 0; */
  /* min-height: 1517px; */
  /* margin-top: 60px; */
  /* margin-bottom: 30px; */
  padding: 0;
  z-index: 1;
}
.commonContact .inner {
  padding: 135px 0 130px;
  max-width: 1080px;
}
@media (max-width: 768px) {
  .commonContact .inner {
    padding: 65px 0 60px;
  }
}
.commonContact h2.topH2 {
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .commonContact {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.commonContact h2 {
  margin-bottom: 60px;
}
.commonContact p {
  width: 335px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  background-color: #fff;
  border: 2px solid #2d70ca;
  border-radius: 5px;
  position: relative;
}
.commonContact p img {
    position: relative;
    top: 5px;
    margin-right: 20px;
    display: inline;
}
.commonContact p a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
}
.commonContact p a::before{
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top:0;
  left:0;
}
@media (max-width: 768px) {
  h2, h3 {
    font-size: 0.8em;
  }
  .commonContact p {
    width: 100%;
  }
}
@media (min-width:769px) and (max-width: 1239px) {
  .commonContact p {
    width: 32%;
  }
}
.commonContactArea {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
footer#VcArea-Footer {
  background-color: #f8f8f8;
  padding-top: 70px;
  padding-bottom: 25px;
}
footer .inner {
  width: 1340px;
  max-width: 1340px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  footer .inner {
    width: 100%;
  }
}
.footerArea {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 50%;
}
.footerArea ul li {
  list-style-type: none;
  margin-bottom: 0.7em;
}
.footerArea ul li a {
  text-decoration: none;
  font-weight: bold;
}
footer img.footerLogo {
  width: 189px;
  height: 53px;
}
footer img {
  width: 189px !important;
  height: 53px !important;
}
footer p {
  text-align: right;
  font-weight: bold;
  margin-top: 35px;
}
@media (max-width: 768px) {
  footer#VcArea-Footer {
    padding-top: 0;
    padding-top: 25px;
    padding-bottom: 25px;
  }
  footer .inner {
    width: 95%;
    margin: 0 auto;
  }
  .footerArea {
    display: block;
    width: 100%;
  }
  footer img {
    margin-bottom: 25px;
  }
}
@media (min-width:769px) and (max-width: 1239px) {
  footer .inner {
    width: 95%;
    margin: 0 auto;
  }
  .footerArea {
    width: 70%;
  }
  .footerArea ul {
    width: 33%;
  }
  .footerArea img {
    width: 100px;
    height: 28px;
  }
}
#toTopBtn {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 9999;
}
#toTopBtn.pc {
  display: block !important;
}
.pagetopButton {
  display: none;
  position: fixed;
  bottom: 80px;
  right: 30px;
  z-index: 999;
}
.pagetop {
  position: fixed;
  border: none;
  right: 10px;
  bottom: 10px;
  z-index: 9999;
  height: 63px;
  width: 63px;
}
.pagetop__arrow {
  height: 63px;
  width: 63px;
  background-image: url(../images/to_top_icon_2x.png);
  background-size: 63px 63px;
  border-top: none;
  border-right: none;
  transform: none;
}
#vcbody-wrapper .event .inner::before {
  content: "イベント領域↓";
  color: #B22;
  font-size: 18px;
  font-weight: bold;
}
#vcbody-wrapper nav#rnav {
  position: relative;
  z-index: 1;
}