@charset "UTF-8";
/*********************************************/
/* Components button */
/*********************************************/
.c-btn {
  display: inline-block;
  margin: 0 0 5px 0;
  padding: 7px 45px;
  border: 2px solid #3db277;
  min-width: 300px;
  line-height: 1.4;
  border-radius: 60px;
  background: transparent;
  color: #3db277;
  background-color: #ffffff;
  font-size: 1.25rem;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 100ms 0s ease;
  transition: all 100ms 0s ease;
  -webkit-box-shadow: 0 5px 0 0px rgba(217, 244, 189, 0.5);
          box-shadow: 0 5px 0 0px rgba(217, 244, 189, 0.5);
  font-weight: bold;
  position: relative;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
.c-btn:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  left: auto;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #3db277;
  border-bottom: 2px solid #3db277;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .c-btn:before {
    right: vw(20px);
    margin-top: vw(-5px);
    width: vw(10px);
    height: vw(10px);
    border-right: vw(2px) solid #3db277;
    border-bottom: vw(2px) solid #3db277;
  }
}
@media only screen and (max-width: 990px) {
  .c-btn {
    min-width: 290px;
    padding: 7px 35px 7px 25px;
  }
}
.c-btn:hover {
  margin: 5px 0 0 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #3db277;
  cursor: pointer;
  text-decoration: none;
}

/***** ボタン 状態 *****/
.c-btn.is-primary {
  border-color: transparent;
  background: #3db277;
  color: #ffffff;
  position: relative;
}
.c-btn.is-primary:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  left: auto;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .c-btn.is-primary:before {
    right: vw(20px);
    margin-top: vw(-5px);
    width: vw(10px);
    height: vw(10px);
    border-right: vw(1px) solid #ffffff;
    border-bottom: vw(1px) solid #ffffff;
  }
}
.c-btn.is-primary.is-no-arrow {
  position: relative;
}
.c-btn.is-primary.is-no-arrow:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: auto;
  left: 0px;
  margin-top: 0px;
  width: 0px;
  height: 0px;
  border-right: 0px solid #696969;
  border-bottom: 0px solid #696969;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .c-btn.is-primary.is-no-arrow:before {
    left: vw(0px);
    margin-top: vw(0px);
    width: vw(0px);
    height: vw(0px);
    border-right: vw(0px) solid #696969;
    border-bottom: vw(0px) solid #696969;
  }
}
.c-btn.is-primary:hover {
  background: rgba(61, 178, 119, 0.9);
  color: #ffffff;
}
.c-btn.is-success {
  border-color: #398439;
  background: #449d44;
  color: #ffffff;
}
.c-btn.is-success:hover {
  background: #398439;
  color: #ffffff;
}
.c-btn.is-link {
  border-color: #3db277;
  border-width: 1px;
  background: #ffffff;
  color: #3db277;
  position: relative;
}
.c-btn.is-link:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  left: auto;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  border-right: 1px solid #3db277;
  border-bottom: 1px solid #3db277;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .c-btn.is-link:before {
    right: vw(20px);
    margin-top: vw(-5px);
    width: vw(10px);
    height: vw(10px);
    border-right: vw(1px) solid #3db277;
    border-bottom: vw(1px) solid #3db277;
  }
}
.c-btn.is-link:hover {
  position: relative;
  background: #3db277;
  color: #ffffff;
}
.c-btn.is-link:hover:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  left: auto;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .c-btn.is-link:hover:before {
    right: vw(20px);
    margin-top: vw(-5px);
    width: vw(10px);
    height: vw(10px);
    border-right: vw(1px) solid #ffffff;
    border-bottom: vw(1px) solid #ffffff;
  }
}
.c-btn.is-disable {
  border-color: #dddddd;
  background: #e5e5e5;
  color: #aaaaaa;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: default;
}
.c-btn.is-disable:hover {
  margin: 0 2px 2px 0;
}
.c-btn.is-arrow {
  padding-right: 30px;
  position: relative;
}
.c-btn.is-arrow:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  left: auto;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #666666;
  border-bottom: 2px solid #666666;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .c-btn.is-arrow:before {
    right: vw(15px);
    margin-top: vw(-4px);
    width: vw(8px);
    height: vw(8px);
    border-right: vw(2px) solid #666666;
    border-bottom: vw(2px) solid #666666;
  }
}
.c-btn.is-arrow-bottom {
  padding-right: 30px;
  position: relative;
}
.c-btn.is-arrow-bottom:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #666666;
  border-bottom: 2px solid #666666;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .c-btn.is-arrow-bottom:before {
    right: vw(12px);
    margin-top: vw(-4px);
    width: vw(8px);
    height: vw(8px);
    border-right: vw(2px) solid #666666;
    border-bottom: vw(2px) solid #666666;
  }
}
.c-btn.is-no-arrow {
  position: relative;
}
.c-btn.is-no-arrow:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: auto;
  left: 0px;
  margin-top: 0px;
  width: 0px;
  height: 0px;
  border-right: 0px solid #696969;
  border-bottom: 0px solid #696969;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .c-btn.is-no-arrow:before {
    left: vw(0px);
    margin-top: vw(0px);
    width: vw(0px);
    height: vw(0px);
    border-right: vw(0px) solid #696969;
    border-bottom: vw(0px) solid #696969;
  }
}
.c-btn.is-back {
  border-width: 1px;
  font-weight: normal;
  position: relative;
}
.c-btn.is-back:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: auto;
  left: 20px;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  border-right: 1px solid #3db277;
  border-bottom: 1px solid #3db277;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .c-btn.is-back:before {
    left: vw(20px);
    margin-top: vw(-5px);
    width: vw(10px);
    height: vw(10px);
    border-right: vw(1px) solid #3db277;
    border-bottom: vw(1px) solid #3db277;
  }
}
.c-btn.is-pdf {
  padding: 12px 45px;
}

/***** ボタン サイズ *****/
.c-btn.is-s {
  padding: 4px 5px;
  font-size: 0.75rem;
}
.c-btn.is-m {
  padding: 11px 30px;
}
.c-btn.is-l {
  padding: 15px 30px;
  font-size: 1.125rem;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .c-btn.is-l {
    padding: 11px 30px;
    font-size: 1rem;
  }
}

/*********************************************/
/* Components card */
/*********************************************/
/*********************************************/
/* Components */
/*********************************************/
/*************** 汎用リスト ***************/
.c-card-list-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .c-card-list-type {
    display: block;
    margin-left: 0px;
    margin-right: 0px;
  }
}

.c-card-list-type__item {
  margin-bottom: 60px;
  padding-left: 15px;
  padding-right: 15px;
  width: 33.3333%;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .c-card-list-type__item {
    margin-bottom: 30px;
    padding-left: 0px;
    padding-right: 0px;
    width: auto;
  }
}

.c-card-list-type__link {
  overflow: hidden;
  display: block;
  border: 1px solid #cccccc;
  border-radius: 5px;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.c-card-list-type__link:hover {
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.c-card-list-type__link:hover {
  text-decoration: none;
}

.c-card-list-type__img {
  --imgWidth: 540;
  --imgHeight: 360;
  --imgRatio: calc(var(--imgHeight) / var(--imgWidth));
  min-height: 205px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .c-card-list-type__img {
    --containerWidth: calc(100vw - (15px * 2) - 20px);
    --imgShowHeight: calc(var(--containerWidth) * var(--imgRatio));
    min-height: var(--imgShowHeight);
  }
}

.c-card-list-type__txt {
  padding: 15px;
}

.c-card-list-type__ttl {
  margin-bottom: 15px;
  font-size: 1.125rem;
  font-weight: bold;
  color: #000000;
}

.c-card-list-type__body {
  color: #333333;
}

/*************** カテゴリーリスト ***************/
/* カテゴリ用 */
.c-category-list-type01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .c-category-list-type01 {
    display: block;
  }
}

.c-category-list-type01__item {
  margin-bottom: 50px;
  padding-left: 10px;
  padding-right: 10px;
  width: 33.3333%;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .c-category-list-type01__item {
    margin-bottom: 30px;
    width: auto;
  }
}

.c-category-list-type01__link {
  display: block;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.c-category-list-type01__link:hover {
  opacity: 0.9;
  filter: alpha(opacity=90);
}

.c-category-list-type01__img {
  position: relative;
  margin-bottom: 10px;
  --imgWidth: 580;
  --imgHeight: 385;
  --imgRatio: calc(var(--imgHeight) / var(--imgWidth));
  min-height: 210px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 1530px) {
  .c-category-list-type01__img {
    --containerWidth: calc((100vw - (15px * 4)) / 3);
    --imgShowHeight: calc(var(--containerWidth) * var(--imgRatio));
    min-height: auto;
  }
}
@media only screen and (max-width: 990px) {
  .c-category-list-type01__img {
    --containerWidth: calc(100vw - (15px * 2) - 20px);
    --imgShowHeight: calc(var(--containerWidth) * var(--imgRatio));
    min-height: var(--imgShowHeight);
  }
}

.c-category-list-type01__ttl {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 1.875rem;
  background: rgba(0, 0, 0, 0.1);
  color: #ffffff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .c-category-list-type01__ttl {
    font-size: 1.125rem;
  }
}

/* 内容用 */
.c-category-list-type02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .c-category-list-type02 {
    display: block;
  }
}

.c-category-list-type02__item {
  margin-bottom: 50px;
  padding-left: 10px;
  padding-right: 10px;
  width: 33.3333%;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .c-category-list-type02__item {
    margin-bottom: 30px;
    width: auto;
  }
}

.c-category-list-type02__link {
  display: block;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.c-category-list-type02__link:hover {
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.c-category-list-type02__link:hover {
  text-decoration: none;
}

.c-category-list-type02__img {
  --imgWidth: 580;
  --imgHeight: 385;
  --imgRatio: calc(var(--imgHeight) / var(--imgWidth));
  min-height: 210px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 1530px) {
  .c-category-list-type02__img {
    --containerWidth: calc((100vw - (15px * 4)) / 3);
    --imgShowHeight: calc(var(--containerWidth) * var(--imgRatio));
    min-height: auto;
  }
}
@media only screen and (max-width: 990px) {
  .c-category-list-type02__img {
    --containerWidth: calc(100vw - (15px * 2) - 20px);
    --imgShowHeight: calc(var(--containerWidth) * var(--imgRatio));
    min-height: var(--imgShowHeight);
  }
}

.c-category-list-type02-txt {
  position: relative;
  padding: 30px 15px;
  border: 1px solid #cccccc;
  background: #ffffff;
}

.c-category-list-type02-txt__ttl {
  margin-bottom: 15px;
  font-size: 1.125rem;
  color: #000000;
}

.c-category-list-type02-txt__category {
  position: absolute;
  top: -15px;
  right: -1px;
  padding: 5px 15px;
  min-width: 120px;
  background: #3db277;
  color: #ffffff;
  font-size: 0.75rem;
  text-align: center;
}

.c-category-list-type02-txt__body {
  color: #333333;
}

/*********************************************/
/* Components main-visual */
/*********************************************/
/* メインビジュアル */
.c-main-visual-type-bg-img {
  position: relative;
  height: 800px;
  background-image: url(../images/top-main-visual-img.jpg);
  background-size: cover;
  background-position: right center;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .c-main-visual-type-bg-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 630px;
    background-position: 20% center;
    background-image: url(../images/top-main-visual-img__sp.jpg);
  }
}
.c-main-visual-type-bg-img:before {
  content: "";
  position: absolute;
  right: 30%;
  bottom: 520px;
  width: 140px;
  height: 122px;
  background-image: url(../images/main-visual-heart.svg);
  background-size: 140px;
}
@media only screen and (max-width: 1920px) {
  .c-main-visual-type-bg-img:before {
    right: 580px;
  }
}
@media only screen and (max-width: 1530px) {
  .c-main-visual-type-bg-img:before {
    content: none;
  }
}

.c-main-visual-type-txt {
  margin: 0 auto 0 0;
  padding-top: 90px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 1530px) {
  .c-main-visual-type-txt {
    margin: auto;
    padding-top: 60px;
  }
}
@media only screen and (max-width: 990px) {
  .c-main-visual-type-txt {
    padding-top: 0px;
    position: relative;
    bottom: 70px;
  }
}

.c-main-visual-type-txt__desc {
  margin-bottom: 45px;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: bold;
  text-shadow: 0 0 5px rgb(0, 0, 0);
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .c-main-visual-type-txt__desc {
    margin-bottom: 20px;
    font-size: 0.75rem;
  }
}

.c-main-visual-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 45px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .c-main-visual-list {
    display: block;
    margin-bottom: 15px;
  }
}

.c-main-visual-list__item {
  width: 370px;
  color: #ffffff;
  background-color: #a8d65f;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 50px;
  text-align: center;
  letter-spacing: 3px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .c-main-visual-list__item {
    margin: 0 auto;
    width: 240px;
    font-size: 1rem;
    line-height: 36px;
  }
}
.c-main-visual-list__item:last-child {
  background-color: #f9d128;
}

.c-main-visual-type-txt__ttl {
  margin-bottom: 15px;
  color: #ffffff;
  font-size: 2.5rem;
  letter-spacing: 5px;
  font-weight: bold;
  line-height: 4.875rem;
  text-shadow: 0 0 10px rgb(0, 0, 0);
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .c-main-visual-type-txt__ttl {
    max-width: 500px;
    font-size: 1.25rem;
    letter-spacing: 3px;
    line-height: 2.5rem;
  }
}

.c-main-visual-type-icon {
  margin: 0 auto;
  width: 700px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .c-main-visual-type-icon {
    position: relative;
    top: 90px;
    width: 310px;
  }
}

/*********************************************/
/* Components title */
/*********************************************/
.c-ttl-main {
  display: block;
  margin-bottom: 45px;
  width: 100%;
  line-height: 1.2;
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 5px;
  text-align: center;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .c-ttl-main {
    font-size: 1.5rem;
    letter-spacing: 3px;
  }
}
.c-ttl-main.is-left {
  text-align: left;
}
.c-ttl-main.is-green {
  color: #3db277;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .c-ttl-main.is-green {
    font-size: 1.25rem;
  }
}
.c-ttl-main.is-green span {
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 0 45px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-ttl-main.is-green span:before {
  content: "";
  position: absolute;
  top: 6px;
  left: 10px;
  width: 2px;
  height: 0;
  margin: auto;
  border-style: solid;
  border-color: #3db277 transparent transparent transparent;
  border-width: 45px 0 0 0;
  -webkit-transform: rotate(-30deg);
      -ms-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
.c-ttl-main.is-green span:after {
  content: "";
  position: absolute;
  top: 6px;
  right: 20px;
  width: 2px;
  height: 0;
  margin: auto;
  border-style: solid;
  border-color: #3db277 transparent transparent transparent;
  border-width: 45px 0 0 0;
  -webkit-transform: rotate(30deg);
      -ms-transform: rotate(30deg);
          transform: rotate(30deg);
}
.c-ttl-main.is-merit span {
  position: relative;
  padding-left: 60px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .c-ttl-main.is-merit span {
    padding-left: 45px;
  }
}
.c-ttl-main.is-merit span:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 42px;
  background-size: 42px;
  background-image: url(../images/top-merit-icon.svg);
  background-repeat: no-repeat;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .c-ttl-main.is-merit span:before {
    top: -3px;
    width: 35px;
    height: 35px;
    background-size: 35px;
  }
}
.c-ttl-main.is-green-color {
  color: #3db277;
}

.top-sub-ttl {
  margin-bottom: 15px;
  color: #3db277;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
}

.c-ttl-sub {
  position: relative;
  margin-bottom: 45px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #000000;
  text-align: center;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .c-ttl-sub {
    margin-bottom: 30px;
  }
}
.c-ttl-sub:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  margin-left: -15px;
  width: 30px;
  height: 1px;
  background: #3db277;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .c-ttl-sub:before {
    bottom: -10px;
  }
}
.c-ttl-sub.is-left {
  text-align: left;
}
.c-ttl-sub.is-left:before {
  left: 0;
  margin-left: 0;
}

.c-ttl-sub-s {
  margin-bottom: 30px;
  padding-left: 25px;
  border-left: 1px solid #3db277;
  font-size: 1.125rem;
  color: #000000;
  line-height: 1.4;
  font-weight: bold;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .c-ttl-sub-s {
    margin-bottom: 20px;
    padding-left: 15px;
  }
}

.c-ttl-sub-ss {
  margin-bottom: 15px;
  font-size: 1rem;
  font-weight: bold;
  color: #000000;
  line-height: 1.4;
}

.c-lead {
  margin-bottom: 45px;
  font-size: 1.125rem;
  line-height: 1.8;
  text-align: center;
}

/**************************************************/
/* top */
/**************************************************/
/***** TOP TOPICS *****/
.top-topics-position {
  position: relative;
}

.top-topics {
  position: absolute;
  right: 75px;
  bottom: 45px;
  background: #ffffff;
  overflow: hidden;
  border-radius: 60px;
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 5px rgba(0, 0, 0, 0.3);
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 1530px) {
  .top-topics {
    bottom: 25px;
  }
}
@media only screen and (max-width: 990px) {
  .top-topics {
    position: static;
    border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-bottom: 1px solid #cccccc;
  }
}

.top-topics-list {
  padding: 0 45px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .top-topics-list {
    padding: 0 15px;
  }
}

.top-topics-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 15px;
  padding-bottom: 15px;
}

.top-topics-list-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 30px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .top-topics-list-head {
    margin-right: 0;
  }
}

.top-topics-list__date {
  margin-right: 30px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .top-topics-list__date {
    margin-right: 15px;
  }
}

.top-topics-list__category {
  font-size: 0.75rem;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .top-topics-list__category {
    min-width: 115px;
  }
}
.top-topics-list__category span {
  display: block;
  padding: 3px 10px;
  border-radius: 5px;
  background: #3db277;
  color: #ffffff;
  text-align: center;
}

.top-topics-list__ttl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 2px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .top-topics-list__ttl {
    -webkit-box-flex: inherit;
        -ms-flex: inherit;
            flex: inherit;
    margin-top: 10px;
    width: 100%;
  }
}
.top-topics-list__ttl a {
  color: #333333;
}

/***** TOP 私たちにできること *****/
.top-first {
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .top-first {
    padding-bottom: 105px;
  }
}

.top-first-desc {
  font-size: 1.5rem;
  letter-spacing: 3px;
  line-height: 48px;
  font-weight: bold; /*
	@if $media-width == tb {
		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
			@content;
		}
	}
	@if $media-width == min-tb {
		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
			@content;
		}
	}
	@if $media-width == tb-vert {
		@media only screen and (max-width: $bp-tb-vert) {
			@content;
		}
	}
	@if $media-width == min-tb-vert {
		@media only screen and (min-width: $bp-min-tb-vert) {
			@content;
		}
	}
	@if $media-width == tb-hor {
		@media only screen and (max-width: $bp-tb-hor) {
			@content;
		}
	}
	@if $media-width == min-tb-hor {
		@media only screen and (min-width: $bp-min-tb-hor) {
			@content;
		}
	}
*/
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 1530px) {
  .top-first-desc {
    letter-spacing: 2px;
  }
}
@media only screen and (max-width: 990px) {
  .top-first-desc {
    font-size: 1.25rem;
    line-height: 40px;
  }
}

.top-first-wrap {
  position: relative;
}
.top-first-wrap:before {
  content: "";
  position: absolute;
  top: -50px;
  right: 0;
  width: 202px;
  height: 508px;
  background-image: url(../images/top-first-contents-img.svg);
  background-size: 202px;
  background-repeat: no-repeat;
  z-index: -1;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 1530px) {
  .top-first-wrap:before {
    right: -25px;
    opacity: 0.5;
  }
}
@media only screen and (max-width: 990px) {
  .top-first-wrap:before {
    top: auto;
    bottom: -105px;
    right: 15px;
    width: 48px;
    height: 120px;
    background-size: 48px;
  }
}

.top-first-txt {
  font-size: 1.25rem;
  line-height: 44px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .top-first-txt {
    font-size: 1rem;
    line-height: 38px;
  }
}

/***** TOP 住宅ローンに関するお悩みはありますか？ *****/
.top-loan {
  border-right: 15px solid #a8d65f;
  border-left: 15px solid #a8d65f;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .top-loan {
    border-right: 5px solid #a8d65f;
    border-left: 5px solid #a8d65f;
  }
}

.top-loan-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .top-loan-list {
    display: block;
  }
}

.top-loan-list__item {
  width: 33.3333%;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .top-loan-list__item {
    width: auto;
  }
}

.top-loan-list__link {
  display: block;
}
.top-loan-list__link:hover {
  text-decoration: none;
}
.top-loan-list__link:hover .top-loan-list__txt {
  border-color: #a8d65f;
  background-color: #a8d65f;
  color: #ffffff;
}
.top-loan-list__link:hover .top-loan-ttl-wrap {
  color: #ffffff;
  background-color: #a8d65f;
  border-color: #ffffff;
}
.top-loan-list__link:hover .top-loan-ttl-wrap:before {
  border-color: #ffffff transparent transparent transparent;
}

.top-loan-list__img {
  position: relative;
}

.top-loan-list__txt {
  position: absolute;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 9px 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 45px;
  border: 2px solid #3db277;
  color: #3db277;
  background-color: #ffffff;
  font-size: 1.25rem;
  letter-spacing: 3px;
  white-space: nowrap;
  font-weight: bold;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 1530px) {
  .top-loan-list__txt {
    letter-spacing: 1px;
    width: calc(100% - 45px);
    text-align: center;
  }
}
@media only screen and (max-width: 990px) {
  .top-loan-list__txt {
    min-width: 290px;
    font-size: 1.25rem;
  }
}

.top-loan-ttl-wrap {
  position: relative;
  padding: 15px;
  height: 115px;
  border: 1px solid #cccccc;
  color: #333333;
  background-color: #ffffff;
  font-size: 1.625rem;
  letter-spacing: 3px;
  text-align: center;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 1530px) {
  .top-loan-ttl-wrap {
    height: 100px;
    font-size: 1.25rem;
    letter-spacing: 1px;
  }
}
@media only screen and (max-width: 990px) {
  .top-loan-ttl-wrap {
    font-size: 1.25rem;
  }
}
.top-loan-ttl-wrap:before {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 20px;
  border-color: #3db277 transparent transparent transparent;
}

.top-loan-ttl {
  font-weight: bold;
}

/***** TOP 各プラン 「～とは？」 *****/
.top-loan-contents {
  position: relative;
}
.top-loan-contents:before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 30px 0 30px;
  border-color: #f9d128 transparent transparent transparent;
  z-index: 2;
}
.top-loan-contents:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 30px 0 30px;
  border-color: #ffffff transparent transparent transparent;
  z-index: 3;
}

.top-leaseback-contents-bg {
  height: 555px;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .top-leaseback-contents-bg {
    height: 240px;
    background-size: cover;
  }
}
.top-leaseback-contents-bg.is-leaseback {
  background-image: url(../images/top-leaseback-bg.jpg);
  background-position: 80% center;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 1530px) {
  .top-leaseback-contents-bg.is-leaseback {
    background-position: 45% center;
  }
}
@media only screen and (max-width: 990px) {
  .top-leaseback-contents-bg.is-leaseback {
    background-position: 80% center;
  }
}
.top-leaseback-contents-bg.is-sale {
  background-image: url(../images/top-sale-bg.jpg);
}
.top-leaseback-contents-bg.is-buyback {
  background-image: url(../images/top-buyback-bg.jpg);
}

.top-leaseback-contents-item-wrap {
  position: absolute;
  bottom: 120px;
  left: 0;
  padding: 45px;
  width: 630px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  z-index: 2;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
.top-leaseback-contents-item-wrap.is-right {
  left: auto;
  right: 0;
}
@media only screen and (max-width: 990px) {
  .top-leaseback-contents-item-wrap {
    -webkit-box-shadow: none;
            box-shadow: none;
    position: static;
    margin: 0 0px;
    padding: 30px 0px;
    width: auto;
  }
}

.top-leaseback-contents-ttl {
  display: inline-block;
  margin-bottom: 30px;
  font-size: 2.25rem;
  letter-spacing: 5px;
  font-weight: bold;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .top-leaseback-contents-ttl {
    font-size: 1.5rem;
    letter-spacing: 3px;
  }
}

.top-leaseback-contents-txt {
  font-size: 1.25rem;
  line-height: 2rem;
}
.top-leaseback-contents-txt span {
  font-weight: bold;
}

/***** TOP 弁護士紹介 *****/
.top-lawyer-wrap {
  padding: 60px 105px;
  border-radius: 30px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 13px 0 #cccccc;
          box-shadow: 0 0 13px 0 #cccccc;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .top-lawyer-wrap {
    padding: 60px 30px;
  }
}

.top-lawyer-sub-txt {
  margin-bottom: 15px;
}
.top-lawyer-sub-txt span {
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 0 45px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #3db277;
  font-size: 1.25rem;
  font-weight: bold;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .top-lawyer-sub-txt span {
    padding: 0 30px;
  }
}
.top-lawyer-sub-txt span:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 12px;
  width: 2px;
  height: 0;
  margin: auto;
  border-style: solid;
  border-color: #3db277 transparent transparent transparent;
  border-width: 22px 0 0 0;
  -webkit-transform: rotate(-35deg);
      -ms-transform: rotate(-35deg);
          transform: rotate(-35deg);
}
.top-lawyer-sub-txt span:after {
  content: "";
  position: absolute;
  top: 2px;
  right: 25px;
  width: 2px;
  height: 0;
  margin: auto;
  border-style: solid;
  border-color: #3db277 transparent transparent transparent;
  border-width: 22px 0 0 0;
  -webkit-transform: rotate(35deg);
      -ms-transform: rotate(35deg);
          transform: rotate(35deg);
}

.top-lawyer-txt {
  margin: 0 auto;
  margin-bottom: 60px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.5rem;
  font-weight: bold;
}

.top-lawyer-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .top-lawyer-list {
    display: block;
  }
}

.top-lawyer-list__item {
  width: 50%;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .top-lawyer-list__item {
    width: auto;
  }
}
.top-lawyer-list__item:first-child {
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 1530px) {
  .top-lawyer-list__item:first-child {
    padding-right: 30px;
  }
}
@media only screen and (max-width: 990px) {
  .top-lawyer-list__item:first-child {
    margin: 0 auto;
    padding-right: 0;
    max-width: 418px;
  }
}

.top-lawyer-list__ttl {
  margin-bottom: 25px;
  padding-left: 60px;
  font-size: 2.25rem;
  letter-spacing: 5px;
  font-weight: bold;
  background-image: url(../images/top-lawyer-icon.svg);
  background-size: 40px;
  background-position: left center;
  background-repeat: no-repeat;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 1530px) {
  .top-lawyer-list__ttl {
    margin-bottom: 55px;
    font-size: 1.5rem;
    letter-spacing: 3px;
  }
}
@media only screen and (max-width: 990px) {
  .top-lawyer-list__ttl {
    margin-bottom: 30px;
    font-size: 2.25rem;
    letter-spacing: 3px;
  }
}

.top-lawyer-list__desc {
  margin-bottom: 35px;
  font-size: 1.25rem;
  line-height: 44px;
  font-weight: bold;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 1530px) {
  .top-lawyer-list__desc {
    font-size: 1rem;
    line-height: 36px;
  }
}
@media only screen and (max-width: 990px) {
  .top-lawyer-list__desc {
    font-size: 1.25rem;
    line-height: 44px;
  }
}

.top-lawyer-list__img {
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .top-lawyer-list__img {
    margin-bottom: 45px;
  }
}

.top-lawyer-list__txt {
  margin-bottom: 60px;
  line-height: 2rem;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 1530px) {
  .top-lawyer-list__txt {
    margin-bottom: 50px;
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 990px) {
  .top-lawyer-list__txt {
    margin: 0 auto;
    margin-bottom: 60px;
    max-width: 487px;
  }
}

.top-lawyer-tbl-wrap {
  margin-bottom: 30px;
  padding: 7px 0;
  border-top: 2px solid #cccccc;
  border-bottom: 2px solid #cccccc;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .top-lawyer-tbl-wrap {
    margin: 0 auto;
    margin-bottom: 30px;
    max-width: 495px;
  }
}

.top-lawyer-tbl {
  position: relative;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
}
.top-lawyer-tbl:before {
  content: "";
  position: absolute;
  left: 149px;
  top: -10px;
  border-right: 1px dashed #cccccc;
  height: 8px;
}
.top-lawyer-tbl:after {
  content: "";
  position: absolute;
  left: 149px;
  bottom: -10px;
  border-right: 1px dashed #cccccc;
  height: 8px;
}

.top-lawyer-tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px dashed #cccccc;
}
.top-lawyer-tr:last-child {
  border: none;
}

.top-lawyer-th {
  padding: 15px;
  width: 150px;
  border-right: 1px dashed #cccccc;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .top-lawyer-th {
    width: 100px;
  }
}

.top-lawyer-td {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 15px;
}

.top-lawyer-btn-wrap {
  text-align: center;
}

.top-lawyer-btn {
  display: inline-block;
  padding: 5px 30px;
  border: 1px solid #3db277;
  min-width: 415px;
  line-height: 1.4;
  border-radius: 60px;
  background: transparent;
  color: #3db277;
  background-color: #ffffff;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 100ms 0s ease;
  transition: all 100ms 0s ease;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 1530px) {
  .top-lawyer-btn {
    padding: 5px 15px;
  }
}
@media only screen and (max-width: 990px) {
  .top-lawyer-btn {
    padding: 5px 30px;
    min-width: 290px;
  }
}
.top-lawyer-btn i {
  margin-right: 5px;
}
.top-lawyer-btn:hover {
  color: #ffffff;
  background-color: #3db277;
  cursor: pointer;
  text-decoration: none;
}

/***** TOP 解決事例 *****/
.top-case {
  position: relative;
  overflow: hidden;
}
.top-case:before {
  content: none;
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 555px;
  height: 555px;
  background-image: url(../images/top-case-bg.png);
  background-size: 555px;
  background-repeat: no-repeat;
  z-index: 0;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .top-case:before {
    content: "";
  }
}

.news-index {
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .news-index {
    margin-bottom: 45px;
  }
}

.news-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 -15px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .news-list {
    display: block;
    margin: 0;
  }
}

.news-list__item {
  padding: 15px;
  width: 25%;
  text-align: center;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .news-list__item {
    margin: 0 auto;
    margin-bottom: 60px;
    padding: 0;
    max-width: 460px;
    width: auto;
  }
}

.news-list__link {
  display: block;
  color: #333333;
}
.news-list__link:hover {
  color: #333333;
  text-decoration: none;
}
.news-list__link:hover .news-list__img img {
  -webkit-box-shadow: 0 0 8px 0 rgba(168, 214, 95, 0.8);
          box-shadow: 0 0 8px 0 rgba(168, 214, 95, 0.8);
}
.news-list__link:hover .news-list__ttl {
  color: #3db277;
}

.news-list__img {
  margin-bottom: 15px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .news-list__img {
    margin-left: auto;
    margin-right: auto;
    padding-right: 30px;
    padding-left: 30px;
  }
}
.news-list__img img {
  border-radius: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.news-list__ttl {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: bold;
}

.news-list__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

.news-list__category {
  display: inline-block;
  margin-bottom: 15px;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 1rem;
  line-height: 15px;
  background: #3db277;
  color: #ffffff;
}

.news-list__date {
  color: #696969;
}

.news-list-event {
  margin-top: 10px;
  font-size: 0.875rem;
  color: #333333;
}

/***** TOP 会社概要 *****/
.top-company {
  position: relative;
  overflow: hidden;
  padding-bottom: 165px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .top-company {
    padding-bottom: 240px;
  }
}
.top-company:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 345px;
  height: 65px;
  background-image: url(../images/top-company-left.png);
  background-size: 345px;
  background-repeat: no-repeat;
  z-index: 0;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .top-company:before {
    content: none;
  }
}
.top-company:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  width: 800px;
  height: 270px;
  background-image: url(../images/top-company-right.png);
  background-size: 800px;
  background-repeat: no-repeat;
  z-index: -1;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .top-company:after {
    bottom: 0;
    width: 600px;
    height: 200px;
    background-size: 600px;
    z-index: 1;
  }
}

.top-company-tbl-wrap {
  padding: 7px 0;
  border-top: 2px solid #cccccc;
  border-bottom: 2px solid #cccccc;
}

.top-company-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .top-company-list {
    display: block;
  }
}

.top-company-list__img {
  padding-right: 45px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .top-company-list__img {
    padding-right: 0;
    margin-bottom: 60px;
  }
}
.top-company-list__img img {
  border-radius: 15px;
}

.top-company-list__tbl {
  padding-left: 30px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .top-company-list__tbl {
    padding-left: 0;
  }
}

.top-company-tbl {
  position: relative;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
}
.top-company-tbl:before {
  content: "";
  position: absolute;
  left: 149px;
  top: -10px;
  border-right: 1px dashed #cccccc;
  height: 8px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .top-company-tbl:before {
    left: 119px;
  }
}
.top-company-tbl:after {
  content: "";
  position: absolute;
  left: 149px;
  bottom: -10px;
  border-right: 1px dashed #cccccc;
  height: 8px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .top-company-tbl:after {
    left: 119px;
  }
}

.top-company-tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px dashed #cccccc;
}
.top-company-tr:last-child {
  border: none;
}

.top-company-th {
  padding: 15px;
  width: 150px;
  border-right: 1px dashed #cccccc;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .top-company-th {
    width: 120px;
  }
}

.top-company-td {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 15px;
}
/*# sourceMappingURL=style-top.css.map */