@charset "UTF-8";
/*===========================================================

  @nifty プロバイダーサービス
  2018.07

============================================================*/
/*************************************
font
**************************************/
@import url("https://fonts.googleapis.com/css?family=Roboto:400,700&text=0123456789");
.num-adjust .comma {
  font-size: 72%;
  position: relative;
  top: -0.04em;
}

/*************************************
common
**************************************/
.sec-area .inner {
  padding: 60px 0;
}

.footPath-area + .sec-area .inner {
  padding: 30px 0 60px;
}

.group + .group {
  margin-top: 50px;
}

.groups + .groups {
  margin-top: 30px;
}

.mark-item {
  display: inline-block;
  font-size: 11px;
  padding: 0 2px;
  position: relative;
  top: -6px;
}

.font-red {
  color: #ff1744;
}

.font-yellow {
  color: #ffc900;
}

.font-white {
  color: #fff;
}

.text + .img {
  margin-top: 15px;
}

.text + .tbl {
  margin-top: 15px;
}

.img {
  text-align: center;
}

.img + .text {
  margin-top: 15px;
}

a img:hover {
  opacity: 0.8;
}

.text + .btn-wrap {
  margin-top: 15px;
}

.btn-wrap + .text {
  margin-top: 15px;
}

.btn-wrap + .btn-wrap {
  margin-top: 15px;
}

.text-link a {
  color: #000;
}

.icon {
  display: inline-block;
  position: relative;
}

.inline-b {
  display: inline-block;
}

.icon-textlink {
  display: inline-block;
  background: url("/common_top/images/icon-arrow_text.svg") no-repeat right center;
  padding-right: 23px;
}

.autoHeight-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .sec-area .inner {
    padding: 30px 12px;
  }
  .footPath-area + .sec-area .inner {
    padding: 30px 12px;
  }
  .group + .group {
    margin-top: 30px;
  }
  .groups + .groups {
    margin-top: 20px;
  }
  .mark-item {
    font-size: 10px;
  }
}
/*================================
ttl / heading-text
=================================*/
.ttl-wrap {
  margin-bottom: 40px;
}

.ttl-wrap-group {
  margin-bottom: 20px;
}

.ttl-sec {
  font-size: 35px;
  font-weight: bold;
  text-align: center;
}

.ttl-band {
  display: inline-block;
  padding: 0 25px;
  position: relative;
}

.ttl-band:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 60%;
  background: linear-gradient(to bottom, #ff7500 0%, #ff7500 50%, #ffa513 50%, #ffa513 100%);
  position: absolute;
  top: 20%;
  left: 0;
}

.ttl-band:after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 60%;
  background: linear-gradient(to bottom, #ff7500 0%, #ff7500 50%, #ffa513 50%, #ffa513 100%);
  position: absolute;
  top: 20%;
  right: 0;
}

.ttl-band.is-blue:before {
  background: linear-gradient(to bottom, #004e97 0%, #004e97 50%, #007bc7 50%, #007bc7 100%);
}

.ttl-band.is-blue:after {
  background: linear-gradient(to bottom, #004e97 0%, #004e97 50%, #007bc7 50%, #007bc7 100%);
}

.ttl-band.is-yellow:before {
  background: linear-gradient(to bottom, #ffe109 0%, #ffe109 50%, #cca101 50%, #cca101 100%);
}

.ttl-band.is-yellow:after {
  background: linear-gradient(to bottom, #ffe109 0%, #ffe109 50%, #cca101 50%, #cca101 100%);
}

.ttl-sec-sub {
  font-size: 16px;
  text-align: center;
}

.ttl-sec + .ttl-text {
  margin-top: 10px;
}

.ttl-sec .text-sub {
  font-size: 18px;
  font-weight: normal;
}

.ttl-sec .text-sub.is-block {
  display: block;
}

.ttl-group {
  font-size: 30px;
  font-weight: bold;
}

.ttl-group.is-center {
  text-align: center;
}

.ttl-group.is-line-bottom {
  border-bottom: 1px solid #c1c1c1;
  font-size: 24px;
  font-weight: bold;
  padding: 3px 0;
}

.ttl-group.is-line-bottom .point {
  display: inline-block;
  position: relative;
}

.ttl-group.is-line-bottom .point:after {
  content: "";
  display: inline-block;
  width: calc(100% + 10px);
  height: 3px;
  background: #ffe109;
  position: absolute;
  bottom: -4px;
  left: 0;
}

.ttl-group .text-sub {
  font-size: 18px;
  font-weight: normal;
}

.ttl-text.is-lead {
  font-size: 17px;
}

.ttl-text + .ttl-img {
  margin-top: 20px;
}

.ttl-img {
  margin-top: 10px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .ttl-wrap {
    margin-bottom: 20px;
  }
  .ttl-main img {
    width: 260px;
  }
  .ttl-sec {
    font-size: 20px;
  }
  .ttl-sec-sub {
    font-size: 14px;
  }
  .ttl-sec .text-sub {
    font-size: 13px;
  }
  .ttl-group {
    font-size: 18px;
  }
  .ttl-group.is-line-bottom {
    font-size: 18px;
  }
}
/*================================
btn
=================================*/
.btn {
  display: block;
  padding: 10px;
  text-decoration: none;
  position: relative;
  cursor: pointer;
}

.btn:hover:after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 768px) {
  .btn:hover:after {
    display: none;
  }
}
/*================================
list
=================================*/
.list-box.col-2 > .box-col {
  width: 48.5%;
}

.list-box.col-2 > .box-col:nth-child(n+3) {
  margin-top: 35px;
}

.list-box.col-3 > .box-col {
  width: 32%;
}

.list-box.col-3 > .box-col:not(:nth-child(3n)) {
  margin-right: 2%;
}

.list-box.col-3 > .box-col:nth-child(n+4) {
  margin-top: 25px;
}

.list-box.col-4 > .box-col {
  width: 23%;
}

.list-box.col-4 > .box-col:not(:nth-child(4n)) {
  margin-right: 2.6%;
}

.list-box.col-4 > .box-col:nth-child(n+5) {
  margin-top: 35px;
}

.list-note {
  margin-top: 15px;
}

.list-note > li {
  padding-left: 1em;
}

.list-note.is-small > li {
  font-size: 12px;
}

.list-note > li.is-num {
  padding-left: 2em;
}

.list-note > li.is-num .mark {
  text-indent: -2em;
}

.list-note > li + li {
  margin-top: 3px;
}

.list-note > li > .list-dotted {
  margin-top: 5px;
}

.list-note .mark {
  display: inline-block;
  text-indent: -1em;
}

.list-note.is-gray li {
  color: #4d4d4d;
}

.list-note.mt-0 {
  margin-top: 0;
}

.list-note.mt-5 {
  margin-top: 5px;
}

.list-dotted > li {
  padding-left: 15px;
  text-align: left;
  position: relative;
}

.list-dotted > li:before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  background: #999;
  border-radius: 100px;
  position: absolute;
  top: 10px;
  left: 5px;
}

.list-dotted > li + li {
  margin-top: 3px;
}

.list-dotted.is-large > li {
  font-size: 16px;
}

.list-dotted.is-large > li:before {
  top: 12px;
}

.list-dotted.is-yellow > li {
  background: none;
  padding-left: 20px;
}

.list-dotted.is-yellow > li:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ffc900;
  border-radius: 500px;
  position: absolute;
  top: 8px;
  left: 5px;
}

.list-dotted.col-2 > li {
  width: 50%;
  margin-top: 0;
}

.list-dotted.col-2 > li:nth-child(n+3) {
  margin-top: 3px;
}

.list-arrow li + li {
  margin-top: 3px;
}

.list-arrow .link-arrow {
  display: inline-block;
  padding-left: 10px;
  position: relative;
}

.list-arrow .link-arrow:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 0 3px 5px;
  border-color: transparent transparent transparent #3ea3c4;
  position: absolute;
  top: 9px;
  left: 0;
}

.list-arrow.is-small li {
  font-size: 12px;
}

.list-arrow.is-small .link-arrow:after {
  top: 6px;
}

.list-arrow.is-grid li {
  margin-bottom: 3px;
}

.list-arrow.is-grid li + li {
  margin-top: 0;
}

.list-arrow.is-grid li:not(:last-child) {
  margin-right: 15px;
}

.list-sub > li {
  padding-left: 15px;
  text-align: left;
  position: relative;
}

.list-sub > li:before {
  content: "-";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 3px;
}

.list-sub > li + li {
  margin-top: 3px;
}

.list-sub.is-small li {
  font-size: 13px;
}

.list-sub.is-small li + li {
  margin-top: 0;
}

.list-label.grid > li:not(:last-child) {
  margin-right: 10px;
}

.box-col .heading-text .text-sub {
  font-size: 14px;
}

.box-col .heading + .content {
  padding-top: 15px;
}

.box-col .content + .lower {
  padding-top: 15px;
}

@media screen and (max-width: 768px) {
  .list-box.col-2 > .box-col {
    width: 100%;
  }
  .list-box.col-2 > .box-col + .box-col {
    margin-top: 25px;
  }
  .list-box.col-3 > .box-col {
    width: 100%;
  }
  .list-box.col-3 > .box-col:not(:nth-child(3n)) {
    margin-right: 0;
  }
  .list-box.col-3 > .box-col + .box-col {
    margin-top: 25px;
  }
  .list-box.col-4 > .box-col {
    width: 100%;
  }
  .list-box.col-4 > .box-col:not(:nth-child(4n)) {
    margin-right: 0;
  }
  .list-box.col-4 > .box-col + .box-col {
    margin-top: 25px;
  }
  .list-dotted.is-large > li {
    font-size: 15px;
  }
  .list-dotted.col-2 > li {
    width: 100%;
  }
  .list-dotted.col-2 > li + li {
    margin-top: 3px;
  }
  .list-btn li {
    width: 100%;
  }
  .list-btn.col-3 li {
    width: 100%;
  }
  .list-btn.col-3 > li:not(:nth-child(3n)) {
    margin-right: 0;
  }
  .list-btn li + li {
    margin-top: 15px;
  }
  .box-col .heading + .content {
    padding-top: 10px;
  }
  .box-col .content + .lower {
    padding-top: 10px;
  }
}
/*------------------------------
top-area
-------------------------------*/
.top-area.is-top {
  background: #f2f2f2;
}

.top-area.is-top .inner {
  width: 100%;
}

.top-mv {
  text-align: center;
}

.top-mv + .ttl-text {
  margin-top: 10px;
}

.list-slider {
  width: 100%;
}

.slider-wrap {
  transition: 0.3s ease;
  position: relative;
}

.slider-wrap:nth-child(n+2) {
  display: none;
}

.slick-initialized .slider-wrap {
  display: block;
}

.slider-wrap:not(.slick-current) {
  opacity: 0.5;
}

.slider-wrap img {
  margin: 0 auto;
}

.slick-arrow {
  width: 62px;
  height: 62px;
  z-index: 1;
}

.slick-arrow:before {
  display: none;
}

.slick-next {
  background: url("/common_top/images/img-arrow_next.svg") no-repeat;
  background-size: cover;
  right: 50%;
  margin-right: -525px;
}

.slick-prev {
  background: url("/common_top/images/img-arrow_prev.svg") no-repeat;
  background-size: cover;
  left: 50%;
  margin-left: -525px;
}

.slick-next:hover, .slick-next:focus {
  background: url("/common_top/images/img-arrow_next.svg") no-repeat;
  background-size: cover;
  opacity: 0.7;
}

.slick-prev:hover, .slick-prev:focus {
  background: url("/common_top/images/img-arrow_prev.svg") no-repeat;
  background-size: cover;
  opacity: 0.7;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-dots {
  background: #E8E8E8;
  position: static;
}

.slick-dots li {
  margin: 0 2px;
  position: relative;
  top: -1px;
}

.slick-dots li button:before {
  color: #ffffff;
  opacity: 1;
  font-size: 14px;
}

.slick-dots li.slick-active button::before {
  color: #7F7F7F;
}

@media screen and (max-width: 768px) {
  .top-area.is-top .inner {
    padding: 0;
  }
  .slick-arrow {
    background-size: 43px 43px;
    width: 43px;
    height: 43px;
    margin-top: 0;
  }
  .slick-next {
    right: 0;
    margin-right: 0;
  }
  .slick-prev {
    left: 0;
    margin-left: 0;
  }
  .slick-dots li {
    width: 19px;
    height: 19px;
    top: -2px;
  }
  .slick-dots li button:before {
    font-size: 12px;
  }
  .slider-wrap:not(.slick-current) {
    opacity: 1;
  }
  .slider-wrap:not(.slick-current):before {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    transition: background 0.3s ease 0.3s;
  }
}
@media screen and (min-width: 767px) and (max-width: 1100px) {
  .slick-next {
    right: 20px;
    margin-right: 0;
  }
  .slick-prev {
    left: 20px;
    margin-left: 0;
  }
}
/*------------------------------
service-area
-------------------------------*/
.list-service + .list-service {
  margin-top: 40px;
}

.list-service > .heading {
  margin-bottom: 15px;
}

.heading-category {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .heading-category {
    font-size: 18px;
  }
}
/*****************
list-btn
*****************/
.list-btn li {
  width: 49%;
}

.list-btn > li:nth-child(n+3) {
  margin-top: 18px;
}

.btn-wrap + .list-btn {
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .list-btn li {
    width: 100%;
  }
  .list-btn li + li {
    margin-top: 18px;
  }
}
/*btn service*/
.btn-wrap {
  height: 100%;
}

.btn.is-service {
  height: 100%;
  background: #fff url("/common_top/images/icon-arrow_orange.svg") no-repeat right 12px center;
  background-size: 10px auto;
  border: 1px solid #c1c1c1;
  box-shadow: 0 3px 0 #cdd3d3;
  border-radius: 6px;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  padding: 20px 38px 20px 18px;
  text-align: center;
  line-height: 1.4;
  position: relative;
  background-position: right 15px center;
}

.btn.is-service .logo + .text {
  margin-top: 10px;
}

.btn.is-service .text {
  font-size: 14px;
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  .btn.is-service {
    font-size: 15px;
    padding: 20px 30px 13px 15px;
  }
}
/*logo*/
.btn.is-service.is-middle .logo-docomo {
  width: 215px;
}

.btn.is-service.is-middle .logo-auhikari {
  width: 155px;
}

.btn.is-service.is-middle .logo-eohikari {
  width: 140px;
}

.btn.is-service.is-middle .logo-flets {
  width: 210px;
}

.btn.is-service.is-middle .logo-10giga {
  width: 280px;
}

.btn.is-service.is-middle .logo-adsl {
  width: 160px;
}

.btn.is-service .logo-wimax {
  width: 205px;
}

@media screen and (max-width: 768px) {
  .logo-nifmo {
    width: 115px;
  }
  .logo-wimax2plus {
    width: 180px;
  }
  .logo-adsl {
    width: 170px;
  }
}
/*btn grid*/
.btn.grid {
  display: flex;
  flex-wrap: wrap;
  min-height: 95px;
}

.btn.grid .logo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding-right: 30px;
  text-align: center;
}

.btn.grid .text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-left: 15px;
  text-align: left;
}

.btn.grid .logo + .text {
  margin-top: 0;
}

.btn.grid .text > * {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .btn.grid {
    display: block;
    min-height: auto;
  }
  .btn.grid .logo {
    width: 100%;
    padding-right: 0;
    margin-bottom: 10px;
  }
  .btn.grid .text {
    width: 100%;
    border-left: none;
    padding-left: 0;
    text-align: left;
    font-size: 14px;
  }
}
/*****************
hikariTop
*****************/
.bg-hikari {
  background: #f5f5f5;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .bg-hikari {
    padding: 20px 10px;
  }
}

.hikariTop {
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
}
@media screen and (max-width: 768px) {
  .hikariTop {
    font-size: 14px;
    flex-direction: column;
  }
}

.hikariTop_logo {
  width: 12em;
}

.hikariTop_ttl {
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .hikariTop_ttl {
    text-align: center;
  }
}

/*****************
hikari-plan
*****************/
.hikari-plan {
  margin-top: 25px;
  padding: 0 10px;
}

.hikari-plan .plan-ttl {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

/*btn*/
.btn.is-service.is-hikari-10g {
  padding: 75px 50px;
  background: url("/common_top/images/bg-hikari_10g.png"), url("/common_top/images/icon-arrow_blue.svg");
  background-repeat: no-repeat, no-repeat;
  background-position: bottom right 30px, center right 12px;
  background-color: #ffffff;
}

.btn.is-service.is-hikari-1g {
  padding: 75px 50px;
  background: url("/common_top/images/bg-hikari_1g.png"), url("/common_top/images/icon-arrow_orange.svg");
  background-repeat: no-repeat, no-repeat;
  background-position: bottom right 30px, center right 12px;
  background-color: #ffffff;
}

.btn.is-service.is-webliko {
  padding: 25px 50px;
  background: url("/common_top/images/bg-webliko.png"), url("/common_top/images/icon-arrow_green.svg");
  background-repeat: no-repeat, no-repeat;
  background-position: bottom right 120px, center right 12px;
  background-color: #ffffff;
}

.btn.is-service.is-plan {
  padding: 25px 50px;
  background: url("/common_top/images/bg-plan.png"), url("/common_top/images/icon-arrow_orange.svg");
  background-repeat: no-repeat, no-repeat;
  background-position: center left 140px, center right 12px;
  background-color: #fcf8e6;
}

.btn.is-service.is-plan .text {
  font-size: 24px;
  font-weight: bold;
}

.btn.is-service .plan-text {
  margin-top: 15px;
  font-size: 18px;
  text-align: left;
  font-weight: normal;
  text-shadow: 0 0 8px #ffffff, 0 0 8px #ffffff, 0 0 8px #ffffff, 0 0 8px #ffffff, 0 0 8px #ffffff, 0 0 8px #ffffff, 0 0 8px #ffffff, 0 0 8px #ffffff, 0 0 8px #ffffff, 0 0 8px #ffffff, 0 0 8px #ffffff;
}

.btn.is-service.is-webliko .plan-text {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .hikari-plan .plan-ttl {
    margin-bottom: 15px;
    font-size: 16px;
  }
  .btn.is-service.is-hikari-10g {
    padding: 40px 25px 80px;
    background-position: bottom right 10%, center right 12px;
    background-size: 120px, auto;
  }
  .btn.is-service.is-hikari-1g {
    padding: 40px 25px 80px;
    background-position: bottom right 10%, center right 12px;
    background-size: 120px, auto;
  }
  .btn.is-service.is-webliko {
    padding: 20px 15px;
    background: #ffffff url("/common_top/images/icon-arrow_green.svg") no-repeat center right 12px;
  }
  .btn.is-service.is-plan {
    padding: 20px 30px 20px 60px;
    background-position: center left 15px, center right 12px;
  }
  .btn.is-service.is-plan .text {
    font-size: 16px;
    text-align: left;
  }
  .btn.is-service .plan-text {
    font-size: 14px;
  }
}
/*logo*/
.btn.is-service .logo-webliko {
  width: 345px;
}

@media screen and (max-width: 768px) {
  .btn.is-service .logo-niftyhikari_10g,
  .btn.is-service .logo-niftyhikari_1g {
    width: 200px;
  }
  .btn.is-service .logo-webliko {
    width: 200px;
  }
}
/*------------------------------
support-area
-------------------------------*/
.support-area {
  background-color: #FCF9EE;
}

.support-box {
  display: block;
  height: 100%;
  padding: 15px;
  color: inherit;
  text-decoration: none;
  border: 1px solid #F9D97D;
  box-shadow: 0 3px 0 #f9d97d;
  border-radius: 6px;
  background: #fff;
}

.support-box:hover {
  opacity: 0.8;
}

.support-box .heading {
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: 10px;
  border-bottom: 1px dashed #C1C1C1;
  position: relative;
  background: #fff url(/common_top/images/icon-arrow_orange.svg) no-repeat right 5px top 0px;
  background-size: 8px auto;
}

.support-box .content .line {
  margin-bottom: 5px;
  display: inline-block;
  padding: 2px 10px;
  background: #FFF5A9;
}

/*icon*/
.icon-support, .icon-change, .icon-hikkoshi, .icon-mail {
  padding-left: 70px;
}

.icon-support:before, .icon-change:before, .icon-hikkoshi:before, .icon-mail:before {
  content: "";
  display: inline-block;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -30px;
}

.icon-support:before {
  background: url("/common_top/images/icon-support.svg") no-repeat center;
}

.icon-change:before {
  background: url("/common_top/images/icon-change.svg") no-repeat left center;
}

.icon-hikkoshi:before {
  background: url("/common_top/images/icon-hikkoshi.svg") no-repeat left center;
}

.icon-mail:before {
  background: url("/common_top/images/icon-mail.svg") no-repeat left center;
}

@media screen and (max-width: 768px) {
  .icon-support, .icon-change, .icon-hikkoshi {
    padding-left: 50px;
  }
  .icon-support:before, .icon-change:before, .icon-hikkoshi:before {
    width: 40px;
    height: 40px;
    margin-top: -20px;
  }
  .icon-support:before, .icon-change:before, .icon-hikkoshi:before {
    background-size: 40px auto;
  }
}
.support-box .icon-support, .support-box .icon-change {
  padding-left: 40px;
}

.support-box .icon-support:before, .support-box .icon-change:before {
  width: 31px;
  background-size: contain;
}

.support-box.w100 .icon-hikkoshi:before {
  width: 55px;
  background-size: contain;
}

.support-box.w100 .heading {
  font-size: 20px;
  background-position: right 5px top 8px;
}

.support-box.w100 .heading .ballon {
  font-size: 16px;
  text-align: center;
  padding: 0 10px 2px;
  color: #fff;
  border-radius: 999em;
  background: #FF7500;
  margin-left: 10px;
  position: relative;
  top: -2px;
}

@media screen and (max-width: 768px) {
  .support-area .inner {
    padding: 30px 20px;
  }
  .support-area .ttl-band:before {
    height: 100%;
    top: 0;
  }
  .support-area .ttl-band::after {
    height: 100%;
    top: 0;
  }
  .support-box {
    padding: 15px 12px;
  }
  .support-box.w100 .heading {
    font-size: 16px;
    background-position: right 5px top 4px;
  }
  .support-box.w100 .heading .ballon {
    font-size: 12px;
    padding: 0 6px 2px;
    margin-left: 8px;
  }
}
@media screen and (max-width: 320px) {
  .support-box .icon-support, .support-box .icon-change {
    padding-left: 30px;
  }
  .support-box .icon-support:before, .support-box .icon-change:before {
    width: 25px;
    background-size: contain;
  }
  .support-box .heading {
    background-position: right 0 top 1px;
  }
  .support-box.w100 .icon-hikkoshi {
    padding-left: 40px;
  }
  .support-box.w100 .icon-hikkoshi:before {
    width: 35px;
    background-size: contain;
  }
  .support-box.w100 .heading {
    font-size: 14px;
    background-position: right 0 top 1px;
  }
  .support-box.w100 .heading .ballon {
    font-size: 11px;
    margin-left: 4px;
  }
}
/*------------------------------
update-area
-------------------------------*/
.update-area .inner {
  padding: 20px 0 10px;
}

@media screen and (max-width: 768px) {
  .update-area .inner {
    padding: 20px 12px 10px;
  }
}
/*------------------------------
supplemen-area
-------------------------------*/
.update {
  font-size: 12px;
  text-align: right;
}

.supplemen-area .list-note {
  margin-top: 5px;
}

/*------------------------------
apply-area
-------------------------------*/
.apply-area {
  background: #ffd217;
}

.apply-area .inner {
  padding: 50px 0;
}

.apply-area .ttl-wrap {
  margin-bottom: 25px;
  text-align: center;
}

.apply-area .ttl-sec {
  font-size: 26px;
  line-height: 1.3;
}

.list-apply {
  padding: 20px 0;
  border-radius: 6px;
  background: #fff;
  align-items: center;
}

.apply-col {
  padding: 0 50px;
  text-align: center;
}

.list-apply.col-2 > .apply-col {
  width: 50%;
}

.list-apply.col-2 > .apply-col:nth-child(1) {
  border-right: 1px solid #CCCCCC;
}

.apply-col .heading {
  margin-bottom: 15px;
}

.apply-col .heading-text {
  font-size: 20px;
  font-weight: bold;
}

.apply-col .gray-box {
  padding: 10px 20px;
  border-radius: 4px;
  text-align: left;
  background: #EDEDED;
}

.num-tel {
  color: #333;
  font-size: 45px;
  font-weight: bold;
  line-height: 1.1;
}

.num-tel a {
  cursor: default;
  color: #333;
  text-decoration: none;
}

.icon-call {
  padding-left: 65px;
  background: url(/common_top/images/icon-call.svg) no-repeat top 8px left;
  background-size: 62px auto;
}

.btn.is-apply {
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  padding: 28px 38px 28px 20px;
  text-align: center;
  background: #FF740D url(/common_top/images/icon-arrow_apply.svg) no-repeat center right 20px;
  background-size: 10px auto;
  border-radius: 8px;
  box-shadow: 0 4px 0px #c65e18;
}

.btn.is-callBack {
  max-width: 580px;
  margin: auto;
  padding: 20px;
  line-height: 1.2;
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  background: #00AEDD url(/common_top/images/icon-arrow_callBack.svg) no-repeat center right 20px;
  background-size: 10px auto;
  border-radius: 8px;
  box-shadow: 0 4px 0px #285e8e;
}

.btn.is-callBack .sub {
  font-size: 14px;
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  .apply-area .inner {
    padding: 30px 12px;
  }
  .apply-area .ttl-wrap {
    margin-bottom: 20px;
  }
  .apply-area .ttl-sec {
    font-size: 18px;
  }
  .list-apply {
    padding: 0 12px 15px;
  }
  .apply-col {
    padding: 15px 12px;
  }
  .list-apply.col-2 > .apply-col {
    width: 100%;
  }
  .list-apply.col-2 > .apply-col:nth-child(1) {
    border: 0;
    border-bottom: 1px solid #ccc;
  }
  .apply-col .heading {
    margin-bottom: 10px;
  }
  .apply-col .heading-text {
    font-size: 18px;
  }
  .apply-col .gray-box {
    padding: 10px;
  }
  .apply-col .text-sub {
    font-size: 12px;
  }
  .num-tel {
    font-size: 32px;
    line-height: 1.2;
  }
  .icon-call {
    padding-left: 45px;
    background-size: 40px auto;
    background-position: top 10px left;
    text-align: left;
  }
  .btn.is-apply, .btn.is-callBack {
    background-size: 7px auto;
    background-position: center right 10px;
    border-radius: 4px;
    font-size: 16px;
    padding: 20px 25px 20px 15px;
  }
}
@media screen and (max-width: 360px) {
  .list-apply {
    padding: 12px 10px 12px;
  }
  .apply-col {
    padding: 15px 0px;
  }
}
/*************************************
光ファイバートップ /hikari/
**************************************/
.btn.is-gray_border {
  background: url("/common_top/images/icon-arrow_orange_02.svg") no-repeat right 17px center;
  border: 2px solid #e2ded5;
  box-shadow: 0 5px 0 #e2ded5;
  border-radius: 20px;
  color: #000;
  text-align: center;
  line-height: 1.4;
  padding: 15px 61px 15px 17px;
}

.btn.is-gray_border.is-small {
  background-size: 19px auto;
  background-position: right 14px center;
  font-size: 16px;
  font-weight: bold;
  padding: 12px 40px 12px 23px;
}

.btn.is-gray_border.is-inline {
  display: inline-block;
}

.btn.is-gray_border .text-sub {
  font-size: 11px;
  font-weight: normal;
}

.btn.grid {
  display: flex;
  flex-wrap: wrap;
}

.btn.grid.is-gray_border .logo {
  width: 220px;
  padding-right: 15px;
  text-align: center;
  border-radius: 16px 0 0 16px;
  position: relative;
}

.btn.grid.is-gray_border .logo-niftyhikari {
  width: 160px;
}

.btn.grid.is-gray_border .logo-auhikari {
  width: 150px;
}

.btn.grid.is-gray_border .logo-eohikari {
  width: 190px;
}

.btn.grid.is-gray_border .logo-commufa {
  width: 160px;
}

.btn.grid.is-gray_border .logo-flets {
  width: 120px;
}

.btn.grid.is-gray_border .text {
  width: calc(100% - 220px);
  text-align: left;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.5;
  border-left: 1px solid #e2ded5;
  padding-left: 20px;
}

.btn.grid.is-gray_border .text > * {
  width: 100%;
}

.btn.grid.is-gray_border .service-name {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
}

.btn.grid.is-gray_border .hikari-service-area {
  margin-top: 13px;
}

.btn.grid.is-gray_border .label-area {
  background: #ff7900;
  color: #fff;
  font-size: 12px;
  padding: 3px 9px;
  border-radius: 15px;
  font-weight: bold;
  margin-right: 6px;
}

.btn.grid.is-gray_border .area-text {
  font-size: 13px;
}

@media screen and (max-width: 768px) {
  .btn:hover:after {
    display: none;
  }
  .btn.is-gray_border {
    background-size: 18px auto;
    background-position: right 10px center;
    padding: 10px 35px 14px 20px;
  }
  .btn.is-gray_border.is-small {
    background-size: 16px auto;
    background-position: right 10px center;
    font-size: 15px;
    padding: 12px 32px 12px 22px;
  }
  .btn.is-gray_border.grid {
    border-radius: 13px;
  }
  .btn.grid.is-gray_border {
    display: block;
  }
  .btn.grid.is-gray_border .logo {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e2ded5;
    margin: 0 0 10px 0;
    padding: 0 0 7px 0;
    background: none;
    border-radius: 0;
  }
  .btn.grid.is-gray_border .logo::before {
    display: none;
  }
  .btn.grid.is-gray_border .logo::after {
    display: none;
  }
  .btn.grid.is-gray_border .text {
    width: 100%;
    font-size: 13px;
    padding: 0;
    border-left: none;
  }
  .btn.grid.is-gray_border .logo-niftyhikari {
    width: 140px;
  }
  .btn.grid.is-gray_border .logo-auhikari {
    width: 135px;
  }
  .btn.grid.is-gray_border .logo-eohikari {
    width: 180px;
  }
  .btn.grid.is-gray_border .logo-commufa {
    width: 160px;
  }
  .btn.grid.is-gray_border .logo-flets {
    width: 120px;
  }
  .btn.grid.is-gray_border .hikari-service-area {
    line-height: 1.9em;
  }
  .btn.grid.is-gray_border .label-area {
    font-size: 12px;
  }
  .btn.grid.is-gray_border .area-text {
    font-size: 12px;
  }
}/*# sourceMappingURL=style.css.map */