/*===========================================================================
unique
単一ページで使用するCSS
接頭辞【.u-】

【予測変換用 _base.css記述】
:root {
	--font-color-base: #000;
	--font-family-base: "Noto Sans JP", sans-serif;
	--back-color-base: #fff;
	--design-size-pc: 1400;
	--design-size-sp: 750;
}
===========================================================================*/
* + .u-sec {
  margin-top: 120rem;
}
.u-sec__ttl {
  font-size: 32rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.u-sec__ttl > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 16rem;
  text-decoration: none;
  transition: color 0.3s linear;
}
.u-sec__ttl > a::after {
  content: "";
  position: relative;
  right: 0;
  display: block;
  width: 18rem;
  height: 18rem;
  background-color: var(--font-color-main);
  mask: url(/common/images/icn_line_arw_wt.svg) no-repeat center / contain;
  transition: right 0.3s linear;
  -webkit-mask: url(/common/images/icn_line_arw_wt.svg) no-repeat center / contain;
}
@media (any-hover: hover) {
  .u-sec__ttl > a:hover {
    color: var(--font-color-main);
  }
  .u-sec__ttl > a:hover::after {
    right: -8rem;
  }
}
/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
  * + .u-sec {
    margin-top: 100rem;
  }
  .u-sec__ttl {
    font-size: 28rem;
    line-height: 1.6;
  }
  .u-sec__ttl a {
    gap: 8rem;
  }
}


.u-linkList {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 30rem;
}
.u-linkList__item > a {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 6rem;
  padding: 24rem 0 23rem;
  border-bottom: 1px solid #c4cedc;
  color: inherit;
  font-size: 20rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  transition: color 0.3s linear;
}
.u-linkList__item > a::after {
  content: "";
  position: relative;
  right: 0;
  display: block;
  flex-shrink: 0;
  width: 18rem;
  height: 18rem;
  background-color: var(--font-color-main);
  mask: url(/common/images/icn_line_arw_wt.svg) no-repeat center / contain;
  transition: right 0.3s linear;
  -webkit-mask: url(/common/images/icn_line_arw_wt.svg) no-repeat center / contain;
}
.u-linkList__child {
  margin-top: 16rem;
}
.u-linkList__childItem:not(:first-child) {
  margin-top: 8rem;
}
.u-linkList__childItem > a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0 8rem;
  padding-left: 28rem;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.3s linear;
}
.u-linkList__childItem > a::before,
.u-linkList__childItem > a::after {
  content: "";
}
.u-linkList__childItem > a::before {
  position: absolute;
  top: 6rem;
  left: 0;
  width: 12rem;
  height: 12rem;
  border-radius: 1rem;
  background-color: var(--back-color-main);
}
.u-linkList__childItem > a::after {
  position: relative;
  right: 0;
  display: block;
  width: 18rem;
  height: 18rem;
  background-color: var(--back-color-main);
  mask: url(/common/images/icn_line_arw_wt.svg) no-repeat center / contain;
  transition: right 0.3s linear;
  -webkit-mask: url(/common/images/icn_line_arw_wt.svg) no-repeat center / contain;
}
@media (any-hover: hover) {
  .u-linkList__item > a:hover {
    color: var(--font-color-main);
  }
  .u-linkList__item > a:hover::after {
    right: -6rem;
  }
  .u-linkList__childItem > a:hover {
    color: var(--font-color-main);
  }
  .u-linkList__childItem > a:hover::after {
    right: -6rem;
  }
}
/* PC
----------------------------------*/
@media screen and (min-width: 769px) {
  .u-linkList__item {
    display: grid;
    grid-template-rows: subgrid;
    grid-template-columns: minmax(0, 1fr);
    grid-row: span 2;
  }
}
/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
  .u-linkList {
    grid-template-columns: minmax(0, 1fr);
    gap: 8rem;
    margin-top: 8rem;
  }
  .u-linkList__item > a {
    line-height: 1.5;
  }
}
