@charset "UTF-8";
:root {
  --s: 10px;
  --f: 10px;
}
@media screen and (max-width: 1024px) {
  :root {
    --s: 0.694vw;
    --f: 0.694vw;
  }
}
@media screen and (max-width: 600px) {
  :root {
    --s: 1.2vw;
    --f: 1.8vw;
  }
}

/*
 * 機能：clamp関数の文字列を返す
 * 引数：$size-at-min-width サイズ(フォントサイズなど)の最小値(pxやremなどの単位は必須)
 * 　　　$size-at-max-width サイズ(フォントサイズなど)の最大値(pxやremなどの単位は必須)
 * 　　　$min-width [省略可]サイズが最小値に到達する画面幅
 * 　　　$max-width [省略可]サイズが最大値に到達する画面幅
 * 使用方法：
 *　　デフォルトの最小画面幅$min-width-defaultと最大画面幅$max-width-defaultを事前に指定しておく
 *　　最小幅と最大幅をデフォルト以外にしたい場合は、引数にそれぞれ単位付きの画面幅を入れる
 */
html {
  font-family: "NotoSansSC", "noto sans", "Helvetica", "Hiragino Sans", "Arial", "Yu Gothic", sans-serif;
  font-weight: 400;
}

.lower_contents .title_section .lower_contents_head .title {
  font-family: "NotoSansSC", "noto sans", "Helvetica", "Hiragino Sans", "Arial", "Yu Gothic", sans-serif;
}

.copyright {
  margin-top: 16px;
}

@media (min-width: 1024px) {
  .footer_nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, auto);
  }
  .footer_nav ul {
    width: 100%;
  }
}
@media (min-width: 1279px) {
  .footer_nav {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, auto);
  }
  .footer_nav ul:nth-child(1), .footer_nav ul:nth-child(2), .footer_nav ul:nth-child(3) {
    grid-row-start: 1;
    grid-row-end: 3;
  }
}
@media screen and (max-width: 1024px) {
  .footer_nav .footer_nav_snsBox {
    display: none;
  }
}

@media (min-width: 1024px) {
  .footer_nav_snsBox {
    grid-column-start: 3;
    grid-column-end: 5;
  }
}
@media (min-width: 1279px) {
  .footer_nav_snsBox {
    grid-area: 2/4/3/7;
  }
}
.footer_nav_snsBox ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #bb0723 -3.49%, #461b83 95.16%);
  border-radius: 16px;
  padding: 2em 1em;
  position: relative;
}
.footer_nav_snsBox ul li {
  flex: 1;
  cursor: pointer;
}
.footer_nav_snsBox ul li .info_box {
  transition: 0.3s;
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  width: 33%;
  margin: 0 auto;
  top: -180px;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
  margin-left: 7%;
  padding-bottom: 150px;
}
.footer_nav_snsBox ul li .info_box img {
  width: 120px;
  margin-bottom: 6px;
}
.footer_nav_snsBox ul li .info_box span {
  flex: 1;
  width: 120px;
  padding: 0.5em 1em;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  background: var(--gradation_color);
  border-radius: 9999999px;
  color: #fff;
}
.footer_nav_snsBox ul li .info_box_tel {
  transform: none;
  padding: 16px;
  display: none;
  flex-direction: column;
  background-color: #fff;
  border: 2px solid #820340;
  border-radius: 16px;
  white-space: nowrap;
  gap: 0px;
  justify-content: center;
  align-items: center;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  top: -100px;
  z-index: 999;
}
.footer_nav_snsBox ul li .info_box_tel::after {
  content: "";
  position: absolute;
  top: -100px;
  bottom: -100px;
  left: 0;
  right: 0;
  z-index: 99999;
}
.footer_nav_snsBox ul li .info_box_tel p {
  color: #9f004d;
  font-weight: 500;
  font-size: 32px;
  font-family: "taviraj", sans-serif;
  line-height: 1.2;
}
.footer_nav_snsBox ul li .info_box_tel span {
  font-weight: 500;
  background: transparent;
  font-size: 12px;
  color: #000;
  padding: 0;
  width: 100%;
}
.footer_nav_snsBox ul li:hover {
  opacity: 1;
}
.footer_nav_snsBox ul li:hover .info_box {
  display: flex !important;
}
.footer_nav_snsBox ul a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.footer_nav_snsBox ul a:hover {
  opacity: 0.6;
}
.footer_nav_snsBox ul a img {
  width: 2.57em;
}
.footer_nav_snsBox ul a span {
  color: #fff;
  white-space: nowrap;
  padding-bottom: 4px;
}
.footer_nav_snsBox ul li:first-child a {
  padding-right: 1.7em;
}
.footer_nav_snsBox ul li:nth-child(2) a {
  padding: 0 1.7em;
  gap: 8px;
  border-left: 1px #fff solid;
  border-right: 1px #fff solid;
}
.footer_nav_snsBox ul li:nth-child(2) a img {
  width: 1.571em;
}
.footer_nav_snsBox ul li:nth-child(3) a {
  padding-left: 1.7em;
}
.footer_nav_snsBox ul li:nth-child(3) a img {
  width: 2.29em;
}
@media screen and (max-width: 1024px) {
  .footer_nav_snsBox ul {
    width: 98.87vw;
    margin: 0 auto;
    border-radius: 99999px;
    border: none;
    padding: 0.7em 0.857em;
  }
  .footer_nav_snsBox ul li a {
    font-size: clamp(12px, 3.733vw, 20px);
    flex-direction: column;
  }
  .footer_nav_snsBox ul li a .wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .footer_nav_snsBox ul li a img {
    width: 2.1em;
    min-width: 16px;
  }
  .footer_nav_snsBox ul li .info_box {
    width: 100%;
    align-items: center;
    margin-left: 0;
    padding-bottom: 0;
  }
  .footer_nav_snsBox ul li .info_box_tel {
    padding-bottom: 16px;
  }
  .footer_nav_snsBox ul li .info_box_tel::after {
    content: none;
  }
  .footer_nav_snsBox ul li:hover {
    opacity: 1;
  }
  .footer_nav_snsBox ul li:first-child a {
    padding: 0 1.14em;
  }
  .footer_nav_snsBox ul li:first-child a span {
    margin-top: -6px;
  }
  .footer_nav_snsBox ul li:nth-child(2) {
    gap: 4px;
  }
  .footer_nav_snsBox ul li:nth-child(2) a {
    padding: 0 1.14em;
    gap: 2px;
  }
  .footer_nav_snsBox ul li:nth-child(2) a img {
    width: 1.286em;
  }
  .footer_nav_snsBox ul li:nth-child(3) a {
    padding: 0 1.14em;
  }
  .footer_nav_snsBox ul li:nth-child(3) a img {
    width: 1.857em;
  }
  .footer_nav_snsBox ul li:nth-child(3) a span {
    margin-top: -6px;
  }
}

@media (min-width: 1025px) {
  footer .btnBox .site_btn02,
  footer .btnBox.active:not(.btnBox2) {
    display: none !important;
  }
  .footer_bottom {
    padding-bottom: 2.66vw;
  }
}
@media (min-width: 1920px) {
  .footer_bottom {
    padding-bottom: 50px;
  }
}
.footer_bottom_contentsBox .company_content_r p,
.footer_bottom_contentsBox .company_content_r table {
  font-size: 14px;
}
.footer_bottom_contentsBox .company_content_r p {
  font-weight: 700;
  margin-bottom: 24px;
}
.footer_bottom_contentsBox .company_content_r table th {
  padding-right: 16px;
}
.footer_bottom_contentsBox .company_content_r table tr:first-child th,
.footer_bottom_contentsBox .company_content_r table tr:first-child td {
  padding-bottom: 18px;
}
@media screen and (max-width: 1024px) {
  .footer_bottom_contentsBox {
    flex-direction: column-reverse;
    gap: 64px;
    padding-bottom: 60px;
  }
  .footer_bottom_contentsBox table th, .footer_bottom_contentsBox table td {
    display: block;
    width: 100%;
    font-size: 14px;
  }
  .footer_bottom_contentsBox table th {
    padding-bottom: 16px !important;
  }
}

footer .btnBox.active:not(.btnBox2) {
  opacity: 1;
  z-index: 998;
}

.floating-nav {
  position: fixed;
  right: 0;
  top: 40%;
  z-index: 999;
}
.floating-nav ul {
  transition: 0.3s;
}
.floating-nav ul li {
  padding-left: 36px;
  position: relative;
}
.floating-nav ul li a {
  display: block;
  background-color: #bb0723;
}
.floating-nav ul li a .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  gap: 5px;
}
.floating-nav ul li a .wrapper .imgContent {
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.floating-nav ul li a .wrapper .imgContent img {
  transition: 0.3s;
}
.floating-nav ul li a span {
  display: none;
}
.floating-nav ul li .info_box {
  transition: 0.3s;
  display: none;
  position: absolute;
  left: -120px;
  top: 0;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}
.floating-nav ul li .info_box img {
  width: 120px;
}
.floating-nav ul li .info_box span {
  flex: 1;
  width: 100%;
  padding: 0.5em 1em;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  background: var(--gradation_color);
  border-radius: 9999999px;
}
.floating-nav ul li .info_box_tel {
  padding: 16px;
  flex-direction: column;
  background-color: #fff;
  border: 2px solid #820340;
  border-radius: 16px;
  white-space: nowrap;
  gap: 0px;
  justify-content: center;
  align-items: center;
  left: -286px;
}
.floating-nav ul li .info_box_tel p {
  color: #9f004d;
  font-weight: 500;
  font-size: 32px;
  font-family: "taviraj", sans-serif;
  line-height: 1.2;
}
.floating-nav ul li .info_box_tel span {
  font-weight: 500;
  background: transparent;
  font-size: 12px;
  color: #000;
  padding: 0;
}
.floating-nav ul li:hover a .imgContent img {
  transform: scale(1.1);
}
.floating-nav ul li:hover .info_box {
  display: flex;
}
@keyframes floating-nav-move {
  0% {
    transform: translateX(55%);
  }
  100% {
    transform: translateX(0);
  }
}
.floating-nav:hover ul {
  animation: floating-nav-move 0.3s linear;
}
.floating-nav:hover ul li a {
  background: var(--gradation_color);
}
.floating-nav:hover ul li a span {
  display: block;
}
.floating-nav ul:not(.operator) li a {
  padding: 0 12px;
}
.floating-nav ul:not(.operator) li a .wrapper {
  padding: 20px 0;
  border-bottom: 1px solid #fff;
}
.floating-nav ul:not(.operator) li a img {
  display: block;
  width: 18px;
}
.floating-nav ul:not(.operator) li:first-child a {
  border-radius: 20px 0 0 0px;
}
.floating-nav ul:not(.operator) li:first-child a img {
  width: 36px;
}
.floating-nav ul:not(.operator) li:nth-child(2) a img {
  width: 22px;
}
.floating-nav ul:not(.operator) li:nth-child(3) a img {
  width: 32px;
}
.floating-nav ul:not(.operator) li:last-child a {
  border-radius: 0px 0 0 20px;
}
.floating-nav ul:not(.operator) li:last-child a .wrapper {
  border-bottom: none;
}
.floating-nav .operator {
  margin-top: 8px;
}
.floating-nav .operator li a {
  padding: 0 13px;
  border-radius: 20px 0 0 20px;
}
.floating-nav .operator li a .wrapper {
  padding: 13px 0;
}
.floating-nav .operator li a img {
  width: 20px;
}
@media screen and (max-width: 1024px) {
  .floating-nav {
    display: none;
  }
}

.sp_cover {
  animation: mv-sp-wrap 0.7s 4s forwards;
}
.sp_cover p:nth-child(1) {
  width: 40%;
}
.sp_cover p:nth-child(1)::after {
  animation: img-wrap_left 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}
.sp_cover p:nth-child(2)::after {
  animation: img-wrap_left 1.5s cubic-bezier(0.4, 0, 0.2, 1) 1.7s forwards;
}

.top_whats-ix {
  position: relative;
  overflow: hidden;
}
.top_whats-ix::before {
  content: "";
  width: 20.129vw;
  height: 20.129vw;
  background: url(../img/cn/home/boya2.png) center/100% 100% no-repeat;
  position: absolute;
  top: 0;
  right: 24%;
  z-index: -1;
}
.top_whats-ix::after {
  content: "";
  width: 27.11vw;
  height: 46.25vw;
  background: url(../img/cn/home/boya.png) center/100% 100% no-repeat;
  position: absolute;
  top: -18%;
  right: 2%;
  z-index: -2;
}
.top_whats-ix .top_title_section {
  margin-left: 7%;
  margin-right: 7%;
}
.top_whats-ix .section_catchcopy {
  margin-top: 40px;
}
.top_whats-ix .section_catchcopy .imgContent {
  width: 45.6%;
  margin-left: 4%;
}
.top_whats-ix .section_catchcopy ul {
  margin: clamp(30px, 2.3vw, 60px) auto 0;
  display: flex;
  width: 92%;
  gap: 2.7%;
}
.top_whats-ix .section_catchcopy ul li {
  flex: 1;
  font-size: clamp(14px, 1.41vw, 32px);
  font-weight: 700;
  border: 2px solid;
  -o-border-image: linear-gradient(90deg, #bb0723 -3.49%, #461b83 95.16%) 1;
     border-image: linear-gradient(90deg, #bb0723 -3.49%, #461b83 95.16%) 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top_whats-ix .section_catchcopy ul li span {
  position: relative;
  letter-spacing: 0.16em;
  padding: 1.8em 2.2em;
  padding-right: 4.44em;
}
.top_whats-ix .section_catchcopy ul li span::after {
  content: "";
  position: absolute;
  width: 2.8em;
  height: 3em;
  background: url(../img/cn/home/icon1.png) center/100% 100% no-repeat;
  top: 50%;
  right: 0em;
  transform: translateY(-50%);
}
.top_whats-ix .section_catchcopy ul li:nth-child(2) span::after {
  background-image: url(../img/cn/home/icon2.png);
}
@media screen and (max-width: 1024px) {
  .top_whats-ix::before {
    content: none;
  }
  .top_whats-ix .top_title_section {
    margin-left: auto;
    margin-right: auto;
  }
  .top_whats-ix .section_catchcopy .imgContent {
    width: 100%;
    max-width: 584px;
    margin-left: 0;
  }
  .top_whats-ix .section_catchcopy ul {
    width: 100%;
    flex-direction: column;
    gap: 2.13vw;
  }
  .top_whats-ix .section_catchcopy ul li {
    font-size: clamp(16px, 4.8vw, 36px);
    line-height: 1.556;
  }
  .top_whats-ix .section_catchcopy ul li span {
    padding: 1.4em 1.3em;
    padding-right: 4.44em;
    flex: 1;
  }
  .top_whats-ix .section_catchcopy ul li span:after {
    right: 1em;
  }
}

@media screen and (max-width: 600px) {
  .why_jpnap_contentsBox .list_1 dt {
    padding-right: 1.5em;
  }
}

.top_why_jpnap_message_content {
  width: 43.1vw;
}
@media screen and (max-width: 1024px) {
  .top_why_jpnap_message_content {
    width: 88.53%;
  }
  .top_why_jpnap_message_content p {
    text-wrap: pretty;
  }
  .top_why_jpnap_message_content p br {
    display: none;
  }
}

.customer.cn-zh .lower_section .inner-container {
  margin-bottom: 0;
}

.customer.cn-zh .title_section {
  margin-bottom: clamp(28px, 3.125vw, 40px);
}

@media screen and (min-width: 1025px) {
  .top_news_list_section .site_btn {
    font-size: 18px;
  }
}

.top_whats-ix_second_section {
  margin-top: 70px;
  margin-bottom: clamp(80px, 6.25vw, 120px);
}
.top_whats-ix_second_section h3 {
  font-size: clamp(18px, 1.875vw, 36px);
  font-weight: 700;
  text-align: center;
}
.top_whats-ix_second_section h3::before, .top_whats-ix_second_section h3::after {
  content: "•";
  color: #bb0723;
}
.top_whats-ix_second_section ul:not(.slick-dots) {
  margin: -20px auto 0;
  display: flex;
  width: 87%;
  justify-content: space-between;
}
.top_whats-ix_second_section ul:not(.slick-dots) li {
  font-size: clamp(14px, 1.41vw, 32px);
  aspect-ratio: 1/1;
  width: 31%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/cn/home/circle.png) center/80% 80% no-repeat;
}
.top_whats-ix_second_section .summary_text {
  text-align: center;
  margin-top: 20px;
  font-size: clamp(16px, 1.25vw, 24px);
}
.top_whats-ix_second_section .summary_text span {
  font-weight: 500;
  padding: 0 3.125em 1em;
  background: url(../img/cn/home/line51.png) bottom center/100% 2px no-repeat;
  display: inline-block;
}
.top_whats-ix_second_section .btnBox {
  margin-top: clamp(60px, 4.6vw, 90px);
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .top_whats-ix_second_section {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .top_whats-ix_second_section h3 {
    font-size: clamp(18px, 5.333vw, 30px);
    font-weight: 700;
    text-align: center;
  }
  .top_whats-ix_second_section ul {
    margin-top: 0;
    width: 100%;
    display: block;
  }
  .top_whats-ix_second_section ul li span {
    font-size: clamp(16px, 4.8vw, 36px);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
  }
  .top_whats-ix_second_section .summary_text {
    font-size: clamp(16px, 4.2667vw, 32px);
  }
  .top_whats-ix_second_section .summary_text span {
    padding-left: 0;
    padding-right: 0;
  }
}
.top_whats-ix_second_section ul.slick-dots {
  bottom: clamp(0px, 1.6vw, 36px);
}
.top_whats-ix_second_section ul.slick-dots li {
  width: auto;
  display: inline-block;
  background: none;
  align-items: center;
}
.top_whats-ix_second_section ul.slick-dots li button:before {
  color: #d9d9d9;
  font-size: 12px;
}

.top_network {
  padding-left: 6%;
  padding-right: 6%;
}
.top_network .top_title_section {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-left: 0.8vw;
  margin-right: 0.8vw;
}
.top_network .top_title_section > p {
  font-size: 14px;
}

.top_company_banner_list {
  max-width: 100%;
  margin: 0 auto;
}
.top_company_banner_list li {
  aspect-ratio: 320/215;
}
.top_company_banner_list li img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.top_company_banner_list .slick-prev, .top_company_banner_list .slick-next {
  top: 50%;
  color: transparent;
  border-radius: 50%;
}
.top_company_banner_list .slick-prev::before, .top_company_banner_list .slick-next::before {
  font-size: 40px;
  color: transparent;
}
.top_company_banner_list .slick-prev {
  left: -4%;
}
.top_company_banner_list .slick-prev::before {
  background: url(../img/cn/home/arrow_prv.png) center/100% 100% no-repeat;
}
.top_company_banner_list .slick-next {
  right: -2%;
}
.top_company_banner_list .slick-next::before {
  background: url(../img/cn/home/arrow_next.png) center/100% 100% no-repeat;
}

@media screen and (min-width: 1025px) {
  .top_our_dna_contentsBox .textContent h3 img {
    width: 85%;
  }
  .top_our_dna_contentsBox .textContent > p {
    margin-left: 5.33vw;
  }
}

.lower_contents .lower_section.what_ix .inner-container {
  margin-bottom: 0;
}

.lower_section.what_ix {
  text-align: center;
}
.lower_section.what_ix .lower_contents_title img {
  width: 45.4%;
}
@media screen and (min-width: 1025px) {
  .lower_section.what_ix .lower_contents_title {
    padding-top: 2vw;
    margin-bottom: clamp(40px, 3.906vw, 50px);
  }
}
@media screen and (max-width: 1024px) {
  .lower_section.what_ix .lower_contents_title {
    margin-top: clamp(40px, 5.906vw, 80px);
  }
  .lower_section.what_ix .lower_contents_title img {
    width: 100%;
    max-width: 540px;
  }
}
@media screen and (max-width: 1024px) {
  .lower_section.what_ix .basic_service_title_summary p {
    text-align: left;
  }
}

.basic_service_what_ix ul {
  display: flex;
  gap: 3.7%;
}
.basic_service_what_ix ul h3.title {
  font-size: clamp(18px, 1.875vw, 24px);
  color: #fff;
  padding: 0.35vw 0 0.35vw 1.6em;
  position: relative;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 1.833em;
}
.basic_service_what_ix ul h3.title::before {
  content: "";
  position: absolute;
  top: 56%;
  left: 0;
  transform: translateY(-50%);
  width: 1.2em;
  height: 1.2em;
  background: url(../img/common/title_dec.png) center/100% auto no-repeat;
}
.basic_service_what_ix ul p {
  line-height: 1.8;
}
.basic_service_what_ix ul li {
  aspect-ratio: 540/470;
  padding: 104px 5.3% 0 8%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url(../img/cn/ix/mask_group.png) bottom center/100% auto no-repeat;
}
.basic_service_what_ix .content_items_01 {
  margin-bottom: 40px;
}
.basic_service_what_ix .content_items_02 {
  max-width: 1000px;
  margin: 0 auto 120px;
  display: flex;
  align-items: center;
  gap: 4%;
}
.basic_service_what_ix .content_items_02 .arrow {
  position: relative;
}
.basic_service_what_ix .content_items_02 .arrow::after {
  content: "";
  width: 8px;
  height: 16px;
  background: url(../img/cn/ix/arrow.png) center/100% 100% no-repeat;
  position: absolute;
  top: 50%;
}
.basic_service_what_ix .content_items_02 img {
  aspect-ratio: 457/317;
}
@media screen and (max-width: 1024px) {
  .basic_service_what_ix ul {
    flex-direction: column;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .basic_service_what_ix ul h3.title {
    font-size: clamp(16px, 4.8vw, 28px);
  }
  .basic_service_what_ix ul p {
    font-size: clamp(14px, 4.267vw, 22px);
  }
  .basic_service_what_ix ul li {
    max-width: 600px;
    aspect-ratio: 375/420;
    padding-top: 0;
    padding-left: 6%;
    padding-right: 6%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .basic_service_what_ix ul li:nth-child(2) {
    margin-top: -10%;
    position: relative;
    z-index: 1;
  }
  .basic_service_what_ix .content_items_02 {
    flex-direction: column;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 80px;
    gap: clamp(24px, 6.4vw, 48px);
  }
  .basic_service_what_ix .content_items_02 img {
    max-width: 600px;
    aspect-ratio: initial;
  }
  .basic_service_what_ix .content_items_02 .imgBox2 img {
    margin-left: 4px;
  }
  .basic_service_what_ix .content_items_02 .arrow {
    transform: rotate(90deg) translateY(-3.125vw);
    margin-top: -25px;
  }
  .basic_service_what_ix .content_items_02 .arrow::after {
    width: max(8px, 2.133vw);
    height: max(16px, 4.666vw);
  }
}
@media screen and (max-width: 600px) {
  .basic_service_what_ix ul p {
    text-align: justify;
    text-wrap: pretty;
  }
  .basic_service_what_ix ul li {
    background-image: none;
    overflow: hidden;
    position: relative;
    justify-content: flex-start;
    padding-top: 10%;
  }
  .basic_service_what_ix ul li::after {
    content: "";
    position: absolute;
    aspect-ratio: 460/474;
    width: 110%;
    right: 0;
    bottom: 0;
    background: url(../img/cn/ix/mask_group_sp.png) bottom right/100% 100% no-repeat;
    z-index: -1;
  }
  .basic_service_what_ix ul li:nth-child(2) {
    padding-top: 26%;
  }
  .basic_service_what_ix ul li:nth-child(2)::after {
    background-position: top right;
  }
}

h3.what_ix_sub_title {
  font-size: clamp(24px, 2.5vw, 48px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.25em;
}
h3.what_ix_sub_title::before, h3.what_ix_sub_title::after {
  content: "•";
  color: #bb0723;
}

@media screen and (max-width: 1024px) {
  .what_ix_sub_title {
    font-size: clamp(20px, 8.53vw, 48px);
  }
}
.basic_service_what_ix_2 {
  margin-bottom: 120px;
}
.basic_service_what_ix_2 .container {
  width: 48%;
  min-width: 626px;
  margin: 0 auto 40px;
  position: relative;
}
.basic_service_what_ix_2 .container p {
  font-size: clamp(14px, 1.25vw, 24px);
  line-height: 1.8;
}
.basic_service_what_ix_2 .container p + p {
  margin-top: 1em;
}
.basic_service_what_ix_2 .container .dec1 {
  left: -10%;
}
.basic_service_what_ix_2 .imgContent {
  width: 57%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .basic_service_what_ix_2 {
    margin-bottom: 70px;
  }
  .basic_service_what_ix_2 .container {
    width: 90%;
    min-width: initial;
  }
  .basic_service_what_ix_2 .container p {
    font-size: clamp(14px, 4.2667vw, 24px);
  }
  .basic_service_what_ix_2 .container .dec1 {
    left: -50%;
  }
  .basic_service_what_ix_2 .imgContent {
    width: 95%;
    max-width: 750px;
    margin: 0 auto;
  }
}

.contact_section1 .lower_contents_title, .contact_section1 .lower_contents_sub_title {
  text-align: center;
}
.contact_section1 .lower_contents_title {
  margin-bottom: 1.3em !important;
  padding-bottom: 0 !important;
}
.contact_section1 .lower_contents_sub_title {
  font-size: clamp(14px, 1.09375vw, 22px);
}
.contact_section1 .inner-container {
  margin-bottom: 0 !important;
}

.contact_section1_content {
  margin: 56px 0 64px;
}
.contact_section1_content .item1 {
  width: 440px;
  margin: 0 auto;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 28px;
  background: url(../img/cn/contact/wechat_bk.png) center/cover;
}
.contact_section1_content .item1 h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  font-size: 20px;
  font-weight: 500;
}
.contact_section1_content .item1 h3 img {
  width: 32px;
}
.contact_section1_content .item1 .qr_imgContent {
  text-align: center;
}
.contact_section1_content .item1 .qr_imgContent img {
  width: 140px;
}
.contact_section1_content .item1 .qr_imgContent p {
  font-size: 12px;
  margin-top: 16px;
}
@media screen and (max-width: 600px) {
  .contact_section1_content .item1 {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    gap: 18px;
  }
  .contact_section1_content .item1 h3 {
    font-size: 18px;
    gap: 12px;
  }
}
.contact_section1_content .item2 {
  width: 280px;
  height: 52px;
  margin: 12px auto 0;
}
.contact_section1_content .item2 a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: linear-gradient(90deg, #BB0723 -3.49%, #461B83 95.16%);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 8px;
}
.contact_section1_content .item2 a img {
  width: 20px;
}
.contact_section1_content .item2 a span {
  padding-left: 8px;
}

.contact_section2 {
  margin: 0 auto 120px;
}
.contact_section2 > p {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  text-align: center;
}
.contact_section2 > p::before {
  content: "•";
  color: #bb0723;
  font-size: 1.5em;
}
.contact_section2 input, .contact_section2 textarea {
  background-color: #fff;
  padding: 1em;
  line-height: 1.5;
  font-size: 14px;
  width: 100%;
  color: #000;
}
.contact_section2 .required {
  display: flex;
  align-items: center;
}
.contact_section2 .required::after {
  content: "•";
  color: #bb0723;
  font-size: 1.5em;
}
.contact_section2 form {
  width: 600px;
  margin: 0 auto;
}
.contact_section2 form > div {
  margin-bottom: 40px;
}
.contact_section2 form > div > p {
  font-size: 18px;
  margin-bottom: 16px;
  line-height: 1;
}
.contact_section2 form .h-captcha {
  text-align: center;
}
.contact_section2 form .deco-file input[type=file] {
  display: none;
}
.contact_section2 form .deco-file .wrapper {
  background-color: #fff;
  padding: 8px;
}
.contact_section2 form .deco-file .inner {
  color: #757575;
  font-size: 14px;
  padding: 16px;
  border: 2px dashed #757575;
  text-align: center;
}
.contact_section2 form .deco-file .inner:hover label {
  opacity: 0.6;
}
.contact_section2 form .deco-file .inner p {
  color: #222;
}
.contact_section2 form .deco-file .inner p:not(.file-names) {
  margin-bottom: 12px;
  color: #757575;
}
.contact_section2 form .deco-file .inner.dragover label {
  opacity: 0.6;
}
.contact_section2 form .deco-file label {
  color: #757575;
  font-size: 14px;
  background-color: #D9D9D9;
  padding: 0.3em 0.5em;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}
.contact_section2 form .privacypolicyBox {
  margin: 48px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact_section2 form .privacypolicyBox input {
  width: 14px;
  height: 14px;
}
.contact_section2 form .privacypolicyBox p {
  line-height: 1.75;
  margin-bottom: 0;
  margin-left: 10px;
}
.contact_section2 form .privacypolicyBox p a {
  text-decoration: underline;
}
.contact_section2 form .submitBox {
  text-align: center;
}
.contact_section2 form .submitBox input[type=submit] {
  width: 260px;
  height: 60px;
  background: linear-gradient(90deg, #BB0723 -3.49%, #461B83 95.16%);
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.1em;
  border-radius: 99999px;
  transition: 0.3s;
}
.contact_section2 form .submitBox input[type=submit].disabled {
  opacity: 0.6;
  background: #757575;
  cursor: not-allowed;
}
.contact_section2 form .submitBox input[type=submit]:hover {
  opacity: 0.6;
}
@media screen and (max-width: 600px) {
  .contact_section2 form {
    width: 100%;
  }
  .contact_section2 form > div {
    margin-bottom: 32px;
  }
  .contact_section2 form > div > p {
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1;
  }
}

.internet_fundamentals .if_contents p {
  text-indent: 0;
  padding-left: 1em;
}

.internet_fundamentals .if_contents h4 {
  margin-left: 1em;
}

.internet_fundamentals .if_contents ul, .internet_fundamentals .if_contents ol {
  margin-left: 1em;
}

.traffic_page .lower_section .traffic_page_data_container, .traffic_page .traffic_page_data_section .traffic_page_data_container {
  overflow: initial;
}

.basic_service_whyJpnap .basic_service_contentBox > ul > li .times {
  font-size: clamp(48px, 4.7vw, 74px);
}
.basic_service_whyJpnap .basic_service_contentBox > ul > li .times p {
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .basic_service_whyJpnap .basic_service_contentBox > ul > li .times {
    font-size: clamp(32px, 14vw, 74px);
  }
}

.privacy-policy p {
  text-align: left;
  font-size: 1rem;
}
.privacy-policy ol {
  list-style: auto;
  padding-left: 1.5em;
}
.privacy-policy ol h3 {
  font-size: 1.1rem;
  text-align: left;
  margin-top: 0;
}
.privacy-policy ol p {
  margin: 0;
  font-size: 1rem;
}
.privacy-policy ol li {
  font-size: 1.1rem;
  margin-bottom: 28px;
}

#alert-message {
  color: #000;
}