@charset "utf-8";

body {
  color: #182D52;
  font-size: 16px;
  line-height: 1.8;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  /* overflow-x: hidden; */
}

@media (min-width: 960px) {
  .hide-l {
    display: none !important;
  }
}

@media (max-width: 959px) and (min-width: 520px) {
  .hide-m {
    display: none !important;
  }
}

@media (min-width: 520px) {
  .hide-ml {
    display: none !important;
  }
}

@media (max-width: 519px) {
  .hide-s {
    display: none !important;
  }
}

/* .rollover  */
.rollover {
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.rollover:hover {
  opacity: 0.7;
}

/* clearfix */
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}


/* --------------- .wrapper --------------- */
.wrapper {
  max-width: 1240px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
}


/* --------------- .btn --------------- */
.btn {
  position: relative;
  display: inline-block;
  background-color: #DE4C93;
  border-radius: 40px;
  color: #fff;
}

.btn.w {
  background-color: #DE4C93;
  /* box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12); */
  box-shadow: 8px 4px 0 #fff;
  color: #fff;
}

.btn .arr {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 30px;
  vertical-align: middle;
}

.btn.w .arr {
  background-color: #fff;
}


#nav {
  position: fixed;
  z-index: 1000;
  left: 40px;
  top: 30px;
}

#nav .inner {
  position: relative;
  background-color: #fff;
  border-radius: 32px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

#nav .gnavi_btn {}

#nav .gnavi {
  max-width: 0;
  max-height: 0;
  overflow: hidden;
  transition: all ease 0.3s;
  opacity: 0;
}

#nav .gnavi.active {
  max-width: var(--max-width);
  max-height: var(--max-height);
  opacity: 1;
}

#nav .gnavi ul {
  padding: 15px 15px 30px;
}

#nav .gnavi li:not(:first-child) {
  margin-top: 15px;
}

#nav .gnavi a {
  display: block;
  padding-right: 80px;
  color: #3B55A4;
  font-size: 18px;
  font-weight: bold;
  word-break: keep-all;
}

#nav .gnavi a:hover {
  text-decoration: underline;
}

#nav .deco {
  position: absolute;
  left: 0px;
  bottom: -30px;
  pointer-events: none;
}

@media (max-width: 519px) {
  #nav {
    left: 13px;
    top: 23px;
  }

  #nav .inner {}

  #nav .deco {
    left: -10px;
    bottom: -27px;
    width: 58px;
  }
}

/* gnavi_btn */
.gnavi_btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 20px 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.gnavi_btn.open {}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.menu-trigger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 34px;
  height: 24px;
}

.menu-trigger span {
  position: relative;
  width: 100%;
  height: 1px;
  background-color: #3B55A4;
}

.gnavi_btn .menu-trigger span:nth-of-type(1) {
  top: 0%;
}

.gnavi_btn .menu-trigger span:nth-of-type(3) {
  bottom: 0%;
}

.gnavi_btn.open .menu-trigger span:nth-of-type(1) {
  top: 50%;
  transform-origin: center;
  transform: translateY(-50%) rotate(-45deg);
}

.gnavi_btn.open .menu-trigger span:nth-of-type(2) {
  opacity: 0;
}

.gnavi_btn.open .menu-trigger span:nth-of-type(3) {
  bottom: 50%;
  transform-origin: center;
  transform: translateY(50%) rotate(45deg);
}

@media (max-width: 519px) {
  .menu-trigger {
    width: 26px;
    height: 18px;
  }
}



#header {
  position: absolute;
  z-index: 900;
  left: 0;
  top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding-left: 125px;
  padding-right: 20px;
}

#header > div {
  padding: 10px;
  border-radius: 10px;
}

#header .left {
  margin-top: 4px;
  background-color: #FFF;
  border-radius: 30px;
  padding: 10px 20px;
  max-width: 70%;
}

#header .left img {
  max-width: 100%;
  vertical-align: middle;
}

#header .right {
  background-color: transparent;
}

body.scrolled #header .right {
  background-color: #3B55A4;
}

@media (max-width: 1499px) {}

@media (max-width: 519px) {
  #header {
    /* display: block; */
    padding-left: 75px;
    top: 25px;
  }

  #header .left {
    /* display: none; */
  }

  #header .right {
    width: fit-content;
  }

  #header .right img {
    width: 68px;
  }
}



#app_top {
  position: fixed;
  z-index: 1000;
  right: 40px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#app_top a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  transition: all ease 0.3s;
}

#app_top a:hover {
  /*  background-color: #0F3568DE;*/
}

@media (max-width: 519px) {
  #app_top {
    left: 0;
    right: 0;
    bottom: 20px;
    padding: 0 20px;
  }

  #app_top a {
    display: inline-flex;
    width: auto;
  }
}

/* .app */
#app_top .app {
  position: relative;
  padding: 30px 0;
  font-size: 15px;
  letter-spacing: 3px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

#app_top .app span {
  margin-top: 10px;
  background-image: url(../img/arr_ico.png);
  background-repeat: no-repeat;
  background-size: contain;
}

#app_top .app img {
  position: absolute;
  right: -35px;
  bottom: -25px;
}

@media (max-width: 519px) {
  #app_top .app {
    width: 100%;
    max-width: 340px;
    min-width: 280px;
    padding: 20px;
    /*    font-size: 15px;*/
    letter-spacing: 1px;
    -ms-writing-mode: initial;
    writing-mode: initial;
  }

  #app_top .app span {
    margin-top: 0;
    margin-left: 10px;
    background-image: url(../img/arr_ico_sp.png);
  }

  #app_top .app img {
    right: calc(50% - 170px);
  }
}

/* .top */
#app_top .top {
  position: relative;
  top: 0;
  margin-top: 10px;
  height: 70px;
  border: 1px solid #fff;
  font-size: 12px;
  transition: all ease 0.3s;
  background-color: #DE4C93;
  box-shadow: 8px 4px 0 #fff;
}

#app_top .top.disable {
  top: 120px;
}

@media (max-width: 519px) {}


h2 {
  text-align: center;
}

h2 img {
  max-width: 100%;
}

#fv {
  background-image: url("../img/fv_bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 60px 0;
  text-align: center;
}

#fv img {
  max-width: 100%;
}

@media (max-width: 1499px) {
  #fv {}

  #fv img {}
}

@media (max-width: 1399px) {
  #fv h1 {
    margin-top: 30px;
  }
}

@media (max-width: 519px) {
  #fv h1 {
    margin-top: 60px;
  }

  #fv img {
    max-height: 491px;
  }
}


#lead {
  position: relative;
  overflow-x: clip;
  overflow-y: inherit;
}

#lead .img {
  margin: auto;
  position: relative;
  max-width: 1800px;
}

#lead .img .left {
  position: absolute;
  top: 0;
  left: 0;
}

#lead .img .right {
  position: absolute;
  top: 0;
  right: -90px;
  text-align: right;
}

#lead .img img {}

#lead .content {
  padding: 110px 4% 180px 4%;
  text-align: center;
}

#lead h2 img {
  max-width: 100%;
}

#lead p {
  margin-top: 30px;
  font-size: 18px;
}

#lead .sp img {
  max-width: 100%;
  max-height: 231px;
  padding-top: 27px;
}

@media (max-width: 1499px) {
  #lead {}

  #lead .img {}

  #lead .img img {}

  #lead .content {}
}

@media (max-width: 1199px) {
  #lead .content {}
}

@media (min-width: 1000px) {
  #lead {
    position: relative;
  }

  #lead .sp {
    display: none;
  }
}

@media (max-width: 999px) {
  #lead {
    overflow: hidden;
  }

  #lead .img img {
    max-width: 50%;
  }

  #lead .img .left {
    left: -50px;
  }

  #lead .img .right {
    right: -30px;
  }
}

@media (max-width: 519px) {
  #lead h2 img {
    max-height: 103px;
  }

  #lead .content {
    padding: 70px 4% 40px 4%;
  }

  #lead p {
    font-size: 15px;
  }
}


#talkevent {
  background: #F0EDE9;
  padding: 80px 80px;
}

#talkevent .list {
  margin: auto;
  max-width: 1200px;
}

#talkevent .list .top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#talkevent .list a img {
  margin-top: 30px;
}

#talkevent .other {
  margin-top: 36px;
  text-align: center;
}

@media (max-width: 999px) {

  #talkevent .list .top > div,
  #talkevent .list .bottom > div {
    max-width: 48%;
  }

  #talkevent .list a,
  #talkevent .list a img {
    max-width: 100%;
  }
}

@media (max-width: 519px) {
  #talkevent {
    padding: 40px 4%;
  }

  #talkevent .list {
    padding-top: 20px;
  }

  #talkevent h2 img {
    max-height: 193px;
  }

  #talkevent .list .top {
    /* justify-content: center; */
  }

  #talkevent .list .bottom {
    /* justify-content: center; */
  }

  #talkevent .list a img {
    width: 100%;
    margin-top: 10px;
  }

  #talkevent .other img {
    max-height: 54px;
    max-width: 100%;
  }
}


#eventdetails {
  padding: 80px 0;
  background: #3B55A4;
}

#eventdetails .wrapper {
  max-width: 1200px;
}

#eventdetails .box {
  max-width: 1200px;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 30px 40px;
  margin-top: 50px;
/*  flex-direction: row-reverse;*/
}

#eventdetails .box .text img {
  max-width: 100%;
}

#eventdetails .box:nth-child(2n) {
  /* flex-direction: row-reverse; */
}

#eventdetails .box .text {
   margin-left: 60px; 
   margin-right: 0; 
/*  margin-left: 0;*/
/*  margin-right: 60px;*/
}

#eventdetails .box:nth-child(2n) .text {
  /* margin-left: 0; */
  /* margin-right: 60px; */
}

#eventdetails .box .text .pc + p {
  margin-top: 15px;
}
#eventdetails .box .text .pc + p a {
  text-decoration: underline;
}
@media (max-width: 999px) {
  #eventdetails .box .text .pc + p {
    margin-top: 0;
  }
}

#eventdetails .box .profile {
  display: block;
/*  align-items: center;*/
  font-size: 15px;
  margin-top: 20px;
}

#eventdetails .box .profile .job {
  display: inline-block;
  border: 1px solid #182D52;
  border-radius: 64px;
  padding: 6px 40px;
  font-size: 15px;
}

#eventdetails .box .profile .name {
  font-size: 24px;
/*  margin-left: 1em;*/
}

#eventdetails .box .profile + p {
  font-size: 15px;
}

#eventdetails .box .link {
  margin-top: 14px;
}

#eventdetails .sp {
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}

#eventdetails .box {
  background-repeat: no-repeat;
  /* background-size: contain; */
  background-position: top 8px right;
}

#eventdetails .sp img {
  max-width: 80%;
  padding-top: 30px;
  /* padding-bottom: 20px; */
}

#akane .sp img {
  width: 53%;
  /* max-height: 45px; */
}

#erita .sp img {
  width: 43%;
  /* max-height: 45px; */
}

#kantere .sp img {
  width: 68%;
  /* max-height: 44px; */
}

#sakura .sp img {
  width: 71%;
  /* max-height: 45px; */
}

#shimizu .sp img {
  width: 51%;
  /* max-height: 45px; */
}

#nishimura .sp img {
  width: 72%;
  /* max-height: 45px; */
}

#nora .sp img {
  width: 43%;
  /* max-height: 72px; */
}

@media (min-width: 1000px) {
  #eventdetails .sp {
    display: none;
  }
}

@media (max-width: 999px) {
  #eventdetails .pc {
    display: none;
  }

  #eventdetails .box,
  #eventdetails .box:nth-child(2n) {
    flex-direction: column;
  }

  #eventdetails .box {
    padding-top: 8px;
    padding-left: 2%;
    padding-right: 2%;
  }

  #eventdetails .box .text,
  #eventdetails .box:nth-child(2n) .text {
    margin-top: 30px;
    margin-left: 0;
    margin-right: 0;
  }

  #eventdetails .box .profile {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 20px auto;
  }

  #eventdetails .box .link {
    text-align: center;
  }
}

@media (max-width: 519px) {
  #eventdetails h2 img {
    max-height: 84px;
  }

  #eventdetails .box {
    margin-top: 20px;
    font-size: 16px;
    font-weight: bold;
  }

  #eventdetails .box .img img {
    max-width: 100%;
    max-height: 220px;
  }

  #eventdetails .box .link img {
    max-height: 54px;
  }

  #eventdetails .box .profile + p {
    font-size: 13px;
  }

  #eventdetails .box .profile .job {
    font-size: 13px;
  }

  #eventdetails .box .profile .name {
    font-size: 17px;
    margin-top: 10px;
  }
}

#seminar {
  padding: 80px 40px;
  background: #FFF2F8;
}

#seminar .items {
  display: flex;
  justify-content: space-between;
  margin: auto;
  max-width: 1200px;
}

#seminar .item,
#seminar .item img {
  max-width: 100%;
}

#seminar .item:nth-child(2) img {
  margin-top: 80px;
}

@media (max-width: 519px) {
  #seminar {
    padding: 60px 2%;
  }

  #seminar h2 img {
    max-height: 84px;
  }

  #seminar .items {
    flex-direction: column;
    align-items: center;
  }

  #seminar .item img,
  #seminar .item:nth-child(2) img {
    margin-top: 20px;
  }

  #seminar .item:nth-child(1) img {
    max-height: 558px;
  }

  #seminar .item:nth-child(2) img {
    max-height: 628px;
  }

  #seminar .item:nth-child(3) img {
    max-height: 610px;
  }
}

#contact {
  padding: 80px 20px 10px 80px;
}

#contact > .wrapper {
  padding: 40px 90px;
  border-radius: 20px;
  background: #F2F2F2;
}

#contact .detail {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#contact .info {
  margin-top: 40px;
  margin-bottom: 60px;
}

#contact .info th {
  text-align: center;
  vertical-align: middle;
  padding: 4px 30px 4px 0;
}

#contact .info th span {
  display: block;
  border-radius: 50px;
  background: #FFF;
  padding: 10px 30px;
}

#contact .info td {
  vertical-align: middle;
  font-size: 18px;
  line-height: 1.25;
}

#contact .info td small {
  font-size: 14px;
}

#contact .access {
  display: flex;
}

#contact .map iframe {
  max-width: 100%;
}

#contact .train {
  margin-left: 50px;
  font-size: 15px;
}

#contact .train img {
  max-width: 100%;
}

#contact .train table {
  margin-top: 30px;
}

#contact .train table tr {
  border-bottom: 1px dotted #000;
}

#contact .train table td:first-child {
  padding-right: 18px;
}

@media (min-width: 1000px) {
  #contact .train table td {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  #contact .info .sp {
    display: none;
  }
}

@media (max-width: 999px) {
  #contact > .wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }

  #contact .access {
    flex-direction: column;
    align-items: center;
  }

  #contact .train {
    margin-top: 30px;
    margin-left: 0;
  }

  #contact .ttl {
    text-align: center;
  }

  #contact .train table,
  #contact .train table tr,
  #contact .train table td {
    display: block;
  }

  #contact .train table td {
    font-size: 14px;
  }

  #contact .train table td + td {
    text-align: right;
  }

  #contact .train table td:first-child {
    padding-right: 0;
  }

  #contact .train tr + tr {
    margin-top: 10px;
  }
}

@media (max-width: 519px) {
  #contact {
    padding-left: 2%;
    padding-right: 2%;
    padding-bottom: 80px;
  }

  #contact h2 img {
    max-height: 84px;
  }

  #contact .ttl img {
    max-height: 63px;
  }

  #contact > .wrapper {
    padding-left: 2%;
    padding-right: 2%;
  }

  #contact .info th {
    font-size: 13px;
    padding-right: 20px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  #contact .info td {
    font-size: 14px;
  }

  #contact .info td small {
    font-size: 12px;
  }

  #contact .info th span {
    padding: 8px 16px;
  }
}

#footer {
  padding: 16px 0;
}

#footer .copy {
  font-size: 11px;
  text-align: center;
}

@media (max-width: 519px) {
  #footer {
    padding-bottom: 2px;
  }

  #footer .copy {
    font-size: 10px;
  }
}

.more-check {
  display: none;
}

.more-label {
  color: #DE4C93;
  border-bottom: 1px solid #DE4C93;
  margin: auto;
  display: block;
  width: fit-content;
  margin-bottom: 4px;
}

.more-label .arrow {
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 1px solid #DE4C93;
  border-radius: 50%;
  margin-left: 4px;
  text-align: center;
  vertical-align: middle;
}

.more-label .arrow:after {
  content: '';
  display: block;
  margin-top: 2px;
  margin-left: 3px;
  width: 4px;
  height: 4px;
  border-top: 1px solid #DE4C93;
  border-right: 1px solid #DE4C93;
  -moz-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.more-check:checked + .more-label .arrow:after {
  margin-top: 4px;
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.more-check + .more-label + p {
  display: none;
  font-size: 15px;
}

.more-check:checked + .more-label + p {
  display: block;
}


@media (max-width: 519px) {
  .more-check + .more-label + p {
    font-size: 13px;
  }
}
