@charset "UTF-8";

/* ========Diagram Class Style======== */
.flow {
    padding: 0;
    padding-left: 120px;
    position: relative;
}
.flow::before {
    content: "";
    width: 15px;
    height: 100%;
    background: #eee;
    margin-left: -8px;
    display: block;
    position: absolute;
    top: 0;
    left: 120px;
}
.flow > dd {
    margin-left: 0;
}
.flow > li {
    list-style-type: none;
    position: relative;
}
.flow > li:not(:last-child) {
    margin-bottom: 8vh;
}
.flow > li .icon {
    font-size: 12px;
    color: #fff;
/*    background: rgb(107,144,219);
    background: -moz-linear-gradient(left, rgba(107,144,219,1) 0%, rgba(102,213,233,1) 100%);
    background: -webkit-linear-gradient(left, rgba(107,144,219,1) 0%,rgba(102,213,233,1) 100%); */
    background: linear-gradient(to right,#9e0972, #f77b67);  /* new */
    background: linear-gradient(to right, rgba(107,144,219,1) 0%,rgba(102,213,233,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6b90db', endColorstr='#66d5e9',GradientType=1 );
    padding: 8px 20px;
    display: block;
    position: absolute;
    top: 0;
    left: -120px;
    z-index: 100;
}
.flow > li .icon::after {
    content: "";
    border-style: solid;
    border-width: 5px 0 5px 10px;
    border-color: transparent transparent transparent #66d5e9;
    position: absolute;
    top: 50%;
    left: 100%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.flow > li dl {
    padding-left: 70px;
    position: relative;
}
.flow > li dl::before,
.flow > li dl::after {
    content: "";
    display: block;
    position: absolute;
    top: 15px;
}
.flow > li dl::before {
    width: 7px;
    height: 7px;
    margin-top: -3px;
    background: #6b90db;
    border-radius: 50%;
    left: -4px;
}
.flow > li dl::after {
    width: 50px;
    border-bottom: 1px dashed #999;
    position: absolute;
    left: 5px;
}
.flow > li dl dt {
    font-size: 20px;
    font-weight: 600;
/*    color: #f77b67;*/
    color: rgb(107,144,219); 
    margin-bottom: 1vh;
}

/* ========2020/06/05 Customize ======== */
.footnote {
	font-size:smaller;
	padding-left:1.5em;
	text-indent:-1.5em;
/*	color:#8A0829;*/
	color:#1A6615;
	color:DodgerBlue;
}
.footnote::before {
    content: "※";
}

/* ========2020/07/16Customize ======== */
.custom-contact-btn {
  position: relative;
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0;
  padding: 10px 30px;
  text-decoration: none;
  background: #002060;
  background: linear-gradient(45deg, #002060, #00B0F0);
  color: white;
  border-radius: 10px;
  transition: 0.4s;
}

.custom-contact-btn:hover {
  background: #00bcd4;
  background: linear-gradient(45deg, #00B0F0, #00bcd4);
  color: white;
}

.custom-contact-btn.off {
  background: #6B6B6B;
  color: white;
}

.custom-contact-btn.over {
  background: #B8B8B8;
  color: white;
}

/* ========2021/03/26Customize ======== *//*20210727 講師プロフィール用に修正 */
/*Speaker-Pattern*/
.pattern_card{
	display: flex;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
	align-content: stretch;

	padding: 1rem 1rem;
	border-radius: 10px;
	/* background:#e0f0ff; */
	background:#F0F0F0;
	width: 95%;
	margin: 1em auto;
	border: 1px solid #002060; /* 20210727 修正 */
}
.card_photo{
	text-align: center;
	flex: 0 0 30%;
	-webkit-flex: 0 0 30%;
}
.card_photo_img{
	position: relative;
	width: 240px;  /* 20210727 mod */
	height: 280px;  /* 20210727 mod */
	overflow: hidden;
	border-radius: 15px;
	/*border: none; */
	display: inline-block;
}
.card_photo_img img{
	position: absolute;
	top: 50%;
	left: 35%;  /* 20210413mod 画像を左にずらす（50%→35%） */
	-webkit-transform: translate(-33%, -50%);
	-ms-transform: translate(-33%, -50%);
	transform: translate(-33%, -50%);
	width: auto;
	height: 100%;
}
.card_photo_title{
	margin: 0px 0px 5px 0px;
	font-weight: bold;
	font-size: 20px;
	/* color: #74755d; */
	color: #002060;  /* 20210727 mod */
}

.pattern_bio {
	margin-left: 2rem;
	margin-right: 0;
	margin-bottom: 1rem;  /* 20210727 mod */
	flex-basis: 70%; /* 20210727 add（幅修正）*/
}
.pattern_bio_title{ /* 20210727 mod */
	margin: 0px 0px 30px 0px;
	font-weight: bold;
	font-size: 26px;
	/* color: #00B0F0; */
	color:crimson;
	color:#3A01DF;
}
.pattern_bio_profile{ /* 20210727 mod */
	margin: 0px 0px 5px 0px;
	color:#002060;
}

@media screen and (max-width: 700px) {
	.pattern_card{
		flex-direction: column;
		-webkit-flex-direction: column;
		width: 70%;
	}
	.card_photo{
		flex: 0 0 auto;
		-webkit-flex: 0 0 auto;
	}
}

