@charset "UTF-8";
/* common
--------------------*/
.fullWidth {
  width: 100%;
}

/* グラデーションブロック
--------------------*/
/* ボーダー */
.c-gradientBlk {
  display: block;
  /*opacity: 1;*/
  position: relative;
  z-index: 0;
  border-radius: 10px;
  background: linear-gradient(to bottom, rgba(0,0,0,.15), rgba(0,0,0,.3));
  box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.8);;
  transition: opacity, .5s;
}

/* 背景グラデーション */
.c-gradientBlk::before,
.c-gradientBlk::after {
  content: "";
  display: block;
  position: absolute;
}
/* 背面 */
.c-gradientBlk::before {
  z-index: -1;
  top: 1px;
  left: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: linear-gradient(to bottom, #fff, #d7d7d7);
  border-radius: 10px;
}
/* 前面 */
.c-gradientBlk::after {
  z-index: -1;
  top: 5px;
  left: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  background: linear-gradient(to bottom, #f2f2f2, #fdfdfd 40%, #fff);
  border-radius: 6px;
}
.c-gradientBlk:hover {
  opacity: 0.6;
  transition: .1s;
}

.c-gradientBlk--item:hover {
  opacity: 1;
}
.c-gradientBlk--item:hover::before {
  background: linear-gradient(to bottom, #eeffb7, #b4d649);
}
.c-gradientBlk--item:hover::after {
  background: linear-gradient(to bottom, #d4ef81, #ecffad 40%, #eeffb7)
}

.c-frameTxt {
  color: #444;
  font-size: 19px;
  font-weight: bold;
  line-height: 1.1;
  text-shadow:
        0 2px 0 #fff,
        2px 0 0 #fff,
        0 -2px 0 #fff,
        -2px 0 0 #fff,
        -2px -2px 0 #fff,
        2px -2px 0 #fff,
        -2px 2px 0 #fff,
        2px 2px 0 #fff;
}

.c-frameTxt--small {
  font-size: 16px;
}

/* メイン部分
--------------------*/
.topMainCont {
  float: left;
  width: 683px;
  box-sizing: border-box;
  background: url('/styles/img/top/bg_top-main.gif');
  border-radius: 4px;
  padding: 10px;
  margin-bottom: 2px;
  font-family: 'Hiragino Kaku Gothic ProN','メイリオ',Meiryo,sans-serif;
}

/* カテゴリリスト部分
--------------------*/
.topCateBlk {
  float: left;
  width: 565px;
  box-sizing: border-box;
  background: #fff;
  padding: 10px 10px 10px 9px;
}
.topCateBlk__pick {}
.topCateBlk__pick__itemList {
  margin-bottom: 5px;
}
.topCateBlk__pick__itemList > li {
  float: left;
  margin: 0 6px 6px 0;
}
.topCateBlk__pick__itemList > li:nth-of-type(4n) {
  margin-right: 0;
}

/* ボーダー */
.topCateBlk__pick__item {
  width: 132px;
  height: 132px;
  text-decoration: none;
}
.topCateBlk__pick__item:active,
.topCateBlk__pick__item:hover,
.topCateBlk__pick__item:link,
.topCateBlk__pick__item:visited {
  text-decoration: none;
}

.topCateBlk__pick__itemInner {
  display: block;
  position: relative;
  z-index: 3;
  width: calc(100% - 17px);
  height: calc(100% - 26px);
  padding: 21px 0 0 12px;
  background-position: right bottom;
  background-repeat: no-repeat;
}
.topCateBlk__pick__itemInner--1 {
  background-image: url('/styles/img/top/bg_cate3_1.png');
}
.topCateBlk__pick__itemInner--6 {
  background-image: url('/styles/img/top/bg_cate3_6.png');
}
.topCateBlk__pick__itemInner--13 {
  background-image: url('/styles/img/top/bg_cate3_13.png');
}
.topCateBlk__pick__itemInner--15 {
  background-image: url('/styles/img/top/bg_cate3_15.png');
}
.topCateBlk__pick__itemInner--53 {
  background-image: url('/styles/img/top/bg_cate3_53.png');
}
.topCateBlk__pick__itemInner--46 {
  background-image: url('/styles/img/top/bg_cate3_46.png');
}
.topCateBlk__pick__itemInner--48 {
  background-image: url('/styles/img/top/bg_cate3_48.png');
}
.topCateBlk__pick__itemInner--9 {
  background-image: url('/styles/img/top/bg_cate3_9.png');
}

.topCateBlk__pick__itemName {
  position: relative;
  display: block;
  height: 40px;
}
.topCateBlk__pick__itemNameInner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.topCateBlk__other {
  float: left;
}
.topCateBlk__other__btn {
  width: 546px;
  height: 22px;
  text-align: center;
  text-decoration: none;
  padding: 18px 0 12px;
}

/* サービス一覧 */
.topCateBlk__service {
  float: right;
}

.topCateBlk__service__btn {
  width: 132px;
  height: 40px;
  line-height: 1;
  text-decoration: none;
  padding: 10px 0 2px;
}

.topCateBlk__service__btnInner {
  display: block;
  position: relative;
  z-index: 3;
  background-image: url('/styles/img/top/bg_service.png');
  background-position: right 6px top 5px;
  background-repeat: no-repeat;
  padding-left: 14px;
}

.topCateBlk__other__btn:hover,
.topCateBlk__other__btn:active,
.topCateBlk__other__btn:link,
.topCateBlk__other__btn:visited,
.topCateBlk__service__btn:hover,
.topCateBlk__service__btn:active,
.topCateBlk__service__btn:link,
.topCateBlk__service__btn:visited,
.topCateBlk__previous__btn:hover,
.topCateBlk__previous__btn:active,
.topCateBlk__previous__btn:link,
.topCateBlk__previous__btn:visited {
  text-decoration: none;
}
/* リニューアル前のTopに戻る--------------------*/
/* 背面 */
.topCateBlk__previous__btn.c-gradientBlk::before {
  background: linear-gradient(to bottom, #b3d549, #a2c042);
}
/* 前面 */
.topCateBlk__previous__btn.c-gradientBlk::after {
  background: linear-gradient(to bottom, #accc46, #b5d448 85%, #b4d64a);
}

.topCateBlk__previous {
  float: right;
}

.topCateBlk__previous__btn {
  width: 132px;
  height: 28px;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  padding: 12px 0;
}

.topCateBlk__previous__btnTxt {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}

/* リードメニュー部分
--------------------*/
.topleadMenu {
  float: right;
  width: 88px;
}
.topleadMenu__itemList {
  margin-top: 10px;
}
.topleadMenu__itemList > li {
  margin-top: 6px;
}
.topleadMenu__itemList > li:first-child {
  margin-top: 0;
}
.topleadMenu__itemList__item {
  width: 88px;
  height: 75px;
  text-decoration: none;
}
.topleadMenu__itemList__item:active,
.topleadMenu__itemList__item:hover,
.topleadMenu__itemList__item:link,
.topleadMenu__itemList__item:visited {
  text-decoration: none;
}
.topleadMenu__itemList__itemInner {
  display: block;
  position: relative;
  z-index: 3;
  width: calc(100% - 11px);
  height: calc(100% - 15px);
  background-position: right bottom;
  background-repeat: no-repeat;
  padding: 8px 0 0 8px;
}
.topleadMenu__itemList__itemInner--beginner {
  background-image: url('/styles/img/top/bg_beginner.png');
}
.topleadMenu__itemList__itemInner--repeat {
  background-image: url('/styles/img/top/bg_repeat.png');
}
.topleadMenu__itemList__itemInner--create {
  background-image: url('/styles/img/top/bg_create.png');
}
.topleadMenu__itemList__itemInner--service {
  background-image: url('/styles/img/top/bg_service.png');
}
.topleadMenu__itemList__itemInner--compare {
  background-image: url('/styles/img/top/bg_compare.png');
}

.topleadMenu__itemList__itemTxt {
  color: #333;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: -0.05em;
  line-height: 1.3;
}

/* お知らせ部分
--------------------*/
.topSideCont {
  float: right;
  width: 256px;
  margin-bottom: 2px;
}

.topInfoBlk {
  font-family: 'Hiragino Kaku Gothic ProN','メイリオ',Meiryo,sans-serif;
}
.topInfoBlk__ttlWrap {
  height: 22px;
  background: #f7ee9a;
  padding: 9px 0;
}
.topInfoBlk__ttl {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
.topInfoBlk__ttl__sub {
  font-size: 12px;
}

.topInfoBlk__itemList {
  background: url('/styles/img/top/bg_info.gif');
  padding: 14px 14px 7px;
}
.topInfoBlk__itemList > li {
  position:relative;
  border-bottom: 1px dotted #898989;
  margin-bottom: 14px;
}
.topInfoBlk__itemList > li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.topInfoBlk__itemList__link {
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  text-indent:-9999px;
}

.topInfoBlk__itemList__ttl {
  overflow: hidden;
  height: 36px; /*2.8em;*/
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin-bottom: 8px;
}
.topInfoBlk__itemList__ttlTxt--new::before {
  content: '';
  display: inline-block;
  width: 45px;
  height: 11px;
  background: url('/styles/img/top/txt_new.png');
  margin-right: 6px;
}
.topInfoBlk__itemList > li:hover .topInfoBlk__itemList__ttl,
.topInfoBlk__itemList > li:hover .topInfoBlk__itemList__cont {
  color: #ff872d;
}

.topInfoBlk__itemList__cont {
  overflow: hidden;
  height: 31px; /*2.6em;*/
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.3;
}

.topInfoBlk__itemList__arrowWrap {
  line-height: 1;
  text-align: right;
  margin-bottom: 6px;
}

.topInfoBlk__itemList__arrow::before,
.topInfoBlk__itemList__arrow::after,
.topInfoBlk__itemList__arrowMain::after {
  content: "";
  display: inline-block;
  border-left: 7px solid #333;
  border-top: 4px solid transparent;
  border-right: none;
  border-bottom: 4px solid transparent;
}

.topInfoBlk__itemList > li:hover .topInfoBlk__itemList__arrow::before,
.topInfoBlk__itemList > li:hover .topInfoBlk__itemList__arrow::after,
.topInfoBlk__itemList > li:hover .topInfoBlk__itemList__arrowMain::after {
  border-left-color: #ff872d;
}


.topInfoBlk__itemList__arrowMain {
  display: inline-block;
  position: relative;
  overflow: hidden;
  text-indent: 100%;
  width: 7px;
  height: 8px;
}
.topInfoBlk__itemList__arrowMain::after {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
}
