@charset "utf-8";
* {
  -webkit-font-smoothing: antialiased;
}
html {
  overflow-x: hidden;
}
a {
  transition: all 0.3s;
}
a:hover {
  opacity: 0.7;
}
img {
  -webkit-backface-visibility: hidden;
  width: 100%;
  object-fit: contain;
}
.futura {
  font-family: "futura-pt", sans-serif;
}
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: #ffffff;
  text-align: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 200px auto;
}
/* Loadingバー中央配置　*/
#splash_text {
  position: absolute;
  top: 0%;
  left: 50%;
  z-index: 999;
  width: 100%;
  transform: translate(-50%, -50%);
}
/*IE11対策用バーの線の高さ※対応しなければ削除してください*/
#splash_text svg {
  height: 5px;
}
@media screen and (max-width: 519px) {
  #splash {
    background-size: 160px auto;
  }
}
/* hide */
.js-hide {
  opacity: 0;
  transition: all 0.5s ease;
}
.hide_frombottom {
  transform: translate(0, 100px);
}
.hide_fromtop {
  transform: translate(0, -100px);
}
.hide_fromright {
  transform: translate(100px, 0);
}
.hide_fromleft {
  transform: translate(-100px, 0);
}
.js-fade {
  opacity: 1;
  transform: translate(0, 0px);
}
@media only screen and (min-width: 768px) {
  .pc {
    display: block;
  }
  .sp {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block;
  }
}
header {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  background: #fff;
  padding: 16px 20px;
  z-index: 100;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}
.header_inner {
  display: flex;
  justify-content: space-between;
  width: calc(100% - 40px);
}
.header_left a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 19.531vw;
}
.header_right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 20px;
}
.header_right ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header_right ul li {
  margin-left: 2.344vw;
	margin-left: 1.344vw;
}
@media (min-width: 1280px) {
.header_right ul li {
  margin-left: 2.344vw;
}
}
.header_right ul li a {
  font-size: 1.25vw;
  font-weight: 600;
  text-decoration: underline;
}

@media (min-width: 1280px) {
  .header_right ul li a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 768px) {
  header {
    padding: 0;
    width: 100vw;
  }
  .header_inner {
    align-items: center;
    width: 100%;
    padding: 14.11px 16px 14.11px 0px;
  }
  .header_left {
    margin-left: 15px;
    width: 100%;
    padding-right: 120px;
  }
  .header_left a {
    max-width: 194px;
    width: 100%;
  }
  .header_right {
    padding-right: 0;
  }
  .header_menu_icon {
    background: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 50px;
    height: 50px;
  }
  .header_menu_icon span {
    width: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 6px;
  }
  .header_menu_icon p {
    color: #fff;
    font-size: 11px;
    line-height: 100%;
    margin-bottom: -2px;
  }
  #sp_menu {
    opacity: 0;
    z-index: -1;
    transition: all 0.3s;
    display: flex;
    position: relative;
    width: 100%;
    height: 100vh;
    position: fixed;
    align-items: center;
    justify-content: center;
  }
  #sp_menu.active {
    z-index: 200;
    opacity: 1;
  }
  .sp_bg {
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    width: 100vw;
    height: 100vh;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: -1;
  }
  .sp_close {
    cursor: pointer;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    position: absolute;
    right: 0px;
    top: 0px;
    flex-direction: column;
  }
  .sp_close span {
    width: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 6px;
  }
  .sp_close p {
    color: #fff;
    font-size: 11px;
    line-height: 100%;
    margin-bottom: -2px;
  }
  .sp_inner {
    padding-left: 20px;
  }
  .sp_inner ul li {
    margin-bottom: 35px;
  }
  .sp_inner ul li:last-child {
    margin-bottom: 0px;
  }
  .sp_inner ul li a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .sp_inner ul li a p {
    color: #fff;
    font-size: 26px;
    margin-bottom: 14px;
    font-weight: 500;
    position: relative;
  }
  .sp_inner ul li a span {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
  }
  .sp_inner ul li a span.sp_inner_number {
    color: #fff;
    font-size: 14px;
    font-weight: normal;
    position: absolute;
    left: -20px;
    top: -5px;
  }
  .modal_contact {
    background: #fff;
    padding: 18px 0;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center;
    width: 100%;
  }
  .modal_contact span.modal__span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 19.5px;
    margin-right: 10px;
  }
  .modal_contact p.modal__p {
    color: #000;
    font-size: 16px;
    margin: 0;
  }
}
.mv {
  padding-top: 60px;
  display: flex;
  align-items: stretch;
  background: #000;
  position: relative;
}
.mv_left {
  width: 63.438%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mv_left_inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.mv_left__p01 {
  color: #fff;
  font-weight: bold;
  font-size: 1.796875vw;
  line-height: 165%;
  margin-bottom: 0.78125vw;
}
.mv_left__h2 {
  font-size: 5.78125vw;
  color: #fff;
  font-weight: 500;
  line-height: 165%;
  letter-spacing: 0.05em;
}
.mv_left__h1 {
  color: #fff;
  font-weight: bold;
  font-size: 1.953125vw;
  line-height: 165%;
  margin-top: -1.171875vw;
}
.mv_right {
  width: 36.563%;
  display: flex;
  flex-direction: column;
}
.mv_right_one {
  display: flex;
  position: relative;
  height: 50%;
}
.mv_right_one_bg {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mv_right_one_inner {
  position: absolute;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.56) 100%
  );
  bottom: 0px;
  left: 0px;
  height: 122px;
  width: calc(100% - 40px);
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.mv_right_one_inner__p01 {
  color: #fff;
  font-size: 0.859375vw;
  font-weight: 900;
  margin-bottom: 0.78125vw;
}
.mv_right_one_inner__h2__span01 {
  color: #fff;
  font-size: 1.640625vw;
  font-weight: 700;
  margin-right: 0.78125vw;
}
.mv_right_one_inner h2 {
  line-height: 165%;
  margin-bottom: 0.78125vw;
}
.mv_right_one_inner__h2__span02 {
  color: #fff;
  font-size: 1.171875vw;
  font-weight: 700;
}
.mv_right_one_inner__p02 {
  color: #fff;
  font-size: 1.25vw;
  font-weight: 900;
}
.mv_right_one_inner_more {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 1.5625vw;
  right: 1.5625vw;
}
.mv_right_one_inner_more p {
  color: #fff;
  font-size: 1.25vw;
  font-weight: 700;
  margin-right: 0.78125vw;
}
.mv_right_one_inner_more.nolink p {
  margin-right: 0px;
}
.mv_right_one_inner_more span {
  display: flex;
  width: 5px;
}
@media only screen and (max-width: 768px) {
  .mv {
    padding-top: 50px;
  }
  .mv_left {
    width: 100%;
    padding: 30px 0;
  }
  .mv_left_inner {
    align-items: center;
  }
  .mv_left__p01 {
    font-size: 14px;
    margin-bottom: 0px;
  }
  .mv_left__h2 {
    font-size: 34px;
  }
  .mv_left__h1 {
    font-size: 12px;
    margin-top: 0px;
  }
  .mv_slider ul li {
    width: 100vw;
    display: flex;
  }
  .mv_right_one {
    height: auto;
  }
  .mv_right_one_inner {
    justify-content: flex-end;
    width: calc(100% - 30px);
    padding: 0 15px 15px;
  }
  .mv_right_one_inner__p01 {
    font-size: 12px;
    margin-bottom: 6px;
  }
  .mv_right_one_inner__h2__span01 {
    font-size: 18px;
    margin-right: 10px;
  }
  .mv_right_one_inner h2 {
    margin-bottom: 10px;
  }
  .mv_right_one_inner__h2__span02 {
    font-size: 12px;
  }
  .mv_right_one_inner__p02 {
    font-size: 14px;
  }
  .mv_right_one_inner_more {
    bottom: 15px;
    right: 10px;
  }
  .mv_right_one_inner_more p {
    font-size: 14px;
    margin-right: 5px;
  }
  .slick-prev {
    left: 0px;
    background: rgba(255, 255, 255, 1);
    width: 30px;
    height: 30px;
    top: calc(50% - 15px);
  }
  .slick-prev:before {
    content: "";
    background-image: url(../img/arrow_left.svg);
    display: flex;
    width: 5px;
    height: 10px;
    background-size: contain;
    left: calc(50% - 2.5px);
    position: absolute;
    top: calc(50% - 5px);
  }
  .slick-next {
    right: 0px;
    background: rgba(255, 255, 255, 1);
    width: 30px;
    height: 30px;
    top: calc(50% - 15px);
  }
  .slick-next:before {
    content: "";
    background-image: url(../img/arrow_right.svg);
    background-size: 5px 10px;
    display: flex;
    width: 5px;
    height: 10px;
    background-size: contain;
    left: calc(50% - 2.5px);
    position: absolute;
    top: calc(50% - 5px);
  }
}
/* common */
.sec_ttl {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.sec_ttl .number {
  font-size: 1.875vw;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 10px;
}
.sec_ttl .number.bigger {
  font-size: 3.4375vw;
}
.sec_ttl .mainttl {
  font-size: 5.46875vw;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 0.9375vw;
}
.sec_ttl .ttl {
  font-size: 1.71875vw;
  color: #000000;
  font-weight: bold;
  line-height: 100%;
  margin-bottom: 3.359375vw;
}
.lead_txt {
  font-size: 1.25vw;
  color: #000000;
  line-height: 215%;
}
@media only screen and (max-width: 768px) {
  .sec_ttl {
  }
  .sec_ttl .number {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .sec_ttl .number.bigger {
    font-size: 18px;
  }
  .sec_ttl .mainttl {
    font-size: 50px;
    margin-bottom: 10px;
  }
  .sec_ttl .ttl {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .lead_txt {
    font-size: 13px;
    line-height: 205%;
    margin-bottom: 30px;
  }
}
.sec_ttl.gray .number {
  color: #bfbfbf;
}
.sec_ttl.gray .mainttl {
  color: #bfbfbf;
}
.sec_ttl.yellow .number {
  color: #ffdd01;
}
.sec_ttl.yellow .mainttl {
  color: #ffdd01;
}
.sec_ttl.sky .number {
  color: #8bbce5;
}
.sec_ttl.sky .mainttl {
  color: #8bbce5;
}
.sec_ttl.orange .number {
  color: #ffb101;
}
.sec_ttl.orange .mainttl {
  color: #ffb101;
}
.sec {
  padding: 6.25vw 0;
}
.sec_01 {
  background: #f2f2f2;
  background: #fff;
}
.sec_inner {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sec_01_inner_left {
  width: 46%;
}
.sec_01_inner_left span {
  width: 100%;
}
.sec_01_inner_right {
  width: 50%;
  padding-left: 5%;
}
@media only screen and (max-width: 768px) {
  .sec {
    padding: 40px 0;
  }
  .sec_01 {
  }
  .sec_inner {
    width: 100%;
  }
  .sec_01 .sec_inner {
    flex-direction: column-reverse;
    display: block;
  }
  .sec_01_inner_left {
    width: 100%;
    padding-left: 5%;
  }
  .sec_01_inner_left span {
  }
  .sec_01_inner_right {
    width: 100%;
    padding-right: 5%;
  }
}
.sec_02 {
  background: #ffffff;
  padding: 0;
}
.sec_02 .sec_inner {
  width: 100%;
}
.sec_02_inner_left {
  width: calc(37.5% - 6.25vw);
  padding-left: 12.5%;
}
.sec_02_inner_right {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .sec_02 {
    padding: 40px 0 0 0;
  }
  .sec_02 .sec_inner {
    width: 100%;
    flex-direction: column;
  }
  .sec_02_inner_left {
    width: 88%;
    padding-left: 0px;
  }
  .sec_02_inner_right {
    width: 100%;
  }
}
.sec_02_seminarlist {
  padding: 3.25vw 0;
}
.sec_02_seminarlist_inner {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.sec_02_seminarlist_box {
  width: 23.671875vw;
  width: 48%;
  /*background: #fafafa;*/
  margin-bottom: 2.5625vw;
}
.sec_02_seminarlist_box:nth-child(4) {
  margin-bottom: 0px;
}
.sec_02_seminarlist_box:nth-child(5) {
  margin-bottom: 0px;
}
.sec_02_seminarlist_box:nth-child(6) {
  margin-bottom: 0px;
}
.sec_02_seminarlist_box_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 4px solid #717171;
}
.sec_02_seminarlist_box_header_span {
  background: #ffdd01;
  background: #717171;
  display: flex;
  align-self: center;
  padding: 0.78125vw;
}
.sec_02_seminarlist_box_header_span__p1 {
  color: #fff;
  font-size: 1.875vw;
  font-weight: 600;
  line-height: 100%;
  padding: 0 10px;
}
.sec_02_seminarlist_box_header_span__p2 {
  font-size: 1.09375vw;
  font-size: 1.640625vw;
  font-weight: bold;
  padding-right: 1.171875vw;
  width: 100%;
  text-align: center;
}
.sec_02_seminarlist_box_ttl {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.171875vw 0;
}
.sec_02_seminarlist_box_ttl p {
  color: 〜不動産・建設〜;
  font-weight: bold;
  font-size: 1.640625vw;
  text-align: center;
  line-height: 100%;
}
.sec_02_seminarlist_box_img {
  display: flex;
  width: 40%;
  align-items: center;
  justify-content: center;
}
.sec_02_seminarlist_box_img img {
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.16);
}
.sec_02_seminarlist_box_link {
  padding: 0.78125vw 0;
}
.sec_02_seminarlist_box_link__a {
  background: #ffdd01;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 1.5625vw 0;
}
.sec_02_seminarlist_box_link__a p {
  color: #fff;
  font-weight: bold;
  line-height: 100%;
  font-size: 1.40625vw;
}
.sec_02_seminarlist_box_link__a .icon_pdf {
  position: absolute;
  width: 1.640625vw;
  top: calc(50% - 0.8984375vw);
  right: 1.40625vw;
  display: flex;
}
.sec_02_seminarlist_box_link__a .icon_arrow {
  position: absolute;
  width: 0.546875vw;
  top: calc(50% - 0.5859375vw);
  right: 1.40625vw;
  display: flex;
}
.sec_02_seminarlist_box.closed {
  background: #ededed;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}
.sec_02_seminarlist_box.closed .sec_02_seminarlist_box_header {
  opacity: 0.4;
}
.sec_02_seminarlist_box.closed .sec_02_seminarlist_box_ttl {
  opacity: 0.4;
}
.sec_02_seminarlist_box.closed .sec_02_seminarlist_box_img {
  opacity: 0.4;
}
.sec_02_seminarlist_box.closed .sec_02_seminarlist_box_link__a {
  background-color: #cbcbcb;
}
.smt-box {
  display: flex;
  justify-content: space-between;
}
.smt-box-txt {
  width: 56%;
}
@media only screen and (max-width: 768px) {
  .sec_02_seminarlist {
    padding: 40px 0;
  }
  .sec_02_seminarlist_inner {
    width: 94%;
    width: 90%;
  }
  .sec_02_seminarlist_box {
    width: 48.5%;
    margin-bottom: 25px;
  }
  .sec_02_seminarlist_box:nth-child(4) {
    margin-bottom: 12px;
  }
  .sec_02_seminarlist_box_header_span {
    padding: 8px;
  }
  .sec_02_seminarlist_box_header_span__p1 {
    font-size: 14px;
  }
  .sec_02_seminarlist_box_header_span__p2 {
    font-size: 13px;
    padding-right: 10px;
    margin-bottom: -2px;
  }
  .sec_02_seminarlist_box_ttl {
    padding: 10px 0;
  }
  .sec_02_seminarlist_box_ttl p {
    font-size: 13px;
    white-space: nowrap;
  }
  .sec_02_seminarlist_box_link {
    padding: 5px;
  }
  .sec_02_seminarlist_box_link__a {
    padding: 10px 0;
  }
  .sec_02_seminarlist_box_link__a p {
    font-size: 12px;
  }
  .sec_02_seminarlist_box_link__a .icon_pdf {
    width: 12px;
    top: calc(50% - 9px);
    right: 10px;
  }
  .sec_02_seminarlist_box_link__a .icon_arrow {
    width: 4px;
    top: calc(50% - 4px);
    right: 10px;
    height: fit-content;
    display: flex;
  }
}
.sec_03 {
  background: #ffffff;
  padding: 0;
}
.sec_03 .sec_inner {
  width: 100%;
}
/*.sec_03_inner_right{
    width: calc(37.5% - 6.25vw);
    padding-right: 12.5%;
}
.sec_03_inner_left{
    width: calc(37.5% - 6.25vw);
    padding-left: 12.5%;
}*/
.sec_03_inner_left {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .sec_03 {
    padding: 40px 0 0 0;
  }
  .sec_03 .sec_inner {
    width: 100%;
    flex-direction: column;
  }
  .sec_03_inner_right {
    width: 88%;
    padding-right: 0px;
  }
}
.sec_03_under {
  padding: 6.25vw 0;
}
.sec_03_under_inner {
  width: 75%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.sec_03_under_inner_left {
  width: 37.479%;
}
.sec_03_under_inner_left_logo {
  display: flex;
  width: 10.9375vw;
  margin: 0 auto 4.6875vw;
}
.sec_03_under_inner_left_comp_list h4 {
  font-size: 1.25vw;
  font-weight: bold;
  border-bottom: solid 0.15625vw #000;
  display: flex;
  width: fit-content;
  padding-bottom: 0.390625vw;
  margin-bottom: 1.5625vw;
}
.sec_03_under_inner_left_comp_list span {
  display: flex;
}
.sec_03_under_inner_right {
  width: 71.373%;
  position: absolute;
  right: 0px;
  top: 0px;
}
.img_subtxt {
  color: #777;
  text-align: right;
  padding-top: 1.171875vw;
  margin-right: -0.625vw;
  font-size: 0.859375vw;
}
@media only screen and (max-width: 768px) {
  .sec_03_under {
    padding: 0 0 40px 0;
  }
  .sec_03_under_inner {
    width: 88%;
    flex-direction: column-reverse;
    border-top: solid 1px rgba(0, 0, 0, 0.25);
    padding: 30px 0 0 0;
  }
  .sec_03_under_inner_left {
    width: 100%;
  }
  .sec_03_under_inner_left_logo {
    align-items: center;
    border-bottom: solid 2px #000;
    padding-bottom: 5px;
    width: auto;
  }
  .sec_03_under_inner_left_logo img {
    width: 180px;
    margin-right: 12px;
  }
  .sec_03_under_inner_left_logo p {
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 3px;
  }
  .sec_03_under_inner_left .img2_sp {
    margin-bottom: 30px;
  }
  .sec_03_under_inner_left_comp_list h4 {
    font-size: 13px;
    font-weight: bold;
    border-bottom: solid 2px #000;
    padding-bottom: 3px;
    margin-bottom: 20px;
  }
  .sec_03_under_inner_left_comp_list span {
  }
  .sec_03_under_inner_right {
    width: 100%;
    margin-bottom: 40px;
    position: relative;
  }
  .img_subtxt {
    padding-top: 15px;
    margin-right: -10px;
    font-size: 11px;
  }
}
.sec_04 {
  background: #f2f2f2;
}
.sec_04 .sec_inner {
  width: 75%;
  align-items: flex-start;
}
.sec_04_inner_left {
  width: calc(50% - 6.25vw);
}
.sec_04_inner_right {
  width: 50%;
}
.sec_04_sumi {
  width: 14.375vw;
  margin: 0 auto 1.5625vw;
  display: flex;
  padding-right: 3.7vw;
}
.sec_04_slider {
}
.sec_04_slider ul {
  position: relative;
}
.sec_04_slider__li {
  width: 11.5625vw;
  display: flex;
  flex-direction: column;
  margin-right: 1.328125vw;
}
.sec_04_slider__li span {
  width: 100%;
  display: flex;
  margin-bottom: 1.171875vw;
}
.sec_04_slider__li p {
  font-size: 1.015625vw;
}
.js-slider-2_arrows {
  display: flex;
  position: relative;
  margin-top: 3.90625vw;
}
.js-slider-2_arrows .slick-prev {
  left: 0px;
  background: rgba(255, 255, 255, 1);
  width: 30px;
  height: 30px;
  top: calc(50% - 15px);
}
.js-slider-2_arrows .slick-prev:before {
  content: "";
  background-image: url(../img/arrow_left.svg);
  display: flex;
  width: 5px;
  height: 10px;
  background-size: contain;
  left: calc(50% - 2.5px);
  position: absolute;
  top: calc(50% - 5px);
}
.js-slider-2_arrows .slick-next {
  right: 0px;
  background: rgba(255, 255, 255, 1);
  width: 30px;
  height: 30px;
  top: calc(50% - 15px);
}
.js-slider-2_arrows .slick-next:before {
  content: "";
  background-image: url(../img/arrow_right.svg);
  background-size: 5px 10px;
  display: flex;
  width: 5px;
  height: 10px;
  background-size: contain;
  left: calc(50% - 2.5px);
  position: absolute;
  top: calc(50% - 5px);
}
@media only screen and (max-width: 768px) {
  .sec_04 {
    padding: 40px 0 40px 0;
  }
  .sec_04 .sec_inner {
    width: 100%;
    flex-direction: column;
  }
  .sec_04_inner_left {
    width: 88%;
    padding-left: 0px;
  }
  .sec_04_inner_right {
    width: 88%;
  }
  .sec_04_sumi {
    width: 133.76px;
    padding-right: 37px;
    margin-bottom: 20px;
  }
  .sec_04_slider {
  }
  .sec_04_slider ul {
  }
  .sec_04_slider__li {
    width: 28vw;
    margin-right: 2.3vw;
  }
  .sec_04_slider__li span {
  }
  .sec_04_slider__li p {
    font-size: 13px;
    line-height: 165%;
  }
  .js-slider-2_arrows {
    margin-top: 50px;
  }
}
.media {
  background-color: #797979;
  padding: 3.125vw 0;
}
.media_inner {
  display: flex;
  justify-content: space-between;
  width: 75%;
  margin: 0 auto;
}
.media_inner_left {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  width: 23%;
}
.media_inner_left h5 {
  color: #fff;
  font-size: 2.1875vw;
  margin-right: 1.5625vw;
  font-weight: 500;
}
.media_inner_left p {
  color: #fff;
  font-size: 1.09375vw;
  font-weight: bold;
}
.media_inner_right {
  /*display: flex;*/
  align-items: baseline;
  justify-content: flex-start;
  width: 70%;
}
.media_inner_right .date {
  color: #fff;
  font-size: 1.25vw;
  margin-right: 1.171875vw;
  line-height: 165%;
  min-width: 6vw;
}
.media_inner_right .desc {
  color: #fff;
  font-size: 1.25vw;
  line-height: 165%;
}
.media_inner_right-inner {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
}
@media only screen and (max-width: 768px) {
  .media {
    padding: 30px 0;
  }
  .media_inner {
    flex-direction: column;
    width: 88%;
  }
  .media_inner_left {
    width: 100%;
    margin-bottom: 15px;
  }
  .media_inner_left h5 {
    font-size: 28px;
    margin-right: 10px;
  }
  .media_inner_left p {
    font-size: 13px;
  }
  .media_inner_right {
    width: 100%;
  }
  .media_inner_right .date {
    font-size: 13px;
    margin-right: 15px;
    min-width: 61px;
  }
  .media_inner_right .desc {
    font-size: 13px;
  }
}
.gs_footer {
  padding: 4.6875vw 0;
}
.gs_footer_inner {
  width: 75%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
.gs_footer_inner_left {
}
.gs_footer_inner_left__a {
  display: flex;
  width: 14.84375vw;
}
.gs_footer_inner_right {
}
.gs_footer_inner_right__a {
  display: flex;
  background: #f2f2f2;
  justify-content: center;
  align-items: center;
  padding: 1.171875vw 1.5625vw;
}
.gs_footer_inner_right__a span {
  display: flex;
  width: 1.5625vw;
  margin-right: 0.78125vw;
}
.gs_footer_inner_right__a p {
  color: #000;
  font-size: 1.40625vw;
  font-weight: 500;
}
.gs_footer_under {
  background-color: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5625vw 0;
}
.gs_footer_under p {
  color: #000;
  text-align: center;
  font-size: 0.9375vw;
}
@media only screen and (max-width: 768px) {
  .gs_footer {
    padding: 60px 0;
  }
  .gs_footer_inner {
    width: 88%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .gs_footer_inner_left {
  }
  .gs_footer_inner_left__a {
    width: 190px;
    margin-bottom: 30px;
  }
  .gs_footer_inner_right {
  }
  .gs_footer_inner_right__a {
    padding: 15px 30px;
  }
  .gs_footer_inner_right__a span {
    width: 20px;
    margin-right: 10px;
  }
  .gs_footer_inner_right__a p {
    font-size: 18px;
  }
  .gs_footer_under {
    padding: 20px;
  }
  .gs_footer_under p {
    font-size: 10px;
    line-height: 165%;
  }
}
#ftr {
  width: 100%;
  font-size: 12px;
  line-height: 1.4;
  color: #ccc;
  background: #000;
  padding: 10px 0 30px;
}
/* @group group */
.group_block {
  position: relative;
  margin: 0 auto;
  max-width: 960px;
  height: 161px;
  font-size: 10px;
  line-height: 165%;
}
.group_block a:link,
.group_block a:visited {
  text-decoration: underline;
  color: #ccc;
}
.group_block a:hover,
.group_block a:active {
  text-decoration: none;
  color: #ccc;
}
.group {
  padding: 22px 0 0;
}
.group dt {
  font-size: 13px;
  font-weight: bold;
}
.group dd {
  padding: 10px 0 0;
  display: flex;
}
.group li {
  float: left;
  margin: 0 5px 0 0;
  padding: 0 5px 0 0;
  border-right: 1px solid #ccc;
}
.group li:last-child {
  border-right: none;
}
.about {
  margin: 25px 0 0;
  display: flex;
}
.about li {
  float: left;
  margin: 0 20px 0 0;
}
.copyright {
  margin: 8px 0 0;
}
p.footer_logo {
  position: absolute;
  right: 0;
  bottom: 10px;
}
#ftr_sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .group_block_wrapper {
    display: none;
  }
  #ftr_sp {
    display: block;
    background: #000;
    padding-bottom: 80px;
  }
  #ftr_sp .group_block {
    width: auto;
    height: auto;
    padding: 15px 10px;
  }
  #ftr_sp p.footer_logo {
    position: static;
    margin-bottom: 15px;
  }
  #ftr_sp p.footer_logo img {
    width: 137px;
  }
  #ftr_sp .group_block .copyright {
    font-size: 2.4vw;
    margin: 0;
    color: #fff;
  }
  .about {
    margin: 15px 0;
    display: flex;
  }
}
.fixed_banner {
  position: fixed;
  z-index: 100;
  bottom: 30px;
  right: 0px;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  padding: 20px;
}
.fixed_banner_inner {
  min-width: 180px;
}
.fixed_banner_inner_left {
}
.fixed_banner_inner__head {
  font-size: 11px;
  color: #fff;
  font-weight: bold;
  line-height: 100%;
  margin-bottom: 12px;
}
.fixed_banner_inner__div {
}
.fixed_banner_inner__div__p01 {
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 7px;
  line-height: 100%;
}
.fixed_banner_inner__div__p02 {
  font-size: 13px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 100%;
}
.fixed_banner_inner_date {
  font-size: 14px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 100%;
}
.fixed_banner_inner_right {
}
.fixed_banner_inner_right__a {
  display: flex;
  background: #ffdd01;
  padding: 15px 0;
  width: 100%;
  position: relative;
  align-items: center;
  justify-content: center;
}
.fixed_banner_inner_right__a p {
  font-size: 15px;
  font-weight: bold;
  color: #000;
}
.fixed_banner_inner_right__a .icon_arrow {
  position: absolute;
  width: 4px;
  right: 15px;
  top: calc(50% - 4px);
  display: flex;
}
@media only screen and (max-width: 768px) {
  .fixed_banner {
    bottom: 0px;
    left: 0px;
    right: auto;
    width: calc(100% - 30px);
    padding: 15px;
  }
  .fixed_banner_inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
  }
  .fixed_banner_inner_left {
  }
  .fixed_banner_inner__head {
    margin-bottom: 10px;
  }
  .fixed_banner_inner__div {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    flex-direction: column;
  }
  .fixed_banner_inner__div__p01 {
    font-size: 16px;
    margin-right: 6px;
  }
  .fixed_banner_inner__div__p02 {
    margin-bottom: 0px;
  }
  .fixed_banner_inner_date {
    margin-bottom: 7px;
  }
  .fixed_banner_inner_right {
    display: flex;
    position: absolute;
    right: 15px;
  }
  .fixed_banner_inner_right__a {
    padding: 12px 15px 12px 10px;
  }
  .fixed_banner_inner_right__a p {
    font-size: 12px;
  }
  .fixed_banner_inner_right__a .icon_arrow {
    right: 8px;
  }
}
/*MEDIA リンクから―追加*/
.media_inner_right .desc a {
  color: #fff;
  text-decoration: underline;
}
.media_inner_right .desc a:hover {
  color: #fff;
  text-decoration: none;
}
/*ボタン追加*/
.place-btn {
  max-width: 400px;
  margin-top: 70px;
}
.place-btn p {
  font-weight: normal;
  font-size: 1.015625vw;
}
@media only screen and (max-width: 768px) {
  .place-btn {
    width: 90%;
    margin: 30px auto;
  }
  .place-btn p {
    font-size: 16px;
  }
}
/* HEADER お問い合わせ追加*/
header {
  box-sizing: border-box;
  width: 100%;
}
.header_right ul {
  margin-right: 100px;
  /*margin-right: 250px;*/
}
.head-contact {
  position: absolute;
  height: 100%;
  right: 0;
  width: 30%;
  max-width: 200px;
}
.head-contact a {
  color: #fff;
  background: url(../img/icon-mail.png) left 50px center no-repeat #000;
  background-size: 20px;
  padding-left: 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
}
/*全て共通：hideエリアをはじめは非表示*/
.hide-area {
  /*display: none;*/
  position: fixed;
  top: 0;
  visibility: hidden;
}
/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}
.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}
/*確認を促すモーダル：タイトルの色を変更したい場合*/
#modaal-title {
  font-size: 1.2rem;
  text-align: center;
  margin: 0 0 20px 0;
}
/*動画表示のモーダル：余白を変更したい場合*/
.modaal-video .modaal-inner-wrapper {
  padding: 0;
}
.modaal-close:after,
.modaal-close:before {
  width: 2px !important;
  background: #fff !important;
}
.modaal-close:focus,
.modaal-close:hover {
  outline: 0;
  background: none;
}
.modaal-container {
  background: none;
  display: table;
  margin: auto;
  width: auto;
  box-shadow: none;
}
.hide-inner p {
  text-align: left;
  font-weight: bold;
  font-size: 20px;
  color: #fff;
  line-height: 1.5;
}
.hide-inner p a {
  color: #fff;
}
.hide-inner p.kojinjyouhou {
  text-align: center;
  font-size: 20px;
  margin-top: 20px;
}
.hide-inner p.kojinjyouhou a {
  text-decoration: underline;
}
.btn-mail {
  max-width: 180px;
  margin: 30px auto 0;
  display: block;
}
@media only screen and (max-width: 768px) {
  .head-contact {
    max-width: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .hide-inner p {
    font-size: 14px;
  }
  .hide-inner p.kojinjyouhou {
    font-size: 14px;
  }
  .modaal-inner-wrapper {
    vertical-align: top;
    text-align: center;
    padding: 180px 0;
  }
  .head-contact {
    position: absolute;
    height: 100%;
    right: 50px;
    width: 20%;
    max-width: 50px;
  }
  .head-contact a {
    color: #fff;
    background: url(../img/icon-mail.png) center top 13px no-repeat #000;
    background-size: 16px;
    padding-left: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none !important;
    padding-top: 22px;
    box-sizing: border-box;
  }
}
.modaal-close span {
  clip: auto;
  overflow: auto;
  width: auto !important;
  height: auto !important;
  left: 0;
  right: 0;
  bottom: -1px;
  font-family: "futura-pt", sans-serif;
  font-weight: bold;
  font-size: 12px;
}
/*終了処理*/
.sec_02_seminarlist_box_link__a.closed {
  background-color: #cbcbcb;
}
/*MAP*/
.mp-ttl {
  text-align: center;
  font-size: 1.71875vw;
  border-bottom: 2px solid #cccccc;
  padding-bottom: 20px;
  font-weight: bold;
}
.map {
  position: relative;
}
.map .map_img {
  position: relative;
}
.map .tenpo li {
  position: relative;
  position: absolute;
  top: 48%;
  left: 57%;
}
.map li a:hover {
  opacity: 0.7;
}
.map .tenpo li.gsta {
  width: 7%;
  top: 50.5%;
  left: 77.7%;
}
.map .tenpo li.toranomon {
  width: 6.5%;
  top: 47.5%;
  left: 77.7%;
}
.map .tenpo li.roppongi {
  width: 3.2%;
  top: 51%;
  left: 61.3%;
}
.map .tenpo li.shibuya {
  width: 3%;
  top: 57.4%;
  left: 46%;
}
.btn-map {
  position: absolute;
  bottom: 5%;
  right: 3.5%;
  width: 23%;
}
.map_txt {
  position: absolute;
  bottom: 7.5%;
  left: 6.5%;
  line-height: 1.5;
  font-size: 1.5vw;
  display: flex;
  width: 40%;
}
.map_txt.spyou {
  display: none;
}
.map_txt-left {
  margin-right: 6vw;
}
.map_txt dl {
  margin-bottom: 20%;
}
.map_txt dt {
  font-weight: bold;
  margin-bottom: 10px;
}
.map_txt dd {
  font-size: 1.3vw;
  margin-bottom: 6%;
}
.map_txt dd a {
  font-weight: bold;
  text-decoration: underline;
}
.map_txt dd a:hover {
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .mp-ttl {
    font-size: 14px;
    border-bottom: none;
    border-top: 1px solid #cccccc;
    padding-bottom: 14px;
    padding-top: 20px;
    line-height: 2;
  }
  .mp-ttl span {
    font-size: 16px;
    position: relative;
    top: -3px;
  }
  .map_txt {
    position: static;
    margin: 20px auto 0;
    font-size: 15px;
    display: none;
    width: 88%;
  }
  .map_txt.spyou {
    display: flex;
  }
  .map_txt dd {
    font-size: 14px;
  }
  .map_txt-left {
    margin-right: 15vw;
  }
  .map .tenpo li.gsta {
    width: 16%;
    top: 38.5%;
    left: 67.5%;
  }
  .map .tenpo li.toranomon {
    width: 15%;
    top: 35%;
    left: 67.5%;
  }
  .map .tenpo li.roppongi {
    width: 5%;
    top: 39%;
    left: 41%;
  }
  .map .tenpo li.shibuya {
    width: 5%;
    top: 44%;
    left: 16%;
  }
  .btn-map {
    position: absolute;
    bottom: 5%;
    right: 5.5%;
    width: 51%;
  }
}
/*modal*/
.con-pop {
  display: table;
  margin: auto;
  padding: 30px;
}
.modaal-container {
  width: 100%;
  max-width: 954px;
}
.modaal-content-container {
  padding: 0;
}
.map-pop {
  background: #fff;
  color: #000;
  max-width: 954px;
  display: flex;
  position: relative;
}
.hide-inner.map-pop p {
  text-align: left;
  font-weight: bold;
  font-size: 20px;
  color: #000;
  line-height: 1.5;
}
.map-pop-txt {
  padding: 50px 50px 40px 50px;
  width: 100%;
}
.map-pop-txt h3 {
  font-size: 25px;
  font-weight: bold;
  border-bottom: 1px solid #000;
  line-height: 1.5;
  margin-bottom: 20px;
}
.basyo {
  margin-bottom: 30px;
}
.btn-press {
  text-align: center;
  margin-top: 30px;
}
.btn-press img {
  width: 290px;
}
@media only screen and (max-width: 767px) {
  .map-pop {
    display: block;
    width: 90%;
    margin: auto;
    /*margin-top: -100px;*/
  }
  .map-pop-txt {
    padding: 20px;
  }
  .map-pop-txt h3 {
    font-size: 15px;
  }
  .btn-press img {
    width: 175px;
  }
}
.modaal-close {
  display: none;
}
.hide-inner .modaal-close {
  display: block;
}
.modaal-close.mp {
  position: absolute;
  right: 0;
  top: 0;
  color: #000;
  cursor: pointer;
  opacity: 1;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 1);
  border-radius: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .modaal-close.mp {
    width: 30px;
    height: 30px;
  }
  .modaal-close.mp:after,
  .modaal-close.mp:before {
    display: block;
    content: " ";
    position: absolute;
    top: 3px;
    left: 14px;
    width: 4px;
    height: 22px;
    border-radius: 4px;
    background: #fff;
    -webkit-transition: background 0.2s ease-in-out;
    transition: background 0.2s ease-in-out;
  }
}
.sec_03 .sec_inner {
  width: 75%;
  padding: 6.25vw 0;
}
.sec_03_inner_right {
  width: 45%;
}
.sec_ttl .ttl {
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .sec_03 .sec_inner {
    width: 88%;
    padding: 6.25vw 0;
  }
  .sec_03_inner_left {
    width: 100%;
  }
  .sec_03_inner_right {
    width: 100%;
  }
}
.sec_03_under {
  padding: 6.25vw 0 0;
}
.sns {
  padding: 30px 0;
  background: #000;
  color: #fff;
  font-weight: bold;
  font-size: 1.015625vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sns ul {
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.sns ul li {
  margin-left: 20px;
}
@media only screen and (max-width: 767px) {
  .sns {
    font-size: 13px;
  }
}
@media only screen and (min-width: 768px) {
  .sec_01_inner_left {
  }
  .mp-ttl {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    line-height: 1.5;
  }
  .mp-ttl img {
    width: 40%;
    margin: 0 2% 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .mp-ttl img {
    width: 30%;
    margin-right: 4%;
    vertical-align: middle;
  }
}
/*終了処理*/
.end-block {
  position: relative;
}
/*.end-block::after{
	content: "";
	background: rgba(0,0,0,.5);
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
}*/
.end-txt {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  padding: 20px;
  font-size: 1.015625vw;
  z-index: 2;
  line-height: 1.5;
  font-weight: bold;
  box-sizing: border-box;
}
.endend {
  display: inline-block;
  background: #000;
  padding: 2px 10px;
  margin-top: 0.5vw;
  margin-bottom: 1vw;
  color: #fff;
  font-size: 0.85vw;
}
@media only screen and (max-width: 767px) {
  .end-txt {
    padding: 20px 0 0 0;
    font-size: 15px;
    text-align: center;
  }
  .endend {
    font-size: 12px;
  }
}
/*20231031*/
.section_ttl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto 40px;
  position: relative;
}
.section_ttl_left {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
}
.section_ttl_left_bar {
  background: #fff;
  width: 6px;
  height: 34px;
  display: flex;
}
.section_ttl_bk .section_ttl_left_bar {
  background: #333333;
}
.section_ttl_left__p {
  color: #fff;
  font-size: 2.384375vw;
}
.section_ttl_bk .section_ttl_left__p {
  color: #333333;
  color: #000;
  font-weight: bold;
}
.section_ttl_bk .section_ttl_left__p .futura {
  font-size: 5vw;
  letter-spacing: 0pt;
  font-weight: 500;
  padding-right: 0.5vw;
  line-height: 1;
  color: #000;
}
.section_ttl_center span {
  background: rgba(255, 255, 255, 0.35);
  display: flex;
  height: 4px;
  width: 100%;
}
.section_ttl_bk .section_ttl_center span {
  background: #ebebeb;
}
.section_ttl_right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.section_ttl_right__h2 {
  color: #fff;
  font-size: 2vw;
}
.section_ttl_bk .section_ttl_right__h2 {
  color: #333;
  font-family: "Aldrich", sans-serif;
}
@media only screen and (min-width: 769px) and (max-width: 1140px) {
  .section_ttl {
    width: 100%;
  }
  .section_ttl_left__p {
    /*font-size: 2.2vw;*/
  }
  .section_ttl_right__h2 {
    font-size: 2vw;
  }
}
@media only screen and (max-width: 768px) {
  .section_ttl {
    width: 100%;
    margin: 0 auto 10px;
    /*flex-direction: column;
        align-items: flex-start;*/
    flex-wrap: wrap;
  }
  .section_ttl_left {
    width: 100% !important;
    margin-bottom: 10px;
  }
  .section_ttl_left_bar {
    /*display: none;*/
  }
  .section_ttl_left__p {
    font-size: 20px;
    line-height: 125%;
  }
  .section_ttl_center {
    /*display: none;*/
    width: 65% !important;
  }
  .section_ttl_right {
    width: 35% !important;
    text-align: right;
  }
  .section_ttl_right__h2 {
    font-size: 18px;
  }
}
.speakers {
}
.speakers .section_ttl_left {
  width: 44%;
}
.speakers .section_ttl_center {
  width: 36%;
}
.speakers .section_ttl_right {
  width: 14%;
}
.speakers_e_ttl {
  font-size: 30px;
  font-weight: bold;
  color: #7b7b7b;
  line-height: 145%;
  margin-bottom: -5px;
}
.speakers_j_ttl {
  font-size: 14px;
  font-weight: bold;
  color: #7b7b7b;
  line-height: 145%;
}
@media only screen and (min-width: 769px) and (max-width: 1140px) {
  .speakers_e_ttl {
    font-size: 2.631578947vw;
  }
  .speakers_j_ttl {
    font-size: 1.228070175vw;
  }
}
@media only screen and (max-width: 768px) {
  .speakers {
  }
  .speakers_e_ttl {
    font-size: 22px;
    margin-bottom: 0px;
    padding-right: 12px;
  }
  .speakers_j_ttl {
    font-size: 13px;
  }
}
.vs-box {
  width: 100%;
  margin-bottom: 4vw;
}
.vs-lead {
  background: #000;
  color: #fff;
  font-size: 1.640625vw;
  font-weight: bold;
  text-align: center;
  padding: 1.171875vw 0;
}
.vs-box-under {
  display: flex;
  justify-content: space-between;
  background: #fff;
  align-items: center;
	align-items: flex-start;
  background: #F0F3F5;
  padding: 2.34375vw;
  position: relative;
}
.vs-box-img {
  width: 40%;
}
.vs-box-link {
  width: 56%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  /*padding: 2%;*/
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}
.vs-box-link a {
  width: 48%;
}
.vs-box-link .addp {
  font-size: 1.25vw;
  line-height: 215%;
  margin-bottom: 2.5%;
}
.sec_02_seminarlist_box_link__a.closed.vs {
  background-color: #383838;
  color: #fff;
}
.sec_02_seminarlist_box_link__a.closed.vs p {
  color: #fff;
}
@media only screen and (min-width: 769px) {
  .sec_02_seminarlist_box_link__a.vs .icon_pdf {
    width: 1.240625vw;
    top: calc(55% - 0.8984375vw);
  }
}
@media only screen and (max-width: 768px) {
  .vs-lead {
    font-size: 13px;
    padding: 10px 0;
  }
  .vs-box-under {
    display: block;
    padding: 0;
  }
  .vs-box-img {
    width: 100%;
    text-align: center;
    /*margin-bottom: 20px;*/
  }
  .vs-box-img img {
    max-width: 100%;
  }
  .vs-box-link {
    width: 100%;
    padding: 2%;
    padding: 0;
		padding: 10px;
  }
  .sec_02_seminarlist_box_link__a.vs .icon_pdf {
    top: calc(40% - 0.8984375vw);
  }
}
.speakers .tora .section_ttl_left {
  width: 33%;
}
.speakers .tora .section_ttl_center {
  width: 73%;
  margin-top: 1%;
}
.speakers .tora .section_ttl_right {
  width: 25%;
}
@media only screen and (max-width: 768px) {
  .tora .section_ttl_center {
    width: 53% !important;
    width: 40% !important;
    margin-top: -1% !important;
  }
  .tora .section_ttl_right {
    width: 47% !important;
    text-align: right;
  }
  .vs-box {
    margin-bottom: 30px;
  }
}
.adddimg {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}
.adddimg img {
  /*max-width: 394px;*/
  width: 90%;
}
.adding-txt {
  display: flex;
  line-height: 1.3;
  font-weight: bold;
  /*margin-top: 2%;*/
  margin-bottom: 3%;
  width: 100%;
  align-items: flex-end;
  color: #000;
}
.adding-txt-left {
  font-size: 5vw;
  letter-spacing: 0pt;
  font-weight: 500;
  padding-right: 0.5vw;
  line-height: 1;
  color: #000;
}
.adding-txt-left span {
  display: block;
  font-size: 1.284375vw;
}
.adding-txt-right {
  font-size: 2.96875vw;
  padding-bottom: 5px;
}
.ac_wrap {
}
.ac_heading {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition-duration: 0.2s;
}
.ac_heading p {
  margin: 0;
}
.ac_icon_box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 5%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  transform-origin: center center;
  transition-duration: 0.2s;
}
.ac_icon {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: center center;
  transition-duration: 0.2s;
  position: relative;
}
.ac_icon::before,
.ac_icon::after {
  display: flex;
  content: "";
  background-color: #fff;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center center;
}
.ac_icon::before {
  width: 100%;
  height: 6px;
}
.ac_icon::after {
  width: 6px;
  height: 100%;
}
.ac_content {
  display: none;
  box-sizing: border-box;
  clear: both;
}
.ac_heading.open .ac_icon_box {
  transform: translateY(-50%) rotate(-180deg);
}
.ac_heading.open .ac_icon::after {
  content: none;
}
.ac_heading.open + .ac_content {
  display: block;
}
.ac_content .close_wrap {
  margin-top: 20px;
  text-align: center;
}
.ac_content .close_wrap .close_button {
  color: #fff;
  cursor: pointer;
}
.ac_content .close_wrap .close_button::after {
  content: "";
  background-image: url(../img/sp_menu_close.png);
  width: 14px;
  height: 14px;
  display: flex;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 20px;
  top: calc(50% - 7px);
  transform: rotate(90deg);
}
.ac_heading,
.close_button {
  display: flex;
  width: 30%;
  padding: 1vw 0;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid #fff;
  font-size: 1.2vw;
  font-weight: normal;
  float: right;
  background: none;
  margin-top: 20px;
}
.ac_heading.open {
  display: none;
}
.ac_heading::after {
  content: "";
  background-image: url(../img/icon_link_arrow-w.svg);
  width: 7.35px;
  height: 15.13px;
  display: flex;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 20px;
  top: calc(50% - 7.5px);
  transform: rotate(90deg);
  transition: 0.3s;
}
.ac_heading.open::after {
  transform: rotate(-90deg);
  transition: 0.3s;
}
.link_arrow_y p {
  color: #fff;
  font-size: 18px;
  line-height: 165%;
  font-weight: bold;
}
@media only screen and (min-width: 769px) and (max-width: 1140px) {
  .link_arrow_y {
    max-width: 31.40350877vw;
  }
  .link_arrow_y p {
    font-size: 1.578947368vw;
  }
}
@media only screen and (max-width: 768px) {
  .link_arrow_y {
    padding: 15px 0;
  }
  .link_arrow_y p {
    font-size: 16px;
  }
  .ac_heading,
  .close_button {
    width: 80%;
    padding: 5px 0;
    font-size: 13px;
    margin: 20px auto 0;
    float: none;
  }
  .ac_content .close_wrap .close_button::after {
    right: 17px;
    top: calc(50% - 7px);
  }
}
/*　Please add from here
----------------------------------------*/
/*PC*/
/*SP*/
@media only screen and (max-width: 768px) {
}
/* NEW CODES */
* {
  box-sizing: border-box;
}
/* MV SLIDER */
.mv {
  position: relative;
}
.mv-slider {
  width: 100%;
}
.mv-slider .slick-dots {
  bottom: 25px;
  display: none;
}
@media (min-width: 768px) {
  .mv-slider .slick-dots {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
}
.mv-slider.slick-dotted.slick-slider {
  margin-bottom: 0;
}
.mv-slider .slick-dots li {
  width: calc(227px - 125px);
  height: 4px;
}
.mv-slider .slick-dots li button::before {
  content: "" !important;
  width: 113px;
  height: 4px;
  /* background-color: #fff; */
  border-radius: 100px;
  transition: all 0.2s ease;
  border: 1px solid #fff;
  opacity: 1 !important;
}
.mv-slider-item img {
  width: 100%;
}
.mv-slider-wrapper {
  display: flex;
  gap: 5px;
  background-color: #fff;
  flex-direction: column;
}

@media (min-width: 768px) {
  .mv-slider-wrapper {
    gap: 0;

    flex-direction: column;
  }
}

.mv-slider-item-one {
  position: relative;
}
.mv-slider-item-one::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.6), #fff);
  mix-blend-mode: multiply;
}
.mv-content {
  position: absolute;
  transform: translate(-50%, -50%);
  color: #fff;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 280px;
}
@media (min-width: 768px) {
  .mv-content {
    transform: unset;
    width: auto;
    left: 5.469%;
    transform: translateY(-50%);
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .mv-content {
    /* left: 70px; */
  }
}
.mv-content-title {
  font-weight: 500;
  vertical-align: text-bottom;
  font-family: "futura-pt", sans-serif;
  font-size: 34px;
  line-height: 46px;
  margin-block: 2px -3px;
}
@media (min-width: 992px) {
  .mv-content-title {
    text-align: start;
    text-align: center;
    font-size: 57px;
    line-height: 94px;
    margin-block: 7px 0;
  }
}
@media (min-width: 1200px) {
  .mv-content-title {
    margin-block: 4px 5px;
    line-height: 109px;
    font-size: 82px;
    letter-spacing: 0.02em;
  }
}
.mv-content-top-ttl {
  font-weight: 700;
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  line-height: 19px;
  text-align: end;
}
@media (min-width: 992px) {
  .mv-content-top-ttl {
    text-align: center;
    text-align: start;
    font-size: 17px;
    line-height: 29px;
    letter-spacing: 0.05em;
  }
}
@media (min-width: 1200px) {
  .mv-content-top-ttl {
    line-height: 36px;
    font-size: 27px;
  }
}
.mv-content-sub-ttl {
  font-size: 12px;
  font-weight: 700;
  font-family: "Noto Sans", sans-serif;
  line-height: 16px;
}
@media (min-width: 992px) {
  .mv-content-sub-ttl {
    text-align: center;
    text-align: start;
    font-size: 19px;
    line-height: 31px;
  }
}
@media (min-width: 1200px) {
  .mv-content-sub-ttl {
    font-size: 34px;
    line-height: 46px;
  }
}
/* MV SLIDER */
/* MV NAV TABS */
.mv-nav-tabs {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .mv-nav-tabs {
    flex-direction: column;
    margin-top: 7.766vw;
    align-items: center;
    padding-inline: 4.688vw 0;
		
  }
}

.mv-nav-wrapper {
  display: flex;
  border-bottom-left-radius: 20px;
  transition: all 0.2s ease;
  /* max-width: 180px; */
  width: 100%;
  gap: 40px;
}
.mv-nav-wrapper.wrpActive {
  background-color: transparent;
}
@media (min-width: 768px) {
  .mv-nav-wrapper {
    /*background-color: #293569;*/
    /* flex: 0 0 206px; */
    flex-direction: row;
    padding-right: 4.688vw;
    gap: 0;
    justify-content: space-between;
  }

  .mv-slider-btm-link {
    position: absolute;
    max-width: 30.9vw;
    width: 100%;
    right: 0;
    transform: translateY(-50%);
    top: 50%;
  }
}

.mv-slider-btm-link {
  cursor: pointer;
}

.mv-tabs-wrapper {
  flex-grow: 1;
  position: relative;
  width: 100%;
  background-color: #000;
}
@media (min-width: 768px) {
  .mv-tabs-wrapper {
    width: 100%;
  }
}

.mv-nav-tabs-btn {
  display: flex;
  max-width: 180px;
  width: 100%;
}
@media (max-width: 767px) {
.mv-nav-tabs-btn {
    max-width: 126px;
    margin-left: 20px;
    margin-right: 40px;
}
}
@media (min-width: 768px) {
  .mv-nav-tabs-btn {
    max-width: 500px;
		width: 20%;
  }
}

.mv-nav-tabs-controller {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mv-nav-btn {
  cursor: pointer;
  background-color: #f0f3f5;
  color: #000;
  text-align: center;
  flex: 1;
  padding: 4px 0 14px;
  transition: all 0.2s ease;
}

@media (min-width: 768px) {
  .mv-nav-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
  }
}

.mv-nav-btn:hover {
  opacity: 0.8;
}

.mv-nav-btn.tabActive {
  background-color: #fff;
  border-bottom: 3px solid #3b4043;
  padding: 20px 0 11px;
  position: relative;
}

@media (min-width: 768px) {
  .mv-nav-btn.tabActive {
    border-bottom: 6px solid #3b4043;
  }
}

.mv-nav-btn.tabActive::before {
  content: "";
  position: absolute;
  background-image: url(".././img/mv/down-rr.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 10px;
  height: 6px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 4px;
	display: none;
}

@media (min-width: 768px) {
  .mv-nav-btn.tabActive::before {
    width: 13px;
    height: 8px;
    bottom: 6px;
  }

  .mv-nav-btn {
    /* border-bottom-left-radius: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 40px; */
    /* padding: 20px 24px 20px; */
  }
}
@media (min-width: 992px) {
  .mv-nav-btn {
    padding: 10px 0 15px;
  }
}

.mv-nav-btn.-schedule {
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .mv-nav-btn.-schedule {
    /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.21); */
  }
}
.mv-nav-btn.-news {
  /* background-color: #293569; */
	pointer-events: none;
}
@media (min-width: 992px) {
  .mv-nav-btn.-news {
    /* padding-block: 13px 18px; */
  }
  .mv-nav-wrapper.wrpActive .-schedule {
    /* padding-block: 13px 18px; */
  }
  .mv-nav-wrapper.wrpActive .-news {
    /* padding-block: 28px 30px; */
  }
}
@media (min-width: 768px) {
  .mv-nav-btn.-news.tabActive {
    /* border-top-left-radius: 40px; */
  }
}
.mv-nav-btn h3 {
  font-weight: 500;
  font-family: "futura-pt", sans-serif;
  font-size: 18px;
  line-height: 24px;
}
@media (min-width: 768px) {
  .mv-nav-btn h3 {
    font-size: 26px;
    font-weight: 500;
    line-height: 35px;
  }
}
.mv-nav-btn p {
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 10px;
  font-size: 8px;
  margin-top: -2px;
}
@media (min-width: 768px) {
  .mv-nav-btn p {
    font-size: 14px;
    line-height: 20px;
    margin-top: 0;
  }
}
.mv-tabs-container {
  background-color: #fff;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
.mv-tabs-item-container {
  cursor: pointer;
}
.mv-tabs-container.news {
  background-color: #fff;
}
@media (min-width: 768px) {
  .mv-tabs-container.news {
    /* border-top-left-radius: 20px; */
  }
}
.mv-tabs-slider-wrapper {
  padding: 20px 0 28px 20px;
}
@media (min-width: 768px) {
  .mv-tabs-slider-wrapper {
    padding: 29px 0 50px 0;
  }
}

.mv-tabs-btns-left-next,
.mv-tabs-btns-right-next,
.mv-tabs-btns-left-next-schedule,
.mv-tabs-btns-right-next-schedule {
  cursor: pointer;
}

.mv-tabs-btns-left-next img,
.mv-tabs-btns-right-next img,
.mv-tabs-btns-left-next-schedule img,
.mv-tabs-btns-right-next-schedule img {
  width: 20px;
}

@media (min-width: 768px) {
  .mv-tabs-btns-left-next img,
  .mv-tabs-btns-right-next img,
  .mv-tabs-btns-left-next-schedule img,
  .mv-tabs-btns-right-next-schedule img {
    width: 35px;
  }
}

.mv-nav-tabs-controller {
  display: none;
}

.mv-nav-tabs-controller.active {
  display: flex;
  height: 100%;
}

.mv-tabs-slider {
  margin: 0;
}
@media (min-width: 768px) {
  .mv-tabs-slider {
    margin: 0;
  }
}
.mv-tabs-item img {
  width: 100%;
}
.mv-tabs-item-txt {
  /*font-family: "Hiragino Kaku Gothic ProN","Noto Sans JP", sans-serif;*/
  font-weight: 400;
  color: #000;
  margin-top: 8px;
  font-size: 10px;
  line-height: 13.5px;
}
@media (min-width: 768px) {
  .mv-tabs-item-txt {
    font-size: 16px;
    display: block;
    line-height: 24px;
    letter-spacing: 0.05em;
    margin-top: 0;
    padding-inline: 10px 13px;
  }
}
.mv-tabs-item-txt.-date {
  display: block !important;
  margin-top: 0;
  font-weight: bold;
  font-size: 23px;
  line-height: 34px;
}

@media (max-width: 767px) {
  .mv-tabs-item-txt.-date {
    font-size: 13px;
    line-height: 18px;
  }

  .mv-tabs-item-head-txt {
  }
}

.mv-tabs-btns-left img,
.mv-tabs-btns-right img {
  width: 17px;
  height: 19px;
}
@media (min-width: 768px) {
  .mv-tabs-btns-left img,
  .mv-tabs-btns-right img {
    width: 45px;
    height: 45px;
  }
}
.mv-tabs-btn {
  position: relative;
}
.mv-tabs-btns-left {
  /* position: absolute; */
  top: 50%;
  /* transform: translateY(-50%); */
  cursor: pointer;
  left: 18px;
  /* background-color: #f0f3f5; */
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .mv-tabs-btns-left {
    left: 24px;
  }
}
.mv-tabs-btns-right {
  /* position: absolute; */
  top: 50%;
  /* transform: translateY(-50%); */
  cursor: pointer;
  /* background-color: #f0f3f5; */
  right: 18px;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .mv-tabs-btns-right {
    right: 12px;
  }
}
.mv-tabs-slider .slick-slide {
  padding: 0 17px 0 0;
}
@media (min-width: 768px) {
  .mv-tabs-slider .slick-slide {
    padding: 0 0 0 10px;
		padding: 0 10px 0 0;
  }
}
/* MV NAV TABS */
/* UTILITY */
.mv-tabs-container.active {
  opacity: 1;
  visibility: visible;
  height: 100%;
}
.mv-pc-hide {
  display: none !important;
}
.mv-pc-show {
  display: block !important;
}
@media (max-width: 767px) {
  .mv-pc-hide {
    display: block !important;
  }
  .mv-pc-show {
    display: none !important;
  }
}
.d-n {
  display: none;
}
.truncate {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
}
@media (min-width: 768px) {
  .truncate {
    -webkit-line-clamp: 2;
  }
}
/* NEW CODES */
.movie-btn {
  position: absolute;
  z-index: 8888888 !important;
  right: 1.4%;
  top: 6%;
  width: 16%;
}
.mv-slider-item {
  position: relative;
}
.modaal-close.movie-close {
  position: fixed;
  right: 10%;
  top: 10%;
  width: 50px;
  height: 70px;
}
@media (max-width: 1100px) {
  .modaal-close.movie-close {
    right: 2%;
  }
}
.modaal-close.movie-close span {
  font-size: 16px;
}
.modaal-close.movie-close:after,
.modaal-close.movie-close:before {
  width: 3px !important;
  background: #fff !important;
  height: 41px;
}
.mov-pop {
  display: block;
  margin: auto;
  padding: 30px;
  /* width: 100%; */
  /* height: 500px; */
  padding: 29% 50%;
  position: relative;
}
.mov-pop iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
@media (max-width: 767px) {
  .mv-slider .slick-dots {
    bottom: 14.872vw;
    display: block;
  }
  .mv-slider-wrapper {
    gap: 0px;
  }
  .movie-btn {
    right: auto;
    top: auto;
    width: 35%;
    bottom: 6%;
    left: 8%;
  }
  .modaal-close.movie-close {
    position: absolute;
    right: 0;
    left: 0;
    top: auto;
    width: 50px;
    height: 70px;
    bottom: -36%;
    margin: auto;
  }
  .mov-pop {
    padding: 26% 50%;
  }
  .mov-pop iframe {
    width: 90%;
    margin: auto;
  }
}
.mbtn {
  width: 100% !important;
  margin-top: 20px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.16);
}
@media (max-width: 767px) {
  .mbtn {
    margin-top: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
  }
}
/* FROM HERE */
.mv-modal-content {
  position: fixed;
  top: 0;
  visibility: hidden;
}
.mv-modal__wrapper {
  color: #fff;
  max-width: 894px;
  /*border: 1px solid #fff;*/
  background: #000;
	background: #293569;
  margin: 0 24px;
  position: relative;
  padding: 14px 15px;
}
@media (min-width: 768px) {
  .mv-modal__wrapper {
    padding: 36.6px 40.7px;
    margin: 0 auto;
  }
}
.mv-modal-popup_wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
@media (min-width: 768px) {
  .mv-modal-popup_wrapper {
    align-items: start;
    flex-direction: row;
    gap: 19px;
  }
}
.mv-modal-popup-left {
  max-width: 446px;
}
.mv-modal-popup-right {
  max-width: 346px;
  padding-top: 5px;
}
.mv-modal-popup-date {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
}
@media (min-width: 768px) {
  .mv-modal-popup-date {
    font-size: 18px;
    margin-bottom: 2px;
    line-height: 22px;
  }
}
.mv-modal-popup-head {
  margin-bottom: 15px;
}
.mv-modal-popup-ttl {
  font-weight: 600;
  font-family: "Noto Sans", sans-serif;
  font-size: 18px;
  line-height: 24px;
}
@media (min-width: 768px) {
  .mv-modal-popup-ttl {
    font-size: 24px;
    line-height: 32px;
  }
}
.mv-modal-popup-content-txt {
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 17px;
  font-size: 13px;
  line-height: 18.67px;
}
@media (min-width: 768px) {
  .mv-modal-popup-content-txt {
    font-size: 18px;
    line-height: 20.67px;
    line-height: 1.3;
    margin-bottom: 15px;
  }
}
.mv-modal-popup-btn {
  max-width: 156px;
}
.mv-modal-popup-btn.-btnmb {
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .mv-modal-popup-btn.-btnmb {
    margin-bottom: 19px;
  }
}
@media (min-width: 768px) {
  .mv-modal-popup-btn {
    max-width: 276px;
  }
}
.mv-modal-popup-btn a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans", sans-serif;
  padding: 8px 0;
  font-weight: 600;
  letter-spacing: 0.05em;
  background-color: #ffffff;
  color: #000;
  position: relative;
  line-height: 16px;
  font-size: 12px;
  text-align: center;
}
.mv-modal-popup-btn a br {
  display: none;
}
@media (min-width: 768px) {
  .mv-modal-popup-btn.-fst a {
    padding: 4px 0 5px;
    line-height: 26px;
  }
}
@media (min-width: 768px) {
  .mv-modal-popup-btn a br {
    display: block;
  }
}
@media (min-width: 768px) {
  .mv-modal-popup-btn a {
    font-size: 19px;
    padding: 16px 0 15px;
    line-height: 25px;
  }
}
.mv-modal-popup-btn a::after {
  content: "";
  background-image: url("../img/mv-slider/modaal-event/event-btn-rgt.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 12px;
  right: 10px;
  width: 5px;
}
@media (min-width: 768px) {
  .mv-modal-popup-btn a::after {
    width: 7px;
    right: 17px;
    height: 14px;
  }
}
.mv-tabs-item-link {
  color: #fff;
  text-decoration: underline;
  display: flex;
  align-items: center;
  font-family: "Noto Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
}
.mv-tabs-item-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 4px;
  padding-inline: 10px 13px;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .mv-tabs-item-head {
    order: -1;
    margin-top: 8px;
    margin-bottom: 3px;
    padding-inline: 0;
  }
}

.mv-tabs-item-head-txt {
  display: flex;
  /* color: #fff; */
  letter-spacing: -1px;
  /*text-decoration: underline;
	border-bottom: 1px solid #fff;*/
  font-size: 13px;
  line-height: 16px;
}
.mv-tabs-item-head-txt img {
  display: none;
}
@media (min-width: 768px) {
  .mv-tabs-item-head-txt {
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0;
    font-weight: 400;
  }
}
.mv-tabs-item-head-txt img {
  width: 20px;
  height: 16px;
  object-fit: cover;
}
.mv-modal__wrapper.-news {
  background: #293569 !important;
}
.mv-modal__wrapper.-news .mv-modal-popup-btn {
  max-width: 100% !important;
}
.mv-modal__wrapper .modaal-close {
  display: block;
  position: absolute;
  left: 50%;
  bottom: -90px;
  top: unset;
  transform: translateX(-50%);
  right: unset;
}
@media (min-width: 768px) {
  .mv-modal__wrapper .modaal-close {
    display: block;
    position: absolute;
    right: -5px;
    top: -90px;
    left: unset;
    transform: none;
  }
}
.mv-modal__wrapper .modaal-close::after,
.mv-modal__wrapper .modaal-close::before {
  height: 36px;
}
@media (min-width: 768px) {
  .mv-modal__wrapper .modaal-close::after,
  .mv-modal__wrapper .modaal-close::before {
    height: 56px;
  }
}
@media (max-width: 767px) {
  .mv-popup-in-wrp .modaal-inner-wrapper {
    padding: 115px 0;
  }
}
.mv-tabs-item-container {
  position: relative;
}
.alabel {
  display: block;
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.8vw;
  text-align: center;
  padding: 0.5vw;
  position: absolute;
  top: 0;
  width: 100%;
  /*font-family: "Hiragino Kaku Gothic ProN","Noto Sans JP", sans-serif;*/
}
@media (max-width: 1300px) {
  .alabel {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .alabel {
    display: flex;
    justify-content: space-between;
    font-size: 8px;
    padding: 0 2px;
    letter-spacing: 0;
  }
  .mv-tabs-item-txt.-date.pc {
    display: none !important;
  }
  .alabel-date {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 50%;
    text-align: left;
  }
}

.slick-disabled {
  /* display: none !important; */
}
.mv-modal-popup-btn02 a {
  color: #fff;
  text-decoration: underline;
  font-size: 15px;
  margin-top: 6px;
  display: inline-block;
}
/*全て共通：hideエリアをはじめは非表示*/
.hide-area {
  /*display: none;*/
  position: fixed;
  top: 0;
  visibility: hidden;
}
/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}
.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}
/*確認を促すモーダル：タイトルの色を変更したい場合*/
#modaal-title {
  font-size: 1.2rem;
  text-align: center;
  margin: 0 0 20px 0;
}
/*動画表示のモーダル：余白を変更したい場合*/
.modaal-video .modaal-inner-wrapper {
  padding: 0;
}
.modaal-close:after,
.modaal-close:before {
  width: 2px !important;
  background: #fff !important;
}
.modaal-close:focus,
.modaal-close:hover {
  outline: 0;
  /*background: none*/
}
.modaal-container {
  background: none;
  display: table;
  margin: auto;
  /*width: auto;*/
}
.hide-inner p {
  text-align: left;
  font-weight: bold;
  font-size: 20px;
  color: #fff;
  line-height: 1.5;
}
.hide-inner p a {
  color: #fff;
}
.hide-inner p.kojinjyouhou {
  text-align: center;
  font-size: 20px;
  margin-top: 20px;
}
.hide-inner p.kojinjyouhou a {
  text-decoration: underline;
}
.btn-mail {
  max-width: 180px;
  margin: 30px auto 0;
  display: block;
}
@media only screen and (max-width: 1090px) {
  .head-contact {
    max-width: 120px;
  }
  .head-contact a {
    background: url(../img/icon-mail.png) left 13px center no-repeat #000;
    background-size: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .head-contact {
    max-width: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .hide-inner p {
    font-size: 14px;
  }
  .hide-inner p.kojinjyouhou {
    font-size: 14px;
  }
  .modaal-inner-wrapper {
    vertical-align: top;
    text-align: center;
    padding: 180px 0;
  }
  .head-contact {
    position: absolute;
    height: 100%;
    right: 50px;
    width: 20%;
    max-width: 50px;
  }
  .head-contact a {
    color: #fff;
    background: url(../img/icon-mail.png) center top 13px no-repeat #000;
    background-size: 16px;
    padding-left: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none !important;
    padding-top: 22px;
    box-sizing: border-box;
  }
}
.modaal-close span {
  clip: auto;
  overflow: auto;
  width: auto !important;
  height: auto !important;
  left: 0;
  right: 0;
  bottom: -1px;
  font-family: "futura-pt", sans-serif;
  font-weight: bold;
  font-size: 12px;
}
.caption {
  position: absolute;
  right: 5px;
  color: #fff;
  bottom: 2px;
  font-size: 10px;
  text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.8);
}
@media only screen and (max-width: 900px) {
  .caption {
    font-size: 8px;
  }
}
@media only screen and (max-width: 767px) {
  .caption {
    right: 2px;
    bottom: -2px;
    font-size: 7px;
  }
}
/*20240221*/
.fist.mv-content {
  top: 30%;
  left: 50px;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .fist.mv-content {
    position: absolute;
    transform: translate(-50%, -50%);
    color: #fff;
    top: 20%;
    left: 50%;
    width: 100%;
    color: #000;
  }
  .mv-content {
    /*  top: 25%;
	line-height: 1.2;
	margin-bottom: 5px;*/
  }
  .mv-content-title {
    /* line-height: 1.2; */
    /* margin-bottom: 5px; */
  }
  .fist .mv-content-title {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 5px;
  }
}
.mp-ttl {
  border: none;
  justify-content: flex-start;
  width: 68%;
}
.ofc {
  font-weight: normal;
  font-size: 1.5625vw;
  margin-left: 2vw;
}
.tab-ttl {
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin: auto;
}
.tab-area {
  display: flex;
  cursor: pointer; /* カーソルポインターに */
  width: 30%;
}
.tab {
  width: calc(100% / 2);
  padding: 5px;
  text-align: center;
  /*font-family: "Aldrich", sans-serif;*/
  font-size: 60px;
  font-size: 1.4vw;
  line-height: 1.5;
  color: #3b4043;
  border-bottom: 5px solid #fff;
  font-weight: bold;
}
.tab.active {
  border-bottom: 5px solid #000;
}
.tab span {
  position: relative;
  color: #000;
}
.tab span::after {
  content: "";
  display: block;
  background: url(../img/tab-arrow.svg) center center no-repeat;
  background-size: contain;
  padding: 2.3%;
  margin: 6%;
  opacity: 0.4;
}

.tab.active span::after {
  opacity: 1;
}

.panel {
  display: none;
  position: relative;
}
.panel.active {
  display: block;
}
.panel-area {
  padding: 40px 10px;
  padding: 0;
  border-top: 1px solid #707070;
}
.panel-inner {
  position: relative;
}
.sp-tenpo {
  display: none;
}

/* NEW CODE */
.panel-pdf {
  /*max-width: 371px;*/
  width: 30%;
  position: absolute;
  right: 0;
  bottom: 0;
}
/*
@media (max-width: 991px) {
  .panel-pdf {
    max-width: 200px;
  }
}

@media (max-width: 1199px) {
  .panel-pdf {
    max-width: 290px;
  }
}
*/
@media (max-width: 767px) {
  .panel-pdf {
    position: unset;
    /*max-width: 330px;*/
    width: 84%;
    margin: 38px auto 0;
    display: block;
  }
}

.panel .pc-show {
  display: block;
}

@media (max-width: 767px) {
  .panel .pc-show {
    display: none;
  }
}

.panel .sp-hide {
  display: none;
}

@media (max-width: 767px) {
  .panel .sp-hide {
    display: block;
  }
}

@media only screen and (max-width: 767px) {
  .tab-ttl {
    width: 100%;
    display: block;
  }
  .panel-area {
    padding: 40px 0;
    background: #f0f3f5;
    border-top: 0;
  }
  .tab-area {
    width: 100%;
    padding-inline: 12.333vw;
    margin-bottom: 6px;
    gap: 10.667vw;
  }

  .tab.active {
    border-bottom: 3px solid #000;
  }
  .panel2 .panel-inner {
    width: 70%;
    margin: auto;
    margin-bottom: 20px;
  }
  .panel-inner {
    width: 96%;
    margin: auto;
  }
  .sp-tenpo {
    display: flex;
    justify-content: space-between;
    width: 88%;
    margin: auto;
  }
  .tenpo-left {
    width: 48%;
  }
  .tab {
    font-size: 18px;
    line-height: 24px;
    padding: 3px 0;
  }

  .tab span {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    line-height: 17px;
    position: relative;
  }

  .tab span::after {
    width: 5px;
    height: 12px;
    position: absolute;
    right: 13px;
  }
}

@media (min-width: 475px) and (max-width: 575px) {
  .tab-area {
    padding-inline: 14.133vw;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .tab-area {
    padding-inline: 15.433vw;
  }
}

.tnpo-midashi {
  background: url("../img/icon-g.svg") left center no-repeat;
  background-size: 17.23px 17.23px;
  padding-left: 30px;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 5px;
  margin-top: 20px;
}
.map .tenpo li {
  width: 21.1%;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
}
.sp-tenpo li {
  position: relative;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
  margin-bottom: 5px;
}
.map .tenpo li.cmsoon::after,
.map .sp-tenpo li.cmsoon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.2);
}
.map .tenpo .tp01 {
  top: 45.9%;
  left: 4%;
}
.map .tenpo .tp02 {
  top: 56%;
  left: 4%;
}
.map .tenpo .tp03 {
  top: 66%;
  left: 4%;
}
.map .tenpo .tp04 {
  top: 33.8%;
  left: 4%;
}
.map .tenpo .tp05 {
  top: 77.4%;
  left: 4%;
}
.map .tenpo .tp06 {
  top: 21.4%;
  left: 4%;
}
.map .tenpo .tp07 {
  top: 8.6%;
  left: 74.8%;
}
.map .tenpo .tp08 {
  top: 19.8%;
  left: 74.8%;
}
.map .tenpo .tp09 {
  top: 30.2%;
  left: 74.8%;
}
.map .tenpo .tp10 {
  top: 40.9%;
  left: 74.8%;
}
.map .tenpo .tp11 {
  top: 51.1%;
  left: 74.8%;
}
.map .tenpo .tp12 {
  top: 73.8%;
  left: 74.8%;
}
.map .tenpo .tp15 {
  top: 8.8%;
  left: 4%;
}
.map .tenpo .tp16 {
  top: 61.8%;
  left: 74.8%;
}
.map .tenpo.kansai li {
  width: 21.1%;
}
.map .tenpo .kansai-tp01 {
  top: 38.8%;
  left: 57.9%;
}
.map .tenpo .kansai-tp02 {
  top: 54.2%;
  left: 57.9%;
}
.sec_02 {
  padding-top: 6.25vw;
}
.sec_04 {
  background: #fff;
}
.js-slider-2_arrows .slick-prev,
.js-slider-2_arrows .slick-next {
  width: 69px;
  height: 41px;
  background-color: #cbcbcb;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.16);
}
.js-slider-2_arrows .slick-prev:before {
  background-image: url(../img/arrow_left-w.svg);
  width: 8px;
  height: 14px;
  background-repeat: no-repeat;
}
.js-slider-2_arrows .slick-next:before {
  background-image: url(../img/arrow_right-w.svg);
  width: 8px;
  height: 14px;
  background-repeat: no-repeat;
}
.mv-tabs-container .slick-dots {
  top: 50%;
  transform: translateY(-50%);
  /*display: none !important;*/
  height: 1px;
}
.mv-tabs-container .slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.mv-tabs-container .slick-dots li {
  display: none;
}
.mv-tabs-container .slick-dots li:first-child,
.mv-tabs-container .slick-dots li:last-child {
  display: inline-block;
}
.mv-tabs-container .slick-dots li:first-child {
  background: url("../img/icon-firstg.svg") center center no-repeat;
  position: absolute;
  left: -31px;
  bottom: -40px;
}
.mv-tabs-container .slick-dots li:last-child {
  background: url("../img/icon-lastg.svg") center center no-repeat;
  position: absolute;
  right: -31px;
  bottom: -40px;
}
.mv-tabs-container .slick-dots li button:before {
  font-size: 34px;
  display: none;
}
.mv-tabs-container .slick-dots li.slick-active {
  display: none;
}
.mv-tabs-container .slick-dotted.slick-slider {
  margin-bottom: 0;
}
.sec_03 {
  /*border-bottom: 1px solid #707070;*/
}
.sec_03_under {
  padding: 4.25vw 0 0;
}
@media only screen and (max-width: 767px) {
  .sec_03_under {
    padding: 15.25vw 0 0;
		margin-top: -6.25vw;
  }
}
.fist-btn {
  position: absolute;
  z-index: 2;
  display: inline-block;
  max-width: 26%;
  top: 63%;
  left: 40px;
}
@media only screen and (max-width: 767px) {
  .fist-btn {
    max-width: 116px;
    width: 100%;
    top: 38%;
    left: 10px;
  }
}
/*20240311*/
.sec_ttl.orange .mainttl {
  position: relative;
  color: #000;
  color: #fff;
  background: #3b4043;
  border-bottom: 10px solid #ffb101;
}
.sec_ttl.orange .mainttl::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: -100%;
  background: #3b4043;
  display: block;
  border-bottom: 10px solid #ffb101;
  top: 0;
}
.sec_ttl.orange.blue .mainttl {
  border-bottom: 10px solid #8bbce5;
}
.sec_ttl.orange.blue .mainttl::before {
  border-bottom: 10px solid #8bbce5;
}
.sec_ttl.orange.green .mainttl {
  border-bottom: 10px solid #b1d095;
}
.sec_ttl.orange.green .mainttl::before {
  border-bottom: 10px solid #b1d095;
}
@media only screen and (max-width: 767px) {
  .mv-tabs-btns-right {
    top: 44%;
    right: 10px;
  }
  .mv-tabs-btns-left {
    top: 44%;
    left: 10px;
  }
  .mv-tabs-btns-left img,
  .mv-tabs-btns-right img {
    width: 25px;
    height: 25px;
  }
  .mv-tabs-container .slick-dots li:last-child {
    bottom: -30px;
  }
  .mv-tabs-container .slick-dots li:first-child {
    bottom: -30px;
  }
}
.movie-btn02 {
  position: absolute;
  z-index: 2 !important;
  right: 0;
  top: 50.5%;
  width: 18.8%;
}
.mv-slider .slick-dots li {
  /* margin: 0 10px; */
  margin: 0 !important;
}
.sec_04_slider__li span img {
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.16);
}
.sec_04_slider__li span {
  width: 100%;
  padding-top: 10px;
  display: block;
  display: flex;
  margin-bottom: 1.171875vw;
}
.sec_04_inner_right {
}
#js-slider-2 .slick-list {
}
.sec_ttl .ttl {
  font-size: 1.71875vw;
  color: #000000;
  font-weight: bold;
  line-height: 100%;
  margin-top: 2.359375vw;
  margin-bottom: 1.359375vw;
}
.sec_04 .sec_inner {
  width: 90%;
  /*max-width: 1160px;*/
}
.sec_04_inner_left {
  width: 50%;
}
.sec_ttl.orange .mainttl {
  width: 100%;
  font-size: 5vw;
  padding-top: 10px;
}
.sec_04_inner_right {
  width: 44%;
}
.sec_02_inner_left {
  width: 45%;
  padding-left: 5%;
}
.sec_02 .sec_inner {
  align-items: flex-start;
}
.sec_02_inner_right {
  width: 51%;
	padding-right: 5%;
	display: flex;
}
.sec_02_inner_right span{
  width: 50%;
}
.sec_02_inner_right .sec_02_inner_right-txt{
  width: 50%;
	padding-left: 2.34375vw;
	background: #F0F3F5;
	padding-top: 2.34375vw;
}
.sec_02_inner_right .sec_02_inner_right-txt .adding-txt-right {
    font-size: 2.578125vw;
}
.sec_02_inner_right .sec_02_inner_right-txt .vs-list {
    /*width: 100%;*/
    display: flex;
    /* flex-wrap: wrap; */
    align-items: center;
    position: static;
	position: absolute;
}
.sec_02_inner_right .sec_02_inner_right-txt .vs-date.trnom {
    width: 100%;
    display: block;
    font-size: 1.8875vw;
	    margin-top: 2%;
}
.sec_ttl .mainttl.fixttl {
  border: none;
  background: none;
  color: #000000;
  font-weight: 500;
  margin-bottom: 0;
}
.sec_ttl .mainttl.fixttl::before {
  content: none;
}
.nv-list li {
  margin-bottom: 1.5vw;
}
.nv-list li:last-child {
  margin-bottom: 0;
}
.topics {
  width: 80%;
  margin: auto;
  padding: 2.25vw 0 6.25vw;
}
.topics-ttl {
  display: flex;
  background: #f0f3f5;
  font-size: 1.7187500000000002vw;
  font-weight: bold;
  line-height: 1.5;
  align-items: center;
  letter-spacing: 0;
  margin-bottom: 2vw;
}
.topics-ttl .futura {
  background: #8bbce5;
  color: #fff;
  padding: 5px 3vw;
  font-size: 2.14375vw;
  font-weight: 500;
  margin-right: 2.5vw;
  letter-spacing: 1pt;
}
.topics-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.topics-txt {
  width: 50%;
  font-size: 1.25vw;
  line-height: 2;
}
.topics-txt p {
  margin-bottom: 2vw;
}
.topics-img {
  width: 46%;
  padding: 0 2vw;
}
@media only screen and (max-width: 767px) {
  .movie-btn02 {
    right: 0;
    top: 68.5%;
    width: 49%;
  }
  .mv-popup-in-wrp2 .modaal-inner-wrapper {
    padding: 50px 0;
  }
  .mv-popup-in-wrp2 .mv-modal__wrapper .modaal-close {
    bottom: -49px;
  }
  .sec_ttl.orange .mainttl.fixttl {
    font-size: 46px;
    border: none;
  }
  .sec_ttl.orange .mainttl {
    font-size: 26px;
  }
  .sec_ttl .ttl {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .sec_01_inner_left {
    padding-left: 10%;
  }
  #sec_01.sec_01 {
    padding: 50px 0 30px;
  }
  .sec_01 {
    padding: 30px 0 10px;
  }
  .sec_ttl.orange .mainttl {
    padding: 8px 0;
  }
  .sec_ttl.orange.blue .mainttl {
    border-bottom: 5px solid #8bbce5;
  }
  .sec_ttl.orange.blue .mainttl::before {
    border-bottom: 5px solid #8bbce5;
  }
  .mp-ttl {
    width: 100%;
    padding-top: 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
  }
  .mp-ttl img {
    width: 55.2vw;
    margin-right: 4%;
    vertical-align: bottom;
  }
  .tab span::after {
    padding: 2.5%;
    margin: 5%;
  }

  .topics {
    width: 88%;
    padding: 20px 0 0;
  }
  .topics-ttl {
    display: block;
    font-size: 16px;
    margin-bottom: 10px;
  }
  .topics-ttl span {
    display: block;
    padding: 5px 10px;
  }
  .topics-ttl span.futura {
    padding: 5px 10px;
    font-size: 14px;
    margin-right: 0;
    display: block;
  }
  .topics-box {
    display: block;
  }
  .topics-txt {
    width: 100%;
    font-size: 13px;
    line-height: 1.5;
  }
  .topics-txt p {
    margin-bottom: 30px;
  }
  .topics-img {
    width: 100%;
    padding: 20px 0 0;
  }
  .sec_02 {
    padding: 60px 0 0 0;
  }
  .sec_02_inner_left {
    width: 100%;
    padding-right: 5%;
  }
  .sec_02_inner_right {
    width: 100%;
    padding-left: 5%;
  }
	.sec_02_inner_right .sec_02_inner_right-txt .adding-txt-right {
    font-size: 4.533333333333333vw;
	}
  .adding-txt-left {
    font-size: 24px;
  }
  .adding-txt-right {
    font-size: 17px;
    margin-left: 0px;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .adding-txt-left span {
    font-size: 12px;
    margin-top: 5px;
    white-space: nowrap;
  }
  .sec_02_seminarlist_box_link__a {
    padding: 14px 0;
  }
  .section_ttl_left {
    width: 45% !important;
    width: 58% !important;
  }
  .smt-box {
    flex-wrap: wrap;
  }
  .smt-box-txt {
    width: 100%;
    order: 2;
  }
  .sec_02_seminarlist_box_img {
    width: 100%;
    margin-bottom: 10px;
  }
  .sec_02_seminarlist_box_img img {
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.16);
  }
  .sec_02_seminarlist_box_link {
    padding: 5px 0;
  }
  .sec_02_seminarlist_box_header_span {
    padding: 5px 0px;
  }
  .sec_02_seminarlist_box_header_span__p1 {
    font-size: 18px;
  }
  .sec_02_seminarlist {
    padding: 40px 0 0;
  }
  .sec_04_inner_left {
    width: 100%;
  }
  .sec_ttl.orange.green .mainttl {
    border-bottom: 5px solid #b1d095;
  }
  .sec_ttl.orange.green .mainttl::before {
    border-bottom: 5px solid #b1d095;
  }
  .sec_04_inner_right {
    width: 100%;
  }
  .sec_04_sumi {
    width: 170.76px;
  }
  .js-slider-2_arrows .slick-prev,
  .js-slider-2_arrows .slick-next {
    width: 50px;
    height: 30px;
  }
  .sec_04_slider__li {
    width: 28vw;
    margin-right: 1.3vw;
    padding: 5px;
  }
  .sec_04_slider__li span img {
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.16);
  }
  .sec_04 {
    padding: 60px 0 40px 0;
  }
  .sec_ttl.orange .mainttl,
  .sec_ttl.orange .mainttl::before {
    border-bottom: 5px solid #ffb101;
  }
}
/*FVスライドボタン*/
.mv-slider .slick-dots li {
  width: calc(227px - 125px);
  height: 8px;
  width: 8px;
  opacity: 1;
  transition: all 0.3s;
}
.mv-slider .slick-dots li:hover {
  opacity: 0.6;
  transition: all 0.3s;
}

.mv-slider .slick-dots li button::before {
  content: "" !important;
  width: 6px;
  height: 6px;
  /* background: url("../img/fv-growth02.svg") center top 10px no-repeat; */
}

.mv-slider .slick-dots li button {
  width: 8px !important;
  height: 8px !important;
}

.mv-slider .slick-dots li:nth-child(2) button::before {
  /* background: url("../img/fv-event.svg") center center no-repeat; */
}
.mv-slider .slick-dots {
  /* text-align: left; */
  width: 100%;
  gap: 10px;
}
.mv-slider .slick-dots li:hover {
  opacity: 1;
}

.mv-slider .slick-dots .slick-active button::before {
  background-color: #fff;
}

/*モーダル改修*/
.map-pop-btn {
  max-width: 280px;
  display: block;
  margin: 30px auto;
}
.basyo img {
  width: auto;
  max-width: 100%;
}
.map-pop-img {
  max-width: 380px;
  width: 100%;
}

.mv-slider .slick-dots {
  display: none !important;
}

@media only screen and (max-width: 767px) {
  .mv-slider .slick-dots {
    /* display: none !important; */
    display: flex !important;
    justify-content: center;
  }
  .modaal-wrapper {
    padding-bottom: 150px;
  }
  .map-pop {
    top: 50px;
  }
  .modaal-inner-wrapper {
    padding: 0;
  }
  .map-pop-img {
    position: relative;
  }
  .map-pop-btn {
    left: 0;
    right: 0;
    display: block;
    margin: 15px auto;
    position: absolute;
    bottom: 0;
    max-width: 175px;
  }
}
.gc-bannar-area {
  position: relative;
}
.gc-bannar-link {
  position: absolute;
  max-width: 300px;
  margin: auto;
  bottom: 15%;
  left: 9%;
}
@media only screen and (max-width: 767px) {
  .gc-bannar-link {
    width: 86%;
    bottom: auto;
    left: 0;
    right: 0;
    top: 33%;
  }
  .vs-box-link .addp {
    font-size: 13px;
    margin-bottom: 2.5%;
  }
  .section_ttl_bk .section_ttl_left__p .futura {
    font-size: 24px;
  }
}
.llead {
  font-size: 1.25vw;
  color: #000000;
  line-height: 215%;
  margin: -2vw 0 2vw 0;
}
@media only screen and (max-width: 767px) {
  .llead {
    font-size: 13px;
    margin-bottom: 2.5%;
  }
}
.map-pop .btn-press {
  margin: 0;
}
/*20240325*/
.sec_02_seminarlist_box_link__a.closed {
  background-color: #cbcbcb;
  background-color: unset;
  color: #000;
}
.sec_02_seminarlist_box_link__a p {
  font-size: 1.562vw;
  color: #000;
  text-decoration: underline;
}
.sec_02_seminarlist_box_link__a p.noline {
  text-decoration: none;
}
.sec_02_seminarlist_box_link__a.vs.movie-icon p {
  text-decoration: none;
}
.sec_02_seminarlist_box_link__a.vs.movie-icon .icon_pdf {
  width: 1.6vw;
  top: calc(55% - 0.8984375vw);
}
.vs-list {
  /*width: 100%;*/
  display: flex;
  /* flex-wrap: wrap; */
  align-items: center;
  position: absolute;
  bottom: 2.34375vw;
}
.vs-list a {
  padding: 0;
  width: auto;
  display: flex;
  justify-content: flex-start;
  background: none;
}
.vs-list a:nth-child(2) {
  margin-left: 1.5625vw;
}
.vs-list a:nth-child(3) {
  margin-left: 1.5625vw;
}
.vs-list .sec_02_seminarlist_box_link__a .icon_pdf {
  position: static;
  width: 1.640625vw;
  margin-left: 1vw;
}
.vs-list .sec_02_seminarlist_box_link__a .icon_pdf.icon_blank {
  width: 1.240625vw;
}
.vs-date {
  display: flex;
  font-size: 2.1875vw;
  font-weight: bold;
  overflow: hidden;
  width: 100%;
  margin: -1vw 0 1vw 0;
}
.vs-date span {
  position: relative;
  line-height: 1.5;
}
.vs-date span::after {
  content: "";
  display: block;
  background: #ebebeb;
  height: 4px;
  width: 200%;
  position: absolute;
  right: -210%;
  top: 50%;
	display: none;
}
@media only screen and (max-width: 767px) {
  .sec_02_seminarlist_box_link__a p {
    font-size: 11px;
  }
  .vs-list .sec_02_seminarlist_box_link__a .icon_pdf {
    width: 3.640625vw;
    margin-left: 2vw;
  }
  .vs-list .sec_02_seminarlist_box_link__a .icon_pdf.icon_blank {
    width: 3.240625vw;
    margin-left: 2vw;
  }
  .vs-date {
    font-size: 12px !important;
        float: left;
        width: auto;
		margin: 0;
  }
	.vs-list {
    position: static;
    float: right;
		width: auto;
}
  .sec_02_seminarlist_box_link__a.vs.movie-icon .icon_pdf {
    width: 4.6vw;
    top: calc(39% - 0.8984375vw);
  }
}
/*2024ボタン追加*/
.head-voice {
  position: absolute;
  height: 100%;
  right: 200px;
  width: 30%;
  max-width: 200px;
}
.head-voice a {
  color: #fff;
  background: #294f88;
  background-size: 20px;
  padding-left: 0px;
  height: 100%;
  display: flex;
  align-items: center;
  text-decoration: none !important;
  white-space: nowrap;
  justify-content: center;
  font-size: 16px;
}
@media only screen and (max-width: 1090px) {
  .head-voice {
    right: 120px;
    max-width: 178px;
		max-width: 145px;
  }
}
.head-growth {
  margin-right: 19.2px;
}
.voice-btn {
  position: absolute;
  z-index: 2 !important;
  right: 9.4%;
  top: 54%;
  width: 16%;
  pointer-events: none;
}
.voice-btn {
  position: absolute;
  z-index: 2 !important;
  right: 0%;
  top: 0%;
  width: 18.8%;
}

@media only screen and (max-width: 767px) {
  .voice-btn {
    left: -2%;
    top: unset;
    bottom: -3%;
    width: 41%;
  }
  .head-growth {
    margin-right: 0;
  }
  .head-growth img {
    width: 90%;
  }
  .head-voice {
    right: 100px;
    width: 20%;
    max-width: 50px;
    border-right: 1px solid #fff;
  }
  .head-voice a {
    align-content: center;
    font-size: 8px;
    flex-wrap: wrap;
    text-align: center;
  }
}
.ccontact-btn {
  text-align: center;
  margin-top: 7%;
}
.ccontact-btn a {
  font-weight: bold;
  background: #000;
  color: #fff;
  font-size: 1.51875vw;
  padding: 1.7vw 7.8vw;
  border: 2px solid #000;
  width: 58vw;
  display: block;
  margin: auto;
  line-height: 1;
}
.ccontact-btn a:hover {
  background: #fff;
  color: #000;
  opacity: 1;
}
.ccontact-btn.eventt a {
  border: 2px solid #000;
  color: #fff;
}
.ccontact-btn.eventt a:hover {
  background: #fff;
  color: #000;
}
.ccontact-btn a span {
  margin-right: 1vw;
}
.ccontact-btn a img {
  width: 5.5%;
}
@media only screen and (max-width: 767px) {
  .ccontact-btn a {
    font-size: 16px;
    padding: 7px;
    border: 2px solid #000;
    display: block;
    line-height: 1.3;
    width: 100%;
  }
  .ccontact-btn a img {
    display: none;
  }
  .ccontact-btn.eventt a {
    border: 2px solid #000;
    max-width: 88%;
    padding: 17px;
  }
}
.bottom-contact {
  display: flex;
  justify-content: center;
  max-width: 60%;
  margin: 3.203vw auto 0;
  line-height: 1.5;
  flex-wrap: wrap;
}
.bottom-contact a {
  padding: 1vw;
  display: block;
}
.bottom-contact-tel {
  border: 1px solid #3b4043;
  background: url("../img/sankaku.svg") right bottom no-repeat;
  text-align: center;
  width: 48%;
}
.bottom-contact-tel span {
  display: block;
  font-size: 1.1vw;
}
.bottom-contact-tel .bottom-contact-tel-tel {
  font-size: 2.71875vw;
  font-weight: bold;
}
.bottom-contact-contact {
  text-align: center;
  width: 66%;
  color: #3b4043;
}
.bottom-contact-contact span {
  display: block;
}
.bottom-contact-contact span img {
  width: 26%;
}
.bottom-contact-contact a {
  color: #3b4043;
  font-size: 1.45vw;
  font-weight: bold;
  padding: 1.5vw;
  border: 1px solid #ffe100;
  background: url("../img/sankaku-icon.svg") right 1.5vw center no-repeat
    #ffe100;
  background-size: 2%;
}
.bottom-contact-txt {
  margin-top: 0.5vw;
}
@media only screen and (max-width: 767px) {
  .bottom-contact {
    max-width: 90%;
    margin-top: 27px;
  }
  .bottom-contact-tel {
    border: 1px solid #3b4043;
    background: url("../img/sankaku.svg") right bottom no-repeat;
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
  }
  .bottom-contact-contact {
    text-align: center;
    width: 100%;
    color: #fff;
  }
  .bottom-contact-contact a {
    border: 1px solid #ffe100;
    background: url("../img/sankaku-icon.svg") right 3vw center no-repeat
      #ffe100;
    background-size: 7px;
  }
  .bottom-contact-tel .bottom-contact-tel-tel {
    font-size: 29px;
  }
  .bottom-contact-tel span {
    font-size: 11px;
  }
  .bottom-contact a {
    padding: 5px 10px 10px 10px;
  }
  .bottom-contact-contact a {
    font-size: 16px;
    padding: 14px 10px 15px 14px;
  }
  .bottom-contact-contact span img {
    width: 111px;
  }
}
/*GROWTHの声追加*/
.header_right ul.addvoice {
  margin-right: 350px;
}
@media only screen and (max-width: 900px) {
  .header_right ul.addvoice li {
    margin-left: 10px;
  }
  .header_right ul.addvoice li a {
    font-size: 14px;
  }
}

.header_right ul.addvoice li a .header-gc {
  width: 17.578vw;
  max-width: 220px;
}
@media (min-width: 1280px) {
  .header_right ul.addvoice li a .header-gc {
    width: 12.588vw;
  }
}

.header-sp-menu-container {
  display: none;
}

@media (max-width: 767px) {
  .header-sp-menu-btn img {
    width: 20px;
    height: 15px;
    cursor: pointer;
  }

  .header-sp-menu-btn {
    display: flex;
    align-items: center;
  }

  .header-sp-menu-container {
    display: block;
    position: fixed;
    top: 0;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    background-color: #fff;
    width: 100%;
    z-index: 99;
    transition: all 0.5s ease;
  }

  .header-sp-menu-container.active {
    height: 100%;
    max-height: 100%;
    visibility: visible;
    opacity: 1;
    overflow: scroll;
    transition: all 0.5s ease-in-out;
  }

  .header-sp-menu-btn .close {
    display: none;
  }

  .header-sp-menu-btn.active .close {
    display: block;
  }

  .header-sp-menu-btn.active .hamburger {
    display: none;
  }

  .header-sp-menu-content {
    padding: 89px 20px 0;
  }

  .header-sp-menu-item a {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    font-family: "futura-pt", sans-serif;
    font-size: 26px;
    line-height: 35px;
    font-weight: 500;
    color: #000000;
  }

  .header-sp-menu-item span {
    font-size: 12px;
    font-family: "Noto Sans", sans-serif;
    line-height: 16px;
    letter-spacing: 0.05em;
    font-weight: 400;
    margin-bottom: 4px;
  }

  .header-sp-menu-item .gc-head-img {
    width: 146.76px;
  }

  .header-sp-menu-item:not(:last-of-type) {
    margin-bottom: 29px;
  }

  .header-sp-menu-item.dash {
    padding-left: 20px;
    position: relative;
  }

  .header-sp-menu-item.dash::before {
    content: "";
    position: absolute;
    width: 7px;
    height: 1px;
    background-color: #000;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
  }

  .header-sp-menu-contact a {
    max-width: 330px;
    width: 100%;
    height: 60px;
    font-size: 24px;
    font-weight: 500;
    font-family: "futura-pt", sans-serif;
    line-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12.2px;
    position: relative;
    background-color: #000000;
    color: #fff;
    margin: 85px auto 0;
  }

  .header-sp-menu-contact a img {
    width: 27px;
  }

  .header-sp-menu-contact a::after {
    content: "";
    position: absolute;
    background-image: url(".././img/mv/new/contact-rgt.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 7px;
    height: 16px;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
  }
}

/* ****************
*******NEW CODE ********** */

.new-growth-row {
  display: flex;
  align-items: flex-end;
  max-width: 90.625vw;
  margin: 0 auto;
  gap: 7.5vw;
}
@media (max-width: 767px) {
  .new-growth-row {
    max-width: 100%;
    padding: 0 10px;
    gap: 0;
    flex-direction: column;
    align-items: start;
  }
}

.new-growth-content {
  max-width: 32.891vw;
}

@media (max-width: 767px) {
  .new-growth-content {
    max-width: 100%;
  }

  .new-growth-top {
    max-width: 318.94px;
    margin-top: 20px;
  }
}

.new-growth-txt {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  line-height: 2.109vw;
  font-size: 1.406vw;
  letter-spacing: 0.05em;
  margin-top: 2.5vw;
}

@media (max-width: 767px) {
  .new-growth-txt {
    margin-top: 20px;
    font-size: 13px;
    line-height: 20px;
  }
}

.new-growth-img {
  max-width: 50.234vw;
}

@media (max-width: 767px) {
  .new-growth-img {
    max-width: 100%;
    margin-top: 20px;
  }
}

.new-growth-btn a {
  margin-top: 2.656vw;
  display: flex;
  align-items: center;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  color: #000;
  background-color: #fff;
  max-width: 19.922vw;
  width: 100%;
  height: 4.453vw;
  position: relative;
  justify-content: center;
  letter-spacing: 0.05em;
  font-size: 1.406vw;
  line-height: 1.875vw;
  border: 1px solid #000;
}

@media (max-width: 767px) {
  .new-growth-btn a {
    max-width: 354px;
    margin-top: 36px;
    height: 42px;
    font-size: 16px;
    line-height: 21px;
    margin-inline: auto;
  }
}

.new-growth-btn a::after {
  content: "";
  background-image: url("../img/new-sec/rgt-chevron.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 8px;
  height: 10px;
  top: 50%;
  transform: translateY(-50%);
  right: 14px;
  position: absolute;
}

.headline {
  font-size: 5vw;
  line-height: 6.641vw;
  font-weight: 700;
  font-family: "futura-pt", sans-serif;
  letter-spacing: 0.08em;
  padding-bottom: 0.391vw;
  position: relative;
  width: 100%;
}

@media (max-width: 767px) {
  .headline {
    font-size: 30px;
    line-height: 40px;
    padding-bottom: 3px;
    margin-bottom: 10px;
    width: 100%;
  }
}

.headline::after {
  content: "";
  background-color: #000;
  height: 0.469vw;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -0.391vw;
}

@media (max-width: 767px) {
  .headline::after {
    height: 4px;
    width: calc(100% + 5vw);
    bottom: -4px;
  }
}

.headline::before {
  content: "";
  background-color: #9abfec;
  height: 0.469vw;
  width: 4.531vw;
  position: absolute;
  left: 0;
  bottom: -0.391vw;
  z-index: 1;
}

@media (max-width: 767px) {
  .headline::before {
    bottom: -4px;
    width: 40px;
    height: 4px;
  }
}

.orange .headline::before {
  background-color: #ffb101;
}

.green .headline::before {
  background-color: #b1d095;
}

.loading-video {
  position: absolute;
  width: 100%;
  z-index: 50;
  transition: all 0.3s ease;
  background-color: rgba(0, 0, 0);
}

@media (max-width: 767px) {
  .loading-video {
    background-color: rgba(0, 0, 0);
    padding-inline: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

#loadingvideo {
  aspect-ratio: 1280 / 720;
}

@media (max-width: 767px) {
  #loadingvideo {
    aspect-ratio: 375 / 209;
    width: 100vw;
    /* height: 51.367vw; */
  }
}

.loading-video.window-loaded {
  opacity: 0;
  height: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.loading-layer {
  width: 100%;
  height: 100%;
  background-color: transparent;
  position: absolute;
  inset: 0;
}

.loading-inner {
  position: relative;
  line-height: 0;
}

.video-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  padding: 1.563vw 0;
  gap: 1.563vw;
  z-index: 90;
  right: 5.469vw;
  top: 5.953vw;
  cursor: pointer;
}

@media (max-width: 767px) {
  .video-btns {
    top: 55px;
  }
}

.video-btn-txt {
  font-size: 1.25vw;
  line-height: 1.875vw;
  text-transform: uppercase;
  font-family: "Noto Sans", sans-serif;
  font-weight: 500;
  background-color: #000;
  padding: 0 0.781vw;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 7.813vw;
  height: 3.125vw;
  /* border-radius: 50%; */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid #fff;
}

@media (max-width: 767px) {
  .video-btn-txt {
    font-size: 15px;
    line-height: 21px;
    padding: 0 5px;
    width: 75px;
    height: 25px;
  }
}

.video-btn-txt:hover {
  opacity: 0.7;
}

.mv-img {
  position: relative;
}

.mv-img .img-ab {
  position: absolute;
  top: 0;
  z-index: 2;
  left: 0;
  width: 12.266vw;
}

@media (max-width: 767px) {
  .mv-img .img-ab {
    width: 60px;
  }
}

.mv-img .img-ab.event {
  left: 2.969vw;
  top: unset;
  bottom: 30vw;
}

@media (max-width: 767px) {
  .mv-img .img-ab.event {
    left: 3.467vw;
    bottom: 48.8vw;
  }
}

.mv-img .img-ab.collabo {
  right: 24.766vw;
  bottom: 38.781vw;
  left: unset;
  top: unset;
}

@media (max-width: 767px) {
  .mv-img .img-ab.collabo {
    right: 22.667vw;
    left: unset;
    bottom: 52.8vw;
  }
}
.mv-img .img-ab.place {
  bottom: 11.406vw;
  top: unset;
  left: 37.344vw;
}

@media (max-width: 767px) {
  .mv-img .img-ab.place {
    bottom: 27.63vw;
    left: 34.667vw;
  }
}

.mv-top .img-ab {
  transform: translateY(-15px);
  transition: 0.8s ease;
  opacity: 0;
  visibility: hidden;
}

.mv-top .img-ab.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition-property: opacity, visibility;
  transition-property: all;
}

.mv-sp {
  opacity: 1;
  visibility: visible;
  height: 100%;
}

.mv-sp.hide {
  opacity: 0;
  height: 51.367vw;
  visibility: hidden;
  transition: 0.5s all ease;
}

.balloon.animate .img-ab {
  animation-name: upDown;
  animation-fill-mode: backwards;
  animation-iteration-count: infinite;
  animation-duration: 1s;
  animation-direction: alternate;
}

.balloon:hover {
  opacity: 1 !important;
}

.img-ab {
  transition: 0.3s all ease-in-out;
}

.balloon .img-ab:hover {
  animation-name: scaleUP;
  animation-duration: 300ms; /* Quickens the animation */
  animation-fill-mode: both;
  animation-timing-function: ease;
}

@keyframes upDown {
  0% {
    margin-bottom: 0;
  }

  100% {
    margin-bottom: 10px;
  }
}

@keyframes upDownsp {
  0% {
    margin-bottom: 0;
  }

  100% {
    margin-bottom: 5px;
  }
}

@keyframes scaleUP {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

/* *20240628MAP修正 */
.map .tenpo li {
  box-shadow: none;
}
.map .tenpo .tp15 {
  top: 9.8%;
  left: 4%;
}
.map .tenpo .tp06 {
  top: 22.8%;
  left: 4%;
}
.map .tenpo .tp04 {
  top: 36.8%;
  left: 4%;
}
.map .tenpo .tp01 {
  top: 48.9%;
  left: 4%;
}
.map .tenpo .tp03 {
  top: 69.8%;
  left: 4%;
}
.map .tenpo .tp02 {
  top: 59.3%;
  left: 4%;
}
.map .tenpo .tp05 {
  top: 82.4%;
  left: 4%;
}
.map .tenpo .tp07 {
  top: 9.6%;
  left: 75.1%;
}

.map .tenpo .tp12 {
  top: 82.2%;
  left: 75.1%;
}
.map .tenpo .tp08 {
  top: 21.8%;
  left: 75.1%;
}
.map .tenpo .tp09 {
  top: 32.2%;
  left: 75.1%;
}
.map .tenpo .tp10 {
  top: 44.9%;
  left: 75.1%;
}
.map .tenpo .tp11 {
  top: 55.1%;
  left: 75.1%;
}
.map .tenpo .tp16 {
  top: 68.8%;
  left: 75.1%;
}
.sp-tenpo li {
  box-shadow: none;
}
@media (min-width: 768px) {
  .panel-pdf {
    width: 26%;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 8%;
    margin: auto;
  }
}

.mv-top .mv-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  max-height: 0;
  /* transition: all ease-in-out 0.5s; */
}

.mv-top .mv-hover.show {
  opacity: 1;
  max-height: 100%;
  position: relative;
}

/*ポップアップ追加*/
.kochira {
  margin-top: 20px;
}
.kochira a {
  font-size: 16px;
  font-weight: bold;
  text-decoration: underline;
  position: relative;
}
.kochira a::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 20px;
  right: -20px;
  background: url("../img/kochira-arrow.svg") no-repeat;
}
@media (max-width: 767px) {
  .kochira a {
    font-size: 12px;
  }
}

/* RENNOVATION SECTION COLLABO */
.collabo {
  width: 90.625vw;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .collabo {
    padding-inline: 10px;
    width: 100%;
  }
}

.collabo .headline::before {
  background-color: #ffb101;
}

@media (max-width: 767px) {
  .collabo .headline::after {
    width: calc(100% + 4px);
  }
}

.collabo-top-ttl {
  font-family: "Noto Sans", sans-serif;
  font-size: 2.344vw;
  font-weight: 700;
  line-height: 3.203vw;
  margin-top: 2.656vw;
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  .collabo-top-ttl {
    font-size: 20px;
    line-height: 28px;
    margin-top: 20px;
  }
}

.collabo-top-txt {
  font-family: "Noto Sans", sans-serif;
  font-size: 1.406vw;
  line-height: 2.109vw;
  letter-spacing: 0.05em;
  font-weight: 400;
  margin-top: 1.563vw;
}

@media (max-width: 767px) {
  .collabo-top-txt {
    margin-top: 16px;
    font-size: 13px;
    line-height: 21px;
  }
}

.collabo-startup {
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 1.719vw;
  margin-top: 3.438vw;
}

@media (max-width: 767px) {
  .collabo-startup {
    margin-top: 25.6px;
    font-size: 18px;
    line-height: 22px;
  }
}

.collabo-startup-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.563vw 4.297vw;
  align-items: start;
  margin-top: 1.172vw;
}

@media (max-width: 767px) {
  .collabo-startup-list {
    gap: 15px 17px;
    margin-top: 14px;
  }
}

.collabo-startup-logos {
  width: calc((100% / 6) - (4.297vw * 5) / 6);
}

@media (max-width: 767px) {
  .collabo-startup-logos {
    width: calc((100% / 3) - (17px * 2) / 3);
  }
}

.collabo-startup-img {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.collabo-startup-txt {
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 1vw;
  line-height: 1.563vw;
  margin-top: 15px;
}

@media (max-width: 767px) {
  .collabo-startup-txt {
    margin-top: 12px;
    line-height: 17px;
    font-size: 13px;
  }
}

/* RENNOVATION SECTION COLLABO */

.mv-img .img-ab.venture {
  top: unset;
  left: unset;
  right: 5.625vw;
  bottom: 2.422vw;
  width: 13.938vw;
	width: 18.338vw;
}

@media (max-width: 767px) {
  .mv-img .img-ab.venture {
    width: 54px;
		width: auto;
    bottom: 21.067vw;
    left: unset;
    right: 3.2vw;
  }
}
.kotei{
	position: relative;
}
.kotei .kotei-txt{
	position: absolute;
    width: 30%;
    left: 1vw;
    top: .4vw;
}
@media (max-width: 767px) {
.kotei .kotei-txt{
    width: 40%;
    left: 2vw;
    top: 1.4vw;
}
}


/*event*/
.goto-event{
	display: flex;
	justify-content: space-between;
	width: 80%;
	margin: auto;
}

.old-event{
    font-weight: bold;
    background: url("../img/sankaku-w.svg") no-repeat right 20px center #B1D095;
    color: #fff;
    font-size: 1.51875vw;
    padding: 1.7vw 1.7vw;
		text-align: center;
    border: 2px solid #B1D095;
    width: 46%;
    display: block;
    margin: auto;
    line-height: 1;
	background-size: 2%;
}
.old-event:hover {
    background: url("../img/sankaku-b.svg") no-repeat right 20px center #fff;
    color: #B1D095;
    opacity: 1;
	background-size: 2%;
}
.inq-event{
    font-weight: bold;
    background: #000;
    color: #fff;
    font-size: 1.51875vw;
    padding: 1.7vw 1.7vw;
		text-align: center;
    border: 2px solid #000;
    width: 46%;
    display: block;
    margin: auto;
    line-height: 1;
}
.inq-event:hover {
    background: #fff;
    color: #000;
    opacity: 1;
}
.ic-iq{
	position: relative;
}
.ic-iq::before{
	    content: "";
    display: inline-block;
    width: 2.1vw;
    height: 1.5vw;
    background: url(../img/ic-iq-w.svg) no-repeat center center;
    background-size: contain;
    position: relative;
    top: 0.2vw;
    margin-right: 0.5vw;
}
.ic-iq:hover::before{
    background: url(../img/ic-iq-b.svg) no-repeat center center;
    background-size: contain;
    position: relative;
}
@media (max-width: 767px) {
.goto-event {
    display: block;
    width: 100%;
}
.old-event {
    font-size: 16px;
    padding: 15px 7px;
    display: block;
    line-height: 1.3;
    width: 100%;
	background-size: 6px;
	margin-bottom: 20px;
}
.old-event:hover {
	background-size: 6px;
}
.inq-event {
    font-size: 16px;
    padding: 15px 7px;
    display: block;
    line-height: 1.3;
    width: 100%;
}
.ic-iq::before {
    width: 20px;
    height: 20px;
    top: 4px;
    margin-right: 5px;
}
}

/*NEWSアーカイブ追加*/
.link-news{
	font-size: 20px;
	padding: 20px 40px;
	margin-left: 30px;
	font-weight: 500;
	background: url(../img/news/arrow.svg) no-repeat right center
}
@media (min-width: 768px) {


}
	.mv-nav-wrapper{
		align-items: center;
    justify-content: flex-start;
	}
	.ctrlbtn{
		float: right;
    position: absolute;
    right: 4.688vw;
	}
@media (max-width: 767px) {
	    .mv-nav-tabs-btn {
        max-width: 90px;
    }
	.mv-nav-wrapper{
		gap: 0;
	}
	.mv-nav-tabs-btn{
		margin-right: 0;
	}
.link-news{
	font-size: 11px;
	padding: 10px 20px 10px 0;
	margin-left: 10px;
	margin-top: 10px;
	font-weight: 500;
	background: url(../img/news/arrow.svg) no-repeat right bottom 10px;
	background-size: 15px;
	        line-height: 1.2;
}
	.ctrlbtn {
    margin-top: 15px;
}
}

/*ベンチャーサミット修正*/
@media (min-width: 768px) {
.vs-list {
    width: 38%;
}
.sec_02_inner_right {
    width: 50%;
}
.vs-box-under {
    padding: 0;
}
.vs-box-img {
    width: 50%;
}
.vs-box-link {
	width: 50%;
    padding: 2.34375vw 6.34375vw;
}
	.vs-list div{
		width: 38%;
	}
.vs-list a:nth-child(2) {
    width: 30%;
}
.vs-list a:nth-child(3) {
    width: 30%;
}
}
@media only screen and (max-width: 768px) {
    .vs-box-link {
        padding: 15px;
    }
	   .sec_02_seminarlist .lead_txt {
        margin-bottom: 10px;
    }
	.vs-list a:nth-child(2),.vs-list a:nth-child(3) {
    margin-left: 3.5625vw;
}
}

/*venture2025*/
@media (min-width: 768px) {
	.vs-box .lead_txt{
		line-height:1.5;
	}
	.adding-txt {
    margin-left: auto;
    margin-right: auto;
		width: 91%;
		    
}
    .vs-list {
        width: 34%;
					bottom: 1.54375vw;
    }
	.vs-list.ne2025{
        bottom: 4.54375vw;
    }
	.vs-list.ne2025 a:nth-child(2) {
        width: 27%;
    }
	    .vs-list.ne2025 div {
        width: 45%;
    }
}
@media only screen and (max-width: 768px) {
	.vs-list.ne2025 {
    margin-bottom: 15px;
		    width: 76%;
}
	
}


/*202507改修*/
.series-ttl{
	margin-bottom: 4.359375vw;
	padding-top: 1vw;
	width: 94%;
    margin: 0 auto 4.359375vw;
}
@media (max-width: 767px) {
   .series-ttl .headline::after {
        width: calc(100% + 0vw);
    }
	   .series-ttl .mp-ttl img {
        width: 100%;
        margin-right: 0;
        vertical-align: bottom;
    }
}
#page_top{
  width: 80px;
  height: 80px;
  position: fixed;
  right: 0;
  bottom: 0;
  opacity: 1;
	z-index: 2;
	bottom: -100px;
}
#page_top a{
  position: relative;
  display: block;
  width: 80px;
  height: 80px;
  text-decoration: none;
}

@media (max-width: 767px) {
#page_top{
  width: 50px;
  height: 50px;
	margin-bottom: -30px;
}
#page_top a{
  width: 50px;
  height: 50px;
}
}

/*ヘッダ調整*/
@media (min-width: 768px) {
	header h1, header h2, header h3, header h4, header h5, header p, header a {
    line-height: inherit !important;
}
}