/*
 * base css 
 * pc width 1000px fixed
 */

@media (max-width: 599px) {
}

@media (min-width: 600px) and (max-width:959px) {
}

@media (min-width: 960px) {
}

@media (max-width: 480px) {
}

@media (min-width: 481px) and (max-width:767px) {
}

@media (min-width: 768px) and (max-width:959px) {
}

@media (min-width: 960px) {
}

/* ---------------------------------------- common */

.detail {
    padding-bottom: 2em;
}

article h3 { 
	margin: 0 0 .75em; 
}


@media (max-width: 599px) {
	figure {
		text-align: center;
	}
}

/* ---------------------------------------- three-elements */

.three-elements{
}

.three-elements figure{
	margin: 0 auto 1.5em auto;
	max-width: 20vw;
	min-width: 80px;
}

.element-title {
	font-size: 1.2em;
	font-weight: bolder;
	text-align: center;
}

@media (max-width: 599px) {
	.three-elements{
		display: grid;
		grid-auto-flow: column;
		justify-content: left;
	}
	
	.three-elements figure{
		margin: 0 1.5em 0 0;
	}
	
	.element-title {
	text-align: left;
	}
}

/* ---------------------------------------- list-case */

.grid-center {
	display: grid;
	place-items: center;
	justify-content: center;
}

.list-case {
}

.list-case li {
	display: grid;
	margin: 10px 5em 2em 10px;
	grid-auto-flow: column;
	justify-content: left;
	place-items: center;
}

.list-case li figure {
	margin: 0 1em 0 0;
}

@media (max-width: 480px) {
	.grid-center {
	display: block;
	}
	
    .list-case li {
        width: 100%;
    }
	
    .list-case li figure {
        max-width: 80px;
    }
}

@media (min-width: 481px) and (max-width:767px) {
	.list-case {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	}
	
    .list-case li figure {
        max-width: 80px;
    }
	
}

/* ---------------------------------------- flow-list */

.flow-list li{
    width: auto;
	margin: 2em 0 4em 0;
	border: 2px solid var(--theme-color02-middle);
	border-radius: 6px;
	padding: 1.5em 1.5em 1.5em 5em;;
	position: relative;
	counter-increment: num;
	background: var(--theme-color01-light);
}

.flow-list li::before {
  content: counter(num, decimal-leading-zero);
  position: absolute;
  display: inline-block;
  width: 2.5em;
  height: 2.5em;
  color: #ffffff;
  background: linear-gradient(135deg, var(--theme-color02-middle), var(--theme-color03-middle));
  border-radius: 50%;
  text-align: center;
  line-height: 2.5em;
  font-weight: bolder;
  top: 13px;
  left: 1.5em;
  box-shadow: 3px 3px 3px 0px rgba(0, 0, 0, 0.2);align-content
}

.arrow {
    position: relative;
    margin: 1em 0 3em 0;
}

.arrow::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  margin-left: -12px;
  width: 0;
  height: 0;
  border: 15px solid transparent;
  border-top: 15px solid var(--theme-color02-middle);
}

/*.arrow-down {
    position: relative;
}

.arrow-down::after {
    position: absolute;
    left: 8em;
    font-family: 'FontAwesome';
    content: "\f063";
    margin: 0;
}*/

/* ---------------------------------------- list-elements */

.list-elements {
}

.list-elements li {
	display: grid;
	width: 30%; 
	margin: 10px 10px 2em 10px;
	grid-auto-flow: column;
	justify-content: left;
	place-items: center;
}

.list-elements li figure {
	margin: 0 1em 0 0;
}

@media (max-width: 480px) {
    .list-elements li {
        width: 100%;
    }

}

@media (min-width: 481px) and (max-width:767px) {
	.list-elements {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	}
	
    .list-elements li {
        width: 45%; 
    }
	
}

/* ---------------------------------------- schedule */

.time-schedule li {
    display: flex;
    margin: 3px 0;
}
.time-schedule span.time {
    width: 6em;
    display: inline-block;
    padding: 1.5em 1em;
    vertical-align: top;
    position: relative;
    text-align: center;
    box-sizing: border-box;
    background-color: var(--theme-color02-middle);
    color: #fff;
    font-weight: bolder;
    border-radius: 6px;
	margin: 0.5em 0;
}

.time-schedule .sch_box {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 1.5em 1em;
    vertical-align: middle;
    background-color: var(--theme-color01-light);
    box-sizing: border-box;
    border-radius: 6px;
	margin: 0.5em 0;
}

.time-schedule .sch_box::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -22px;
  margin-top: -10px;
  width: 0;
  height: 0;
  border: 12px solid transparent;
  border-right: 12px solid var(--theme-color01-light);
}

.sch_title {
    margin-bottom: 0.2em;
    font-weight: bolder;
}

.sch_txt {
    margin: 0 0 0.5em 0;
}
