@charset "utf-8";

/**
 *
 *  総合トップ PC
 *
 */

/*==========================================================================
	 Base リセット・ベース
===========================================================================*/

/*--------------------------------------------------------------------------
	 reset
---------------------------------------------------------------------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
body {
  line-height: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
img {
  border: 0;
  vertical-align: top;
}
em {
  font-style: italic;
}
del {
  text-decoration: line-through;
}
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 0;
  padding: 0;
}
input,
select,
textarea {
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
}

/*--------------------------------------------------------------------------
	 html
---------------------------------------------------------------------------*/
html {
  overflow-y: scroll;
  height: 100%;
}

/*--------------------------------------------------------------------------
	 body
---------------------------------------------------------------------------*/
body {
  /* min-width: 1120px; */
  height: 100%;
  min-height: 740px;
  color: #333;
  font-family: "Noto Sans Japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/*--------------------------------------------------------------------------
	 base link
---------------------------------------------------------------------------*/
a {
  text-decoration: none;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}
a:link,
a:visited {
  color: ;
  text-decoration: none;
}
a:hover {
  color: ;
  text-decoration: none;
  outline: none;
}
a:active {
  outline: none;
}

/*==========================================================================
	 index インデックス
===========================================================================*/

/* keyframe
-----------------------------------------------------------------*/
@-webkit-keyframes move {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100vw);
    transform: translateX(100vw);
  }
}
@keyframes move {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100vw);
    transform: translateX(100vw);
  }
}
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  33.3% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
  66.6% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes bounce {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  33.3% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
  66.6% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes otasuke {
  to {
    background-position: -338px 0;
  }
}
@keyframes otasuke {
  to {
    background-position: -338px 0;
  }
}

/*--------------------------------------------------------------------------
	 Page
---------------------------------------------------------------------------*/
#Page {
  height: 100%;
  position: relative;
}

/*--------------------------------------------------------------------------
	 Header
---------------------------------------------------------------------------*/
.header {
  display: flex;
  position: absolute;
  top: 30px;
  left: 40px;
  z-index: 999;
}

.header .header__logo img {
  width: 155px;
  height: 37px;
}

.g-header__nav__btns {
  margin-left: 20px;
}

.g-header__nav__btns .g-header__nav__btn a {
  display: inline-block;
  height: 36px;
  padding: 0 28px 0 24px;
  border: 2px solid #fff;
  border-radius: 36px;
  color: #fff;
  font-weight: 700;
  line-height: 2.4;
  transition: all 0.2s;
}

.g-header__nav__btns .g-header__nav__btn a:hover {
  background: #fff;
  color: #1bae9f;
}

@media screen and (max-width: 768px) {
  .header {
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 30px);
    top: 14px;
    left: 15px;
  }

  .header .header__logo img {
    width: 88px;
    height: 21px;
  }

  .g-header__nav__btns {
    margin-left: 0;
  }

  .g-header__nav__btns .g-header__nav__btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    padding: 0 7px;
    border: 1px solid #1bae9f;
    border-radius: 36px;
    color: #1bae9f;
    font-size: 10px;
    font-weight: 400;
    line-height: 2.4;
  }
}
@media screen and (max-width: 375px) {
  .header {
    width: calc(100% - 10px);
    left: 5px;
  }

  .g-header__nav__btns .g-header__nav__btn a {
    padding: 0 4px;
  }
}

/*--------------------------------------------------------------------------
	 Footer
---------------------------------------------------------------------------*/
.footer {
  width: 100%;
}

/* footer__nav
-----------------------------------------------------------------*/
.footer__nav {
  background: #fff;
}
.footer__nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  max-width: 1290px;
  margin: auto;
  padding: 20px 0;
}
.footer__nav__item {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.footer__nav__item + .footer__nav__item {
  border-left: 1px solid #eaecef;
}
.footer__nav__item a {
  display: block;
}
.footer__nav__item span {
  display: block;
  text-align: center;
}
.footer__nav__item .ico {
  position: relative;
  width: 57px;
  height: 57px;
  margin: auto;
}
.footer__nav__item .ico:before,
.footer__nav__item .ico:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.footer__nav__item .ico:before {
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.footer__nav__item a:hover .ico:before {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}
.footer__nav__item .ico:after {
  width: 39px;
  height: 39px;
  margin: auto;
  background: url(/catv-service/images/index/footer_ico_nav.png) no-repeat;
}
.footer__nav__item .ttl {
  margin-top: 12px;
  color: #0e0d6a;
  font-weight: 700;
  line-height: 1.2;
  -webkit-transition: color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Modifier */
.footer__nav__item--01 .ico:before {
  background: #1e70d9;
}
.footer__nav__item--01 .ico:after {
  background-position: 0 0;
}
.footer__nav__item--01 a:hover .ttl,
.footer__nav__item--01.is-active .ttl {
  color: #1e70d9;
}

.footer__nav__item--02 .ico:before {
  background: #fcb825;
}
.footer__nav__item--02 .ico:after {
  background-position: -39px 0;
}
.footer__nav__item--02 a:hover .ttl,
.footer__nav__item--02.is-active .ttl {
  color: #fcb825;
}

.footer__nav__item--03 .ico:before {
  background: #f55a95;
}
.footer__nav__item--03 .ico:after {
  background-position: -78px 0;
}
.footer__nav__item--03 a:hover .ttl,
.footer__nav__item--03.is-active .ttl {
  color: #f55a95;
}

.footer__nav__item--04 .ico:before {
  background: #00b6ea;
}
.footer__nav__item--04 .ico:after {
  background-position: -117px 0;
}
.footer__nav__item--04 a:hover .ttl,
.footer__nav__item--04.is-active .ttl {
  color: #00b6ea;
}

.footer__nav__item--05 .ico:before {
  background: #9a5fd7;
}
.footer__nav__item--05 .ico:after {
  background-position: -156px 0;
}
.footer__nav__item--05 a:hover .ttl,
.footer__nav__item--05.is-active .ttl {
  color: #9a5fd7;
}

.footer__nav__item--06 .ico:before {
  background: #68cb1f;
}
.footer__nav__item--06 .ico:after {
  background-position: -193px 0;
}
.footer__nav__item--06 a:hover .ttl,
.footer__nav__item--06.is-active .ttl {
  color: #4fa09e;
}
/* footer__btm
-----------------------------------------------------------------*/
.footer__btm {
  overflow: hidden;
  padding: 0 30px;
  border-top: 1px solid #eaecef;
  background: #fbfbfc;
  line-height: 46px;
}
.footer__btm__logo {
  float: left;
}
.footer__btm__logo img {
  vertical-align: middle;
}
.footer__btm__copy {
  float: right;
}
.footer__btm__copy small {
  color: #989cb0;
  font-size: 11px;
}

/* footer__btnArea 2018/3/28 updated
-----------------------------------------------------------------*/
.footer__btnArea {
  padding: 10px 0;
  border-top: 1px solid #eaecef;
  text-align: center;
}
.footer__btnArea .footer__btnArea__text {
  display: inline-block;
  vertical-align: middle;
  margin-right: 19px;
  font-weight: 700;
  font-size: 15px;
  color: #0e0d6a;
}
.footer__btnArea .footer__btn {
  display: inline-block;
  vertical-align: middle;
  width: 230px;
}

.footer__btnArea .footer__btn + .footer__btn {
  margin-left: 21px;
}

.footer__btnArea .footer__btn .c-btn {
  display: block;
  border-width: 2px;
  border-style: solid;
  border-color: #0e0d6a;
  border-radius: 20px;
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  background: #0e0d6a;
  text-align: center;
  line-height: 36px;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.footer__btnArea .footer__btn .c-btn:hover {
  background: #fff;
  color: #0e0d6a;
}
.footer__btnArea .footer__btn .c-btn span {
  position: relative;
  padding-right: 20px;
}
.footer__btnArea .footer__btn .c-btn span:before,
.footer__btnArea .footer__btn .c-btn span:after {
  content: "";
  position: absolute;
  top: 1px;
  right: 0;
  width: 13px;
  height: 11px;
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.footer__btnArea .footer__btn .c-btn span:before {
  opacity: 1;
  background-image: url(/catv-service/images/index/ico_blank.png);
}
.footer__btnArea .footer__btn .c-btn span:after {
  opacity: 0;
  background-image: url(/catv-service/images/index/ico_blank_on.png);
}
.footer__btnArea .footer__btn .c-btn:hover span:before {
  opacity: 0;
}
.footer__btnArea .footer__btn .c-btn:hover span:after {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .footer__btm__copy {
    float: unset;
    text-align: center;
  }

  .footer__btm__copy small {
    font-size: 8px;
  }

  .footer__btnArea {
    display: flex;
    flex-direction: column;
    row-gap: 17px;
    padding: 14px 20px;
    border-top: none;
    box-sizing: border-box;
  }

  .footer__btnArea .footer__btn {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer__btnArea .footer__btn + .footer__btn {
    margin: 0 auto;
  }

  .footer__btnArea .footer__btn .c-btn {
    border-radius: 50px;
    line-height: 46px;
  }
}

/*-----------------------------------------------------------
  PCとSPの切り替え
-----------------------------------------------------------*/
@media screen and (min-width: 769px) {
  .for-sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .for-pc {
    display: none !important;
  }
}

/*--------------------------------------------------------------------------
	 top-mv
---------------------------------------------------------------------------*/
/* .top-mv picture img {
  width: 100%;
} */

.top-mv {
  width: 100%;
  height: 100%;
  aspect-ratio: 1440 / 560;
}

.top-mv .top-mv-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.top-mv .top-mv-inner {
  background: linear-gradient(135deg, rgba(0, 230, 222, 1) 0%, rgba(0, 152, 143, 1) 55%, rgba(0, 152, 143, 1) 100%);
}

.top-mv-body {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
}

.top-mv-body-inner {
  padding: 0 20px;
  vertical-align: middle;
  text-align: center;
}

.top-mv-ttl {
  margin-bottom: 20px;
}

.top-mv-ttl span {
  display: inline-block;
}

.top-mv-ttl span + span {
  margin-top: 20px;
}

.top-mv-ttl span img {
  width: 68.678%;
  height: auto;
}

.top-mv-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 51%;
  height: 100%;
  /* background: url(/catv-service/images/img_mv.png) 0 100% / auto 100% no-repeat; */
}

.top-mv-bg img {
  width: auto;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .top-mv {
    aspect-ratio: 375 / 512;
  }

  .top-mv .top-mv-inner {
    background: none;
  }
  
  .top-mv-body {
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 375 / 230;
    background: linear-gradient(135deg, rgba(1, 218, 215, 1) 0%, rgba(1, 182, 178, 1) 47%, rgba(1, 152, 149, 1) 100%);
    clip-path: polygon(0% 0%, 50% 9.3%, 100% 0%, 100% 100%, 0% 100%);
  }

  .top-mv-ttl {
    margin-bottom: -12px;
  }

  .top-mv-ttl span img {
    width: 75.823%;
  }

  .top-mv-bg {
    width: 100%;
    height: auto;
    aspect-ratio: 374 / 315;
    /* background: url(/catv-service/images/img_mv_sp.webp) 0 100% / auto 100% no-repeat; */
    z-index: -1;
  }
}

/*--------------------------------------------------------------------------
	 top-service
---------------------------------------------------------------------------*/
.top-service {
  margin: 74px 0 0;
}

.top-service .top-service-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.top-service .top-service-wrap h2 {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  color: #0e0d6a;
  font-size: 34px;
  font-weight: 700;
  text-align: center;
}

.top-service .top-service-wrap h2::before,
.top-service .top-service-wrap h2::after {
  position: absolute;
  top: 50%;
  width: 64px;
  height: 2px;
  background: #0e0d6a;
  content: "";
  transform: translateY(-50%);
}

.top-service .top-service-wrap h2::before {
  left: -96px;
}

.top-service .top-service-wrap h2::after {
  right: -96px;
}

.top-service .top-service-wrap .top-service-main {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 32px;
  margin: 56px auto 0;
}

.top-service .top-service-wrap .top-service-main .top-service-cabletv,
.top-service .top-service-wrap .top-service-main .top-service-phone {
  width: calc(100% / 2 - 20px);
  border-radius: 32px;
}

.top-service .top-service-wrap .top-service-main .top-service-cabletv .top-card-body,
.top-service .top-service-wrap .top-service-main .top-service-phone .top-card-body {
  padding: 22px 26px 32px;
}

.top-service .top-service-wrap .top-service-main .top-service-cabletv .top-card-body h3,
.top-service .top-service-wrap .top-service-main .top-service-phone .top-card-body h3 {
  font-size: 26px;
}

.top-service .top-service-wrap .top-service-main .top-service-cabletv .top-card-body h3 {
  color: #00b6ea;
}

.top-service .top-service-wrap .top-service-main .top-service-phone .top-card-body h3 {
  color: #1e70d9;
}

.top-service .top-service-wrap .top-service-main .top-service-cabletv .top-card-body h3 img,
.top-service .top-service-wrap .top-service-main .top-service-phone .top-card-body h3 img {
  width: 40px;
  height: 40px;
  object-fit: cover;
}

.top-service .top-service-wrap .top-service-main .top-service-cabletv .top-card-body h4,
.top-service .top-service-wrap .top-service-main .top-service-phone .top-card-body h4 {
  margin: 12px 0 0;
}

.top-service .top-service-wrap .top-service-main .top-service-sharelife,
.top-service .top-service-wrap .top-service-main .top-service-denki,
.top-service .top-service-wrap .top-service-main .top-service-anshin {
  width: calc(100% / 3 - 26px);
  border-radius: 24px;
}

.top-service .top-service-wrap .top-service-main .top-service-sharelife .top-card-body,
.top-service .top-service-wrap .top-service-main .top-service-denki .top-card-body,
.top-service .top-service-wrap .top-service-main .top-service-anshin .top-card-body {
  padding: 20px 26px 32px;
}

.top-service .top-service-wrap .top-service-main .top-service-sharelife .top-card-body h3,
.top-service .top-service-wrap .top-service-main .top-service-denki .top-card-body h3,
.top-service .top-service-wrap .top-service-main .top-service-anshin .top-card-body h3 {
  font-size: 24px;
}

.top-service .top-service-wrap .top-service-main .top-service-sharelife .top-card-body h3 {
  color: #68cb1f;
}

.top-service .top-service-wrap .top-service-main .top-service-denki .top-card-body h3 {
  color: #fcb825;
}

.top-service .top-service-wrap .top-service-main .top-service-anshin .top-card-body h3 {
  color: #f55a95;
}

.top-service .top-service-wrap .top-service-main .top-service-sharelife .top-card-body h3 img,
.top-service .top-service-wrap .top-service-main .top-service-denki .top-card-body h3 img,
.top-service .top-service-wrap .top-service-main .top-service-anshin .top-card-body h3 img {
  width: 36px;
  height: 36px;
  object-fit: cover;
}

.top-service .top-service-wrap .top-service-main .top-service-sharelife .top-card-body h4,
.top-service .top-service-wrap .top-service-main .top-service-denki .top-card-body h4,
.top-service .top-service-wrap .top-service-main .top-service-anshin .top-card-body h4 {
  margin: 10px 0 0;
}

.top-service .top-service-wrap .top-service-main .top-card {
  border: 2px solid #eaecef;
  overflow: hidden;
  background-color: #fbfbfc;
}

.top-service .top-service-wrap .top-service-main .top-card figure img {
  width: 100%;
}

.top-service .top-service-wrap .top-service-main .top-card .top-card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top-service .top-service-wrap .top-service-main .top-card .top-card-body h3 {
  display: flex;
  align-items: center;
  column-gap: 12px;
}

.top-service .top-service-wrap .top-service-main .top-card .top-card-body h4 {
  position: relative;
  font-size: 18px;
  color: rgb(88, 88, 95, 0.8);
}

.top-service .top-service-wrap .top-service-main .top-card .top-card-body h4::before,
.top-service .top-service-wrap .top-service-main .top-card .top-card-body h4::after {
  position: absolute;
  top: 50%;
  width: 9px;
  height: 2px;
  background: rgb(88, 88, 95, 0.8);
  transform: translateY(-50%);
  content: "";
}

.top-service .top-service-wrap .top-service-main .top-card .top-card-body h4::before {
  left: -19px;
}

.top-service .top-service-wrap .top-service-main .top-card .top-card-body h4::after {
  right: -19px;
}

.top-service .top-service-wrap .top-service-main .top-card .top-card-body ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 8px;
  width: 100%;
  margin: 20px 0 0;
  padding: 20px 0 0;
  border-top: 2px solid #eaecef;
}

.top-service .top-service-wrap .top-service-main .top-card .top-card-body ul li a {
  position: relative;
  display: block;
  width: fit-content;
  font-size: 18px;
  color: #0e0d6a;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
}

.top-service .top-service-wrap .top-service-main .top-card .top-card-body ul li a:hover {
  opacity: 0.7;
}

.top-service .top-service-wrap .top-service-main .top-card .top-card-body ul li a::before {
  position: absolute;
  top: 50%;
  right: -15px;
  width: 7px;
  height: 12px;
  background: url(/catv-service/images/index/arrow_blue.svg) center center / cover no-repeat;
  transform: translateY(-50%);
  content: "";
  transition: all 0.3s ease;
}

.top-service .top-service-wrap .top-service-main .top-card .top-card-body ul li a:hover::before {
  right: -19px;
}

@media screen and (max-width: 1024px) {
  .top-service .top-service-wrap .top-service-main .top-service-sharelife,
  .top-service .top-service-wrap .top-service-main .top-service-denki,
  .top-service .top-service-wrap .top-service-main .top-service-anshin {
    width: calc(100% / 2 - 20px);
    border-radius: 32px;
  }
}

@media screen and (max-width: 768px) {
  .top-service {
    margin: 38px 0 0;
  }

  .top-service .top-service-wrap h2 {
    font-size: 20px;
  }

  .top-service .top-service-wrap h2::before,
  .top-service .top-service-wrap h2::after {
    width: 16px;
    height: 2px;
  }

  .top-service .top-service-wrap h2::before {
    left: -28px;
  }

  .top-service .top-service-wrap h2::after {
    right: -28px;
  }

  .top-service .top-service-wrap .top-service-main {
    gap: 24px;
    margin: 32px auto 0;
  }

  .top-service .top-service-wrap .top-service-main .top-service-cabletv,
  .top-service .top-service-wrap .top-service-main .top-service-phone,
  .top-service .top-service-wrap .top-service-main .top-service-sharelife,
  .top-service .top-service-wrap .top-service-main .top-service-denki,
  .top-service .top-service-wrap .top-service-main .top-service-anshin {
    width: 100%;
    border-radius: 32px;
  }

  .top-service .top-service-wrap .top-service-main .top-service-cabletv .top-card-body,
  .top-service .top-service-wrap .top-service-main .top-service-phone .top-card-body,
  .top-service .top-service-wrap .top-service-main .top-service-sharelife .top-card-body,
  .top-service .top-service-wrap .top-service-main .top-service-denki .top-card-body,
  .top-service .top-service-wrap .top-service-main .top-service-anshin .top-card-body {
    padding: 20px 26px 28px;
  }

  .top-service .top-service-wrap .top-service-main .top-service-cabletv .top-card-body h3,
  .top-service .top-service-wrap .top-service-main .top-service-phone .top-card-body h3,
  .top-service .top-service-wrap .top-service-main .top-service-sharelife .top-card-body h3,
  .top-service .top-service-wrap .top-service-main .top-service-denki .top-card-body h3,
  .top-service .top-service-wrap .top-service-main .top-service-anshin .top-card-body h3 {
    font-size: 20px;
  }

  .top-service .top-service-wrap .top-service-main .top-service-cabletv .top-card-body h3 img,
  .top-service .top-service-wrap .top-service-main .top-service-phone .top-card-body h3 img,
  .top-service .top-service-wrap .top-service-main .top-service-sharelife .top-card-body h3 img,
  .top-service .top-service-wrap .top-service-main .top-service-denki .top-card-body h3 img,
  .top-service .top-service-wrap .top-service-main .top-service-anshin .top-card-body h3 img {
    width: 30px;
    height: 30px;
  }

  .top-service .top-service-wrap .top-service-main .top-service-cabletv .top-card-body h4,
  .top-service .top-service-wrap .top-service-main .top-service-phone .top-card-body h4,
  .top-service .top-service-wrap .top-service-main .top-service-sharelife .top-card-body h4,
  .top-service .top-service-wrap .top-service-main .top-service-denki .top-card-body h4,
  .top-service .top-service-wrap .top-service-main .top-service-anshin .top-card-body h4 {
    margin: 9px 0 0;
  }

  .top-service .top-service-wrap .top-service-main .top-card .top-card-body h3 {
    column-gap: 10px;
  }

  .top-service .top-service-wrap .top-service-main .top-card .top-card-body h3 img {
    width: 30px;
    height: 30px;
  }

  .top-service .top-service-wrap .top-service-main .top-card .top-card-body h4 {
    font-size: 16px;
  }

  .top-service .top-service-wrap .top-service-main .top-card .top-card-body h4::before {
    left: -19px;
  }

  .top-service .top-service-wrap .top-service-main .top-card .top-card-body h4::after {
    right: -19px;
  }

  .top-service .top-service-wrap .top-service-main .top-card .top-card-body ul {
    row-gap: 12px;
    margin: 18px 0 0;
    padding: 18px 0 0;
  }

  .top-service .top-service-wrap .top-service-main .top-card .top-card-body ul li a {
    font-size: 16px;
  }

  .top-service .top-service-wrap .top-service-main .top-card .top-card-body ul li a::before {
    right: -15px;
  }
}

.end-product {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin: 74px auto 0;
  padding: 0 0 48px;
}

.end-product > p {
  font-size: 16px;
  font-weight: 500;
  color: #58585F;
}

.end-product ul {
  display: flex;
  gap: 22px;
}

.end-product ul li a {
  position: relative;
  padding-right: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #58585f;
  transition: all 0.3s ease;
}

.end-product ul li a:hover {
  opacity: 0.7;
}

.end-product ul li a::before {
  position: absolute;
  top: 50%;
  right: -3px;
  width: 5px;
  height: 9px;
  background: url(/catv-service/images/index/arrow_gray.svg) center center / cover no-repeat;
  transform: translateY(-50%);
  content: "";
  transition: all 0.3s ease;
}

.end-product ul li a:hover:before {
  right: -7px;
}

@media screen and (max-width: 768px) {
  .end-product {
    flex-direction: column;
    gap: 15px;
    margin: 32px auto 0;
    padding: 0 0 20px;
  }

  .end-product ul li a {
    padding-right: 10px;
  }

  .end-product ul li a::before {
    right: -6px;
    width: 7px;
    height: 12px;
  }
}
