@charset "utf-8";

.emphasis{
    text-decoration: underline;
}
/* ボタン類
---------------------------------------- */
.appli_btn{
    text-align: center;
    margin-bottom: 0!important;
}
.appli_btn li{
    margin-bottom: 20px;
}
.appli_btn li p:nth-of-type(1){
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #333;
    font-size: 1.1rem;
    font-weight: normal;
    margin-bottom: 0;
}
.appli_btn li p:nth-of-type(1)::before {
    margin-right: 15px;
    transform: rotate(-35deg);
}
.appli_btn li p:nth-of-type(1)::after {
    margin-left: 15px;
    transform: rotate(35deg);
}
.appli_btn li p:nth-of-type(1)::before,
.appli_btn li p:nth-of-type(1)::after {
    content: '';
    width: 2px;
    height: 22px;
    background-color: #333;
}
.appli_btn .primary p:nth-of-type(2){
    margin-bottom: 8px;
}
.appli_btn .primary p:nth-of-type(2) a {
    position: relative;
    display: inline-block;
    padding: 0.625rem 3.75rem 0.25rem;
    color: #FFF;
    font-weight: bold;
    font-size: 1.1rem;
	 background: #4CAF50;
    box-shadow: 0 5px 0 #2a612c;
    border-radius: 5px;
    letter-spacing: .07em;
    text-decoration: none;
    line-height: 1.4;
}
.appli_btn .secondary p:nth-of-type(2){
    margin-bottom: 8px;
}
.appli_btn .secondary p:nth-of-type(2) a {
    position: relative;
    display: inline-block;
    padding: 0.625rem 3.75rem 0.25rem;
    color: #FFF;
    font-weight: bold;
    font-size: 1.1rem;
	 /*アンケート開始時に解除
	 background: #3066a2;
    box-shadow: 0 5px 0 #204167;*/
	 background: #9c9c9c;
    box-shadow: 0 5px 0 #5f5f5f;
    border-radius: 5px;
    letter-spacing: .07em;
    text-decoration: none;
    line-height: 1.4;
}
.appli_btn li p:nth-of-type(2) a::after {
    content: '\f105';
    font-family: FontAwesome;
    font-weight: normal;
    position: absolute;
    right: 0.5rem;
    top: 0.375rem;
    font-size: 1.3125rem;
}
@media screen and (min-width: 600px) {
.appli_btn li p:nth-of-type(2) a {
    transition: all 0.3s;
}
.appli_btn li p:nth-of-type(2) a::after {
    right: 0.6875rem;
    top: 0.25rem;
    font-size: 1.5rem;
}
.appli_btn .primary p:nth-of-type(2) a:hover{
    transform: translateY(3px);
    text-decoration: none;
	background: #6ac96d;
    box-shadow: 0 2px 0 #6ac96d;
}
/*アンケート開始時に解除
.appli_btn .secondary p:nth-of-type(2) a:hover{
    transform: translateY(3px);
    text-decoration: none;
	background: #3a7ac2;
    box-shadow: 0 2px 0 #3a7ac2;
}*/
}

/* お申し込みの流れ
---------------------------------------- */
.flow_design {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow {
  padding-left: 0;
}

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

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

.flow > li .icon {
  width: 2.3125rem;
  height: 2.3125rem;
  line-height: 2.3125rem;
  text-align: center;
  border-radius: 100vh;
  display: inline-block;
  background: #e54c49;
  color: #fff;
  position: absolute;
  left: 0;
}

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

.flow > li dl dt {
  font-size: 1.1875rem;
  font-weight: 600;
  color: #e54c49;
}

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