/*! 追加用スタイルシート */

/* 無料相談ボタンアニメーション */
.dokidoki{
animation-name:dokidoki;	/* アニメーション名の指定 */
animation-delay:0s;		/* アニメーションの開始時間指定 */
animation-duration:3s;	/* アニメーション動作時間の指定 */
animation-timing-function: ease-in-out; /* アニメーションの動き（徐々に早く徐々に遅く）*/
animation-iteration-count: infinite; /* アニメーションをループさせる */
}
@keyframes dokidoki {
0% {transform: scale(1);}
40% {transform: scale(1);}
50% {transform: scale(1.1);}
60% {transform: scale(1);}
100% {transform: scale(1);}
}

/* 本文 */
.red {color:#C00;}

.c-content-main [data-text-size="14"] {
  font-size: 1.4rem;
  line-height: 1.5;
}

@media only screen and (max-width: 767px) {
  .c-content-main [data-text-size="14"] {
    font-size: 2.8vw;
  }
}



/* オンライン無料相談バナー */
.soudan {
position:relative;
margin:0;
display:none;
}
.soudan-box {
position:fixed;
z-index:100;
width:240px;
bottom:20px;
right:20px;
filter: drop-shadow(0px 0px 5px #bbb);
}
.soudanclose {
position:absolute;
display:block;
z-index:200;
box-shadow:0 0 10px rgba(0,0,0,.2);
cursor:pointer;
width:30px;
height:30px;
border-radius:30px;
background:#fff url("../img/btn-bannerclose.png") no-repeat center center;
top:-10px;
left:-10px;
}
.soudanclose:hover {background:#ccc url("../img/btn-bannerclose.png") no-repeat center center;}
.soudan-box:hover {
transform: translateY(-8px);
transition: all .3s;
}



/* ページトップボタン */
.c-pagetop-fix {
  right: 40px;
  bottom: 40px;
  width: 80px;
  height: 80px;
  margin-top: 150px;
  margin-left: auto;
  -webkit-transition: opacity .2s .3s;
  transition: opacity .2s .3s;
}

@media only screen and (max-width: 767px) {
  .c-pagetop-fix {
    right: 4vw;
    bottom: 5.33333vw;
    width: 10.66667vw;
    height: 10.66667vw;
    margin-top: 13.33333vw;
  }
}

@media (-ms-high-contrast: none) {
  .c-pagetop-fix {
    position: fixed;
    bottom: 120px;
  }
}

.c-pagetop-fix[data-scroll=true] {
  opacity: 1;
  display: block;
  -webkit-transition: opacity .2s .3s;
  transition: opacity .2s .3s;
}

.c-pagetop-fix[data-scroll=false] {
  opacity: 0;
  display: none;
  -webkit-transition: opacity .2s .3s;
  transition: opacity .2s .3s;
}


.c-pagetop-fix a {
  right: 40px;
  bottom: 40px;
  width: 80px;
  height: 80px;
  display: block;
  border-radius: 50%;
  background-color: #6bdbc6;
  border: 3px solid #6bdbc6;
  white-space: nowrap;
  text-indent: -9999px;
  overflow: hidden;
  position: absolute;
  -webkit-transition: background-color .3s,-webkit-transform .3s;
  transition: background-color .3s,-webkit-transform .3s;
  transition: transform .3s,background-color .3s;
  transition: transform .3s,background-color .3s,-webkit-transform .3s;
}

@media only screen and (max-width: 767px) {
	.c-pagetop-fix a {
	right: 4vw;
	bottom: 5.33333vw;
	width: 10.66667vw;
	height: 10.66667vw;
	display: block;
	border-radius: 50%;
	background-color: #6bdbc6;
	border: 3px solid #6bdbc6;
	white-space: nowrap;
	text-indent: -9999px;
	overflow: hidden;
	position: absolute;
	-webkit-transition: background-color .3s,-webkit-transform .3s;
	transition: background-color .3s,-webkit-transform .3s;
	transition: transform .3s,background-color .3s;
	transition: transform .3s,background-color .3s,-webkit-transform .3s;
  }
}



@media print,screen and (min-width: 768px) {
  .c-pagetop-fix a:hover {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
    background-color: #fff;
  }
  .c-pagetop-fix a:hover:after {
    border-color: #6bdbc6;
  }
}

.c-pagetop-fix a:after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  border-radius: 2px 2px 2px 0;
  -webkit-transition: border-color .3s;
  transition: border-color .3s;
  border: 4px solid #fff;
  border-width: 4px 4px 0 0;
  -webkit-transform: rotate(-45deg) translate(-3px,3px);
          transform: rotate(-45deg) translate(-3px,3px);
}

@media only screen and (max-width: 767px) {
  .c-pagetop-fix a:after {
    width: 2.66667vw;
    height: 2.66667vw;
    border-width: 2px 2px 0 0;
    border-radius: 1px 1px 1px 0;
    -webkit-transform: rotate(-45deg) translate(-.53333vw,.53333vw);
            transform: rotate(-45deg) translate(-.53333vw,.53333vw);
  }
}



/*　data属性　*/
.c-content-main [data-center] {
	text-align:center;
	padding:20px; 
}



/*　成功事例　*/
.case_dx {
	border: 2px solid #34a88e; 
	border-radius: 6px; 
	padding: 0 20px 20px 20px; 
	margin: 20px 0 50px 0;
	text-align:center;
}

.case_dx .title dl {
	display: flex; 
	flex-wrap: nowrap;
	line-height: 1.5;
}

.case_dx .title dt {
	font-size: 2.3rem;
	display: inline-block;
	white-space: nowrap;
	margin: -20px 20px 50px 30px;
	color: #fff;
	background-color: #31b196;
	padding: 10px;
}

.case_dx .title dt span {
	font-size: 7rem;
	font-weight:bold;
}

.case_dx .title dd {
	font-family:"FOT-ハミング Std B";
	font-size: 4rem;
	color:#34a88e;
}

.case_dx .title dd span {
	font-size: 2rem;
}

.case_dx .case_dx_list {
	margin: 50px 70px;
	padding: 30px; 
	border: 1px dashed #ff9304; 
	border-radius: 6px; 
  }

.case_dx .case_dx_list p{
	font-family:"FOT-ハミング Std B";
	font-size: 2.4rem;
	color:#ff9304;
}

.case_dx .case_dx_list li {
	font-size: 2rem;
	list-style: none;
	background:url(../img/icon-check-orange.svg) no-repeat left; 
	padding:5px 0 5px 40px; 
	border-bottom:1px dashed #ccc;
	text-align:left;
	font-weight:bold;
}


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

	.case_dx .title dl {
		padding: 0; 
		margin:0;
		display: block; 
	}

	.case_dx .title dt {
		font-size: 1.5rem;
		margin: 0 0 10px;
		padding: 5px;
		line-height: 1.3;
	}

	.case_dx .title dt span {
		font-size: 4rem;
	}

	.case_dx .title dd {
		margin: 0 0 40px;
		display: block; 
		font-size: 2.3rem;
	}

	.case_dx .title dd span {
		font-size: 1.5rem;
		line-height: 1.0;
	}

	.case_dx .case_dx_list {
		margin: 50px 0;
		padding: 0px; 
		border: 0px; 
	  }

	.case_dx .case_dx_list p{
		font-size: 2.4rem;
		line-height: 1.4;
		margin: 0;
	}

	.case_dx .case_dx_list li {
		font-size: 1.8rem;
		background-size: 1.7rem;
		padding:5px 0 5px 30px; 
		line-height: 1.4;
	}
  
}



/*　オンライン相談　*/
.c-content-main .btn-link2 {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  border-radius: 50px;
  font-size: 3rem;
  font-weight: 700;
  padding: 25px 30px;
  min-width: 440px;
  line-height: 1.5;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  border: 3px solid;
  -webkit-transition: color .3s,background-color .3s,-webkit-box-shadow .3s;
  transition: color .3s,background-color .3s,-webkit-box-shadow .3s;
  transition: color .3s,background-color .3s,box-shadow .3s;
  transition: color .3s,background-color .3s,box-shadow .3s,-webkit-box-shadow .3s;
  -webkit-box-shadow: 0 2px 16px rgba(0,0,0,.15);
          box-shadow: 0 2px 16px rgba(0,0,0,.15);
  font-family: FOT-ハミング Std B,Roboto,FOT-UD角ゴ_ラージ Pr6N M,Noto Sans JP,sans-serif;
  background-color: #31b196;
  border-color: #31b196;
}



.c-content-main .btn-link2 span {
  padding-right: 8.66667vw;
  position: relative;
  display: inline-block;
  padding-right: 43px;
}

.c-content-main .btn-link2 span:after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 0;
  
  width: 15px;
  height: 15px;
  border: 2px solid #fff;
  border-width: 2px 2px 0 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: border-color .3s;
  transition: border-color .3s;
}

.c-content-main .btn-link2[data-btn-size=small] {
  font-size: 2.4rem;
  padding-top: 18px;
  padding-bottom: 18px;
}

.c-content-main .btn-link2[data-btn-size=small02] {
  font-size: 2rem;
  padding: 20px 55px;
  position: relative;
}



.c-content-main .btn-link2[data-btn-color=orange] {
  border-color: #31b196;
  background-color: #31b196;
}




@media only screen and (max-width: 767px) {
  .c-content-main .btn-link2 {
    width: 74.66667vw;
    font-size: 4vw;
    padding: 3.73333vw 7.33333vw;
    min-width: 0;
  }
  
  .c-content-main .btn-link2[data-btn-size=small] {
    font-size: 3.86667vw;
    padding-top: 2.66667vw;
    padding-bottom: 2.66667vw;
    width: 69.33333vw;
  }
  
  .c-content-main .btn-link2[data-btn-size=small02] {
    font-size: 3.86667vw;
    padding: 2.66667vw 5.33333vw;
    width: 69.33333vw;
  }
  .c-content-main .btn-link2 span:after {
    width: 3.33333vw;
    height: 3.33333vw;
  }
}


@media print,screen and (min-width: 768px) {
  .c-content-main .btn-link2[data-btn-size=small] {
    min-width: 400px;
  }
  .c-content-main .btn-link2[data-btn-size=small02] {
    min-width: 440px;
  }
  .c-content-main .btn-link2:hover {
    background-color: #fff;
    opacity: 1;
    -webkit-box-shadow: none;
            box-shadow: none;
    color: #31b196;
  }
  .c-content-main .btn-link2[data-btn-color=orange] {
    padding: 15px 40px;
  }
  .c-content-main .btn-link2[data-btn-color=orange]:hover {
    color: #31b196;
    background-color: #fff;
  }
  .c-content-main .btn-link2[data-btn-color=orange]:hover span:after {
    border-color: #31b196;
  }
  .c-content-main .btn-link2:hover span:after {
    border-color: #31b196;
  }
  
}











/* フッター */
@media only screen and (max-width: 767px) {
  .c-footer__copyright {
    margin-bottom: 100px;
  }
}




/* マイポータルログイン */
@media screen and (min-width:768px) { 
  .c-header__links .is-sp-show {
    display: none;
  }
}

.c-header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  width: 100%;
}

.c-header__login {
  display: flex;
  flex-direction: row;
}


.c-header__container .c-header__login>a {
  display: block;
  text-decoration: none;
  color: #000;
  font-family: FOT-ハミング Std B,Roboto,FOT-UD角ゴ_ラージ Pr6N M,Noto Sans JP,sans-serif;
  font-size: 1.6rem;
  -webkit-transition: color .3s;
  transition: color .3s;
  font-size: 80%;
  text-decoration:underline;
  padding: 5px;
  width: 70px;
}




@media screen and (max-width:767px) { /* タブレット用のブレイクポイントを指定 */
    
  .soudan {display: none; /* タブレットサイズ以下でPC用のバナーを非表示に */ }
	.c-header__links .login {font-size:100%; text-decoration:underline;}
  .c-header__login {display: none;}
}