@charset "utf-8";

/*矢印が右に移動して背景がつく*/
  
.btnarrow5 {
    /*矢印の基点とするためrelativeを指定*/
    position: relative;
    /*ボタンの形状*/
    border: 2px solid #1F3A6C;
    font-size: 20px;
    padding: 13px 120px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: #1F3A6C;
    background-color: rgba(255,255,255,0.5);
    outline: none;
    /*アニメーションの指定*/
    transition: all .2s linear;
  }

  .btnarrow5:hover {
    background: #1F3A6C;
    color: #fff;
  }

  /*矢印の横線の調整はbefore*/

  /*矢印と下線の形状*/

/*矢印の横線の調整はbefore*/

/*矢印と下線の形状*/

.btnarrow5::before {
  content: "";
  /*絶対配置で下線の位置を決める*/
  position: absolute;
  top: 50%;
  right: -34px;
  /*下線の形状*/
  width: 65px;
  height: 1.5px;
  background: #1F3A6C;
  /*アニメーションの指定*/
  transition: all .2s linear;
}

/*矢印の斜めの部分の調整はafterで行う*/

.btnarrow5::after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 23%;
  right: -26px;
  /*矢印の形状*/
  width: 1.5px;
  height: 17px;
  /*長さ調整*/
  background: #1F3A6C;
  transform: skewX(45deg);
  /*アニメーションの指定*/
  transition: all .2s linear;
}

/*hoverした際の移動*/

.btnarrow5:hover::before {
  right: -45px;
}

.btnarrow5:hover::after {
  right: -38px;
}

@media screen and (max-width: 959px) {
  /* 959px以下に適用されるCSS（タブレット用） */

  .btnarrow5 {
    /*矢印の基点とするためrelativeを指定*/
    position: relative;
    /*ボタンの形状*/
    border: 2px solid #1F3A6C;
    font-size: 20px;
    padding: 13px 120px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: #1F3A6C;
    background-color: rgba(255,255,255,0.5);
    outline: none;
    /*アニメーションの指定*/
    transition: all .2s linear;
  }

  .btnarrow5:hover {
    background: #1F3A6C;
    color: #fff;
  }

  /*矢印の横線の調整はbefore*/

  /*矢印と下線の形状*/

  .btnarrow5::before {
    content: "";
    /*絶対配置で下線の位置を決める*/
    position: absolute;
    top: 50%;
    right: -34px;
    /*下線の形状*/
    width: 65px;
    height: 1.5px;
    background: #1F3A6C;
    /*アニメーションの指定*/
    transition: all .2s linear;
  }

  /*矢印の斜めの部分の調整はafterで行う*/

  .btnarrow5::after {
    content: "";
    /*絶対配置で矢印の位置を決める*/
    position: absolute;
    top: 23%;
    right: -26px;
    /*矢印の形状*/
    width: 1.5px;
    height: 17px;
    /*長さ調整*/
    background: #1F3A6C;
    transform: skewX(45deg);
    /*アニメーションの指定*/
    transition: all .2s linear;
  }

  /*hoverした際の移動*/

  .btnarrow5:hover::before {
    right: -40px;
  }

  .btnarrow5:hover::after {
    right: -33px;
  }
}

@media screen and (max-width: 480px) {
  /* 480px以下に適用されるCSS（スマホ用） */

  .btnarrow5 {
    /*矢印の基点とするためrelativeを指定*/
    position: relative;
    /*ボタンの形状*/
    border: 2px solid #1F3A6C;
    font-size: 16px;
    padding: 10px 55px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: #1F3A6C;
    background-color: rgba(255,255,255,0.5);
    outline: none;
    /*アニメーションの指定*/
    transition: all .2s linear;
  }

  .btnarrow5:hover {
    background: #1F3A6C;
    color: #fff;
  }

  /*矢印の横線の調整はbefore*/

  /*矢印と下線の形状*/

  .btnarrow5::before {
    content: "";
    /*絶対配置で下線の位置を決める*/
    position: absolute;
    top: 50%;
    right: -25px;
    /*下線の形状*/
    width: 55px;
    height: 1.5px;
    background: #1F3A6C;
    /*アニメーションの指定*/
    transition: all .2s linear;
  }

  /*矢印の斜めの部分の調整はafterで行う*/

  .btnarrow5::after {
    content: "";
    /*絶対配置で矢印の位置を決める*/
    position: absolute;
    top: 23%;
    right: -20px;
    /*矢印の形状*/
    width: 2.5px;
    height: 14px;
    /*長さ調整*/
    background: #1F3A6C;
    transform: skewX(45deg);
    /*アニメーションの指定*/
    transition: all .2s linear;
  }

  /*hoverした際の移動*/

  .btnarrow5:hover::before {
    right: -37px;
  }

  .btnarrow5:hover::after {
    right: -30px;
  }
}


/*デフォルト仕様*/

/*矢印が右に移動して背景がつく*/

.btnarrow6 {
  /*矢印の基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  border: 1px solid #555;
  padding: 8px 30px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  color: #1F3A6C;
  outline: none;
  /*アニメーションの指定*/
  transition: all .2s linear;
}

.btnarrow6:hover {
  background: #1F3A6C;
  color: #fff;
}

/*矢印と下線の形状*/

.btnarrow6::before {
  content: "";
  /*絶対配置で下線の位置を決める*/
  position: absolute;
  top: 50%;
  right: -26px;
  /*下線の形状*/
  width: 40px;
  height: 1px;
  background: #1F3A6C;
  /*アニメーションの指定*/
  transition: all .2s linear;
}

.btnarrow6::after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 20%;
  right: -21px;
  /*矢印の形状*/
  width: 1px;
  height: 12px;
  background: #1F3A6C;
  transform: skewX(45deg);
  /*アニメーションの指定*/
  transition: all .2s linear;
}

/*hoverした際の移動*/

.btnarrow6:hover::before {
  right: -30px;
}

.btnarrow6:hover::after {
  right: -25px;
}


/*CONTACT US のボタン*/

/* ボタン共通設定 */

.btn07 {
  /*矢印の基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  background: rgba(255,255,255,0);
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 40px 10px 30px;
  text-align: center;
  outline: none;
  /*アニメーションの指定*/
  transition: ease .2s;
}

.btn07:hover {
  background: #fff;
  border: 2px solid #fff;
  color: #000;
}

/* 矢印が右に移動 */

.btnarrow1::after {
  content: '';
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 42%;
  right: 13px;
  /*矢印の形状*/
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  /*アニメーションの指定*/
  transition: all .3s;
}

/*hoverした際の移動*/

.btnarrow1:hover::after {
  right: 11px;
  /*矢印の形状*/
  width: 5px;
  height: 5px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg);
  /*アニメーションの指定*/
  transition: all .3s;
}

/*ご相談から上棟式のフロート*/

ul {
  padding: 0;
}

li {
  list-style-type: none;
}

dd {
  margin-left: 0;
  color: #000;
}

.flow {
  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 > li {
  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-#1F3A6C;
  background: -webkit-#1F3A6C;
  background: #1F3A6C;
  padding: 8px 20px;
  display: block;
  position: absolute;
  top: 0;
  left: 0px;
  z-index: 100;
}

.flow > li .icon::after {
  content: "";
  border-style: solid;
  border-width: 5px 0 5px 10px;
  border-color: transparent transparent transparent #1F3A6C;
  position: absolute;
  top: 50%;
  left: 100%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.flow > li dl {
  padding-left: 200px;
  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: #1F3A6C;
  border-radius: 50%;
  left: 115px;
}

.flow > li dl::after {
  width: 50px;
  border-bottom: 1px dashed #999;
  position: absolute;
  left: 125px;
}

.flow > li dl dt {
  font-size: 20px;
  font-weight: 600;
  color: #1F3A6C;
  margin-bottom: 1vh;
}


@media screen and (max-width: 480px) {
	/* 480px以下に適用されるCSS（スマホ用） */
		

ul {
  padding: 0;
}

li {
  list-style-type: none;
}

dd {
  margin-left: 0;
  color: #000;
		font-size: 11px;
}

.flow {
  padding-left: 120px;
  position: relative;
}

.flow::before {
  content: "";
  width: 0px;
  height: 100%;
  background: #eee;
  margin-left: -8px;
  display: block;
  position: absolute;
  top: 0;
  left: 120px;
}

.flow > li {
  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-#1F3A6C;
  background: -webkit-#1F3A6C;
  background: #1F3A6C;
  padding: 8px 20px;
  display: block;
  position: absolute;
  top: -2px;
  left: -20px;
  z-index: 100;
}

.flow > li .icon::after {
  content: "";
  border-style: solid;
  border-width: 5px 0 5px 10px;
  border-color: transparent transparent transparent #1F3A6C;
  position: absolute;
  top: 50%;
  left: 100%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.flow > li dl {
  padding-left: 90px;
  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: #1F3A6C;
	border-radius: 50%;
	left: -4px;
}
.flow > li dl::after {
	width: 0px;
	border-bottom: 1px dashed #999;
	position: absolute;
	left: 5px;
}

.flow > li dl dt {
  font-size: 16px;
  font-weight: 600;
  color: #1F3A6C;
  margin-bottom: 1vh;
}
}