/*
Theme Name: picapro_institute
･ class名は半角英数にしましょう
･ class名の頭は数字にはできません
･ 1rem は 16px のこと(ちょっと嘘)

･ colorは文字の色
･ background-colorは背景の色
･ padding は隙間。文字と線の間
･ margin も隙間。自分と他人の間
*/

.title-decoration{
	border: solid 2px #27acd9;
	padding: 8px 24px;
	color: #27acd9;
}

.title-decoration-red{
	border: solid 2px #27acd9;
	padding: 8px 24px;
	color: #d927ac;
}

.force-full-width{
	max-width: 90% !important;

}

.flow_design05 {
  display: flex;
  justify-content: left;
  align-items: center;
}

.flow05 {
  padding-left: 0;
}

.flow05 > li {
  list-style-type: none;
  position: relative;
  padding-left: 50px;
}

.flow05 > li:not(:last-child) {
  padding-bottom: 10px;
}

.flow05 > li .icon05 {
  width: 2em;
  height: 2em;
  line-height: 2em;
  text-align: center;
  border-radius: 100vh;
  display: inline-block;
  background: #4678ab;
  color: #fff;
  position: absolute;
  left: 0;
}

.flow05 > li:not(:last-child)::before {
  content: '';
    background: #c3c3c3;
    width: 4px;
    height: 100%;
    position: absolute;
    top: calc(50% - -30px);
    left: 14px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.flow05 > li dl dt {
  font-size: 1.6rem;
  font-weight: 600;
  color: #4678ab;
}

.flow05 > li dl dd {
  margin-left: 0;
}

.hukidasi{
	position: relative;
	padding: 1rem 2rem;
	border-radius: 10px;
	background: #27acd9;
	color: #fff;
}
.hukidasi:after {
	position: absolute;
	content: '';
	width: 0;
	height: 0;
	bottom: -10px;
	left: 1.5em;
	border-width: 10px 10px 0 10px;
	border-style: solid;
	border-color: #27acd9 transparent transparent transparent;
}


/* 003 */
.button003 a {
    background: #eee;
    border-radius: 50px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 260px;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}
.button003 a:hover {
    background: #313131;
    color: #FFF;
}
.button003 a:after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid #313131;
    border-right: 3px solid #313131;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.button003 a:hover:after {
    border-color: #FFF;
}

/* カーソルを合わせたときに表示を変える */
p.hover-sample:hover{
	color: #FF0000;
	font-size: 20px;
	font-weight: bold;
}

/*スマホとPCの切り替え指示*/


.flex-container{
		display:inline-block;
}

@media screen and(max-width:600x){
flex-container{
		display:block;
}
	
.single .articleDIV img {
    display: block;
    margin: 20px auto 24px;
    /*width: auto;*/
    width: 100%;
    max-width: 600px;
    height: auto;
}


	
.mannaka {
  position: relative;
  display: inline-block;
  margin-bottom: 1em;
}
.mannnaka:before {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 60px;
  height: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: black;
  border-radius: 2px;
}
	
sen-hidari01 {
  padding: 16px 32px;
  border-left: 4px solid #000000;
}
	
	/* ↓id="nav"の中のulに対してCSSを適用*/
#nav ul {
  list-style-type: none; /*箇条書きのポッチを消す*/
  text-align:center /*左右中央寄せは親要素に対して指定*/
}

/* ↓id="nav"の中のulの中のliに対してCSSを適用*/
#nav ul li { 
  display: inline-block;/*inline-blockにします*/
  width: 80px;/*幅も指定できる*/
  padding: 10px 0;/*余白も指定できる*/
  margin: 10px 0;/*余白も指定できる*/
  vertical-align: middle;/*縦の表示位置も指定できる*/
  background: skyblue;/*背景を水色に*/
  font-weight: bold;/*文字を太字に*/
  color:white; /*文字色を白に*/
}
	
.btn--orange,
a.btn--orange {
  color: #fff;
  background-color: #eb6100;
}
.btn--orange:hover,
a.btn--orange:hover {
  color: #fff;
  background: #f56500;
}

a.btn--radius {
   border-radius: 100vh;
}
