/* index.html
---------------------------------------------------- */
#main-visual {
  position: relative;
  overflow-x: clip;
  background-color: #fff;
}
#main-visual .mv-slider {
  width: 100%;
  height: 96vh;
}
#main-visual .mv-slider .slider-mv {
  width: 100%;
  height: 100%;
}
#main-visual .mv-slider .slider-mv .swiper-img {
  width: 100%;
  height: 100%;
}
#main-visual .mv-slider .slider-mv .swiper-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@keyframes zoomPan {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
#main-visual .mv-slider .swiper-slide-active .swiper-img img,
#main-visual .mv-slider .swiper-slide-duplicate-active .swiper-img img,
#main-visual .mv-slider .swiper-slide-prev .swiper-img img {
  animation: zoomPan 8s linear 0s normal both;
}
#main-visual .mv-slider::before {
  bottom: 0;
  left: 0;
  margin-bottom: -2px;
  margin-left: -2px;
  width: 31.875rem;
  background-image: url(../images/img-frame.png);
}
#main-visual .mv-inner {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
}
#main-visual .mv-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}
@media screen and (max-width: 767px) {
  #main-visual .mv-content {
    width: calc(100% - 2em);
    margin-top: -4svh;
  }
}
#main-visual .mv-content .mv-catch p {
  font-size: 2.25rem;
  padding: 0 1em;
}
@media screen and (max-width: 1199px) {
  #main-visual .mv-content .mv-catch p {
    font-size: 1.75em;
  }
}
@media screen and (max-width: 767px) {
  #main-visual .mv-content .mv-catch p {
    font-size: 1.25em;
    padding: 0.2em 1em;
  }
}
#main-visual .mv-content .mv-catch h2 {
  font-weight: 700;
  font-size: 5.625rem;
}
@media screen and (max-width: 1199px) {
  #main-visual .mv-content .mv-catch h2 {
    font-size: 4em;
  }
}
@media screen and (max-width: 767px) {
  #main-visual .mv-content .mv-catch h2 {
    font-size: min(10vw, 3em);
  }
}
#main-visual .mv-content .mv-txt p {
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.6em;
  margin-top: 1em;
}
@media screen and (max-width: 767px) {
  #main-visual .mv-content .mv-txt p {
    font-size: 1em;
  }
}
#main-visual .mv-content .mv-txt p em.__red {
  background: linear-gradient(transparent 0, rgba(230, 0, 18, 0.6) 0);
  background-repeat: no-repeat;
  background-position: 0% 100%;
  background-size: 0% 45%;
}
#main-visual .mv-content .mv-txt p em.__blue {
  background: linear-gradient(transparent 0, rgba(0, 64, 152, 0.6) 0);
  background-repeat: no-repeat;
  background-position: 0% 100%;
  background-size: 0% 45%;
}
#main-visual .mv-scroll {
  display: block;
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  transform: translateX(50%);
}
#main-visual .mv-scroll p {
  color: #fff;
  font-weight: 700;
  transform-origin: right;
  transform: translateX(-50%) rotate(90deg);
}
@media screen and (max-width: 767px) {
  #main-visual .mv-scroll p {
    font-size: 0.9em;
  }
}
@keyframes lineAnime {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
#main-visual .mv-scroll::after {
  content: "";
  display: block;
  margin: 0 auto;
  width: 1px;
  height: 160px;
  background: #fff;
  animation: lineAnime 3s cubic-bezier(0.8, 0, 0, 0.8) infinite;
}

.sec-links .flowingText {
  margin-top: -3vw;
}
@media screen and (max-width: 767px) {
  .sec-links .flowingText {
    margin-top: -8vw;
  }
}
.sec-links .sec-content {
  margin-top: -3.5vw;
}
@media screen and (max-width: 767px) {
  .sec-links .sec-content {
    margin-top: 0;
  }
}
.sec-links .sec-content .link-list ul {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .sec-links .sec-content .link-list ul {
    display: block;
  }
}
.sec-links .sec-content .link-list ul .link-list-item {
  width: calc(33.3333333333% - 1.25rem);
}
@media screen and (max-width: 767px) {
  .sec-links .sec-content .link-list ul .link-list-item {
    width: 100%;
    margin-top: 6px;
  }
}
.sec-links .sec-content .link-list ul .link-list-item a {
  position: relative;
  color: #fff;
  background-color: #333333;
  width: 100%;
  padding: 2em 1em;
  transition: all 0.2s ease;
}
.sec-links .sec-content .link-list ul .link-list-item a::before {
  position: absolute;
  bottom: 0;
  right: 0;
  margin-bottom: 0.8em;
  margin-right: 0.8em;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 0.6em 0.6em;
  border-color: transparent transparent #fff transparent;
}
.sec-links .sec-content .link-list ul .link-list-item a .item-icon {
  width: 5.2em;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .sec-links .sec-content .link-list ul .link-list-item a .item-icon {
    width: 4em;
  }
}
.sec-links .sec-content .link-list ul .link-list-item a .item-txt {
  text-align: center;
  margin-top: 0.6em;
}
.sec-links .sec-content .link-list ul .link-list-item a .item-txt h3 span.__en {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(90deg);
  transform-origin: left top;
  margin-top: 0.6em;
  margin-left: 2em;
}
.sec-links .sec-content .link-list ul .link-list-item a .item-txt h3 span.__jp {
  font-size: 1.25em;
}
.sec-links .sec-content .link-list ul .link-list-item a:hover {
  background-color: #141313;
}

.sec-about .sec-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - (100% - 80.625 * 1rem) / 2);
}
@media screen and (max-width: 1199px) {
  .sec-about .sec-content {
    display: block;
  }
}
@media screen and (max-width: 991px) {
  .sec-about .sec-content {
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 767px) {
  .sec-about .sec-content {
    width: calc(100% - 20px);
  }
}
.sec-about .sec-content .txt-wrap {
  width: 37.5rem;
}
@media screen and (max-width: 1199px) {
  .sec-about .sec-content .txt-wrap {
    width: 80.625rem;
  }
}
@media screen and (max-width: 991px) {
  .sec-about .sec-content .txt-wrap {
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 767px) {
  .sec-about .sec-content .txt-wrap {
    width: calc(100% - 20px);
  }
}
.sec-about .sec-content .txt-wrap .content-ttl h3 {
  font-size: 2.25rem;
}
@media screen and (max-width: 1199px) {
  .sec-about .sec-content .txt-wrap .content-ttl h3 {
    font-size: 1.75em;
  }
}
@media screen and (max-width: 767px) {
  .sec-about .sec-content .txt-wrap .content-ttl h3 {
    font-size: min(6vw, 1.5em);
  }
}
.sec-about .sec-content .txt-wrap .content-txt {
  margin-top: 2em;
}
@media screen and (max-width: 1199px) {
  .sec-about .sec-content .txt-wrap .content-txt {
    margin-top: 1em;
  }
}
.sec-about .sec-content .txt-wrap .content-txt p {
  font-size: 1.125em;
  line-height: 1.6em;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .sec-about .sec-content .txt-wrap .content-txt p {
    font-size: 1em;
  }
}
.sec-about .sec-content .img-wrap {
  width: calc(100% - 37.5rem - 5rem);
  aspect-ratio: 2/1;
}
@media screen and (max-width: 1199px) {
  .sec-about .sec-content .img-wrap {
    width: 100%;
    margin-top: 3em;
  }
}
@media screen and (max-width: 767px) {
  .sec-about .sec-content .img-wrap {
    aspect-ratio: 3/2;
  }
}
.sec-about .sec-content .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec-about .sec-content:nth-of-type(1) {
  margin-left: auto;
}
.sec-about .sec-content:nth-of-type(1) .img-wrap::before {
  top: 0;
  right: 0;
  margin-top: -2px;
  margin-right: -2px;
  transform: scaleY(-1);
}
.sec-about .sec-content:nth-of-type(2) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1199px) {
  .sec-about .sec-content:nth-of-type(2) .txt-wrap {
    margin-left: auto;
  }
}
.sec-about .sec-content:nth-of-type(2) .img-wrap {
  border-bottom: solid 1px #fff;
}
.sec-about .sec-content:nth-of-type(2) .img-wrap::before {
  bottom: 0;
  left: 0;
  margin-bottom: -2px;
  margin-left: -2px;
}

.sec-merit {
  overflow: clip;
  color: #fff;
  background: linear-gradient(90deg, #333, #555, #333);
}
.sec-merit::before {
  position: absolute;
  bottom: 0;
  right: 0;
  margin-bottom: -2px;
  margin-right: -2px;
  content: "";
  display: block;
  width: 25rem;
  aspect-ratio: 2/1;
  background-image: url(../images/img-frame_blue.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.sec-merit .merit-list {
  margin-top: 2em;
}
.sec-merit .merit-list ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.sec-merit .merit-list ul .merit-list-item {
  width: calc(50% - 0.9375rem);
  margin-top: 1.875rem;
  padding: 3em 2em;
  border: solid 1px #999;
}
@media screen and (max-width: 1199px) {
  .sec-merit .merit-list ul .merit-list-item {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .sec-merit .merit-list ul .merit-list-item {
    margin-top: 8px;
    padding: 20px;
    padding-bottom: 40px;
  }
}
.sec-merit .merit-list ul .merit-list-item .item-catch h4 {
  font-size: min(1.3vw, 1.125em);
  margin: 0 auto;
}
@media screen and (max-width: 1199px) {
  .sec-merit .merit-list ul .merit-list-item .item-catch h4 {
    font-size: 1.125em;
  }
}
@media screen and (max-width: 767px) {
  .sec-merit .merit-list ul .merit-list-item .item-catch h4 {
    width: 100%;
    text-align: center;
    font-size: min(4.2vw, 1em);
    line-height: 1.4em;
  }
}
.sec-merit .merit-list ul .merit-list-item .item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.6em;
}
@media screen and (max-width: 767px) {
  .sec-merit .merit-list ul .merit-list-item .item-icon {
    margin-top: 2em;
  }
}
.sec-merit .merit-list ul .merit-list-item .item-icon .icon {
  width: 5.2em;
  margin-right: 1.2em;
}
@media screen and (max-width: 1199px) {
  .sec-merit .merit-list ul .merit-list-item .item-icon .icon {
    width: 4.8em;
  }
}
@media screen and (max-width: 767px) {
  .sec-merit .merit-list ul .merit-list-item .item-icon .icon {
    width: 4em;
  }
}
.sec-merit .merit-list ul .merit-list-item .item-icon h3 {
  font-weight: 700;
  font-size: 2rem;
}
@media screen and (max-width: 1199px) {
  .sec-merit .merit-list ul .merit-list-item .item-icon h3 {
    font-size: 2em;
  }
}
@media screen and (max-width: 767px) {
  .sec-merit .merit-list ul .merit-list-item .item-icon h3 {
    font-size: min(6.5vw, 1.75em);
  }
}
.sec-merit .merit-list ul .merit-list-item .item-txt {
  margin-top: 1.4em;
}
.sec-merit .merit-list ul .merit-list-item .item-txt p {
  text-align: center;
  font-size: 1.125em;
}
@media screen and (max-width: 767px) {
  .sec-merit .merit-list ul .merit-list-item .item-txt p {
    font-size: 1em;
  }
}

.sec-service .sec-txt {
  margin-top: 3em;
}
.sec-service .sec-txt p {
  text-align: center;
  font-size: 1.125em;
}
@media screen and (max-width: 767px) {
  .sec-service .sec-txt p {
    text-align: start;
    font-size: 1em;
  }
}
.sec-service .service-list {
  margin-top: 3em;
}
.sec-service .service-list ul {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.sec-service .service-list ul .service-list-item {
  position: relative;
  width: calc(25% - 1.40625rem);
}
@media screen and (max-width: 1199px) {
  .sec-service .service-list ul .service-list-item {
    width: calc(50% - 1.5em);
  }
}
@media screen and (max-width: 767px) {
  .sec-service .service-list ul .service-list-item {
    width: 100%;
  }
}
.sec-service .service-list ul .service-list-item .item-img {
  width: 100%;
  aspect-ratio: 3/4;
}
@media screen and (max-width: 1199px) {
  .sec-service .service-list ul .service-list-item .item-img {
    aspect-ratio: 1/1;
  }
}
@media screen and (max-width: 767px) {
  .sec-service .service-list ul .service-list-item .item-img {
    aspect-ratio: 4/3;
  }
}
.sec-service .service-list ul .service-list-item .item-img::before {
  bottom: 0;
  right: 0;
  margin-bottom: -2px;
  margin-right: -2px;
  width: 60%;
}
.sec-service .service-list ul .service-list-item .item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec-service .service-list ul .service-list-item .item-ttl {
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .sec-service .service-list ul .service-list-item .item-ttl {
    position: relative;
  }
}
.sec-service .service-list ul .service-list-item .item-ttl h3 {
  background-color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  writing-mode: vertical-rl;
  padding: 0.4em 0.2em;
}
@media screen and (max-width: 1199px) {
  .sec-service .service-list ul .service-list-item .item-ttl h3 {
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 991px) {
  .sec-service .service-list ul .service-list-item .item-ttl h3 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .sec-service .service-list ul .service-list-item .item-ttl h3 {
    font-size: 1.25em;
    writing-mode: initial;
    padding: 0;
    margin-top: 0.4em;
  }
}
.sec-service .service-list ul .service-list-item .item-txt {
  margin-top: 1em;
}
@media screen and (max-width: 767px) {
  .sec-service .service-list ul .service-list-item .item-txt {
    margin-top: 0;
  }
}
.sec-service .service-list ul .service-list-item .item-txt p {
  line-height: 1.6em;
}
.sec-service .service-list ul .service-list-item:nth-of-type(odd) .item-img::before {
  transform: scaleX(-1);
}
.sec-service .service-list ul .service-list-item:nth-of-type(odd) .item-ttl h3 {
  color: #e60012;
}
.sec-service .service-list ul .service-list-item:nth-of-type(even) .item-ttl h3 {
  color: #004098;
}
.sec-service .service-list ul .service-list-item:nth-of-type(2) {
  margin-top: 1.875rem;
}
.sec-service .service-list ul .service-list-item:nth-of-type(3) {
  margin-top: 3.75rem;
}
.sec-service .service-list ul .service-list-item:nth-of-type(4) {
  margin-top: 5.625rem;
}
.sec-service .service-list ul .service-list-item:nth-of-type(4) .item-img img {
  -o-object-position: 50% 70%;
     object-position: 50% 70%;
}
@media screen and (max-width: 1199px) {
  .sec-service .service-list ul .service-list-item:nth-of-type(2) {
    margin-top: 3em;
  }
  .sec-service .service-list ul .service-list-item:nth-of-type(3) {
    margin-top: 0;
  }
  .sec-service .service-list ul .service-list-item:nth-of-type(4) {
    margin-top: 3em;
  }
}
@media screen and (max-width: 767px) {
  .sec-service .service-list ul .service-list-item:nth-of-type(2) {
    margin-top: 2em;
  }
  .sec-service .service-list ul .service-list-item:nth-of-type(3) {
    margin-top: 2em;
  }
  .sec-service .service-list ul .service-list-item:nth-of-type(4) {
    margin-top: 2em;
  }
}

.sec-voice .sec-inner {
  background-image: url(../images/voice-bgimg.jpg);
  background-size: cover;
  background-position: 50% 75%;
  overflow: clip;
}
.sec-voice .sec-inner::before {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: -2px;
  margin-left: -2px;
  content: "";
  display: block;
  width: 25rem;
  aspect-ratio: 2/1;
  background-image: url(../images/img-frame_red.png);
  background-size: contain;
  background-repeat: no-repeat;
  transform: scaleY(-1);
}
.sec-voice .sec-content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  background-color: rgba(51, 51, 51, 0.9);
  padding: 3em;
}
@media screen and (max-width: 1199px) {
  .sec-voice .sec-content {
    display: block;
    padding: 4em;
    padding-bottom: 3.6em;
  }
}
@media screen and (max-width: 767px) {
  .sec-voice .sec-content {
    padding: 20px;
    padding-top: 3em;
  }
}
.sec-voice .sec-content .txt-wrap {
  width: calc(100% - 18.75rem - 5rem);
}
@media screen and (max-width: 1199px) {
  .sec-voice .sec-content .txt-wrap {
    width: 100%;
  }
}
.sec-voice .sec-content .txt-wrap .sec-ttl h2 {
  text-align: start;
}
.sec-voice .sec-content .txt-wrap .sec-ttl h2 span.__jp::after {
  display: none;
}
.sec-voice .sec-content .txt-wrap .sec-catch {
  margin-top: 1em;
}
@media screen and (max-width: 1199px) {
  .sec-voice .sec-content .txt-wrap .sec-catch {
    margin-top: 2em;
  }
}
.sec-voice .sec-content .txt-wrap .sec-catch h3 {
  font-size: 1.25em;
}
@media screen and (max-width: 767px) {
  .sec-voice .sec-content .txt-wrap .sec-catch h3 {
    font-size: min(5vw, 1.25em);
  }
}
.sec-voice .sec-content .txt-wrap .sec-txt {
  margin-top: 1em;
}
.sec-voice .sec-content .txt-wrap .sec-txt p {
  font-size: 1.125em;
  line-height: 1.6em;
}
@media screen and (max-width: 767px) {
  .sec-voice .sec-content .txt-wrap .sec-txt p {
    font-size: 1em;
  }
}
.sec-voice .sec-content .img-wrap {
  position: relative;
  width: 18.75rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 1199px) {
  .sec-voice .sec-content .img-wrap {
    width: min(100%, 480px);
    aspect-ratio: 3/2;
    margin: 0 auto;
    margin-top: 2em;
  }
}
.sec-voice .sec-content .img-wrap > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec-voice .sec-content .img-wrap .voice-illust {
  position: absolute;
  bottom: 0;
  right: 0;
  margin-bottom: -3em;
  margin-right: -3em;
  width: 7.5rem;
}
@media screen and (max-width: 1199px) {
  .sec-voice .sec-content .img-wrap .voice-illust {
    margin-bottom: 0;
    margin-right: 0;
    width: max(30%, 80px);
  }
}
.sec-voice .sec-content .img-wrap .voice-illust img {
  width: 100%;
  height: auto;
}

.sec-area {
  padding: 2em 0;
}
@media screen and (max-width: 1199px) {
  .sec-area {
    padding: 80px 0;
  }
}
@media screen and (max-width: 767px) {
  .sec-area {
    padding: 60px 0;
  }
}
.sec-area .sec-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .sec-area .sec-content {
    display: block;
  }
}
.sec-area .sec-content .txt-wrap {
  width: 56.25rem;
}
@media screen and (max-width: 1199px) {
  .sec-area .sec-content .txt-wrap {
    width: 45rem;
  }
}
@media screen and (max-width: 767px) {
  .sec-area .sec-content .txt-wrap {
    width: 100%;
  }
}
.sec-area .sec-content .txt-wrap .sec-ttl h2 {
  text-align: start;
}
.sec-area .sec-content .txt-wrap .sec-ttl h2 span.__jp::after {
  margin-left: 0;
}
.sec-area .sec-content .txt-wrap .sec-txt {
  margin: 2em 0;
}
.sec-area .sec-content .txt-wrap .sec-txt p {
  font-size: 1.125em;
}
@media screen and (max-width: 767px) {
  .sec-area .sec-content .txt-wrap .sec-txt p {
    font-size: 1em;
  }
}
.sec-area .sec-content .area-img {
  position: relative;
  z-index: -1;
  flex-shrink: 0;
  width: calc(100% - 56.25rem + 25rem);
  margin-left: -25rem;
}
@media screen and (max-width: 1199px) {
  .sec-area .sec-content .area-img {
    width: calc(100% - 45rem + 25rem);
  }
}
@media screen and (max-width: 767px) {
  .sec-area .sec-content .area-img {
    width: 100%;
    margin-left: 0;
    margin-top: 2em;
  }
}
.sec-area .sec-content .area-img img {
  width: 100%;
  height: auto;
}

.sec-links_footer .link-list ul {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  .sec-links_footer .link-list ul {
    display: block;
  }
}
.sec-links_footer .link-list ul .link-list-item {
  width: 33.3333333333%;
  border-right: solid 1px #999;
  border-bottom: solid 1px #999;
}
.sec-links_footer .link-list ul .link-list-item:last-of-type {
  border-right: none;
}
@media screen and (max-width: 991px) {
  .sec-links_footer .link-list ul .link-list-item {
    width: 100%;
    border-right: none;
  }
}
.sec-links_footer .link-list ul .link-list-item a {
  color: #fff;
  background-color: #333333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 2em;
  padding-bottom: 2em;
  padding-left: max(2.0833333333vw, 2em);
  padding-right: max(2.0833333333vw, 2em);
  transition: all 0.2s ease;
}
@media screen and (max-width: 1199px) {
  .sec-links_footer .link-list ul .link-list-item a {
    padding-top: 3em;
    padding-bottom: 3em;
  }
}
@media screen and (max-width: 991px) {
  .sec-links_footer .link-list ul .link-list-item a {
    padding-top: 2em;
    padding-bottom: 2em;
  }
}
@media screen and (max-width: 767px) {
  .sec-links_footer .link-list ul .link-list-item a {
    padding: 1.6em 20px;
  }
}
.sec-links_footer .link-list ul .link-list-item a .item-inner {
  display: flex;
  align-items: center;
}
.sec-links_footer .link-list ul .link-list-item a .item-inner .item-icon {
  width: 4.8em;
  margin-right: 1.6em;
}
@media screen and (max-width: 1199px) {
  .sec-links_footer .link-list ul .link-list-item a .item-inner .item-icon {
    width: 4em;
  }
}
@media screen and (max-width: 991px) {
  .sec-links_footer .link-list ul .link-list-item a .item-inner .item-icon {
    width: 3.6em;
  }
}
.sec-links_footer .link-list ul .link-list-item a .item-inner .item-txt h3 span.__en {
  display: block;
}
.sec-links_footer .link-list ul .link-list-item a .item-inner .item-txt h3 span.__jp {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.4em;
}
@media screen and (max-width: 1199px) {
  .sec-links_footer .link-list ul .link-list-item a .item-inner .item-txt h3 span.__jp {
    font-size: 1.25em;
  }
}
.sec-links_footer .link-list ul .link-list-item a .item-arrow {
  width: 0.8em;
}
@media screen and (max-width: 1199px) {
  .sec-links_footer .link-list ul .link-list-item a .item-arrow {
    width: 0.6em;
  }
}
@media screen and (max-width: 767px) {
  .sec-links_footer .link-list ul .link-list-item a .item-arrow {
    width: 0.48em;
  }
}
.sec-links_footer .link-list ul .link-list-item a .item-arrow img {
  width: 100%;
  height: auto;
}
.sec-links_footer .link-list ul .link-list-item a:hover {
  background-color: #141313;
}/*# sourceMappingURL=index.css.map */