@charset "utf-8";



/*h2 {
    font-size: 2.7rem;
    letter-spacing: 0.1em;
}

@media screen and (max-width:768px){
h2 {
    font-size: 2.4rem;
}
}



h2::after {
    content: "";
    width: 60px;
    margin: 10px 0 35px;
    border-bottom: #0490d8 2px solid;
    display: block;
}

@media screen and (max-width:768px){
h2::after {
    width: 40px;
    margin: 10px 0 20px;
}
}*/

main {
    overflow-x: hidden;
}

/***** keyvisual *****/
#keyvisual {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}



#keyvisual img {
    width: 100%;
}

#keyvisual .mv_title img {
    position: absolute;
    top: 35px;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 60vw;
    /*max-width: 700px;*/
    height: auto;
}
@media screen and (max-width:768px){
#keyvisual .mv_title img {
  top: 20px;
  right: 0;
  left: 10px;
  }
}

#keyvisual .mv_udon01 img {
  position: absolute;
  bottom: 30px;
  right: calc(-13vw / 3);
  width: 27.3vw;
  height: auto;
  z-index: 990;
}
#keyvisual .mv_udon03 img {
  position: absolute;
  bottom: 25%;
  right: calc(11vw / 3);
  width: 14vw;
  height: auto;
  z-index: 999;
}
#keyvisual .mv_hashi img {
  position: absolute;
  bottom: -3%;
  left: calc(-1vw / 3);
  width: 26vw;
  height: auto;
  z-index: 999;
}

@media screen and (max-width:768px){
#keyvisual .mv_udon01 img {
  bottom: 20px;
}
  #keyvisual .mv_udon03 img {
  bottom: 28%;
}
}
@media screen and (max-width:500px){
#keyvisual .mv_udon01 img {
  bottom: 12px;
}
  #keyvisual .mv_udon03 img {
  bottom: 27%;
}
}


/* car01 */
.car01 {
	position: absolute;
  bottom: 18%;
  right: 0;
	width: 8vw;
	animation: car01_move 10s linear infinite;
}

@keyframes car01_move {

	0% {
    right: 10%;
		opacity: 1;
    }
	70% {
		right: 120%;
		opacity: 1;
	}
	71% {
		right: 120%;
		opacity: 0;
	}
	72% {
		right: -10%;
		opacity: 0;
	}
	73% {
		right: -10%;
		opacity: 1;
	}
    100% {
        right: 0;
		opacity: 1;
    }
}


/* car02 */
.car02 {
	position: absolute;
  bottom: 18%;
  right: 0;
	width: 8vw;
	animation: car02_move 10s linear infinite;
  animation-delay: 3s;
}
@keyframes car02_move {

	0% {
    right: 10%;
		opacity: 1;
    }
	70% {
		right: 120%;
		opacity: 1;
	}
	71% {
		right: 120%;
		opacity: 0;
	}
	72% {
		right: -10%;
		opacity: 0;
	}
	73% {
		right: -10%;
		opacity: 1;
	}
    100% {
        right: 0;
		opacity: 1;
    }
}



/* drone01 */
.drone01 {
  position: absolute;
  width: 6vw;
  height: 6vw;
  top: 40%;
  left: 35%;
  animation: drone01_move 1.8s ease-in-out infinite alternate-reverse;
}
@keyframes drone01_move {
  0% {
    transform: translateY(-5%);
  }
  100% {
    transform: translateY(28%);
  }
}

/* ship01 */
.ship01 {
  position: absolute;
  width: 7vw;
  bottom: 4.5%;
  opacity: 0;
 left: 0;
  animation: ship01_move 3s linear infinite;
  animation-duration: 18s; /* アニメーションの時間 */
  animation-delay: 0s; /* アニメーション開始時間 */

}
@keyframes ship01_move {
  0% {
    left: 0;
    opacity: 1;
  }
  39% {
    left: 40%;
    opacity: 1;
  }
  40% {
    left: 40%;
    opacity: 0;
  }
  100% {
    left: 40%;
    opacity: 0;
  }
}

/* ship02 */
.ship02 {
  position: absolute;
  width: 7vw;
  bottom: 4.5%;
  left: 40%;
  opacity: 0;
  /*left: 30%;*/
  animation: ship02_move 3s linear infinite;
  animation-duration: 18s; /* アニメーションの時間 */
  animation-delay: 7s; /* アニメーション開始時間 */
}
.ship02 img {
  transform: scale(-1, 1);
}
@keyframes ship02_move {
    0% {
    left: 40%;
    opacity: 0;
  }
  5% {
    left: 40%;
    opacity: 1;
  }
  6% {
    left: 40%;
    opacity: 1;
  }
  100% {
    left: -40%;
    opacity: 1;
  }
}


/* mv_udon02 */
.mv_udon02 {
  position: absolute;
	width: 30vw;
  top:10%;
  right: calc(-45vw / 3);
  animation: udon02_move 2s ease-in-out infinite alternate-reverse;
  z-index: 991;
}
@keyframes udon02_move {
  0% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(10%);
  }
}

/***** close *****/
#close {
	margin: 0 0 30px;
	padding: 30px;
	border: #d00 2px solid;
	color: #d00;
	font-weight: bold;
	font-size: 1.8rem;
  background: #FEEEEE;
}

@media screen and (max-width:768px){

}





/***** new *****/
#new {
    width: 700px;
    margin: 30px auto 0;
}

@media screen and (max-width:768px){
#new {
    width: calc(100% - 40px);
    padding: 0 10px;
    display: block;
}
}



#new h2 {
    font-size: 3rem;
    color: #160053;
    font-weight: 900;
}

@media screen and (max-width:768px){
#new h2 {
    width: 100%;   
    height: auto;
    margin-bottom: 15px;
    padding: 10px 0;
    font-size: 1.7rem;
    text-align: center;
    display: block;    
    background-color: #c4e6f2;
}
}



#new dl {
    height: 150px;
    overflow: auto;
}

@media screen and (max-width:768px){
#new dl {
    width: 100%;
    height: auto;
    margin-left: 0;
    overflow: hidden;
}
}



#new dt {
    width: 140px;
    padding-left: 18px;
    float: left;
    clear: left;
    background: url("../images/icon_arrow.svg") 0 50% no-repeat;
    background-size: 4px 7px;
}

@media screen and (max-width:768px){
#new dt {
    width: 100%;
    padding-left: 15px;
    background: url("../images/icon_arrow.svg") 0 50% no-repeat;
    background-size: 4px 7px;
    float: none;
}
}



#new dd {
    margin-bottom: 10px;
    padding: 0 10px 10px 155px;
    border-bottom: #333 1px dotted;
}

@media screen and (max-width:768px){
#new dd {
    margin: 5px 0 10px;
    padding: 0 0 10px 15px;
    border-bottom: #333 1px dotted;
}
}



/***** intro *****/
#intro {
    margin-top: 40px;
    /*padding-right: 180px;
    background: url("../images/intro_back.jpg") 100% 50% no-repeat;
    background-size: 150px;*/
}

@media screen and (max-width:768px){
#intro {
    margin-top: 30px;
    padding: 0 10px;
}
}



#intro p {
    margin-top: 20px;
}

@media screen and (max-width:768px){
#intro p {
    margin-top: 10px;
}
}





/***** summary *****/
#summary {
    margin-top: 60px;
}

@media screen and (max-width:768px){
#summary {
    margin-top: 30px;
    padding: 0 10px;
}
}



#summary table {
    width: 100%;
}



/*c_table_summary*/
.c_table_summary {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0px 8px;
}
.c_table_summary th, .c_table_summary td {
    padding: 8px;
    border: none;
}
.c_table_summary th {
    text-align: center;
    vertical-align: top;
    font-weight: bold;
    white-space: nowrap;
    color: #333;
    background: #E9F1DA;
    min-width: 15rem;
}

@media screen and (max-width:768px){
  .c_table_summary th, .c_table_summary td {
    width: 100% !important;
    max-width: 100% !important;
    display: block;
  }
}






/***** registration *****/
#registration {
    margin-top: 60px;
}

@media screen and (max-width:768px){
#registration {
    margin-top: 30px;
    padding: 0 10px;
}
}




/***** program *****/
#program {
    margin-top: 60px;
}

@media screen and (max-width:768px){
#program {
    margin-top: 30px;
    padding: 0 10px;
}
}




/***** speaker *****/
#speaker,
.speakers {
    margin-top: 20px;
}

@media screen and (max-width:768px){
#speaker,
.speakers {
    margin-top: 30px;
    padding: 0 10px;
}
}




/***** movie *****/
#movie {
    margin-top: 30px;
}

@media screen and (max-width:768px){
#movie {
    margin-top: 30px;
    padding: 0 10px;
}
}





/***** class *****/
.page_tit h2 {
    margin-bottom: 20px;
    padding: 5px 0 5px 20px;
    border-left: 6px solid #160053;
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 0.1em;
}

@media screen and (max-width:768px){
.page_tit h2 {
    font-size: 2.1rem;
    color: #292F9E;
}
}

.tit_wrap {
	margin-bottom: 20px;
}

/*見出し*/
.c_ttl01 {
  color: #6B5C50;
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: .04em;
  text-align: center;
  margin-bottom: 50px;
}

.c_ttl01::before {
  display: block;
  font-size: 6rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: .02em;
  content: attr(data-label);
  color: #A4B33E;
}

.tit {
	margin-bottom: 5px;
	padding: .3em .5em;
	font-size: 2.2rem;
	font-weight: bold;
	color: #6B5C50;
  border-left: solid 5px #669F3E;
  border-bottom: solid 2px #669F3E;
}

@media screen and (max-width:768px){
.tit {
    font-size: 1.7rem;
    letter-spacing: 0;
}
}

.tit_sub {
	margin-bottom: 20px;
	padding: 5px 0 5px 20px;
	border-left: 4px solid #160053;
	font-size: 2rem;
	font-weight: bold;
}

.tit_mini {
	margin-bottom: 10px;
	font-weight: bold;
}

/*h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #160053;
}*/

.flex {
    display: flex;
    justify-content: space-between;
}
.flex.col2 > div {
    width: calc(100% - 40px);
}
@media screen and (max-width:768px){
    .flex.col2 > div {
        width: 100%;
    }
    .flex.col2 > div:first-child {
        margin-bottom: 20px;
    }
}

.borderbox {
    padding: 5px 0 5px 10px;
    border-left: 6px solid #e8f7fc;
}

.item {
    margin-bottom: 50px;
}



#contents .item:last-child {
    margin-bottom: 0;
}



.item_in {
    margin-bottom: 30px;
}



.box1 {
    padding: 30px;
    border: #a164a7 3px dotted;
    border-radius: 10px;
}

@media screen and (max-width:768px){
.box1 {
    padding: 15px;
    border: #a164a7 2px dotted;
    border-radius: 5px;
}
}



.italic {
    font-style: italic;
}



.detail_btn a {
    padding: 7px 10px;
    text-decoration: none;
    color: #000;
    background-color: #f2e2f4;
    transition: .5s;
}

@media screen and (max-width:768px){
.detail_btn a {
    padding: 5px 7px;
}
}



.detail_btn a:hover {
    background-color: #f3f3f3;
}




/***** program *****/
.pro_dl1 {
	margin-top: 10px;
}
.pro_dl1 dt {
    width: 160px;
    font-weight: bold;
    float: left;
    clear: left;
}
.pro_dl1.is_long dt {
	width: 240px;
}
.pro_dl1.is_morelong dt {
	width: 300px;
}

.pro_text {
	padding-bottom: 10px;
	border-bottom: #333 1px dotted;
}


.pro_flex {
  display: flex;
  justify-content: space-between;
}
.pro_flex_left, .pro_flex_right {
    width: auto;
  margin-top: 0;
}
.pro_flex_right {
  min-width: 16rem;
  text-align: right;
}

@media screen and (max-width:768px){
.pro_dl1 dt, .pro_dl1.is_long dt, .pro_dl1.is_morelong dt {
    width: 100%;
    float: none;
}
  .pro_flex_left, .pro_flex_right {
    width: 100%;
  }
  .pro_flex_right {
    margin-top: 0 !important;
  }
  .pro_flex {
    display: block;
    width: 100%;
  }
}



.pro_dl1 dd {
    margin-bottom: 10px;
    padding: 0 0 10px 160px;
    border-bottom: #333 1px dotted;
}
.pro_dl1.is_long dd {
	padding-left: 240px;
}
.pro_dl1.is_morelong dd {
	padding-left: 300px;
}

@media screen and (max-width:768px){
.pro_dl1 dd, .pro_dl1.is_long dd, .pro_dl1.is_morelong dd {
    margin-bottom: 10px;
    padding: 0 0 10px 1em;
    border-bottom: #333 1px dotted;
}
}

.disc li {
	list-style-type: disc;
}

.pro_list {
	padding-top: 5px;
}


.pro_tb1 {
    width: 100%;
}



.pro_tb1 th {
    padding: 5px 0;
    font-weight: bold;
    text-align: center;
    background-color: #f3f3f3;
    border: #ccc 1px solid;
}



.pro_tb1 td {
	padding: 5px 8px;
	border: #ccc 1px solid;
	text-align: left;
}



.gmt_8 {
    color: #ad5798;
    background-color: #fbf0f8;
}



.gmt_7 {
    color: #57ada4;
    background-color: #eff9f8;
}



.gmt_6-5 {
    color: #5a7099;
    background-color: #edf1f9;
}



.pro_time_cate {
    margin-bottom: 15px;
    display: flex;
}



.pro_time_cate li {
    margin-right: 15px;
    display: flex;
    align-items: center;
}



.pro_time_cate span {
    width: 15px;
    height: 15px;
    margin-left: 5px;
}



.pro_tit_box {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}



.pro_time {
    width: 150px;
    margin-left: 15px;
    padding: 10px 0;
    text-align: center;
    border: #6B5C50 1px solid;
  color: #6B5C50;
  border-radius: 50px;
}

@media screen and (max-width:768px){
.pro_time {
    width: 60px;
    margin-left: 10px;
    padding: 10px 0;
}
}



.pro_tit {
    position: relative;
    padding: 10px 40px 10px 10px;
    font-weight: bold;
    background: #6B5C50;
  color: #fff;
    flex: 1;
    transition: all .2s ease;
    cursor: pointer;
}
.pro_tit:hover {
    background-color: #9a775b;
}

.pro_tit::before {
    content: '';
    position: absolute;
    top: 0;
    right: 16px;
    bottom: 3px;
    margin: auto;
    width: 6px;
    height: 6px;
    border-right: 3px solid #6B5C50;
    border-bottom: 3px solid #6B5C50;
    transform: rotate(45deg);
    z-index: 1;
    transition: all .2s ease;
}
.pro_tit_box.open .pro_tit::before {
    bottom: -2px;
    transform: rotate(-135deg);
}

.pro_tit::after {
    content: '';
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    margin: auto;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50px;
    transition: all .2s ease;
}

.pro_tb_wrap {
    display: none;
}
.pro_tb_wrap.open {
    display: block;
}


.pro_cap1 dt span {
    display: inline-block;
    width: 100%;
    padding: 0 5px;
    font-size: 1.4rem;
    background-color: #f6f5e6;
    border: #ecebcd 1px solid;
    text-align: center;
}



.pro_cap1 dd {
    margin-top: 5px;
    font-weight: bold;
}

.pro_cap_line {
    margin-bottom: 5px;
    clear: both;
}
.pro_cap_line dt {
    float: left;
    clear: left;
    width: 60px;
}
.pro_cap_line dd {
    margin-top: 0;
    padding-left: 65px;
}


.pro_time_cate1 {
    background-color: #000;
}



.pro_time_cate2 {
    background-color: #ad5798;
}



.pro_time_cate3 {
    background-color: #57ada4;
}



.pro_time_cate4 {
    background-color: #5a7099;
}



.pro_tb2 {
    width: 100%;
}



.pro_tb2 td {
    border-right: transparent 10px solid;
    border-bottom: transparent 3px solid;
}

@media screen and (max-width:768px){
.pro_tb2 td {
    border-right: transparent 2px solid;
    border-bottom: transparent 2px solid;
}
}



.pro_tb2 tr td:nth-child(1) {
    width: 7em;
    padding: 5px 0;
    text-align: center;
    font-weight: bold;
    background-color: #E9F1DA;
    vertical-align: middle;
}

@media screen and (max-width:768px){
.pro_tb2 tr td:nth-child(1) {
    font-size: 1.2rem;
}
}




@media screen and (max-width:768px){
.pro_tb2 tr td:nth-child(5) {
    padding: 10px 0 10px 5px;
    font-size: 1.3rem;
}
}

.pro_layout {
	display: flex;
}
.pro_ttl {
	font-weight: bold;
}
.pro_layout .pro_ttl {
	width: 14em !important;
  max-width: 14em;
  min-width: 14em;
}
.pro_layout .pro_label {
	width: 10em;
  max-width: 10em;
  min-width: 10em;
}
.pro_layout .pro_label.is_short {
	width: 7em;
  max-width: 7em;
  min-width: 7em;
}
.pro_layout .pro_namae {
	/*width: 100%;*/
  max-width: 250px;
  min-width: 250px;
}
.pro_layout .pro_namae.is_short {
	width: 7em;
}
.pro_layout .pro_namae.is_long {
	width: 16em;
}
.pro_layout .pro_belong.is_long {
	width: calc(100% - 190px);
}
.pro_layout .pro_namae.is_long ~ .pro_belong {
	width: calc(100% - 16em);
}
.pro_layout .pro_belong {
	max-width: 450px;
  padding-left: 1rem;
}

.pro_wrap {
	display: flex;
	border-left: 3px solid #e8f7fc;
	padding-left: 10px;
}

.pro_label {
	width: 10em;
}
@media screen and (max-width:768px){
	.pro_layout {
		display: block;
    padding-left: 1rem !important;
	}
	.pro_layout:not(:last-child) {
		margin-bottom: 10px;
	}
	.pro_layout .pro_namae {
		padding-left: 0;
	}
	.pro_layout .pro_belong {
		width: 100% !important;
	}
  .pro_layout .pro_ttl {
    width: 100% !important;
    max-width: 100% !important;
  }
  .pro_layout .pro_belong {
  padding-left: 0 !important;
  }

}

.pro_name::after {
    content: "";
    clear: both;
    display: block;
}



.pro_name dt, .pro_name2 dt {
    width: 190px;
    line-height: 1.4;
    float: left;
    clear: left;
}

@media screen and (max-width:768px){
.pro_name dt, .pro_name2 dt {
    width: 100%;
    float: none;
}
}


.pro_name dt.long, .pro_name2 dt.long {
    width: 100%;
    line-height: 1.4;
    float: none;
}

@media screen and (max-width:768px){
.pro_name dt, .pro_name2 dt {
    width: 100%;
    float: none;
}
}



.pro_name dd, .pro_name2 dd {
    margin-bottom: 15px;
    padding-left: 190px;
    line-height: 1.4;
}

@media screen and (max-width:768px){
.pro_name dd, .pro_name2 dd {
    margin-top: 5px;
    padding-left: 0;
}
}



.pro_name dd.long {
    padding-left: 0;
    display: flex;
}

.pro_name dd.long .pro_btn {
    margin-right: 20px;
}

@media screen and (max-width:768px) {
.pro_name dd.long {
    display: block;
}

.pro_name dd.long .pro_btn {
    margin-right: 0;
    margin-bottom: 5px;
}
}



.pro_name dd::after, .pro_name2 dd::after {
    content: "";
    display: block;
    clear: both;
}



.pro_name dd:last-child, .pro_name2 dd:last-child {
    margin-bottom: 0;
}



.pro_btn {
    margin-top: 10px;
}

@media screen and (max-width:768px){
.pro_btn {
    margin-top: 7px;
}
}



.pro_btn a {
    width: 180px;
    padding: 6px 0;
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    color: #ad5798!important;
    background-color: #fff;
    border-radius: 100px;
    transition: .5s;
    border: #ad5798 1px solid;
    display: block;
}

@media screen and (max-width:768px){
.pro_btn a {
    width: 180px;
    padding: 3px 0;
    font-size: 1.3rem;
}
}



.pro_btn a:hover {
    color: #fff!important;
    background-color: #ad5798;
}



.pro_btn_ul {
    display: flex;
}
.pro_btn_ul:not(:last-child) {
    margin-bottom: 5px;
}

@media screen and (max-width:768px){
.pro_btn_ul {
    margin-top: 7px;
    display: block;
}
}



.pro_btn_ul li {
    margin-right: 10px;
}

@media screen and (max-width:768px){
.pro_btn_ul li {
    margin-right: 0;
    margin-bottom: 5px;
}

.pro_btn_ul li:last-child {
    margin-right: 0;
    margin-bottom: 0;
}
}



.pro_btn_ul a {
    width: 180px;
    padding: 4px 0;
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    color: #160053!important;
    background-color: #fff;
    border-radius: 100px;
    transition: .5s;
    border: #160053 1px solid;
    display: block;
}

@media screen and (max-width:768px){
.pro_btn_ul a {
    width: 160px;
    padding: 3px 0;
    font-size: 1.3rem;
}
}



.pro_btn_ul a:hover {
    color: #fff!important;
    background-color: #160053;
}



.break {
    color: #999;
}



.not_share {
    margin-top: 10px;
}

@media screen and (max-width:768px){
.not_share {
    margin-top: 8px;
}
}


.not_share span {
    padding: 5px 7px;
    font-size: 1.4rem;
    background-color: #eee;
}

@media screen and (max-width:768px){
.not_share span {
    padding: 3px 5px;
    font-size: 1.3rem;
}
}


.flex {
    display: flex;
    align-items: center;
}

@media screen and (max-width:768px){
.flex {
    display: block;
}
}


.movie_btn_s {
    margin-left: 30px;
}

@media screen and (max-width:768px){
.movie_btn_s {
    margin-left: 0;
    margin-top: 10px;
}
}


.movie_btn_s a {
	padding: 5px 10px;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	letter-spacing: normal;
    color: #fff;
	background-color: #a164a7;
	border: #a164a7 3px solid;
    transition: all 0.4s;
	display: block;
    border-radius: 5px;
}

@media screen and (max-width:768px){
.movie_btn_s a {
	padding: 5px 10px;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	letter-spacing: normal;
    color: #fff;
	background-color: #a164a7;
	border: #a164a7 3px solid;
    transition: all 0.4s;
	display: block;
    border-radius: 5px;
}
}

.movie_btn_s a:hover {
	color: #a164a7;
	background-color: #fff;
	border: #a164a7 3px solid;
    border-radius: 5px;
}





/***** speaker *****/
.speaker_wrap {
	padding: 20px 20px 0;
	border: 1px solid #ddd;
	background: #efefef;
}
.speaker {
    display: flex;
    flex-wrap: wrap;
}



.speaker_in {
    width: 250px;
    margin-bottom: 20px;
		padding: 0 15px;
    text-align: center;
}
.speaker_in img {
	overflow: hidden;
	border-radius: 90px;
}


.speaker .speaker_in:nth-child(4n) {
    margin-right: 0;
}

@media screen and (max-width:1050px){
	.speaker {
		justify-content: space-around;
	}
}
@media screen and (max-width:768px){
.speaker .speaker_in:nth-child(4n) {
    margin-right: 4%;
}

.speaker .speaker_in:nth-child(even) {
    margin-right: 0;
}
}



.speaker_in a {
    color: #000;
    text-decoration: none;
    transition: all 0.4s;
}



.speaker_in a:hover {
    opacity: 0.6;
}



.speaker_in figure img {
    width: 180px;
}

@media screen and (max-width:768px){
.speaker_in figure img {
    width: 80%;
}
}



.speaker_in dl::before {
    width: 80px;
    margin: 20px auto 15px;
    content: "";
    display: block;
}



/*.speaker_in dl.speaker1::before {
    border-bottom: #cd8437 5px solid;
}



.speaker_in dl.speaker2::before {
    border-bottom: #cc4189 5px solid;
}



.speaker_in dl.speaker3::before {
    border-bottom: #b5aa33 5px solid;
}



.speaker_in dl.speaker4::before {
    border-bottom: #8cb533 5px solid;
}


.speaker_in dl.speaker5::before {
    border-bottom: #3a679e 5px solid;
}*/





.speaker_in dl {
    margin-top: 15px;
    line-height: 1.3;
}



.speaker_in dt {
    font-weight: bold;
}



.speaker_in dd {
    font-size: 1.35rem;
    margin-top: 5px;
}



.speaker_cate {
    margin-bottom: 30px;
    padding: 15px 20px;
    border: #ccc 2px dotted;
    display: flex;
}

@media screen and (max-width:768px){
.speaker_cate {
    display: block;
}
}



.speaker_cate li {
    margin-right: 30px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

@media screen and (max-width:768px){
.speaker_cate li {
    margin-right: 0;
    margin-bottom: 5px;
}

.speaker_cate li:last-child {
    margin-right: 0;
    margin-bottom: 0;
}
}



.speaker_cate li span {
    width: 14px;
    height: 14px;
    margin-right: 6px;
    display: block;
}



.speaker_cate li:nth-child(1) span {
    background-color: #cd8437;
}



.speaker_cate li:nth-child(2) span {
    background-color: #cc4189;
}



.speaker_cate li:nth-child(3) span {
    background-color: #b5aa33;
}



.speaker_cate li:nth-child(4) span {
    background-color: #8cb533;
}


.speaker_cate li:nth-child(5) span {
    background-color: #3a679e;
}



.detail {
    display: none;
}



.detail_in {
    padding: 20px 20px 0;
}

@media screen and (max-width: 768px){
.detail_in {
    padding: 10px 10px 0;
}
}



.cv_tit {
    margin: 20px 0 10px;
    font-weight: bold;
}



.cv_box .cv_tit:first-child {
    margin: 0 0 10px;
}
.cv_box p {
	margin-top: 10px;
  word-break: break-word;
}



.cv_name {
    display: flex;
}
.cv_name img {
	overflow: hidden;
	border-radius: 75px;
}

@media screen and (max-width: 768px){
.cv_name {
    display: block;
}
}



.cv_name figure {
    margin-right: 20px;
}

@media screen and (max-width: 768px){
.cv_name figure {
    margin-right: 0;
    text-align: center;
}
}



.cv_name figure img {
    width: 150px;
}



.cv_name dl {
    line-height: 1.3;
}

@media screen and (max-width: 768px){
.cv_name dl {
    margin-top: 20px;
    text-align: center;
}
}



.cv_name dl dt {
    margin-bottom: 5px;
    font-size: 1.8rem;
    font-weight: bold;
}



.cv_box {
    margin-top: 30px;
    border-top: #ddd 2px solid;
}
.cv_box .cv_ttl {
	margin-top: 0;
	padding: 10px 0;
	border-bottom: #ddd 2px solid;
}



.cv_dl1 dd {
    margin-bottom: 10px;
    padding-left: 1em;
}



.cv_dl1 dd:last-child {
    margin-bottom: 0;
}


.cv_tb1 th {
    padding-right: 20px;
    text-align: left;
    vertical-align: top;
    white-space: nowrap;
}


.cv_tb1 th.right {
    text-align: right;
}


.cv_tb1 tr td:first-child {
    vertical-align: top;
    white-space: nowrap;
}


@media screen and (max-width: 768px){
.movie_btn {
    /*margin-bottom: 30px;
    padding: 0 10px 30px;
    border-bottom: #eee 2px solid;*/
    padding: 0 10px;
}
}



.movie_btn ul {
    display: flex;
}

@media screen and (max-width: 768px){
.movie_btn ul {
    display: block;
}
}



.movie_btn li {
    width: 48%;
}

@media screen and (max-width: 768px){
.movie_btn li {
    width: 100%;
}
}



.movie_btn li:first-child {
    margin-right: 4%;
}

@media screen and (max-width: 768px){
.movie_btn li:first-child {
    margin-bottom: 4%;
}
}



.movie_btn li a {
    width: 100%;
}



.movie_btn li .no_link {
    width: 100%;
    padding: 25px 0;
    font-weight: bold;
    text-align: center;
    color: #999;
    background-color: #ddd;
    display: block;
    border-radius: 5px;
}



.movie_btn > div .no_link {
    width: 50%;
    margin: 0 auto;
    padding: 25px 0;
    font-weight: bold;
    text-align: center;
    color: #999;
    background-color: #ddd;
    display: block;
    border-radius: 5px;
}

@media screen and (max-width: 768px){
.movie_btn > div .no_link {
    width: 100%;
    margin: 0;
}
}



.movie_list {
    display: flex;
    flex-wrap: wrap;
}



.movie_list figure {
    text-align: center;
}



.movie_list figure::after {
    content: "";
    width: 30%;
    margin: 0 auto 20px;
    padding-bottom: 20px;
    border-bottom: #008ed8 3px solid;
    display: block;
}



.movie_list a figure {
    transition: .3s;
}



.movie_list a figure:hover {
    opacity: 0.7;
}



.movie_list li {
    width: 30%;
    margin-right: 5%;
    margin-bottom: 5%;
}

@media screen and (max-width: 768px){
.movie_list li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10%;
}
}



.movie_list li:nth-child(3n) {
    margin-right: 0;
}



.movie_list li a {
    text-decoration: none;
    color: #000;
}



.movie_list li dt {
    font-weight: bold;
    text-align: center;
}



.movie_list li dd {
    margin-top: 5px;
    font-size: 1.4rem;
}



.movie_list li img {
    width: 100%;
}

@media screen and (max-width: 768px){
.movie_list li img {
    width: 70%;
}
}



.moive_box iframe {
    width: 640px;
    height: 360px;
}

@media screen and (max-width: 768px){
.moive_box iframe {
    width: 100%;
    height: 250px;
}
}



.moive_box video {
    width: 640px;
    height: 360px;
}

@media screen and (max-width: 768px){
.moive_box video {
    width: 100%;
    height: 250px;
}
}



.document_btn {
    margin-top: 10px;
    text-align: center;
}



.document_btn a {
    padding: 5px 15px;
    font-size: 1.4rem;
    font-weight: bold;
    color: #fff!important;
    background-color: #008ed8;
    border-radius: 100px;
    transition: .5s;
}

.document_btn a:hover {
    background-color: #5cb9ea;
}

.pro_layout.ttl_long .pro_ttl {
    width: 17em !important;
    max-width: 17em;
    min-width: 17em;
}

#en .pro_layout { 
  display:block !important;
  /*margin-bottom: 15px;*/
}
#en .pro_layout .pro_ttl{ 
  width: 100% !important;
  max-width:  100% !important;
 min-width:  100% !important;
}
#en .pro_layout .pro_belong {
  width: 100% !important;
  max-width: 640px;
}

@media screen and (max-width: 768px){
#en .pro_layout .u_flex {
    display: block;
}
}


/* ビジネスマッチング */
.l_business_box {
  position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    margin: 0 auto 2em auto;
    max-width: 1000px;
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
}
.l_business_box::after { 
  content: "";
  display: block;
  width: calc(96% / 3);
}
.l_business_box img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 15px auto;
}
.l_business_item {
  padding-bottom: 10px;
  display: flex;
  flex-direction: column;
  height: 100%; 
}
.l_business_item .c_tag_box {
  margin-top: auto;
}
.l_business_item p {
  text-align: center;
  margin-bottom: 5px;
}
.c_business_name {
  font-weight: bold;
  line-height: 1.3;
}


@media screen and (max-width: 768px){
  .l_business_box {
      display: block;
    justify-content: center;
  }
}

.page_tit .ft-ll {
  border-bottom: 1px solid #aaa;
}

