@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を事前に指定しておく
 *　　最小幅と最大幅をデフォルト以外にしたい場合は、引数にそれぞれ単位付きの画面幅を入れる
 */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-delay: -1ms;
    animation-duration: 1ms;
    animation-iteration-count: 1;
    background-attachment: initial;
    scroll-behavior: auto;
    transition-delay: 0s;
    transition-duration: 0s;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  image-rendering: -webkit-optimize-contrast;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  margin: 0;
  padding: 0;
  border: none;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  color: var(--main_color);
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0;
}

hr {
  margin: 1rem 0;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
  overflow: visible;
}

hr:not([size]) {
  height: 1px;
}

address {
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin: 0;
}

ol,
ul {
  list-style: none;
}

a {
  color: inherit;
  background-color: transparent;
  text-decoration: none;
}

a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  touch-action: manipulation;
}

iframe,
img,
input,
select,
textarea {
  height: auto;
  max-width: 100%;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

svg:not([fill]) {
  fill: currentColor;
}

svg:not(:root) {
  overflow: hidden;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
  text-indent: 0;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: inherit;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
  text-transform: none;
}

button:focus {
  outline: dotted 1px;
  outline: -webkit-focus-ring-color auto 5px;
}

input,
button {
  overflow: visible;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input,
select,
textarea {
  background-color: transparent;
  border: none;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  padding: 0;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  text-transform: none;
  word-wrap: normal;
  box-sizing: content-box;
}

::-ms-expand {
  display: none;
}

[list]::-webkit-calendar-picker-indicator {
  display: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button:not(disabled),
[type=button]:not(disabled),
[type=reset]:not(disabled),
[type=submit]:not(disabled) {
  cursor: pointer;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

textarea {
  overflow: auto;
  -ms-overflow-style: scrollbar;
  resize: vertical;
  vertical-align: top;
}

fieldset {
  min-width: 0;
  padding: 0.35em 0.75em 0.625em;
  margin: 0;
  border: 1px solid inherit;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
  max-width: 100%;
  white-space: normal;
}

@media (max-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

dialog {
  background-color: inherit;
  border: solid;
  color: inherit;
  display: block;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

input::-moz-placeholder {
  opacity: 1;
}

input::placeholder {
  opacity: 1;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  -moz-appearance: none;
}

[type=tel],
[type=url],
[type=email],
[type=number] {
  direction: ltr;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

::-moz-ui-invalid {
  box-shadow: none;
}

::-moz-focusring {
  outline: 1px dotted ButtonText;
}

output {
  display: inline-block;
}

iframe {
  border: none;
}

audio,
canvas,
video {
  display: inline;
  display: inline-block;
  zoom: 1;
  max-width: 100%;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  display: inline-block;
  vertical-align: baseline;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

[aria-hidden=false][hidden=false] {
  display: initial;
}

[aria-hidden=false][hidden=false]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-delay: -1ms;
    animation-duration: 1ms;
    animation-iteration-count: 1;
    background-attachment: initial;
    scroll-behavior: auto;
    transition-delay: 0s;
    transition-duration: 0s;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  image-rendering: -webkit-optimize-contrast;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  margin: 0;
  padding: 0;
  border: none;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0;
}

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
  overflow: visible;
}

hr:not([size]) {
  height: 1px;
}

address {
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin: 0;
}

ol,
ul {
  list-style: none;
}

a {
  color: inherit;
  background-color: transparent;
  text-decoration: none;
}

a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  touch-action: manipulation;
}

iframe,
img,
input,
select,
textarea {
  height: auto;
  max-width: 100%;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

svg:not([fill]) {
  fill: currentColor;
}

svg:not(:root) {
  overflow: hidden;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
  text-indent: 0;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: inherit;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
  text-transform: none;
}

button:focus {
  outline: dotted 1px;
  outline: -webkit-focus-ring-color auto 5px;
}

input,
button {
  overflow: visible;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input,
select,
textarea {
  background-color: transparent;
  border: none;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  padding: 0;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  text-transform: none;
  word-wrap: normal;
  box-sizing: content-box;
}

::-ms-expand {
  display: none;
}

[list]::-webkit-calendar-picker-indicator {
  display: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button:not(disabled),
[type=button]:not(disabled),
[type=reset]:not(disabled),
[type=submit]:not(disabled) {
  cursor: pointer;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

textarea {
  overflow: auto;
  -ms-overflow-style: scrollbar;
  resize: vertical;
  vertical-align: top;
}

fieldset {
  min-width: 0;
  padding: 0.35em 0.75em 0.625em;
  margin: 0;
  border: 1px solid inherit;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
  max-width: 100%;
  white-space: normal;
}

@media (max-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

dialog {
  background-color: inherit;
  border: solid;
  color: inherit;
  display: block;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

input::-moz-placeholder {
  opacity: 1;
}

input::placeholder {
  opacity: 1;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  -moz-appearance: none;
}

[type=tel],
[type=url],
[type=email],
[type=number] {
  direction: ltr;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

::-moz-ui-invalid {
  box-shadow: none;
}

::-moz-focusring {
  outline: 1px dotted ButtonText;
}

output {
  display: inline-block;
}

iframe {
  border: none;
}

audio,
canvas,
video {
  display: inline;
  display: inline-block;
  zoom: 1;
  max-width: 100%;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  display: inline-block;
  vertical-align: baseline;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

[aria-hidden=false][hidden=false] {
  display: initial;
}

[aria-hidden=false][hidden=false]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

header {
  background-color: #000;
  font-size: 13px;
  transition: 0.4s;
  color: var(--main_color);
  background-color: #000;
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
header a.link_det {
  cursor: default;
}
@media screen and (max-width: 1239px) {
  header {
    background-color: transparent;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100vw;
    z-index: 999;
  }
}

@media screen and (max-width: 1239px) {
  body.scroll header .openbtn_wrap {
    background-color: #1f1f1f;
  }
}
.header_container {
  display: flex;
  justify-content: space-between;
}
.header_container .logoBox {
  position: relative;
  z-index: 99999;
  width: 12vw;
  max-width: 154px;
  background-color: #fff;
  border-radius: 0 0 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 154/90;
}
.header_container .logoBox img {
  width: 57.3%;
  transition: 0.3s;
}
.header_container .logoBox:hover img {
  opacity: 0.6;
}
@media screen and (max-width: 1024px) {
  .header_container .logoBox {
    width: 34.62%;
    max-width: 180px;
    min-width: 150px;
  }
}
@media screen and (max-width: 600px) {
  .header_container .logoBox {
    width: 21.33vw;
    max-width: 120px;
    min-width: initial;
    min-height: 50px;
    border-radius: 0 0 13px 0;
    aspect-ratio: 80/52;
  }
  .header_container .logoBox img {
    width: 14.933vw;
    max-width: 180px;
    min-width: initial;
    aspect-ratio: 56/33;
    margin-left: -3px;
  }
}

@keyframes show_heder {
  100% {
    opacity: 1;
  }
}
.memu_container {
  flex: 1;
  display: flex;
}
@media (min-width: 1240px) {
  .memu_container {
    display: flex !important;
  }
}
@media screen and (max-width: 1239px) {
  .memu_container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    background-color: #f9f9f9;
    display: block;
    display: none;
    padding: 100px 4vw 80px;
    overflow-y: scroll;
  }
}

nav.header-menu {
  margin-left: 1em;
  flex: 1;
  display: flex;
}
nav.header-menu ul {
  display: flex;
  align-items: center;
  width: 100%;
}
nav.header-menu ul li {
  display: flex;
  align-items: center;
  transition: 0.4s;
  position: relative;
}
nav.header-menu ul li a {
  border-right: 1px solid rgba(182, 179, 179, 0.5);
  padding: 0.9em 1.23em;
  max-height: 46px;
  font-weight: 600;
}
nav.header-menu ul li .has_child {
  position: relative;
  padding-right: 2.46em;
}
nav.header-menu ul li .has_child::after {
  content: "";
  position: absolute;
  top: 45%;
  right: 1.23em;
  width: 0.6em;
  height: 0.6em;
  border-right: 2px solid var(--main_color);
  border-bottom: 2px solid var(--main_color);
  transform: rotate(45deg) translateY(-50%);
}
nav.header-menu ul .child_menu {
  position: absolute;
  width: auto;
  min-width: 110%;
  top: 99.25px;
  display: none;
  background-color: #fff;
  color: #000;
  padding: 20px;
}
nav.header-menu ul .child_menu li {
  border: none;
  margin-bottom: 1em;
}
nav.header-menu ul .child_menu li a {
  white-space: nowrap;
  border: none;
  color: #000;
  padding: 0 0 0 2.15em;
  transition: 0.3s;
}
nav.header-menu ul .child_menu li a::before {
  content: "";
  width: 1.38em;
  height: 1.38em;
  background: url(../img/common/arrow01.png) center/100% 100% no-repeat;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
nav.header-menu ul .child_menu li a:hover {
  color: var(--sub_color);
}
nav.header-menu ul .child_menu li a:hover::before {
  transform: translateY(-50%) translateX(0.3em);
}
nav.header-menu ul .child_menu li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1239px) {
  nav.header-menu ul li {
    font-size: clamp(14px, 3.733vw, 24px);
    font-weight: 700;
    display: flex;
    flex-direction: column;
  }
  nav.header-menu ul li a {
    color: #1f1f1f;
    display: block;
    width: 100%;
    margin: 4px 0 !important;
    padding-left: 0;
    letter-spacing: 0.02em;
  }
  nav.header-menu ul li .pc {
    display: none !important;
  }
  nav.header-menu ul li.has_child_p {
    position: relative;
    align-items: flex-start;
  }
  nav.header-menu ul li.has_child_p::before {
    content: "";
    position: absolute;
    top: 0.8em;
    right: 1.23em;
    width: 0.6em;
    height: 0.6em;
    border-right: 2px solid var(--main_color);
    border-bottom: 2px solid var(--main_color);
    transform: rotate(45deg) translateY(-50%);
    border-color: #e50049;
    cursor: pointer;
  }
  nav.header-menu ul li.has_child_p::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0.2em;
    width: 2em;
    height: 2em;
    cursor: pointer;
  }
  nav.header-menu ul li.has_child_p.menu_open::before {
    transition: 0.2s;
    right: 0.8em;
    transform: rotate(-135deg) translateY(-50%);
  }
  nav.header-menu ul li .has_child {
    width: calc(100% - 5em);
    padding-right: 2.46em;
  }
  nav.header-menu ul li .has_child::after {
    content: none;
  }
  nav.header-menu ul .child_menu {
    position: static;
    background-color: #f9f9f9;
    width: 100%;
    min-width: initial;
  }
  nav.header-menu ul .child_menu li {
    margin-bottom: 0.3em;
  }
}
nav.header-menu > ul > li {
  height: 100%;
}
nav.header-menu > ul > li:hover {
  background-color: #b40030;
}
nav.header-menu > ul > li:hover > a {
  border-color: transparent;
}
nav.header-menu > ul > li > a {
  margin: 16px 0;
  display: flex;
  align-items: center;
  transition: 0.4s;
}
@media screen and (max-width: 1239px) {
  nav.header-menu {
    margin-left: 0;
  }
  nav.header-menu > ul {
    flex-direction: column;
  }
  nav.header-menu > ul > li {
    width: 100%;
    border-bottom: 1px solid rgba(182, 179, 179, 0.5);
    padding-bottom: 0.1em;
    margin-bottom: 0.5em !important;
  }
  nav.header-menu > ul > li > a {
    border-right: none;
    padding-top: 0;
    padding-bottom: 0.5em;
  }
  nav.header-menu > ul > li:hover {
    background-color: transparent;
  }
}
nav.second_nav {
  margin-right: clamp(20px, 2.8vw, 80px);
  align-self: center;
}
nav.second_nav > ul {
  display: flex;
  align-items: center;
  gap: 18px;
}
nav.second_nav .contact_btn_wrap {
  overflow: hidden;
  display: flex;
}
nav.second_nav .contact_btn {
  padding: 0.95em 1.7em;
  border-radius: 3.85em;
  background: var(--gradation_color);
  transition: 0.4s;
  position: relative;
  z-index: 3;
  font-size: 12px;
}
nav.second_nav .contact_btn::before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 3.85em;
  /*色や形状*/
  background: #fff;
  width: 0;
  height: 100%;
}
@media (min-width: 1025px) {
  nav.second_nav .contact_btn:hover {
    color: #000;
  }
  nav.second_nav .contact_btn:hover::before {
    animation: skewanime 0.5s forwards;
  }
}
nav.second_nav .lang_btn_wrap {
  display: flex;
}
nav.second_nav .lang_btn_wrap a {
  font-family: "taviraj";
  display: flex;
  align-items: center;
}
nav.second_nav .lang_btn_wrap .has_child {
  position: relative;
  padding: 20px 1.8em 20px 0;
}
nav.second_nav .lang_btn_wrap .has_child img {
  width: 1.23vw;
  margin-right: 0.4em;
}
@media (min-width: 1920px) {
  nav.second_nav .lang_btn_wrap .has_child img {
    width: 23.6px;
  }
}
nav.second_nav .lang_btn_wrap .has_child::after {
  content: "";
  position: absolute;
  top: 46%;
  right: 0.8em;
  width: 0.6em;
  height: 0.6em;
  border-right: 1px solid var(--main_color);
  border-bottom: 1px solid var(--main_color);
  transform: rotate(45deg) translateY(-50%);
}
nav.second_nav .lang_btn_wrap .child_menu {
  position: absolute;
  width: auto;
  top: 1em;
  display: none;
  background-color: #fff;
  color: #000;
  padding: 20px;
}
nav.second_nav .lang_btn_wrap .child_menu li {
  border: none;
  position: relative;
}
nav.second_nav .lang_btn_wrap .child_menu li a {
  white-space: nowrap;
  border: none;
  color: #000;
  padding: 0 0 0 1.5em;
  transition: 0.3s;
}
nav.second_nav .lang_btn_wrap .child_menu li a::before {
  content: "";
  width: 1.38em;
  height: 1.38em;
  background: url(../img/common/arrow01.png) center/100% 100% no-repeat;
  position: absolute;
  left: -1em;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
nav.second_nav .lang_btn_wrap .child_menu li a:hover {
  color: var(--sub_color);
}
nav.second_nav .lang_btn_wrap .child_menu li a:hover::before {
  transform: translateY(-50%) translateX(0.3em);
}
@media screen and (max-width: 1239px) {
  nav.second_nav {
    margin-right: 0;
  }
  nav.second_nav > ul {
    flex-direction: column-reverse;
    gap: 40px;
  }
  nav.second_nav > ul .contact_btn {
    font-size: clamp(15px, 3.733vw, 24px);
    padding: 0.667em 3.889em 0.667em 1.778em;
    position: relative;
  }
  nav.second_nav > ul .contact_btn::after {
    content: "";
    width: 2.1333em;
    height: 2.1333em;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1.333em;
    background: url(../img/common/icon-plane2.svg) center/100% auto no-repeat;
  }
  nav.second_nav .lang_btn_wrap {
    color: #1f1f1f;
    width: 100%;
    justify-content: flex-start;
    font-size: clamp(13px, 3.4667vw, 20px);
    margin-top: 20px;
  }
  nav.second_nav .lang_btn_wrap a {
    padding: 0 !important;
    line-height: 1.7;
    vertical-align: top;
    display: inline;
  }
  nav.second_nav .lang_btn_wrap a img {
    display: none;
  }
  nav.second_nav .lang_btn_wrap .has_child {
    padding-left: 1.67em !important;
    font-size: 20px;
  }
  nav.second_nav .lang_btn_wrap .has_child span {
    color: #1f1f1f;
  }
  nav.second_nav .lang_btn_wrap .has_child:after {
    content: "/";
    position: static;
    margin: 0 0.3em;
    transform: none;
    width: auto;
    height: auto;
  }
  nav.second_nav .lang_btn_wrap .has_child::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.23em;
    height: 1.23em;
    background: url(../img/common/icon-earth.svg) center/100% auto no-repeat;
  }
  nav.second_nav .lang_btn_wrap .child_menu {
    display: block;
    position: static;
    background-color: transparent !important;
    padding: 0 !important;
    display: flex !important;
  }
  nav.second_nav .lang_btn_wrap .child_menu li {
    font-size: 20px;
  }
  nav.second_nav .lang_btn_wrap .child_menu li:not(:last-child)::after {
    content: "/";
    margin: 0 0.7em;
    transform: none;
    color: #1f1f1f;
    font-size: 0.8479em;
    opacity: 0.7;
  }
  nav.second_nav .lang_btn_wrap .child_menu a {
    text-decoration: underline;
    color: #727272;
  }
  nav.second_nav .lang_btn_wrap .child_menu a::before {
    content: none !important;
  }
}

.openbtn_wrap {
  display: none;
  align-self: center;
  position: relative;
  z-index: 99999;
  padding: 0.6em 1.2em;
  border-radius: 30px;
  font-size: clamp(14px, 4.3vw, 24px);
}
.openbtn_wrap::before {
  content: "Menu";
  font-family: "taviraj";
  margin-right: 0.7em;
}
@media screen and (max-width: 1239px) {
  .openbtn_wrap {
    display: flex;
    align-items: center;
  }
}

.openbtn1 {
  position: relative; /*ボタン内側の基点となるためrelativeを指定*/
  z-index: 9999;
  border-radius: 5px;
  width: clamp(18px, 4.8vw, 36px);
  height: clamp(14px, 3.733vw, 28px);
}

/*ボタン内側*/
.openbtn1 span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  height: 2px;
  min-height: 1.5px;
  border-radius: 2px;
  background: #fff;
  width: clamp(18px, 4.8vw, 36px);
}

.openbtn1 span:nth-of-type(1) {
  top: 0;
}

.openbtn1 span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}

.openbtn1 span:nth-of-type(3) {
  bottom: 0;
}

.openbtn_wrap.active {
  background-color: initial !important;
}
.openbtn_wrap.active::before {
  content: "Close";
  color: #1f1f1f;
}
.openbtn_wrap.active .openbtn1 span {
  background-color: #1f1f1f;
  height: 1px;
}
.openbtn_wrap.active .openbtn1 span:nth-of-type(1) {
  transform: translateY(0.5em) rotate(-45deg);
  width: 100%;
  top: 2px;
}
.openbtn_wrap.active .openbtn1 span:nth-of-type(2) {
  opacity: 0; /*真ん中の線は透過*/
}
.openbtn_wrap.active .openbtn1 span:nth-of-type(3) {
  transform: translateY(-0.5em) rotate(45deg);
  width: 100%;
}
@media screen and (max-width: 600px) {
  .openbtn_wrap.active .openbtn1 span:nth-of-type(1) {
    transform: translateY(0.25em) rotate(-45deg);
    top: 0;
  }
  .openbtn_wrap.active .openbtn1 span:nth-of-type(3) {
    transform: translateY(-0.5em) rotate(45deg);
  }
}
@media screen and (max-width: 374px) {
  .openbtn_wrap.active .openbtn1 span:nth-of-type(1) {
    transform: translateY(0.35em) rotate(-45deg);
    top: 0;
  }
}

.footer_main {
  background-color: #f9f9f9;
  border-radius: 2.34vw 2.34vw 0 0;
  padding: 3.6vw 0 5.3vw;
}
.footer_main * {
  color: var(--black_color);
}
@media (min-width: 1920px) {
  .footer_main {
    padding: 70px 0 101px;
  }
}

.footer_main_container {
  display: flex;
  align-items: flex-start;
  gap: 4.6875vw;
}
.footer_main_container .footer_logo {
  max-width: 97px;
  transition: 0.3s;
}
.footer_main_container .footer_logo:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1024px) {
  .footer_main {
    border-radius: 30px 30px 0 0;
  }
  div.footer_main_container {
    width: 89vw;
    flex-direction: column;
    gap: 4vw;
  }
  div.footer_main_container .footer_logo {
    margin: 0 auto;
    max-width: initial;
    width: clamp(50px, 17.8vw, 150px);
  }
}
.footer_nav {
  flex: 1;
  display: flex;
  justify-content: space-between;
  gap: 2.1em;
  font-size: clamp(14px, 1.09vw, 20px);
}
.footer_nav > ul > li > a,
.footer_nav > ul > li > span {
  font-weight: 600;
  display: inline-block;
  font-size: 1.07em;
  margin-bottom: 1em;
}
.footer_nav li a {
  transition: 0.4s;
}
.footer_nav li a:hover {
  color: #9f004d;
}
.footer_nav .footer-child_menu li {
  margin-bottom: 0.7em;
}
.footer_nav .footer-child_menu li a,
.footer_nav .footer-child_menu li span {
  display: inline-block;
}
.footer_nav .footer-child_menu li a::before,
.footer_nav .footer-child_menu li span::before {
  content: "-";
  margin-right: 0.3em;
  font-weight: 500;
}
@media screen and (max-width: 1239px) {
  .footer_nav {
    flex-wrap: wrap;
  }
  .footer_nav > ul {
    width: 30%;
  }
}
@media screen and (max-width: 1024px) {
  .footer_nav {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
  .footer_nav ul {
    width: 100%;
  }
  .footer_nav ul li {
    font-size: clamp(12px, 3.2vw, 20px);
  }
  .footer_nav ul li a,
  .footer_nav ul li span {
    font-size: clamp(12px, 3.2vw, 20px);
    cursor: pointer;
    margin-bottom: 0;
  }
  .footer_nav ul li.has_child {
    width: 100%;
    position: relative;
    padding-right: 2.46em;
  }
  .footer_nav ul li.has_child::after {
    content: "";
    position: absolute;
    top: 0.5em;
    right: 1.23em;
    width: 0.6em;
    height: 0.6em;
    border-right: 2px solid #e50049;
    border-bottom: 2px solid #e50049;
    transform: rotate(45deg) translateY(-50%);
  }
  .footer_nav ul li.has_child.menu_open::after {
    transition: 0.2s;
    right: 0.8em;
    transform: rotate(-135deg) translateY(-50%);
  }
  .footer_nav > ul > li {
    border-bottom: 1px solid #bcbcbc;
    padding-bottom: 1em;
    margin-bottom: 1em;
  }
  .footer_nav > ul > li > a br {
    display: none;
  }
  .footer_nav .footer-child_menu {
    padding-left: 1em;
    margin-top: 1em;
    width: 100%;
    font-size: clamp(12px, 3.2vw, 20px);
    display: none;
  }
  .footer_nav .footer-child_menu li {
    font-size: clamp(12px, 3.2vw, 20px);
  }
  .footer_nav .footer-child_menu li a {
    font-size: 0.92em;
  }
}

.footer_bottom {
  padding: 2.66vw 0 12vw;
  background-color: #363636;
}
@media (min-width: 1920px) {
  .footer_bottom {
    padding: 51px 0 230px;
  }
}
@media screen and (max-width: 1024px) {
  .footer_bottom {
    padding-bottom: 0;
    padding-top: 40px;
  }
}

.footer_bottom_contentsBox {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer_bottom_contentsBox .company_content {
  transition: 0.4s;
}
.footer_bottom_contentsBox .company_content * {
  color: var(--main_color);
}
.footer_bottom_contentsBox .company_content:hover {
  opacity: 0.7;
}
.footer_bottom_contentsBox .company_content img {
  width: 10.9vw;
  max-width: 180px;
}
.footer_bottom_contentsBox .company_content h2 {
  font-size: clamp(16px, 1.41vw, 22px);
  font-weight: 600;
}
.footer_bottom_contentsBox p {
  font-size: 12px;
  font-family: "taviraj";
}
@media screen and (max-width: 1024px) {
  .footer_bottom_contentsBox {
    margin-top: 34px !important;
    padding-bottom: 34px;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer_bottom_contentsBox .company_content img {
    width: 37.33vw;
    min-width: 130px;
    max-width: initial;
    margin-left: -2vw;
  }
  .footer_bottom_contentsBox .company_content h2 {
    font-size: clamp(14px, 4.267vw, 24px);
    margin-bottom: 1em;
  }
  .footer_bottom_contentsBox p {
    font-size: clamp(10px, 2.66vw, 15px);
  }
}

footer .btnBox2 {
  position: relative !important;
  opacity: 0 !important;
}
footer .btnBox {
  z-index: -1;
  opacity: 0;
  position: fixed;
  left: 0;
  right: 0;
  transition: 0.3s;
  bottom: 5%;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
footer .btnBox .site_btn02 {
  border: 2px solid #f9f9f9;
}
footer .btnBox .site_btn02::after {
  content: none;
}
footer .btnBox .site_btn02 svg {
  position: absolute;
  padding-left: 0.556em;
  width: auto;
  height: 40%;
  border-left: 1px dashed #f9f9f9;
  right: 1.5em;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.4s;
}
footer .btnBox .site_btn02 svg path {
  transition: 0.4s;
}
footer .btnBox .site_btn02:hover {
  border-color: #1f1f1f;
}
footer .btnBox .site_btn02:hover svg {
  border-color: #1f1f1f;
}
footer .btnBox .site_btn02:hover svg path {
  fill: #1f1f1f !important;
}
footer .btnBox.active:not(.btnBox2) {
  opacity: 1;
  z-index: 999;
}
@media screen and (max-width: 1024px) {
  footer .btnBox {
    transition: 0.3s;
    width: 100%;
    z-index: 99;
  }
  footer .btnBox .site_btn02 {
    padding-top: 1em;
    padding-bottom: 1em;
  }
  footer .btnBox.end_position:not(.btnBox2) {
    position: static;
  }
  footer .btnBox.end_position.btnBox2 {
    position: relative;
    z-index: -100;
    display: none !important;
  }
}

* {
  box-sizing: border-box;
}

tw,
.tw {
  display: inline-block;
}

.imgBox {
  display: flex;
  align-items: center;
  justify-content: center;
}
.imgBox img {
  width: 100%;
  height: auto;
}

html {
  font-family: "noto sans", "Helvetica", "Hiragino Sans", "Arial", "Yu Gothic", sans-serif;
  font-weight: 400;
}

body {
  color: var(--main_color);
  background-color: #111111;
  overflow-x: hidden;
  margin: 0 auto;
}

.font_taviraj {
  font-family: "taviraj", sans-serif;
}

.sp,
.tab {
  display: none;
}

@media screen and (max-width: 1024px) {
  .tab {
    display: block;
  }
  .tab_hide {
    display: none !important;
  }
}
@media screen and (max-width: 600px) {
  .sp {
    display: block;
  }
  .sp_hide {
    display: none !important;
  }
}
* {
  box-sizing: border-box;
}

@font-face {
  /*フォントの名前*/
  font-family: "noto sans";
  /*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
  src: url("../font/NotoSansJP-Bold.woff2") format("woff2"), url("../font/NotoSansJP-Bold.woff") format("woff");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  /*フォントの名前*/
  font-family: "noto sans";
  /*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
  src: url("../font/NotoSerifJP-SemiBold.woff2") format("woff2"), url("../font/NotoSerifJP-SemiBold.woff") format("woff");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  /*フォントの名前*/
  font-family: "noto sans";
  /*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
  src: url("../font/NotoSansJP-Medium.woff2") format("woff2"), url("../font/NotoSansJP-Medium.woff") format("woff");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  /*フォントの名前*/
  font-family: "noto sans";
  /*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
  src: url("../font/NotoSansJP-Regular.woff2") format("woff2"), url("../font/NotoSansJP-Regular.woff") format("woff");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  /*フォントの名前*/
  font-family: "taviraj";
  /*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
  src: url("../font/taviraj-Regular.woff2") format("woff2"), url("../font/taviraj-Regular.woff") format("woff");
  font-weight: 400;
  font-display: swap;
}
:root {
  --main_color: #f9f9f9;
  --sub_color: #9f004d;
  --black_color: #1f1f1f;
  --yellow_color: #fff100;
  --gradation_color: linear-gradient(90deg, #bb0723 -3.49%, #461b83 95.16%);
  --lower_margin-01: clamp(80px, 7.82vw, 150px);
  --lower_margin-02: clamp(40px, 4vw, 77px);
  --lower_margin-03: clamp(60px, 4.9vw, 94px);
  --lower_margin-04: clamp(30px, 2.6vw, 50px);
  --lower_margin-05: clamp(30px, 2.6vw, 50px);
}
@media (max-width: 1024px) {
  :root {
    --lower_margin-01: clamp(80px, 21vw, 160px);
    --lower_margin-02: clamp(58px, 16vw, 100px);
    --lower_margin-03: clamp(26px, 6.9vw, 60px);
    --lower_margin-04: clamp(40px, 10.67vw, 100px);
    --lower_margin-05: clamp(26px, 6.9vw, 50px);
  }
}

body {
  max-width: 100vw;
  min-width: 320px;
  max-width: 1920px;
}
@media screen and (max-width: 1239px) {
  body.home {
    padding-top: 86.5px;
  }
}

.inner-container {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
}
@media screen and (max-width: 374px) {
  .inner-container {
    width: 95%;
  }
}

.imgBox {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp {
  display: none !important;
}

.sp-f {
  display: none !important;
}

.tab-t {
  display: none !important;
}

@media screen and (max-width: 1024px) {
  .tab-t {
    display: block !important;
  }
  .tab-hide {
    display: none !important;
  }
}
@media screen and (max-width: 600px) {
  .sp {
    display: block !important;
  }
  .sp-f {
    display: flex !important;
  }
  .pc {
    display: none !important;
  }
}
.site_btn {
  display: inline-block;
  font-size: clamp(14px, 1.41vw, 22px);
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.667em 3.889em 0.667em 1.778em;
  position: relative;
  z-index: 3;
  border-radius: 3.9vw;
  transition: 0.4s;
}
.site_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2em;
  transform: translateY(-50%);
  width: 1.22em;
  height: 1.22em;
  transition: 0.5s;
}
.site_btn::before {
  border-radius: 3.9vw;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: 0.4s;
}
@media screen and (max-width: 1024px) {
  .site_btn {
    font-size: clamp(14px, 4vw, 22px);
    padding: 0.667em 5.7333em 0.667em 2.1333em;
    border-radius: 3.333em;
  }
  .site_btn::after {
    right: 3em;
  }
}

.site_btn01 {
  color: #1f1f1f;
  background-color: #f9f9f9;
  border: 1px solid #9f004d;
}
.site_btn01::after {
  background: url(../img/common/arrow01.svg) center/100% 100% no-repeat;
}
.site_btn01::before {
  content: "";
  border-radius: 3.85em;
  /*色や形状*/
  background: #fff;
  width: 0;
  height: 100%;
  background: var(--gradation_color);
}
@media (min-width: 1025px) {
  .site_btn01:hover {
    color: #fff;
  }
  .site_btn01:hover::after {
    background-image: url(../img/common/arrow02.svg) !important;
    animation: arrow_move 0.5s 0.5s forwards;
  }
  .site_btn01:hover::before {
    animation: skewanime 0.5s forwards;
  }
}

.site_btn02 {
  color: var(--main_color);
  background: var(--gradation_color);
}
.site_btn02::after {
  background: url(../img/common/arrow02.svg) center/100% 100% no-repeat;
}
.site_btn02::before {
  content: "";
  border-radius: 3.85em;
  /*色や形状*/
  width: 0;
  height: 100%;
  background-color: var(--main_color);
}
@media (min-width: 1025px) {
  .site_btn02:hover {
    color: #1f1f1f;
  }
  .site_btn02:hover::after {
    background-image: url(../img/common/arrow01.svg) !important;
    animation: arrow_move 0.3s 0.2s forwards;
  }
  .site_btn02:hover::before {
    animation: skewanime 0.5s forwards;
  }
}

@keyframes mv-wrap {
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes mv-sp-wrap {
  99% {
    z-index: 99999;
    opacity: 0;
  }
  100% {
    opacity: 0;
    z-index: -100;
  }
}
@keyframes catchcopy-wrap {
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes img-wrap {
  100% {
    width: 100%;
  }
}
@keyframes img-wrap_tab {
  100% {
    width: 80%;
  }
}
@keyframes img-wrap_left {
  100% {
    transform: translateX(130%);
  }
}
@keyframes river-wrap {
  70% {
    opacity: 0.5;
    z-index: -1;
  }
  100% {
    opacity: 0.6;
    z-index: -1;
  }
}
@keyframes river-wrap_main {
  5% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1) translateX(0);
  }
}
@keyframes sun-wrap {
  100% {
    opacity: 1;
  }
}
@keyframes circle_fadeout {
  50% {
    opacity: 0.7;
  }
  99% {
    z-index: 0;
  }
  100% {
    opacity: 0;
    z-index: -10;
    transform: scale(2);
  }
}
@keyframes circle_fadein {
  25% {
    transform: scale(0.3);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes circle_fadein_2 {
  100% {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}
@keyframes skewanime {
  100% {
    width: 100%; /*画面の見えていない左から右へ移動する終了地点*/
    left: 0;
  }
}
@keyframes arrow_move {
  100% {
    right: 1.5em;
  }
}
@keyframes arrow_move_2 {
  100% {
    right: 5%;
  }
}
/*  フェードインアニメーション */
.fadeIn {
  opacity: 0;
  transition: 1s;
}

.fadeIn.is-show {
  opacity: 1;
}

.fadeIn2 {
  opacity: 0;
  transition: 2s;
}

.fadeIn2.is-show {
  opacity: 1;
}

.fadeIn3 {
  opacity: 0;
  transition: 3s;
}

.fadeIn3.is-show {
  opacity: 1;
}

.fadeIn_up {
  opacity: 0;
  transform: translate(0, 25%);
  transition: 1s;
}

.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_up2 {
  opacity: 0;
  transform: translate(0, 40%);
  transition: 1.5s;
}

.fadeIn_up2.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_up2-2 {
  opacity: 0;
  transform: translate(0, 40%);
  transition: 0.5s;
}

.fadeIn_up2-2.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_up3 {
  opacity: 0;
  transform: translate(0, 75%);
  transition: 2s;
}

.fadeIn_up3.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_up4 {
  opacity: 0;
  transform: translate(0, 75%);
  transition: s;
}

.fadeIn_up4.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_spin {
  opacity: 0;
  transform: rotateY(180deg);
  transition: 1s;
}

.fadeIn_spin.is-show {
  transform: rotateY(0deg);
  opacity: 1;
}

.fadeIn_spin2 {
  opacity: 0;
  transition: 3s;
}

.fadeIn_spin2.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_left {
  opacity: 0;
  transform: translate(-130%, 0);
  transition: 1.5s;
}

.fadeIn_left.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_right {
  opacity: 0;
  transform: translate(25%, 0);
  transition: 2s;
}

.fadeIn_right.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_right2 {
  opacity: 0;
  transform: translate(75%, 0);
  transition: 1.5s;
}

.fadeIn_right2.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_right3 {
  opacity: 0;
  transform: translate(100%, 0);
  transition: 2.5s;
}

.fadeIn_right3.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_scale {
  opacity: 0;
  transform: scale(0.8);
  transition: 0.8s;
}

.fadeIn_scale.is-show {
  transform: scale(1);
  opacity: 1;
}

.fadeIn_scale2 {
  opacity: 0;
  transform: scale(0.1);
  transition: 1.5s;
}

.fadeIn_scale2.is-show {
  transform: scale(1);
  opacity: 1;
}

.fadeIn_scaleUp {
  opacity: 0;
  transform: scale(0);
  transition: 0.5s;
}

.fadeIn_scaleUp.is-show {
  transform: scale(1);
  opacity: 1;
}

.text_inview {
  opacity: 0;
}

.text_inview2 {
  width: 0.1%;
  transition: 2s;
  position: relative;
}

.text_inview2.is-show {
  opacity: 1;
  width: 100%;
}

a.hover_animation {
  transition: 0.4s;
}
a.hover_animation:hover {
  opacity: 0.7;
  text-decoration: unset !important;
}

.not_found_content {
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.08em;
  min-height: 60vh;
}
.not_found_content h2 {
  text-align: left;
}
.not_found_content h3 {
  font-size: clamp(20px, 1.875vw, 36px);
  font-weight: 700;
  margin-top: 3em;
}
.not_found_content p {
  font-size: clamp(14px, 1.875vw, 22px);
  margin-bottom: 2em;
}

.pt_pb__sm {
  padding-top: 1em;
  padding-bottom: 1em;
}

.text_std {
  font-size: clamp(14px, 1.11vw, 19px);
  line-height: 1.8;
}
@media screen and (max-width: 600px) {
  .text_std {
    font-size: clamp(14px, 4vw, 18px);
  }
}

.top_container {
  width: 93vw;
  margin: 0 auto;
}
@media (min-width: 1920px) {
  .top_container {
    width: 93%;
  }
}

.top_container_02 {
  width: 86vw;
  margin: 0 auto;
}
@media (min-width: 1920px) {
  .top_container_02 {
    width: 86%;
  }
}
@media screen and (max-width: 600px) {
  .top_container_02 {
    width: 88vw;
  }
}

.top_title_section .title {
  font-family: "taviraj";
  font-size: clamp(20px, 1.56vw, 26px);
  color: #fff;
  padding-left: 1.6em;
  position: relative;
  font-weight: 400;
  letter-spacing: 0.06em;
}
.top_title_section .title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.2em;
  height: 1.2em;
  background: url(../img/home/top_title_dec.png) center/100% auto no-repeat;
}
.top_title_section .sub_title {
  font-weight: 600;
  font-size: clamp(24px, 1.875vw, 29px);
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .top_title_section .title {
    font-size: clamp(14px, 3.733vw, 22px);
  }
  .top_title_section .sub_title {
    font-size: clamp(16px, 4.8vw, 28px);
  }
}

.content_title {
  font-size: clamp(22px, 2.1875vw, 42px);
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .content_title {
    font-size: clamp(16px, 4.8vw, 28px);
  }
}

.content_summary {
  font-size: clamp(14px, 1.25vw, 24px);
  line-height: 1.8;
}
@media screen and (max-width: 1024px) {
  .content_summary {
    font-size: clamp(14px, 3.733vw, 22px);
  }
  .content_summary tw {
    display: inline;
  }
}

.mv_wrapper {
  width: 93vw;
  margin: 0 auto;
  height: 540px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #111;
}
@media (min-width: 1920px) {
  .mv_wrapper {
    width: 93%;
  }
}
@media screen and (max-width: 600px) {
  .mv_wrapper {
    height: auto;
    width: auto;
  }
}

.mv_container {
  width: 100%;
  border-radius: 12px;
  margin: 0 auto;
  height: 540px;
  background: url(../img/home/mv_dot.png) left bottom 54px/12% auto no-repeat, url(../img/home/mv-bg.webp) center/cover no-repeat;
  position: relative;
  overflow: hidden;
  transform: scale(0.8);
  opacity: 0;
  animation: mv-wrap 0.5s cubic-bezier(0.55, 0.05, 0.22, 0.99) forwards;
}
@media screen and (max-width: 600px) {
  .mv_container {
    height: 370px;
    width: 89.333vw;
  }
}

.no-webp .mv_container {
  background: url(../img/home/mv-bg.jpg), url(../img/home/mv_dot.png);
}

.main_view {
  margin-top: 26px;
  position: relative;
}
.main_view .textContent {
  padding-left: 5.1%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  z-index: 3;
}
.main_view .textContent .message_text {
  min-width: 584px;
}
.main_view .textContent h1 {
  padding-top: 70px;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 50px;
}
.main_view .textContent h1 > span {
  margin-bottom: 4px;
  position: relative;
  overflow: hidden;
  width: 0;
}
.main_view .textContent h1 > span .l-size,
.main_view .textContent h1 > span .s-size {
  display: none;
}
.main_view .textContent h1 > span.leadcopy_1 {
  animation: img-wrap 1.5s cubic-bezier(0.4, 0, 0.2, 1) 2s forwards;
}
.main_view .textContent h1 > span.leadcopy_2 {
  animation: img-wrap 1.5s cubic-bezier(0.4, 0, 0.2, 1) 3s forwards;
}
.main_view .textContent h1 > span.leadcopy_3 {
  animation: img-wrap 2s cubic-bezier(0.4, 0, 0.2, 1) 4s forwards;
}
.main_view .textContent h1 > span object {
  padding: 4px;
  background-color: rgba(255, 255, 255, 0.6);
}
@media (min-width: 1601px) {
  .main_view .textContent h1 > span .n_size {
    display: none;
  }
  .main_view .textContent h1 > span .l-size {
    display: inline-block;
  }
}
.main_view .textContent .story_linkBox {
  margin-bottom: 38px;
  opacity: 0;
  animation: catchcopy-wrap 1.5s cubic-bezier(0.4, 0, 0.2, 1) 5.5s forwards;
}
.main_view .textContent .story_linkBox a {
  padding: 10px;
  font-size: 13px;
  transition: 0.4s;
  color: #000;
  position: relative;
}
.main_view .textContent .story_linkBox a::after {
  content: "";
  width: 0.7em;
  height: 0.7em;
  transition: 0.4s;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  position: absolute;
  top: 50%;
  right: -0.5em;
  transform: translateY(calc(-50% + 1px)) rotate(45deg);
}
.main_view .textContent .story_linkBox a:hover {
  opacity: 0.7;
}
.main_view .textContent .story_linkBox a:hover::after {
  opacity: 0.7;
  right: -1em;
}
@media (min-width: 1601px) {
  .main_view .textContent .story_linkBox a {
    font-size: 15px;
  }
}
.main_view .catchcopy {
  overflow: hidden;
}
.main_view .catchcopy img {
  opacity: 0;
  animation: catchcopy-wrap 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}
@media (min-width: 1601px) {
  .main_view .catchcopy img {
    width: 120%;
  }
}
.main_view .centerImg_content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 31vw;
  opacity: 1;
  min-height: 540px;
  transform: scale(1.2) translatex(5%);
  animation: river-wrap_main 0.5s forwards;
}
.main_view .centerImg_content .imgContent_main {
  overflow: hidden;
}
.main_view .centerImg_content .imgContent_main img {
  -o-object-fit: cover;
     object-fit: cover;
  width: auto;
  height: 100%;
  min-width: 744.5px;
}
@media (min-width: 1601px) {
  .main_view .centerImg_content {
    left: auto;
    right: 10vw;
  }
}
.main_view .rigthImg_content {
  position: absolute;
  top: 0;
  bottom: 29px;
  right: 0;
  opacity: 0;
  z-index: 5;
  text-align: right;
  animation: sun-wrap 1.5s cubic-bezier(0.4, 0, 0.2, 1) 1s forwards;
}
.main_view .rigthImg_content .imgContent_main img {
  width: auto;
  height: 100%;
}
@media screen and (max-width: 1239px) {
  .main_view .rigthImg_content .imgContent_main img {
    height: 84%;
  }
}
.main_view .scroll_box {
  position: absolute;
  bottom: 0;
  left: 1.53vw;
  padding-bottom: 150px;
}
.main_view .scroll_box img {
  width: 0.586vw;
  min-width: 6.5px;
}
@media (min-width: 1920px) {
  .main_view .scroll_box {
    left: 29px;
  }
  .main_view .scroll_box img {
    width: 12px;
  }
}
@keyframes pathmove {
  0% {
    height: 0;
    top: 120%;
    opacity: 1;
  }
  50% {
    height: 100%;
    opacity: 1;
  }
  80% {
    top: 120%;
    opacity: 1;
  }
  100% {
    top: 200%;
    opacity: 0;
  }
}
.main_view .scroll_box a {
  display: flex;
  position: relative;
}
.main_view .scroll_box a::before {
  content: "";
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 10vw;
  background-color: var(--main_color);
  animation: pathmove 1.4s linear infinite;
  opacity: 0;
}
.main_view .scroll_box a::after {
  content: " ";
  position: absolute;
  top: 100%;
  left: 50%;
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--main_color);
  transform: translateX(-50%) translateY(100%);
}
@media screen and (max-width: 1024px) {
  .main_view .textContent {
    justify-content: flex-end;
  }
  .main_view .textContent h1 > span .n_size {
    display: none;
  }
  .main_view .textContent h1 > span .s-size {
    display: inline-block;
  }
  .main_view .catchcopy {
    max-width: 80vw;
  }
  .main_view .centerImg_content {
    left: auto;
    right: 0;
  }
}
@media screen and (max-width: 600px) {
  .main_view .textContent {
    padding-left: 0;
  }
  .main_view .textContent h1 {
    display: none;
  }
  .main_view .textContent .message_text {
    width: 100%;
    min-width: initial;
  }
  .main_view .textContent .story_linkBox {
    animation: catchcopy-wrap 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
    margin: 0.7em auto;
    width: 89%;
    max-width: 400px;
  }
  .main_view .textContent .story_linkBox a {
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 0;
    font-size: clamp(12px, 2.667vw, 16px);
  }
  .main_view .catchcopy {
    max-width: initial;
    width: 100%;
    text-align: center;
  }
  .main_view .catchcopy img {
    animation: catchcopy-wrap 1.2s 3.5s forwards;
    margin: 0 auto;
    width: 89%;
    max-width: 400px;
  }
  .main_view .centerImg_content {
    left: 0;
    right: auto;
    text-align: center;
  }
  .main_view .centerImg_content .imgContent_main img {
    height: 370px;
    min-width: initial;
  }
  .main_view .rigthImg_content {
    bottom: auto;
    width: 44.5%;
  }
  .main_view .rigthImg_content .imgContent_main img {
    width: 100%;
    height: auto;
  }
  .main_view .scroll_box {
    display: none;
  }
}

@media (min-width: 1601px) {
  body.en .main_view .catchcopy {
    width: 46vw;
  }
}
@media (min-width: 1920px) {
  body.en .main_view .catchcopy {
    width: 884px;
  }
}

.sp_cover {
  position: fixed;
  display: none;
  opacity: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background-color: #111111;
  animation: mv-sp-wrap 0.7s 2.8s forwards;
}
.sp_cover .contentBox {
  width: 77.6vw;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (max-width: 600px) {
  .sp_cover {
    opacity: 1;
  }
}
.sp_cover p {
  overflow: hidden;
  position: relative;
  margin-bottom: 10px;
}
.sp_cover p::after {
  content: "";
  position: absolute;
  background-color: #111111;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  margin: 0 auto;
}
.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(1) img {
  width: 72vw;
}
.sp_cover p:nth-child(2)::after {
  animation: img-wrap_left 1.5s cubic-bezier(0.4, 0, 0.2, 1) 1s forwards;
}
.sp_cover p:nth-child(2) img {
  width: 76vw;
}
.sp_cover p:nth-child(3) {
  margin-bottom: 0;
}
.sp_cover p:nth-child(3)::after {
  animation: img-wrap_left 1s cubic-bezier(0.4, 0, 0.2, 1) 1.8s forwards;
}
.sp_cover p:nth-child(3) img {
  width: 26.9vw;
}

body.en .sp_cover p {
  overflow: hidden;
  position: relative;
  margin-bottom: 10px;
}
body.en .sp_cover p::after {
  content: "";
  position: absolute;
  background-color: #111111;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  margin: 0 auto;
}
body.en .sp_cover p:nth-child(1)::after {
  animation: img-wrap_left 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}
body.en .sp_cover p:nth-child(1) img {
  width: 77vw;
}
body.en .sp_cover p:nth-child(2) {
  margin-bottom: 0;
}
body.en .sp_cover p:nth-child(2)::after {
  animation: img-wrap_left 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
}
body.en .sp_cover p:nth-child(2) img {
  width: 68vw;
}
body.en .sp_cover p:nth-child(3)::after {
  animation: img-wrap_left 1s cubic-bezier(0.4, 0, 0.2, 1) 1.2s forwards;
}
body.en .sp_cover p:nth-child(3) img {
  width: 58.93vw;
}
body.en .sp_cover p:nth-child(4) {
  margin-bottom: 0;
}
body.en .sp_cover p:nth-child(4)::after {
  animation: img-wrap_left 1s cubic-bezier(0.4, 0, 0.2, 1) 1.8s forwards;
}
body.en .sp_cover p:nth-child(4) img {
  width: 32vw;
}

.mv_latest_notices {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 48%;
  min-width: 650px;
  margin: 1.8vw 3.5vw 48px auto;
  opacity: 0;
  animation: catchcopy-wrap 1.5s cubic-bezier(0.4, 0, 0.2, 1) 6s forwards;
}
.mv_latest_notices h2 {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 0.78vw;
  margin-right: 20px;
}
.mv_latest_notices h2 img {
  width: 2.93vw;
  min-width: 35px;
}
.mv_latest_notices h2::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -0.4vw;
  width: 0.78vw;
  height: 0.78vw;
  border-radius: 50%;
  background-color: #e50049;
}
.mv_latest_notices .news_list {
  flex: 1;
  width: 80%;
}
.mv_latest_notices .news_list a {
  display: flex;
  align-items: center;
  font-size: clamp(13px, 1.09vw, 16px);
  color: var(--main_color);
  transition: 0.4s;
  padding-right: 1.5em;
}
.mv_latest_notices .news_list time {
  font-weight: 500;
  margin-right: 1.7em;
  transition: 0.4s;
  white-space: nowrap;
}
.mv_latest_notices .news_list h3 {
  text-decoration: underline;
  transition: 0.4s;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
}
.mv_latest_notices .news_list:hover time,
.mv_latest_notices .news_list:hover h3 {
  opacity: 0.7;
}
.mv_latest_notices .scroll_news {
  margin: 0 10px 0 auto;
}
.mv_latest_notices .scroll_news span {
  display: inline-block;
  font-size: clamp(14px, 1.09vw, 20px);
  width: 0.7em;
  height: 0.7em;
  border-right: 2px solid var(--main_color);
  border-bottom: 2px solid var(--main_color);
  transform: rotate(45deg) translateY(-0.25em);
  transition: 0.4s;
}
.mv_latest_notices .scroll_news span:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1024px) {
  .mv_latest_notices {
    animation: catchcopy-wrap 1.5s cubic-bezier(0.4, 0, 0.2, 1) 2s forwards;
    min-width: initial;
    width: 93vw;
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
    position: relative;
  }
  .mv_latest_notices h2 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
  }
  .mv_latest_notices h2 img {
    width: auto;
    height: 1em;
  }
  .mv_latest_notices h2::before {
    content: none;
  }
  .mv_latest_notices .news_list a h3 {
    text-decoration: none;
  }
  .mv_latest_notices .news_list time {
    padding-left: 5.7em;
  }
  .mv_latest_notices .scroll_news {
    margin: 0 auto;
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
  }
  .mv_latest_notices .scroll_news span {
    position: relative;
    z-index: 5;
  }
  .mv_latest_notices .scroll_news::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #413e3e;
    z-index: -2;
  }
  .mv_latest_notices .scroll_news::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 3em;
    height: 1em;
    top: 0;
    left: 0;
    right: 0;
    background-color: #111;
    margin: 0 auto;
    transform: translateX(1px);
  }
}
@media screen and (max-width: 600px) {
  .mv_latest_notices {
    margin-top: 24px;
    gap: 10px;
    max-width: 88vw;
    margin-left: auto;
    margin-right: auto;
  }
  .mv_latest_notices .news_list {
    width: 100% !important;
  }
  .mv_latest_notices .news_list a {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .mv_latest_notices .news_list h3 {
    white-space: initial;
    overflow: auto;
  }
  .mv_latest_notices .news_list time {
    margin-bottom: 1em;
  }
}

.top_why_jpnap {
  margin-top: 56px;
  margin-bottom: 3.9vw;
  position: relative;
  opacity: 0;
  animation: catchcopy-wrap 1.5s cubic-bezier(0.4, 0, 0.2, 1) 6s forwards;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .top_why_jpnap {
    cursor: auto;
  }
}
.top_why_jpnap .top_title_section,
.top_why_jpnap .why_jpnap_contentsBox {
  width: 86vw;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
@media (min-width: 1920px) {
  .top_why_jpnap .top_title_section,
  .top_why_jpnap .why_jpnap_contentsBox {
    width: 86%;
  }
}
.top_why_jpnap .img_dec_boya {
  position: absolute;
  left: 0;
  top: 3.5vw;
  width: 25%;
  z-index: 5;
}
@media screen and (max-width: 600px) {
  .top_why_jpnap .top_title_section,
  .top_why_jpnap .why_jpnap_contentsBox {
    width: 88vw;
  }
  .top_why_jpnap .img_dec_boya {
    width: 70.3vw;
    left: -15vw;
    top: 13.5vw;
  }
}
.top_why_jpnap .btnBox {
  text-align: center;
  margin-top: 40px;
}

.why_jpnap_contentsBox {
  display: flex;
  justify-content: flex-start;
}
.why_jpnap_contentsBox dl {
  position: relative;
  z-index: 10;
}
.why_jpnap_contentsBox dt {
  font-size: clamp(13px, 1.25vw, 24px);
  font-weight: 600;
  display: inline-block;
  padding: 0 1em 0.5em 0.3em;
  margin-bottom: 1.25em;
  border-bottom: 1.84px solid #bc001d;
  white-space: nowrap;
}
.why_jpnap_contentsBox dd {
  font-family: "taviraj", "noto sans", sans-serif;
  vertical-align: bottom;
  line-height: 1;
  white-space: nowrap;
}
.why_jpnap_contentsBox .list_1 {
  margin: 3.375vw 7.5vw 0 4.06vw;
  padding-bottom: 1.5625vw;
}
.why_jpnap_contentsBox .list_1 dd {
  font-size: clamp(96px, 9.375vw, 180px);
  letter-spacing: 0;
  text-align: left;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
@media (min-width: 1920px) {
  .why_jpnap_contentsBox .list_1 {
    margin: 3.375% 7.5% 0 4.06%;
    padding-bottom: 1.5625%;
  }
}
.why_jpnap_contentsBox .list_1 .s-2 {
  font-size: 0.808em;
}
.why_jpnap_contentsBox .list_1 .s-3 {
  font-size: 0.3333em;
}
.why_jpnap_contentsBox .list_2 {
  margin-right: 1.8vw;
  margin-top: -0.5vw;
}
.why_jpnap_contentsBox .list_2 dd {
  font-size: clamp(66px, 6.48vw, 124px);
}
.why_jpnap_contentsBox .list_2 dd span {
  font-size: 0.5333em;
}
@media (min-width: 1920px) {
  .why_jpnap_contentsBox .list_2 {
    margin-right: 1.8%;
    margin-top: -9.6px;
  }
}
.why_jpnap_contentsBox .list_3 {
  align-self: flex-end;
}
.why_jpnap_contentsBox .list_3 dd {
  font-size: clamp(58px, 5.625vw, 108px);
}
.why_jpnap_contentsBox .list_3 dd span {
  font-size: 0.278em;
  margin-left: 4px;
}
.why_jpnap_contentsBox .list_3 dd span:first-child {
  margin-right: -0.3em;
}
.why_jpnap_contentsBox .list_4 {
  margin-top: -2.73vw;
}
.why_jpnap_contentsBox .list_4 dd {
  font-size: max(55px, 5.5vw, 96px);
  display: flex;
  align-items: center;
}
.why_jpnap_contentsBox .list_4 dd span {
  font-size: 0.6667em;
}
@media (min-width: 1920px) {
  .why_jpnap_contentsBox .list_4 {
    margin-top: -52px;
  }
}
@media screen and (max-width: 1024px) {
  .why_jpnap_contentsBox {
    flex-wrap: wrap;
    max-width: 750px;
    margin: 0 auto;
    gap: 5vw 10vw;
  }
  .why_jpnap_contentsBox dt {
    font-size: clamp(13px, 2.6vw, 26px);
  }
  .why_jpnap_contentsBox dl {
    width: calc(50% - 5vw);
  }
  .why_jpnap_contentsBox .list_1 {
    margin-right: 0;
    margin-left: 0;
    align-self: center;
  }
  .why_jpnap_contentsBox .list_1 dd {
    font-size: min(108px, 14.4vw);
  }
  .why_jpnap_contentsBox .list_2 {
    margin-right: 0;
    margin-left: 0;
  }
  .why_jpnap_contentsBox .list_2 dd {
    font-size: min(90px, 12vw);
  }
  .why_jpnap_contentsBox .list_3 dd,
  .why_jpnap_contentsBox .list_4 dd {
    font-size: min(90px, 12vw);
  }
}
@media screen and (max-width: 600px) {
  .why_jpnap_contentsBox {
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
  }
  .why_jpnap_contentsBox dl {
    width: auto;
  }
  .why_jpnap_contentsBox dt {
    font-size: clamp(13px, 3.4667vw, 26px);
  }
  .why_jpnap_contentsBox .list_1 {
    margin-top: max(24px, 6.4vw);
    margin-left: 14vw;
  }
  .why_jpnap_contentsBox .list_1 dt {
    padding-right: 3.5em;
  }
  .why_jpnap_contentsBox .list_1 dd {
    font-size: min(108px, 19.2vw);
  }
  .why_jpnap_contentsBox .list_1 dd .s-2 {
    font-size: 1em;
  }
  .why_jpnap_contentsBox .list_1 dd .s-3 {
    font-size: 0.4444em;
  }
  .why_jpnap_contentsBox .list_2 dd,
  .why_jpnap_contentsBox .list_3 dd,
  .why_jpnap_contentsBox .list_4 dd {
    font-size: min(90px, 16vw);
  }
  .why_jpnap_contentsBox .list_2 {
    margin-top: 0;
  }
  .why_jpnap_contentsBox .list_2 dd span {
    font-size: 0.4em;
  }
  .why_jpnap_contentsBox .list_3 {
    align-self: flex-start;
    margin-top: -8.5vw;
  }
  .why_jpnap_contentsBox .list_3 dt {
    padding-right: 2em;
  }
  .why_jpnap_contentsBox .list_3 dd span {
    font-size: 0.23em;
  }
  .why_jpnap_contentsBox .list_3 dd span:nth-child(1) {
    margin-right: -1em;
  }
  .why_jpnap_contentsBox .list_4 {
    margin-top: 0;
  }
  .why_jpnap_contentsBox .list_4 dd span {
    font-size: 0.5333em;
  }
}

.top_why_jpnap_deco {
  margin-top: -5.6875vw;
  overflow: hidden;
  position: relative;
}
.top_why_jpnap_deco img {
  opacity: 1;
}
.top_why_jpnap_deco::after {
  content: "";
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  z-index: 1;
  background-color: #111111;
}
.top_why_jpnap_deco.is-show::after {
  animation: img-wrap_left 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@media screen and (max-width: 1024px) {
  .top_why_jpnap_deco {
    margin-top: -33vw;
  }
  .top_why_jpnap_deco img {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .top_why_jpnap_deco {
    margin-top: -37.6875vw;
  }
}

.top_why_jpnap_deco_ring {
  position: absolute;
  bottom: 0;
  left: 8.5vw;
  width: 34.9vw;
}
.top_why_jpnap_deco_ring .top_why_jpnap_deco_innerBox {
  position: relative;
}
.top_why_jpnap_deco_ring img {
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  transform: translateY(-50%) scale(0.3);
  opacity: 0;
}
.top_why_jpnap_deco_ring .hamon_4 {
  position: static;
  width: 100%;
  height: auto;
  transform: translateY(0);
}
.top_why_jpnap_deco_ring .hamon_3 {
  width: 65.4%;
}
.top_why_jpnap_deco_ring .hamon_2 {
  width: 20.37%;
}
.top_why_jpnap_deco_ring .hamon_1 {
  width: 6.49%;
}
.top_why_jpnap_deco_ring.is-show {
  animation: circle_fadeout 1.5s cubic-bezier(0, 0, 0.24, 1) 0.5s forwards;
}
.top_why_jpnap_deco_ring.is-show .hamon_4 {
  animation: circle_fadein 1s cubic-bezier(0, 0, 0.24, 1) 0.3s forwards;
}
.top_why_jpnap_deco_ring.is-show .hamon_3 {
  animation: circle_fadein_2 0.9s cubic-bezier(0, 0, 0.24, 1) 0.4s forwards;
}
.top_why_jpnap_deco_ring.is-show .hamon_2 {
  animation: circle_fadein_2 0.8s cubic-bezier(0, 0, 0.24, 1) 0.4s forwards;
}
.top_why_jpnap_deco_ring.is-show .hamon_1 {
  animation: circle_fadein_2 0.7s cubic-bezier(0, 0, 0.24, 1) forwards;
}

.top_why_jpnap_message_content {
  width: 39.1vw;
  min-width: 500px;
  margin: -5.5vw auto 0;
  padding-bottom: 2.42vw;
  text-align: center;
  position: relative;
  z-index: 5;
}
.top_why_jpnap_message_content h3 {
  margin-bottom: 1.286em;
}
@media screen and (max-width: 1024px) {
  .top_why_jpnap_message_content {
    width: 88.53%;
    min-width: initial;
  }
  .top_why_jpnap_message_content p {
    text-align: left;
  }
}

#js-mouse {
  pointer-events: none;
  position: fixed;
  top: -73px;
  left: -75px;
  width: 150px;
  height: 146px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(0, 0);
  transition: transform 0.3s ease-out;
  z-index: -1;
  opacity: 1;
  z-index: 9999;
}
#js-mouse .imgContent_main {
  transform: scale(0);
  opacity: 0;
}
#js-mouse .imgContent_text {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
  transform: scale(0);
}
#js-mouse.active .imgContent_main {
  animation: circle_fadein 0.4s ease-out 0.1s forwards;
}
#js-mouse.active .imgContent_text {
  animation: circle_fadein 0.3s ease-out 0.3s forwards;
}
@media screen and (max-width: 1024px) {
  #js-mouse {
    display: none !important;
  }
}

/**JPNAPで広がるネットワーク**/
.top_network {
  padding: 2.4vw 3.6vw 2.3vw;
  margin-top: 80px;
  margin-bottom: 8.125vw;
  background-color: #1d1d1d;
  border: 1px solid #525252;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  border-radius: 30px;
}
.top_network .top_title_section {
  margin-bottom: 26px;
}
.top_network .btnBox {
  margin-top: 28px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .top_network {
    width: 100%;
    border-radius: 0;
    border: none;
  }
}
@media screen and (max-width: 600px) {
  .top_network .btnBox {
    margin: 56px auto 40px;
  }
  .top_network .btnBox .site_btn01 {
    font-size: clamp(14px, 4.8vw, 27px);
    padding: 0.667em 4.778em 0.667em 1.778em;
    border-radius: 2.778em;
  }
}

.top_company_banner_list {
  margin-left: -1.5vw;
  margin-right: -1.5vw;
}
.top_company_banner_list li {
  margin: 0 0.8vw;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}
.top_company_banner_list li img {
  text-align: center;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.top_company_banner_list .slick-arrow {
  top: -20%;
}
.top_company_banner_list .slick-prev {
  right: 4.5vw;
  left: auto;
}
.top_company_banner_list .slick-next {
  right: 1.5vw;
  left: auto;
}
@media screen and (max-width: 600px) {
  .top_company_banner_list .slick-arrow {
    display: none !important;
  }
  .top_company_banner_list .slick-dots {
    bottom: -28px;
  }
  .top_company_banner_list .slick-dots li,
  .top_company_banner_list .slick-dots li button {
    width: 5px;
    height: 5px;
    line-height: 5px;
    border-radius: 50%;
    padding: 0;
  }
  .top_company_banner_list .slick-dots li.slick-active button::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    line-height: 7.45px;
    top: 50%;
    transform: translateY(-50%);
    left: -1px;
    right: 0;
    font-size: 20px;
    background-color: red;
  }
}

/**JPNAPのリセール**/
.top_reseller {
  margin: 30px auto 118px;
}
.top_reseller .top_title_section {
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .top_reseller {
    margin-bottom: 54px;
  }
  .top_reseller .top_title_section {
    margin-bottom: 16px;
  }
}

.top_reseller_contentsBox {
  display: flex;
  gap: 6.09vw;
}
.top_reseller_contentsBox .imgContent {
  width: 41.9vw;
}
.top_reseller_contentsBox .imgContent img {
  border-radius: 10px;
}
@media (min-width: 1920px) {
  .top_reseller_contentsBox {
    gap: 120px;
  }
  .top_reseller_contentsBox .imgContent {
    width: 41%;
  }
}
.top_reseller_contentsBox .textContent {
  flex: 1;
  padding-top: 3.125vw;
}
.top_reseller_contentsBox .textContent h3 {
  margin-bottom: 0.95em;
}
.top_reseller_contentsBox .textContent .site_btn02 {
  margin-top: 2em;
}
@media (min-width: 1920px) {
  .top_reseller_contentsBox .textContent {
    padding-top: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .top_reseller_contentsBox {
    flex-direction: column;
    gap: 3vw;
  }
  .top_reseller_contentsBox .imgContent {
    width: 100%;
  }
  .top_reseller_contentsBox .btnBox {
    text-align: center;
  }
}

/**Our DNA**/
.top_our_dna {
  padding-top: 60px;
  padding-bottom: 50px;
  background: linear-gradient(180deg, #fff 0%, #fff 48%, #e9e9e9 48%, #e9e9e9 100%);
}
.top_our_dna .top_title_section {
  margin-bottom: 70px;
}
.top_our_dna .top_title_section h2 .title {
  color: var(--black_color);
}
.top_our_dna .top_title_section h2 .title::before {
  background-image: url(../img/home/top_title_dec_2.png);
}
.top_our_dna .btnBox {
  text-align: center;
  margin-top: 50px;
}
@media screen and (max-width: 1024px) {
  .top_our_dna {
    padding-top: 30px;
    background: linear-gradient(180deg, #f9f9f9 0%, #f9f9f9 100%) !important;
  }
  .top_our_dna .top_title_section {
    margin-bottom: 30px;
  }
  .top_our_dna .btnBox {
    margin-top: 26px;
  }
}

.top_our_dna_contentsBox {
  display: flex;
  align-items: flex-end;
}
.top_our_dna_contentsBox .textContent {
  flex: 1;
}
.top_our_dna_contentsBox .textContent h3 {
  margin-left: 5.833vw;
  width: 40.7vw;
}
.top_our_dna_contentsBox .textContent h3 img {
  width: 100%;
  height: auto;
}
@media (min-width: 1920px) {
  .top_our_dna_contentsBox .textContent h3 {
    margin-left: 112px;
    width: 902px;
  }
}
.top_our_dna_contentsBox .textContent p,
.top_our_dna_contentsBox .textContent li {
  color: var(--black_color);
}
.top_our_dna_contentsBox .textContent > p {
  font-size: clamp(14px, 1.094vw, 20px);
  margin: 2.43em 0 4.1em 7.33vw;
  width: 81%;
  letter-spacing: normal;
  line-height: 1.93;
}
@media (min-width: 1920px) {
  .top_our_dna_contentsBox .textContent > p {
    margin: 2.43em 0 4.1em 7.33%;
  }
}
.top_our_dna_contentsBox .stories_list {
  margin-left: 4.833vw;
}
.top_our_dna_contentsBox .stories_list li {
  counter-increment: count-ex01-2;
  font-size: clamp(18px, 1.5625vw, 30px);
  padding-left: calc(3.5em + 10%);
  position: relative;
  transition: 0.3s;
  z-index: 1;
  cursor: pointer;
  background-color: #f9f9f9;
  border-bottom: 1px solid #e9e9e9;
}
.top_our_dna_contentsBox .stories_list li::before {
  position: absolute;
  content: "0" counter(count-ex01-2) ".";
  display: inline-block;
  font-weight: 500;
  font-weight: 600;
  font-size: 1.2em;
  line-height: 0.8;
  color: #9f004d;
  text-align: center;
  left: 10%;
  top: 51%;
  transform: translateY(-50%);
  transition: 0.3s;
  font-family: "taviraj";
}
.top_our_dna_contentsBox .stories_list li::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 0;
  transition: 0.5s;
  z-index: -1;
  background: var(--gradation_color);
}
.top_our_dna_contentsBox .stories_list li a {
  display: flex;
  align-items: center;
  position: relative;
  padding: 1.15em 17% 1.15em 0;
  transition: 0.1s;
  font-weight: 600;
}
.top_our_dna_contentsBox .stories_list li a span {
  color: var(--black_color);
}
.top_our_dna_contentsBox .stories_list li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  width: 1.6em;
  height: 1.6em;
  background: url(../img/common/arrow03.svg) center/100% 100% no-repeat;
}
.top_our_dna_contentsBox .stories_list li:last-child {
  margin-bottom: 1em;
}
.top_our_dna_contentsBox .stories_list li.current {
  transition: 0.3s;
}
.top_our_dna_contentsBox .stories_list li.current span {
  color: var(--main_color);
}
.top_our_dna_contentsBox .stories_list li.current::before {
  color: var(--main_color);
}
.top_our_dna_contentsBox .stories_list li.current::after {
  width: 100%;
}
.top_our_dna_contentsBox .stories_list li.current a::after {
  background-image: url(../img/common/arrow02.svg);
  transition: 0.3s;
  animation: arrow_move_2 0.4s 0.4s forwards;
}
.top_our_dna_contentsBox .imgContent {
  width: 36.7vw;
}
.top_our_dna_contentsBox .imgContent img {
  border-radius: 20px;
}
@media screen and (max-width: 1024px) {
  .top_our_dna_contentsBox {
    flex-direction: column-reverse;
  }
  .top_our_dna_contentsBox .imgContent {
    width: 100%;
    margin-bottom: 36px;
  }
  .top_our_dna_contentsBox .textContent h3 {
    margin-left: 0;
    width: 100%;
  }
  .top_our_dna_contentsBox .textContent p,
  .top_our_dna_contentsBox .textContent li {
    color: var(--black_color);
  }
  .top_our_dna_contentsBox .textContent > p {
    font-size: clamp(14px, 3.733vw, 22px);
    margin-left: 0;
    margin-bottom: 1.5em;
    width: 100%;
  }
  .top_our_dna_contentsBox .stories_list {
    margin-left: 0;
  }
  .top_our_dna_contentsBox .stories_list li {
    font-size: clamp(13px, 3.4667vw, 20px);
    background-color: #ececec;
    border-bottom: 2px solid #f9f9f9;
    padding-left: 5.81em;
  }
  .top_our_dna_contentsBox .stories_list li::before {
    left: 1.54em;
  }
  .top_our_dna_contentsBox .stories_list li:last-child {
    margin-bottom: 0;
  }
}

.top_clients {
  padding-bottom: 44px;
}
.top_clients ul {
  display: flex;
  gap: 3.883vw;
}
.top_clients ul li {
  overflow: hidden;
}
.top_clients ul li .imgBox {
  transition: 0.4s;
}
.top_clients ul li .imgBox:hover {
  transform: scale(1.05);
  opacity: 0.8;
}
@media screen and (max-width: 600px) {
  .top_clients {
    padding-bottom: 50px;
  }
  .top_clients ul {
    flex-wrap: wrap;
  }
  .top_clients ul li {
    width: calc(50% - 1.9415vw);
  }
}

/**TOP ニュース一覧 **/
.top_news_list_section {
  padding: 100px 0 45px;
}
@media screen and (max-width: 1024px) {
  .top_news_list_section {
    padding: 30px 0 50px;
  }
  .top_news_list_section .btnBox {
    text-align: center;
    margin-top: 30px;
  }
}

.news_list_contentsBox {
  display: flex;
  gap: 10.5vw;
  padding-left: 7.125vw;
  border-bottom: 1px solid #413e3e;
}
.news_list_contentsBox .top_title_section {
  width: 12vw;
  min-width: 140px;
}
@media (min-width: 1920px) {
  .news_list_contentsBox {
    gap: 10.5%;
    padding-left: 7.125%;
  }
}
.news_list_contentsBox .btnBox {
  margin-top: 24px;
}
.news_list_contentsBox .news_list {
  flex: 1;
  margin-bottom: 1.857em;
  font-size: clamp(14px, 10.9vw, 16px);
}
.news_list_contentsBox .news_list li a {
  display: flex;
  padding: 1.143em 0;
  transition: 0.4s;
  font-size: clamp(14px, 1.093vw, 18px);
  font-weight: 400;
}
.news_list_contentsBox .news_list li a:hover {
  opacity: 0.7;
}
.news_list_contentsBox .news_list li time {
  margin-right: 1.78em;
  white-space: nowrap;
}
.news_list_contentsBox .news_list li h3 {
  line-height: 1.8;
  text-wrap: pretty;
}
.news_list_contentsBox .news_list li:not(:last-child) {
  border-bottom: 1px solid #413e3e;
}
@media screen and (max-width: 1024px) {
  .news_list_contentsBox {
    flex-direction: column;
    padding-left: 0;
    gap: 30px;
  }
  .news_list_contentsBox .news_list {
    font-size: clamp(13px, 4vw, 23px);
    margin-bottom: 0;
  }
  .news_list_contentsBox .news_list time {
    font-size: 0.9333em;
  }
}
@media screen and (max-width: 600px) {
  .news_list_contentsBox .news_list li a {
    flex-direction: column;
    gap: 0.769em;
  }
  .news_list_contentsBox .news_list li .news_info {
    display: flex;
    align-items: center;
  }
  .news_list_contentsBox .news_list li .news_info time {
    margin-right: 0;
  }
  .news_list_contentsBox .news_list li .news_info .cat {
    margin-left: 1em;
    font-weight: 700;
    font-size: clamp(11px, 2.933vw, 17px);
    background-color: #400320;
    border: 1px solid #9f004d;
    border-radius: 30px;
    padding: 4px 2.182em;
  }
}

.breadcrumbs_list {
  font-family: "noto sans", sans-serif;
}

.lower_contents {
  width: 100%;
  background: url(../img/common/sec-add.png) left top no-repeat;
  background-size: 100% auto;
  padding-top: 3.594vw;
  position: relative;
}
@media (min-width: 1920px) {
  .lower_contents {
    padding-top: 69px;
  }
}
@media screen and (max-width: 600px) {
  .lower_contents {
    background-image: url(../img/common/sec-add_sp.png);
    padding-top: 0;
  }
}
@media screen and (max-width: 600px) {
  .lower_contents {
    /*padding-top:4.492vw;*/
  }
}
@media screen and (max-width: 1024px) {
  .lower_contents .breadcrumbs {
    display: none;
  }
}
.lower_contents .breadcrumbs .breadcrumbs_list {
  position: relative;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4.34vw;
}
.lower_contents .breadcrumbs .breadcrumbs_list li {
  padding: 0 1.2em 0 0.6em;
  position: relative;
}
.lower_contents .breadcrumbs .breadcrumbs_list li span {
  display: inline-block;
}
.lower_contents .breadcrumbs .breadcrumbs_list li span.vertical {
  transform: rotate(90deg);
}
.lower_contents .breadcrumbs .breadcrumbs_list li a {
  font-weight: 700;
  transition: 0.3s;
  white-space: nowrap;
}
.lower_contents .breadcrumbs .breadcrumbs_list li a:hover {
  opacity: 0.6;
}
.lower_contents .breadcrumbs .breadcrumbs_list li:not(:last-child)::after {
  position: absolute;
  right: 0;
  top: 50%;
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-right: #9f004d solid 1px;
  border-bottom: #9f004d solid 1px;
  font-weight: 400;
  color: var(--main_color);
  transform: rotate(-45deg) translateY(-50%);
}
.lower_contents .breadcrumbs .breadcrumbs_list li:last-child {
  font-weight: 400;
}
.lower_contents .title_section {
  margin-left: 8.2%;
  margin-bottom: clamp(28px, 3.125vw, 40px);
}
@media screen and (max-width: 600px) {
  .lower_contents .title_section {
    margin-left: 5%;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 600px) {
  .lower_contents .title_section .lower_contents_head {
    padding-top: 4.492vw;
    display: flex;
    align-items: center;
  }
}
.lower_contents .title_section .lower_contents_head p {
  line-height: 1.2;
}
.lower_contents .title_section .lower_contents_head .title {
  font-family: "taviraj";
  font-size: clamp(14px, 1.094vw, 16px);
  color: #fff;
  padding: 0.35vw 0 0.35vw 1.6em;
  position: relative;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 0.35vw;
}
@media screen and (max-width: 600px) {
  .lower_contents .title_section .lower_contents_head .title {
    font-size: clamp(14px, 1.563vw, 16px);
    margin-bottom: 0;
  }
}
.lower_contents .title_section .lower_contents_head .title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.2em;
  height: 1.2em;
  background: url(../img/common/title_dec.png) center/100% auto no-repeat;
}
.lower_contents .title_section .lower_contents_head .sub_title {
  font-weight: 600;
  font-size: clamp(18px, 1.406vw, 21px);
  letter-spacing: 0.08em;
}
@media screen and (max-width: 600px) {
  .lower_contents .title_section .lower_contents_head .sub_title {
    font-size: clamp(13px, 1.563vw, 14px);
    margin-left: min(2.667vw, 10px);
  }
}
.lower_contents .lower_section .inner-container {
  width: 70.859vw;
  margin: 0 auto 9.375vw;
}
@media (min-width: 1920px) {
  .lower_contents .lower_section .inner-container {
    width: 70.859%;
    margin-bottom: 180px;
  }
}
@media screen and (max-width: 600px) {
  .lower_contents .lower_section .inner-container {
    width: 90%;
    margin: 0 auto 11.719vw;
  }
}
.lower_contents .lower_section .lower_contents_title {
  font-size: clamp(25px, 2.5vw, 32px);
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.781vw 0;
  margin-bottom: clamp(40px, 3.906vw, 50px);
}
@media screen and (max-width: 600px) {
  .lower_contents .lower_section .lower_contents_title {
    font-size: clamp(20px, 5.333vw, 24px);
  }
}

.news {
  opacity: 0;
}
.news .select_box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1.953vw;
}
@media screen and (max-width: 600px) {
  .news .select_box {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 6.667vw;
  }
}
.news .select_year {
  position: relative;
}
@media screen and (max-width: 600px) {
  .news .select_year {
    margin-bottom: 1.953vw;
    width: 47%;
  }
}
.news .select_year::before {
  position: absolute;
  top: 45%;
  right: 2.5vw;
  content: "";
  width: 0.625vw;
  height: 0.625vw;
  border-right: var(--sub_color) solid 2px;
  border-bottom: var(--sub_color) solid 2px;
  transform: rotate(45deg) translateY(-50%);
  pointer-events: none;
}
@media screen and (max-width: 600px) {
  .news .select_year::before {
    right: 3.125vw;
    width: 0.977vw;
    height: 0.977vw;
  }
}
@media screen and (max-width: 374px) {
  .news .select_year::before {
    /*right:5.333vw;*/
    right: 12.267vw;
    width: 1.667vw;
    height: 1.667vw;
  }
}
.news .select_year select {
  box-sizing: border-box;
  color: var(--black_color);
  font-weight: 700;
  /*padding:12px 52px 12px 32px;*/
  padding: 0.938vw 4.063vw 0.938vw 2.5vw;
  background: var(--main_color);
  border: 1px solid var(--sub_color);
  border-radius: 8px;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .news .select_year select {
    padding: 1.172vw 5.078vw 1.172vw 3.125vw;
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 374px) {
  .news .select_year select {
    /*padding:2vw 8.667vw 2vw 5.333vw;*/
    padding: 3.2vw 2.667vw 3.2vw 0;
  }
}
.news .select_category.pc {
  margin-left: 1.641vw;
  display: flex;
}
.news .select_category.pc input {
  display: none;
}
.news .select_category.pc label {
  display: block;
  margin: 0;
  padding: 0;
  border-right: #413e3e solid 1px;
}
.news .select_category.pc label:last-child {
  border-right: none;
}
.news .select_category.pc label span {
  display: block;
  padding: 0 1.563vw;
  text-decoration: underline;
  cursor: pointer;
}
.news .select_category.pc label input:checked + span {
  opacity: 0.5;
}
.news .select_category.sp {
  width: 47%;
  position: relative;
}
.news .select_category.sp::before {
  position: absolute;
  top: 45%;
  right: 3.125vw;
  content: "";
  width: 0.977vw;
  height: 0.977vw;
  border-right: var(--main_color) solid 2px;
  border-bottom: var(--main_color) solid 2px;
  transform: rotate(45deg) translateY(-50%);
  pointer-events: none;
}
@media screen and (max-width: 374px) {
  .news .select_category.sp::before {
    /*right:5.333vw;*/
    right: 12.267vw;
    width: 1.667vw;
    height: 1.667vw;
  }
}
.news .select_category.sp select {
  box-sizing: border-box;
  color: var(--main_color);
  font-weight: 600;
  width: 100%;
  padding: 3.2vw 2.667vw 3.2vw 0;
  text-align: center;
  background: var(--black_color);
  border: 1px solid var(--main_color);
  border-radius: 8px;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .news .select_category.sp select {
    padding: 1.172vw 5.078vw 1.172vw 3.125vw;
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 374px) {
  .news .select_category.sp select {
    /*padding:2vw 8.667vw 2vw 5.333vw;*/
    padding: 3.2vw 2.667vw 3.2vw 0;
  }
}
.news .news_list {
  flex: 1;
  margin-bottom: 1.857em;
}
.news .news_list li {
  border-top: 1px solid #413e3e;
}
.news .news_list li:last-child {
  border-bottom: 1px solid #413e3e;
}
.news .news_list li a {
  display: flex;
  align-items: center;
  padding: 1.143em 0;
  transition: 0.4s;
  font-size: clamp(14px, 1.25vw, 16px);
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .news .news_list li a {
    font-size: clamp(14px, 3vw, 16px);
  }
}
@media screen and (max-width: 1024px) {
  .news .news_list li a {
    flex-direction: column;
    align-items: flex-start;
  }
}
.news .news_list li a:hover {
  opacity: 0.7;
}
.news .news_list li .row {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .news .news_list li .row {
    margin-bottom: 1.667vw;
  }
}
.news .news_list li time {
  margin-right: 1.78em;
  white-space: nowrap;
}
.news .news_list li span {
  display: block;
  margin-right: 1.78em;
  white-space: nowrap;
  padding: 0.391vw 1.875vw;
  color: #ececec;
  font-size: 13px;
  background: #400320;
  border: var(--sub_color) solid 1px;
  border-radius: 30px;
}
@media screen and (max-width: 600px) {
  .news .news_list li span {
    padding: 0.8vw 6.4vw;
  }
}
.news .news_list li h3 {
  line-height: 1.8;
  flex: 1;
}

.news_detail .lower_contents {
  min-height: 100vh;
  opacity: 0;
}
.news_detail .btn_back.pc {
  position: absolute;
  top: 5.469vw;
  right: 7.422vw;
}
.news_detail .btn_back.pc a {
  display: block;
  position: relative;
  padding-left: 2.656vw;
  font-size: clamp(14px, 1.25vw, 16px);
  transition: 0.3s;
}
.news_detail .btn_back.pc a::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 1.875vw;
  height: 1.875vw;
  transform: translateY(-50%);
  background: url(../img/common/arrow04.svg) center/100% auto no-repeat;
}
.news_detail .btn_back.pc a:hover {
  opacity: 0.7;
}
.news_detail .post_contents_title {
  padding-bottom: 1.563vw;
  border-bottom: 1px solid #413e3e;
  margin-bottom: 4.063vw;
}
@media screen and (max-width: 600px) {
  .news_detail .post_contents_title {
    margin-bottom: 4.883vw;
  }
}
.news_detail .post_contents_title .row {
  display: flex;
  align-items: center;
  padding-top: 1.563vw;
  margin: 0 0 4.922vw;
}
.news_detail .post_contents_title .row time {
  margin-right: 1em;
}
.news_detail .post_contents_title .row span {
  display: block;
  font-size: 13px;
  margin-right: 1.78em;
  white-space: nowrap;
  padding: 0.391vw 1.875vw;
  color: #ececec;
  background: #400320;
  border: var(--sub_color) solid 1px;
  border-radius: 30px;
}
@media screen and (max-width: 600px) {
  .news_detail .post_contents_title .row span {
    padding: 0.8vw 6.4vw;
  }
}
.news_detail .post_contents_title h2 {
  font-size: clamp(25px, 2.5vw, 32px);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.8;
  padding: 0.781vw 0;
}
@media screen and (max-width: 600px) {
  .news_detail .post_contents_title h2 {
    line-height: 1.6;
  }
}
.news_detail .post_contents h2.wp-block-heading:nth-child(2) {
  display: none;
}
.news_detail .post_contents p {
  line-height: 1.8;
  margin-bottom: 2.344vw;
}
.news_detail .post_contents p a {
  text-decoration: underline;
}
.news_detail .post_contents h2 {
  font-size: clamp(20px, 1.875vw, 28px);
  font-weight: 600;
  margin-bottom: 2.344vw;
}
@media screen and (max-width: 600px) {
  .news_detail .post_contents h2 {
    font-size: clamp(20px, 2.344vw, 28px);
  }
}
.news_detail .post_contents p + h2,
.news_detail .post_contents p + ul,
.news_detail .post_contents p + ol,
.news_detail .post_contents ul + ol,
.news_detail .post_contents ul + p,
.news_detail .post_contents ol + ul,
.news_detail .post_contents ol + p {
  margin-top: 3.906vw;
}
@media screen and (max-width: 600px) {
  .news_detail .post_contents p + h2,
  .news_detail .post_contents p + ul,
  .news_detail .post_contents p + ol,
  .news_detail .post_contents ul + ol,
  .news_detail .post_contents ul + p,
  .news_detail .post_contents ol + ul,
  .news_detail .post_contents ol + p {
    margin-top: 4.883vw;
  }
}
.news_detail .post_contents ul li {
  line-height: 1.8;
  padding-left: 30px;
  margin-bottom: 10px;
  position: relative;
}
@media screen and (max-width: 600px) {
  .news_detail .post_contents ul li {
    padding-left: 20px;
    margin-bottom: 0.977vw;
  }
}
.news_detail .post_contents ul li::before {
  position: absolute;
  top: 10px;
  left: 0;
  content: "";
  width: 10px;
  height: 10px;
  background: var(--sub_color);
  border-radius: 50%;
}
.news_detail .post_contents ol {
  list-style: decimal inside;
  line-height: 2.5;
}
@media screen and (max-width: 600px) {
  .news_detail .post_contents ol {
    line-height: 1.8;
  }
}
.news_detail .post_contents .btn_back.sp {
  margin-top: 10.133vw;
}
.news_detail .post_contents .btn_back.sp a {
  display: block;
  position: relative;
  padding-left: 8vw;
  font-size: clamp(14px, 1.25vw, 16px);
  transition: 0.3s;
}
.news_detail .post_contents .btn_back.sp a::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 5.333vw;
  height: 5.333vw;
  transform: translateY(-50%);
  background: url(../img/common/arrow04.svg) center/100% auto no-repeat;
}
.news_detail .post_contents .btn_back.sp a:hover {
  opacity: 0.7;
}
.news_detail .top_why_jpnap_deco_ring {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 34.9vw;
  margin: 0 auto;
}
.news_detail .top_why_jpnap_deco_ring .top_why_jpnap_deco_innerBox {
  position: relative;
  min-height: 100vh;
}
.news_detail .top_why_jpnap_deco_ring img {
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  transform: translateY(-50%) scale(0.3);
  opacity: 0;
}
.news_detail .top_why_jpnap_deco_ring .hamon_4 {
  position: static;
  width: 100%;
  height: auto;
  transform: translateY(0);
}
.news_detail .top_why_jpnap_deco_ring .hamon_3 {
  width: 65.4%;
}
.news_detail .top_why_jpnap_deco_ring .hamon_2 {
  width: 20.37%;
}
.news_detail .top_why_jpnap_deco_ring .hamon_1 {
  width: 6.49%;
}
.news_detail .top_why_jpnap_deco_ring.is-show {
  animation: circle_fadeout 1.5s cubic-bezier(0, 0, 0.24, 1) 0.5s;
}
.news_detail .top_why_jpnap_deco_ring.is-show .hamon_4 {
  animation: circle_fadein 1s cubic-bezier(0, 0, 0.24, 1) 0.3s;
}
.news_detail .top_why_jpnap_deco_ring.is-show .hamon_3 {
  animation: circle_fadein_2 0.9s cubic-bezier(0, 0, 0.24, 1) 0.4s;
}
.news_detail .top_why_jpnap_deco_ring.is-show .hamon_2 {
  animation: circle_fadein_2 0.8s cubic-bezier(0, 0, 0.24, 1) 0.4s;
}
.news_detail .top_why_jpnap_deco_ring.is-show .hamon_1 {
  animation: circle_fadein_2 0.3s cubic-bezier(0, 0, 0.24, 1);
}

.pagination {
  margin-top: 80px;
}
.pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  gap: 10px;
}
.pagination ul li a {
  padding: 12px 16px;
  border: 1px solid #413e3e;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}
.pagination ul li a:hover {
  opacity: 0.7;
}
.pagination ul li.current a {
  background-color: #9f004d;
}

.company .company-history {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.8;
}
@media screen and (max-width: 600px) {
  .company .company-history {
    flex-direction: column;
    align-items: flex-start;
  }
}
.company .company-history dt {
  width: 27.4%;
  padding: 1.875vw 3% 1.875vw 0;
  border-top: #413e3e solid 1px;
}
@media screen and (max-width: 600px) {
  .company .company-history dt {
    width: 100%;
    padding: 6.4vw 3% 6.4vw 0;
    padding-bottom: 0;
  }
}
.company .company-history dt.no_border {
  border-top: none;
}
.company .company-history dd {
  padding: 1.875vw 0;
  width: 69.6%;
  border-top: #413e3e solid 1px;
}
@media screen and (max-width: 600px) {
  .company .company-history dd {
    padding: 2.667vw 0 6.4vw;
    width: 100%;
    border-top: none;
  }
}
.company .company-history dd.no_border {
  border-top: none;
}
.company .company-history dd a {
  text-decoration: underline;
}
.company .company-history dd .txt-right {
  text-align: right;
}

.option .option-list__title {
  width: 100%;
  padding: 1.875vw 0 1.875vw 1.172vw;
  font-size: clamp(16px, 1.875vw, 28.8px);
  font-weight: 600;
  position: relative;
  border-top: #413e3e solid 1px;
  cursor: pointer;
}
@media (min-width: 1920px) {
  .option .option-list__title {
    padding: 36px 0 36px 22.5px;
  }
}
@media screen and (max-width: 600px) {
  .option .option-list__title {
    padding-left: 10px;
  }
}
@media screen and (max-width: 600px) {
  .option .option-list__title {
    padding: 6.4vw 12vw 6.4vw 4vw;
    font-size: min(4.267vw, 16px);
  }
}
.option .option-list__title span {
  margin-top: 0.781vw;
  display: block;
  font-size: clamp(14.2px, 1.25vw, 19.2px);
  font-weight: 400;
}
@media screen and (max-width: 600px) {
  .option .option-list__title span {
    font-size: 13px;
  }
}
.option .option-list__title::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  width: 2px;
  height: 5.078vw;
  background: var(--sub_color);
}
@media (min-width: 1920px) {
  .option .option-list__title::before {
    height: 98px;
  }
}
@media screen and (max-width: 600px) {
  .option .option-list__title::before {
    height: 6.3vw;
  }
}
@media screen and (max-width: 600px) {
  .option .option-list__title::before {
    height: min(13.867vw, 52px);
  }
}
.option .option-list__title::after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  content: "";
  width: 2.422vw;
  height: 2.422vw;
  background: url(../img/common/icon_plus.svg) center/100% 100% no-repeat;
  transition: 0.3s;
}
@media (min-width: 1920px) {
  .option .option-list__title::after {
    width: 46.5px;
    height: 46.5px;
  }
}
@media screen and (max-width: 600px) {
  .option .option-list__title::after {
    width: min(5.333vw, 20px);
    height: min(5.333vw, 20px);
  }
}
.option .option-list__title.is-active::after {
  background: url(../img/common/icon_minus.svg) center/100% 100% no-repeat;
  transition: 0.3s;
}
.option .option-list__item:first-of-type .option-list__title {
  border-top: none;
}
.option .option-list__item:last-of-type .option-list__title {
  border-bottom: #413e3e solid 1px;
}
.option .option-list__item:last-of-type .option-list__title.is-active {
  border-bottom: none;
}
.option .option-list__content {
  display: none;
  margin-bottom: min(3.906vw, 50px);
}
.option .option-list__content.is-active {
  display: block;
}
.option .option-list__content .area-list {
  display: flex;
  justify-content: flex-start;
  margin-bottom: min(2.344vw, 30px);
}
@media screen and (max-width: 600px) {
  .option .option-list__content .area-list {
    flex-wrap: wrap;
    margin-bottom: 4vw;
  }
}
.option .option-list__content .area-list li {
  color: #ececec;
  font-size: 14px;
  padding: 0.391vw 1.875vw;
  background: #400320;
  border: vav(--sub_color) solid 1px;
  border-radius: 30px;
}
@media (min-width: 1920px) {
  .option .option-list__content .area-list li {
    padding: 7.5px 36px;
  }
}
@media screen and (max-width: 600px) {
  .option .option-list__content .area-list li {
    font-size: max(2.4vw, 9px);
    padding: min(1.333vw, 5px) min(3.2vw, 12px);
    margin-bottom: 5px;
  }
}
.option .option-list__content .area-list li:not(:last-child) {
  margin-right: 0.938vw;
}
@media screen and (max-width: 600px) {
  .option .option-list__content .area-list li:not(:last-child) {
    margin-right: 5px;
  }
}
.option .option-list__content p {
  line-height: 1.8;
}
.option .option-list__content p:not(:last-child) {
  margin-bottom: min(2.344vw, 30px);
}
@media screen and (max-width: 600px) {
  .option .option-list__content p {
    font-size: 15px;
  }
  .option .option-list__content p:not(:last-child) {
    margin-bottom: min(8vw, 30px);
  }
}
.option .option-list__content figure {
  text-align: center;
}
.option .option-list__content .box {
  padding: 32px 0 32px 32px;
  padding: min(2.5vw, 32px) 0 min(2.5vw, 32px) min(2.5vw, 32px);
  background: #413e3e;
  border-radius: 6px;
  margin-bottom: min(3.906vw, 50px);
}
@media screen and (max-width: 600px) {
  .option .option-list__content .box {
    padding: min(5.333vw, 20px);
    margin-bottom: min(13.333vw, 50px);
  }
}
.option .option-list__content .box p {
  margin-bottom: 0;
}
.option .option-list__content .box span {
  font-weight: 600;
  display: inline-block;
  margin-bottom: 12px;
}
.option .option-list__content .box a {
  text-decoration: underline;
  font-weight: 400;
}
.option .option-list__content .u-font-small {
  font-size: 14px;
}
@media screen and (max-width: 600px) {
  .option .option-list__content .u-font-small {
    font-size: 13px;
  }
}
.option .option-list__content h4 {
  font-size: 16px;
  padding: 10px;
  background: #400320;
  border-radius: 6px;
  margin-bottom: min(1.719vw, 22px);
}
@media screen and (max-width: 600px) {
  .option .option-list__content h4 {
    font-size: 15px;
  }
}

@media screen and (max-width: 1024px) {
  .internet_fundamentals .lower_section .inner-container {
    width: 90%;
  }
}
@media screen and (max-width: 600px) {
  .internet_fundamentals .lower_contents {
    background-position: left top -2%;
  }
}
.internet_fundamentals .introduction {
  margin-bottom: min(3.438vw, 44px);
}
@media screen and (max-width: 600px) {
  .internet_fundamentals .introduction {
    font-size: 15px;
    margin-bottom: min(6.667vw, 25px);
  }
}
@media screen and (max-width: 600px) {
  .internet_fundamentals .outline-list {
    width: 110%;
    margin-left: -5%;
    margin-right: -5%;
  }
}
.internet_fundamentals .outline-list li:not(:last-child) {
  margin-bottom: min(1.016vw, 13px);
}
.internet_fundamentals .outline-list li:nth-child(odd) {
  background: rgba(64, 3, 32, 0.5);
}
.internet_fundamentals .outline-list a {
  display: block;
  width: 100%;
  padding: 17px 15px 24px 17px;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 600px) {
  .internet_fundamentals .outline-list a {
    padding: 1.66vw 1.465vw 2.344vw 1.66vw;
  }
}
@media screen and (max-width: 600px) {
  .internet_fundamentals .outline-list a {
    flex-direction: column;
    align-items: flex-start;
    padding: min(6.667vw, 25px) min(17.6vw, 66px) min(6.667vw, 25px) min(6.667vw, 25px);
  }
}
.internet_fundamentals .outline-list a::after {
  position: absolute;
  top: 50%;
  right: min(1.172vw, 15px);
  transform: translateY(-50%);
  content: "";
  width: 2.422vw;
  height: 2.422vw;
  background: url(../img/common/arrow02.svg) center/100% auto no-repeat;
  transition: 0.3s;
}
@media (min-width: 1920px) {
  .internet_fundamentals .outline-list a::after {
    width: 47px;
    height: 47px;
  }
}
@media screen and (max-width: 600px) {
  .internet_fundamentals .outline-list a::after {
    right: min(6.667vw, 25px);
    width: min(5.333vw, 26px);
    height: min(5.333vw, 26px);
  }
}
.internet_fundamentals .outline-list a .page {
  display: block;
  font-family: "taviraj", sans-serif;
  font-size: clamp(22px, 2.188vw, 33px);
  padding-right: min(1.328vw, 17px);
  border-right: #fff solid 1px;
}
@media screen and (max-width: 600px) {
  .internet_fundamentals .outline-list a .page {
    font-size: clamp(16px, 5.333vw, 24px);
    padding-right: 0;
    border-right: none;
    margin-bottom: 5px;
  }
}
.internet_fundamentals .outline-list a h3 {
  padding-left: min(1.328vw, 17px);
  font-size: clamp(16px, 1.563vw, 24px);
  font-weight: 600;
}
@media screen and (max-width: 600px) {
  .internet_fundamentals .outline-list a h3 {
    padding-left: 0;
    font-size: clamp(14px, 4.267vw, 19px);
  }
}
.internet_fundamentals .outline-list a h3 span {
  margin-top: min(0.781vw, 10px);
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
}
@media screen and (max-width: 600px) {
  .internet_fundamentals .outline-list a h3 span {
    font-size: clamp(13px, 3.467vw, 15px);
  }
}
@media screen and (max-width: 600px) {
  .internet_fundamentals .title_section .lower_contents_head {
    padding-top: 4.492vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
.internet_fundamentals .title_section .lower_contents_head .sub_title {
  text-wrap: pretty;
}
@media screen and (max-width: 600px) {
  .internet_fundamentals .title_section .lower_contents_head .sub_title {
    font-size: clamp(18px, 5.333vw, 24px);
    margin-left: 0;
    margin-top: 2.667vw;
  }
}
.internet_fundamentals .btn_back.top {
  position: absolute;
  top: 5.469vw;
  right: 7.422vw;
}
@media (min-width: 1920px) {
  .internet_fundamentals .btn_back.top {
    top: 109.25px;
    right: 142.5px;
  }
}
.internet_fundamentals .btn_back.btm {
  margin-top: min(4.141vw, 53px);
}
.internet_fundamentals .btn_back a {
  display: block;
  position: relative;
  padding-left: 2.656vw;
  font-size: clamp(14px, 1.25vw, 16px);
  transition: 0.3s;
}
.internet_fundamentals .btn_back a::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 1.875vw;
  height: 1.875vw;
  transform: translateY(-50%);
  background: url(../img/common/arrow04.svg) center/100% auto no-repeat;
}
.internet_fundamentals .btn_back a:hover {
  opacity: 0.7;
}
@media (min-width: 1920px) {
  .internet_fundamentals .btn_back a {
    padding-left: 51px;
  }
  .internet_fundamentals .btn_back a::before {
    width: 36px;
    height: 36px;
  }
}
@media screen and (max-width: 600px) {
  .internet_fundamentals .btn_back {
    text-align: right;
    margin-right: 21px;
  }
  .internet_fundamentals .btn_back.top {
    margin-bottom: min(6.933vw, 26px);
    position: static;
  }
  .internet_fundamentals .btn_back a {
    display: inline;
    font-size: 15px;
    padding-left: 30px;
  }
  .internet_fundamentals .btn_back a::before {
    width: 20px;
    height: 20px;
  }
}
.internet_fundamentals .if_contents h2.lower_contents_title {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .internet_fundamentals .if_contents h2.lower_contents_title {
    flex-direction: column;
    align-items: flex-start;
  }
}
.internet_fundamentals .if_contents h2.lower_contents_title .page {
  display: inline-block;
  font-family: "taviraj", sans-serif;
  font-size: clamp(22px, 2.188vw, 33px);
  font-weight: 400;
  padding-right: min(1.25vw, 16px);
}
@media screen and (max-width: 600px) {
  .internet_fundamentals .if_contents h2.lower_contents_title .page {
    font-size: clamp(18px, 5.333vw, 24px);
    padding-right: 0;
  }
}
.internet_fundamentals .if_contents h2.lower_contents_title .title {
  display: inline-block;
  font-size: clamp(25px, 2.5vw, 38px);
  padding-left: min(2.031vw, 26px);
  border-left: #fff solid 1px;
}
@media screen and (max-width: 600px) {
  .internet_fundamentals .if_contents h2.lower_contents_title .title {
    font-size: clamp(19px, 6.4vw, 28px);
    padding-left: 0;
    border-left: none;
  }
}
.internet_fundamentals .if_contents p {
  line-height: 1.75;
  margin-bottom: min(2.344vw, 30px);
  text-indent: 1em;
}
@media screen and (max-width: 600px) {
  .internet_fundamentals .if_contents p {
    font-size: 15px;
    margin-bottom: min(8vw, 30px);
  }
}
.internet_fundamentals .if_contents p sup {
  font-size: 70%;
  vertical-align: top;
  position: relative;
  top: 0;
}
.internet_fundamentals .if_contents p.text-small {
  text-indent: 0;
  font-size: 80%;
}
.internet_fundamentals .if_contents h3 {
  color: #fff;
  font-size: 16px;
  padding: min(0.625vw, 8px) min(1.563vw, 20px);
  background: #400320;
  border-radius: 6px;
  margin: min(3.125vw, 40px) 0 min(3.125vw, 40px);
  position: relative;
}
@media screen and (max-width: 1024px) {
  .internet_fundamentals .if_contents h3 {
    padding: 2.133vw 5.333vw;
    margin: min(10.667vw, 40px) 0 min(10.667vw, 40px);
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .internet_fundamentals .if_contents h3 {
    font-size: clamp(14px, 4.267vw, 20px);
    text-wrap: pretty;
  }
}
.internet_fundamentals .if_contents h3::before {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  content: "";
  width: min(0.313vw, 4px);
  height: 1em;
  background: #111111;
}
@media screen and (max-width: 600px) {
  .internet_fundamentals .if_contents h3::before {
    width: 2px;
    height: min(4.8vw, 20px);
    top: 3.2vw;
    bottom: 3vw;
    transform: none;
    height: calc(100% - 6vw);
  }
}
.internet_fundamentals .if_contents h4 {
  font-size: 16px;
  line-height: 1.75;
  padding-left: 15px;
  margin: min(3.125vw, 40px) 0 min(3.125vw, 40px);
  position: relative;
}
.internet_fundamentals .if_contents h4::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  width: 3px;
  height: 22px;
  background: var(--sub_color);
}
.internet_fundamentals .if_contents ul.list_01 {
  margin-bottom: min(3.125vw, 40px);
}
.internet_fundamentals .if_contents ul.list_01 li {
  line-height: 1.75;
  padding-left: 0.8em;
  position: relative;
}
.internet_fundamentals .if_contents ul.list_01 li::before {
  position: absolute;
  top: 0.8em;
  left: 0.2em;
  content: "";
  width: 3px;
  height: 3px;
  background: #fff;
  border-radius: 50%;
}

body.stories .lower_contents {
  aspect-ratio: 1280/393;
  background-color: #111;
}
body.stories footer {
  background-color: #fff;
  margin-top: -1px;
}
body.stories .lower_section {
  position: relative;
}
body.stories .lower_section h2.stories_title {
  text-align: center;
  padding-top: 2.2vw;
  margin-bottom: clamp(27px, 2.906vw, 50px);
}
body.stories .lower_section h2.stories_title img {
  width: 38.8vw;
}
body.stories .lower_section:after {
  content: "";
  position: absolute;
  top: -5vw;
  left: 8.2%;
  width: 23.4vw;
  height: 23.4vw;
  background: url(../img/story/story_deco.png) center/100% auto no-repeat;
}
@media (min-width: 1920px) {
  body.stories .lower_section h2.stories_title {
    padding-top: 40px;
  }
  body.stories .lower_section h2.stories_title img {
    width: 745px;
  }
  body.stories .lower_section:after {
    content: "";
    position: absolute;
    top: -96px;
    width: 449.28px;
    height: 449.28px;
    background: url(../img/story/story_deco.png) center/100% auto no-repeat;
  }
}
@media screen and (max-width: 1239px) {
  body.stories .lower_contents {
    aspect-ratio: 1280/480;
  }
}
@media screen and (max-width: 1024px) {
  body.stories .lower_contents {
    aspect-ratio: initial;
  }
  body.stories .lower_section .inner-container {
    width: 100%;
    margin-bottom: 0;
  }
  body.stories .lower_section h2.stories_title img {
    width: 88.8vw;
    max-width: 600px;
  }
  body.stories .lower_section .introduction {
    width: 92%;
    margin: 0 auto;
    padding-bottom: 1.8em;
    line-height: 1.92;
    font-size: clamp(14px, 3.73vw, 22px);
  }
}

.stories_list_container {
  background-color: #fff;
  overflow-x: hidden;
  padding-top: 84px;
  padding-bottom: 150px;
}
@media screen and (max-width: 600px) {
  .stories_list_container {
    padding-top: 10px;
    padding-bottom: 50px;
  }
}

.stories_list_container .stories_list li {
  width: 85.5%;
  min-width: 900px;
  font-size: clamp(128px, 12.5vw, 192px);
  display: grid;
  grid-template-columns: 16.22% 20.5% 1fr;
  grid-template-rows: 0.7em auto;
  margin-left: auto;
  position: relative;
  z-index: 5;
  padding-bottom: max(120px, 9.3758vw);
}
.stories_list_container .stories_list li::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 48.98vw;
  height: 41.25vw;
  bottom: -48.3%;
  left: 0;
  background: url(../img/story/river_1.png) left center/contain no-repeat;
}
.stories_list_container .stories_list li .imgBox {
  aspect-ratio: 400/480;
  grid-area: 1/1/3/3;
  position: relative;
  z-index: 1;
  padding-bottom: 28px;
  padding-top: 5%;
}
.stories_list_container .stories_list li .textContet {
  grid-area: 2/2/3/4;
  background-color: #e9e9e9;
  padding: 50px 16.48vw 28px calc(0.2em + 24.2%);
  border-radius: 20px 0 0 20px;
}
@media (min-width: 1920px) {
  .stories_list_container .stories_list li .textContet {
    padding: 50px 16.48% 28px calc(0.2em + 24.2%);
  }
}
.stories_list_container .stories_list li .textContet h3 {
  font-size: clamp(25.6px, 2.5vw, 48px);
  font-weight: 700;
  line-height: 1.21;
  margin-bottom: 0.85em;
}
.stories_list_container .stories_list li .textContet p {
  font-size: clamp(14px, 1.25vw, 24px);
}
.stories_list_container .stories_list li .textContet p,
.stories_list_container .stories_list li .textContet h3 {
  color: var(--black_color);
}
.stories_list_container .stories_list li .textContet .btnBox {
  margin-top: 1.5em;
  text-align: right;
  font-size: clamp(14px, 1.25vw, 24px);
}
.stories_list_container .stories_list li .textContet .btnBox .site_btn::after {
  background-image: url(../img/common/arrow05.svg);
}
.stories_list_container .stories_list li .list_num {
  padding-left: 0.14em;
  align-self: flex-start;
  grid-area: 1/3/2/4;
  font-family: "taviraj";
}
.stories_list_container .stories_list li .list_num P {
  height: 0.81em;
  color: #e9e9e9;
  padding-left: 0.3em;
  line-height: 0.81em;
  background: url(../img/story/story.png) left top/auto 80% no-repeat;
}
.stories_list_container .stories_list li:nth-child(even) {
  margin-left: 0;
  grid-template-columns: 1fr 20.5% 16.22%;
}
.stories_list_container .stories_list li:nth-child(even)::after {
  bottom: -45.3%;
  left: auto;
  right: -7%;
  background-image: url(../img/story/river_2.png);
}
.stories_list_container .stories_list li:nth-child(even) .imgBox {
  grid-area: 1/2/3/4;
}
.stories_list_container .stories_list li:nth-child(even) .textContet {
  grid-area: 2/1/3/3;
  padding-right: calc(0.2em + 24.2%);
  padding-left: 14.06vw;
  border-radius: 0 20px 20px 0;
}
@media (min-width: 1920px) {
  .stories_list_container .stories_list li:nth-child(even) .textContet {
    padding-left: 14.06%;
  }
}
.stories_list_container .stories_list li:nth-child(even) .list_num {
  grid-area: 1/1/2/2;
  padding-left: 14.06vw;
}
@media (min-width: 1920px) {
  .stories_list_container .stories_list li:nth-child(even) .list_num {
    padding-left: 14.06%;
  }
}
.stories_list_container .stories_list li:last-child {
  padding-bottom: 0;
}
.stories_list_container .stories_list li:last-child::after {
  content: none;
}
@media screen and (max-width: 1024px) {
  .stories_list_container .stories_list li {
    min-width: initial;
    width: 95%;
    padding-bottom: 9.3758vw;
    font-size: clamp(60px, 12.5vw, 192px);
  }
  .stories_list_container .stories_list li .textContet {
    padding-right: 10vw;
  }
  .stories_list_container .stories_list li .textContet h3 {
    font-size: clamp(20px, 2.5vw, 48px);
  }
  .stories_list_container .stories_list li .textContet .btnBox .site_btn {
    font-size: clamp(12px, 4.8vw, 18px);
  }
  .stories_list_container .stories_list li::after {
    bottom: -35.3%;
  }
  .stories_list_container .stories_list li:nth-child(odd) .textContet {
    padding-right: 5vw;
  }
  .stories_list_container .stories_list li:nth-child(even)::after {
    bottom: -33%;
  }
  .stories_list_container .stories_list li:nth-child(even) .textContet {
    padding-left: 4vw;
  }
  .stories_list_container .stories_list li:nth-child(even) .list_num {
    padding-left: 4vw;
  }
}
@media screen and (max-width: 600px) {
  .stories_list_container .stories_list li {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .stories_list_container .stories_list li::after {
    width: 74.93vw;
    height: 74.93vw;
    bottom: -25.3%;
    background-image: url(../img/story/river_2.png);
  }
  .stories_list_container .stories_list li .list_num {
    order: -1;
    font-size: clamp(60px, 20vw, 112.5px);
    height: 0.71em;
  }
  .stories_list_container .stories_list li .list_num p {
    height: 0.71em;
    line-height: 0.8em;
    background-size: auto 100%;
  }
  .stories_list_container .stories_list li .imgBox {
    aspect-ratio: initial;
    padding-bottom: 28px;
    background-color: #e9e9e9;
  }
  .stories_list_container .stories_list li .imgBox img {
    width: 93%;
    margin-right: auto;
    background-color: #e9e9e9;
    border-radius: 8px;
  }
  .stories_list_container .stories_list li .textContet {
    border-radius: 0 !important;
    padding-top: 0;
    padding-left: 7vw !important;
    padding-right: 7vw !important;
  }
  .stories_list_container .stories_list li .textContet h3 {
    font-size: clamp(16px, 4.8vw, 27px);
  }
  .stories_list_container .stories_list li .textContet p {
    font-size: clamp(14px, 4vw, 22.5px);
  }
  .stories_list_container .stories_list li .textContet .btnBox {
    text-align: center;
  }
  .stories_list_container .stories_list li:nth-child(even)::after {
    background-image: url(../img/story/river_1.png);
    bottom: -28.3%;
    right: 10%;
  }
  .stories_list_container .stories_list li:nth-child(even) .imgBox img {
    margin-right: 0;
    margin-left: auto;
  }
  .stories_list_container .stories_list li:nth-child(even) .list_num {
    margin-left: auto;
    padding-left: 0;
    padding-right: 0.3em;
  }
}

body.stories_single .breadcrumbs {
  top: 10px;
  bottom: 0;
}
body.stories_single .breadcrumbs .breadcrumbs_list {
  flex-wrap: wrap;
  line-height: 1.5;
}

.story_single_container,
.story_single_pager_list {
  width: 71.25vw;
  min-width: 800px;
}
@media (min-width: 1920px) {
  .story_single_container,
  .story_single_pager_list {
    width: 71.25%;
  }
}

.story_single_container_outer,
.story_single_pager_list_outer {
  background-color: #fff;
  width: 100%;
}

.story_single_container {
  margin: 0 auto;
  padding: 40px 0 44px;
}

@media screen and (max-width: 1024px) {
  .story_single_container,
  .story_single_pager_list {
    width: 90vw;
    min-width: initial;
  }
}
@media screen and (max-width: 600px) {
  .story_single_container {
    width: 100%;
    padding: 0 0 40px;
  }
}
.story_single_title {
  display: flex;
  align-items: center;
}
.story_single_title .list_num {
  font-size: clamp(128px, 12.5vw, 192px);
  padding-left: 0.14em;
  align-self: flex-start;
  grid-area: 1/3/2/4;
  font-family: "taviraj";
  line-height: 1;
}
.story_single_title .list_num P {
  height: 0.81em;
  color: #e9e9e9;
  padding-left: 0.3em;
  line-height: 1;
  background: url(../img/story/story.png) left bottom 0.02em/auto 80% no-repeat;
}
.story_single_title h2 {
  color: #1f1f1f;
  font-size: clamp(24px, 2.5vw, 48px);
  font-weight: 700;
  line-height: 1.31;
  margin-left: 1em;
}
@media screen and (max-width: 1024px) {
  .story_single_title .list_num {
    font-size: clamp(96px, 12.5vw, 192px);
  }
  .story_single_title h2 {
    font-size: clamp(22px, 2.5vw, 48px);
  }
}
@media screen and (max-width: 600px) {
  .story_single_title .list_num {
    font-size: clamp(64px, 21.33vw, 120px);
  }
}

.story_single_content {
  padding: 55px 10.77% 48px;
  border-radius: 20px;
  background: #e9e9e9;
  font-size: clamp(14px, 1.25vw, 20px);
}
.story_single_content * {
  color: #1f1f1f;
}
.story_single_content .imgBox {
  margin-bottom: 2em;
}
.story_single_content h2 {
  font-size: clamp(20px, 6.4vw, 36px);
  font-weight: 700;
}
.story_single_content p {
  line-height: 2;
  margin-top: 1em;
}
.story_single_content p:not(.no_indent)::first-letter {
  padding-left: 0.8em;
}
@media screen and (max-width: 1024px) {
  .story_single_content {
    padding: 55px 6.6% 48px;
    font-size: clamp(14px, 4vw, 23px);
  }
}
@media screen and (max-width: 600px) {
  .story_single_content {
    border-radius: 0px;
    padding-top: 1.5em;
    padding-bottom: 3em;
  }
}
.story_single_content ol {
  list-style: auto;
  padding-left: 1.2em;
}
.story_single_content ol li {
  margin-bottom: 0.3em;
}

.story_single_pager_list {
  margin: 0 auto;
  padding: 66px 0 77px;
  display: flex;
  justify-content: space-between;
}
.story_single_pager_list li {
  width: 47.15%;
}
.story_single_pager_list li a {
  display: block;
  transition: 0.4s;
}
.story_single_pager_list li a:hover {
  opacity: 0.7;
}
.story_single_pager_list li .arrows {
  color: #000;
  font-size: clamp(16px, 1.74vw, 33.42px);
  position: relative;
  margin-bottom: 5px;
}
.story_single_pager_list li .arrows::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% + 0.1em));
  width: 1em;
  height: 1em;
  background: url(../img/common/arrow01_r.svg) center/100% 100% no-repeat;
}
@media (min-width: 1920px) {
  .story_single_pager_list li .arrows::after {
    background-size: 97% 97%;
  }
}
.story_single_pager_list li .arrows.prev_arrows {
  padding-left: calc(1em + 8px);
}
.story_single_pager_list li .arrows.prev_arrows::after {
  left: 0;
}
.story_single_pager_list li .arrows.next_arrows {
  padding-right: calc(1em + 8px);
  text-align: right;
}
.story_single_pager_list li .arrows.next_arrows::after {
  background-image: url(../img/common/arrow01.svg);
  right: 0;
}
.story_single_pager_list li .pager_list_content {
  background-color: var(--black_color);
  border-radius: 20px;
  padding: 5.12% 5.81% 4.88%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.story_single_pager_list li .pager_list_content h3 {
  font-size: clamp(19px, 1.875vw, 36px);
  font-weight: 700;
  flex: 1;
  padding: 0 0.8em;
  line-height: 1.25;
}
.story_single_pager_list li .pager_list_content .imgBox {
  aspect-ratio: 1/1;
  width: 23.26%;
}
.story_single_pager_list li .pager_list_content .list_num {
  position: absolute;
  z-index: -1;
  font-size: clamp(64px, 6.25vw, 120px);
  top: 0;
  font-family: "taviraj";
  color: #413e3e;
  line-height: 0.85em;
  display: inline;
  vertical-align: text-top;
}
.story_single_pager_list li.prev .pager_list_content {
  justify-content: flex-end;
}
.story_single_pager_list li.prev .pager_list_content .list_num {
  left: -0.05em;
}
.story_single_pager_list li.prev .pager_list_content h3 {
  text-align: right;
}
.story_single_pager_list li.prev .pager_list_content h3 span {
  text-align: left;
}
.story_single_pager_list li.next .pager_list_content .list_num {
  right: -0.05em;
}
.story_single_pager_list li.next .pager_list_content .imgBox {
  order: -1;
}
@media screen and (max-width: 1024px) {
  .story_single_pager_list li .arrows {
    font-size: clamp(14px, 3.7vw, 21px);
  }
  .story_single_pager_list li .pager_list_content {
    border-radius: 8px;
  }
  .story_single_pager_list li .pager_list_content .imgBox {
    display: none;
  }
  .story_single_pager_list li .pager_list_content h3 {
    padding: 0;
    font-size: clamp(12px, 3.2vw, 18px);
  }
  .story_single_pager_list li .pager_list_content .list_num {
    font-size: clamp(32px, 10.67vw, 60px);
  }
}
@media screen and (max-width: 374px) {
  .story_single_pager_list {
    width: 98vw;
  }
  .story_single_pager_list li {
    width: 49%;
  }
}

.traffic_page .lower_section .traffic_page_data_container,
.traffic_page .traffic_page_data_section .traffic_page_data_container {
  width: 71.1vw;
  margin: 0 auto;
}
@media (min-width: 1920px) {
  .traffic_page .lower_section .traffic_page_data_container,
  .traffic_page .traffic_page_data_section .traffic_page_data_container {
    width: 71.1%;
    overflow-x: hidden;
  }
}
@media screen and (max-width: 1024px) {
  .traffic_page .lower_section .traffic_page_data_container,
  .traffic_page .traffic_page_data_section .traffic_page_data_container {
    width: 82vw;
  }
}
@media screen and (max-width: 600px) {
  .traffic_page .lower_section .traffic_page_data_container,
  .traffic_page .traffic_page_data_section .traffic_page_data_container {
    width: 88.624vw;
  }
}

.traffic_page_data_section {
  min-height: 600px;
}

.traffic_page .lower_contents {
  background: none !important;
}
.traffic_page .traffic_page_lower_section .inner-container {
  margin-bottom: 6vw;
}
@media (min-width: 1920px) {
  .traffic_page .traffic_page_lower_section .inner-container {
    margin-bottom: 115px;
  }
}
.traffic_page .traffic_page_lower_section nav {
  margin-top: 46px;
}
.traffic_page .traffic_page_lower_section ul {
  display: flex;
  font-size: clamp(14px, 1.25vw, 24px);
  font-weight: 700;
  gap: 1.667em;
  letter-spacing: 0.053em;
}
.traffic_page .traffic_page_lower_section ul a {
  color: #ececec;
  display: inline-block;
  position: relative;
  transition: 0.4s;
}
.traffic_page .traffic_page_lower_section ul a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background: #bc001d;
  transform: scale(0, 1);
  transform-origin: left;
  transition: 0.4s;
}
.traffic_page .traffic_page_lower_section ul a:hover:not(.current) {
  opacity: 0.7;
}
.traffic_page .traffic_page_lower_section ul a:hover::before {
  transform: scale(1);
}
.traffic_page .traffic_page_lower_section ul a.current::before {
  transform: scale(1);
}
.traffic_page .traffic_page_lower_section ul a.current.det::before {
  transform: scale(0);
}
@media screen and (max-width: 1024px) {
  .traffic_page .traffic_page_lower_section ul {
    flex-wrap: wrap;
    font-size: clamp(12px, 3.2vw, 18px);
    gap: 0.5em 0.85em;
    max-width: 510px;
  }
  .traffic_page .traffic_page_lower_section ul a {
    padding: 0.4em 1em;
    border-radius: 999px;
    border: 1px solid #413e3e;
  }
  .traffic_page .traffic_page_lower_section ul a::before {
    content: none !important;
  }
  .traffic_page .traffic_page_lower_section ul a.current {
    background-color: #9f004d;
  }
}
@media screen and (max-width: 600px) {
  .traffic_page .traffic_page_lower_section ul {
    display: grid;
    grid-template-columns: repeat(3, calc((100% - 1.7em) / 3));
    gap: 0.5em 0.85em;
    max-width: initial;
  }
  .traffic_page .traffic_page_lower_section ul a {
    width: 100%;
    text-align: center;
    padding: 0.25em 1em;
    border-radius: 999px;
  }
}

.traffic_page .traffic_page_data_section .traffic_current_page_title {
  font-size: clamp(25.6px, 2.5vw, 48px);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 1em;
}
@media screen and (max-width: 600px) {
  .traffic_page .traffic_page_data_section .traffic_current_page_title {
    font-size: clamp(16px, 5.2vw, 30px);
    margin-bottom: 2.5em !important;
  }
}

.traffic_page_data_content {
  margin-bottom: 70px;
}
.traffic_page_data_content > p {
  margin-top: 36px !important;
}
.traffic_page_data_content li {
  padding: 33px 0 37px;
  position: relative;
  z-index: 5;
}
@media (min-width: 1920px) {
  .traffic_page_data_content li {
    overflow: hidden;
  }
}
.traffic_page_data_content li::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #9f004d;
  opacity: 0.4;
  transition: 0.7s;
  transform: translateX(-120%);
}
.traffic_page_data_content li.is-show::before {
  transform: translateX(0%);
}
.traffic_page_data_content li:nth-child(even)::after {
  content: "";
  position: absolute;
  z-index: -2;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #660031;
  opacity: 0.25;
}
.traffic_page_data_content .innerBox {
  display: flex;
}
.traffic_page_data_content .innerBox .textContent {
  flex: 1;
  font-size: clamp(14px, 1.25vw, 24px);
  letter-spacing: 0.085em;
  margin-top: 1em;
}
.traffic_page_data_content .innerBox .textContent h3 {
  font-size: 2.125em;
  letter-spacing: 0.08em;
  margin-bottom: 0.3em;
}
.traffic_page_data_content .innerBox .textContent p {
  background-color: #6f2046;
  padding: 0.3em 0.8em;
  display: inline-block;
}
.traffic_page_data_content .innerBox .imgContent {
  width: 70.32%;
  padding: 4%;
  border-radius: 8px;
  background-color: #f9f9f9;
}
@media screen and (max-width: 600px) {
  .traffic_page_data_content li {
    overflow: initial;
    margin-bottom: clamp(45px, 1.2vw, 60px);
    padding: 38px 0 40px;
  }
  .traffic_page_data_content li:last-child {
    margin-bottom: 0;
  }
  .traffic_page_data_content li::before {
    transform: translateX(0);
    opacity: 0.4;
    background: linear-gradient(90deg, #bb0723 -3.49%, #461b83 95.16%);
  }
  .traffic_page_data_content li::after {
    content: none;
  }
  .traffic_page_data_content .innerBox {
    display: block;
    position: relative;
  }
  .traffic_page_data_content .innerBox .textContent {
    margin: 0 auto;
    position: absolute;
    top: calc(-12% - 38px);
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: clamp(12px, 3.733vw, 22px);
  }
  .traffic_page_data_content .innerBox .textContent h3 {
    font-size: 1.7143em;
  }
  .traffic_page_data_content .innerBox .imgContent {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .traffic_page.en .traffic_page_list li:first-child a {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.peerWatcher .introduction {
  margin-bottom: 50px;
}
@media screen and (max-width: 600px) {
  .peerWatcher .introduction {
    margin-bottom: 20px;
  }
}
.peerWatcher .introduction p {
  font-size: clamp(14px, 1.25vw, 19px);
  line-height: 1.8;
  margin-bottom: 30px;
}
@media screen and (max-width: 600px) {
  .peerWatcher .introduction p {
    font-size: clamp(15px, 2.5vw, 18px);
    margin-bottom: 20px;
  }
}
.peerWatcher .conent {
  border-top: #413e3e solid 1px;
}
.peerWatcher .conent._03 {
  margin-top: 110px;
}
@media screen and (max-width: 600px) {
  .peerWatcher .conent._03 {
    margin-top: min(13.333vw, 50px);
  }
}
.peerWatcher .conent h3 {
  padding: 32px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 600px) {
  .peerWatcher .conent h3 {
    padding: clamp(16px, 5.333vw, 24px) 0;
  }
}
.peerWatcher .conent h3 .no {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: var(--sub_color) solid 1px;
  border-radius: 50%;
  margin-right: 22px;
}
@media screen and (max-width: 600px) {
  .peerWatcher .conent h3 .no {
    width: clamp(38px, 12.8vw, 57px);
    height: clamp(38px, 12.8vw, 57px);
    margin-right: min(2.667vw, 10px);
  }
}
.peerWatcher .conent h3 .no span {
  display: block;
  font-size: 22px;
}
@media screen and (max-width: 600px) {
  .peerWatcher .conent h3 .no span {
    font-size: clamp(14px, 4.267vw, 19px);
  }
}
.peerWatcher .conent h3 .tit {
  color: #ececec;
  font-size: 22px;
  font-weight: 600;
}
@media screen and (max-width: 600px) {
  .peerWatcher .conent h3 .tit {
    font-size: clamp(14px, 4.267vw, 19px);
  }
}
.peerWatcher .conent p.caption {
  font-size: clamp(14px, 1.25vw, 19px);
  text-align: center;
  line-height: 1.8;
  margin: 25px 0 70px;
}
@media screen and (max-width: 600px) {
  .peerWatcher .conent p.caption {
    font-size: clamp(15px, 2.5vw, 18px);
    text-align: left;
    margin: 1.667vw 0 8.333vw;
  }
}

body.en.peerWatcher p.caption {
  text-align: left;
}

.my-jpnap .introduction {
  margin-bottom: 50px;
}
@media screen and (max-width: 600px) {
  .my-jpnap .introduction {
    margin-bottom: min(10.667vw, 40px);
  }
}
.my-jpnap .introduction p {
  font-size: clamp(14px, 1.25vw, 19px);
  line-height: 1.8;
}
.my-jpnap .content {
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .my-jpnap .content {
    margin-bottom: min(10.667vw, 40px);
  }
}
.my-jpnap .content h3 {
  font-size: clamp(19px, 2.637vw, 28px);
  font-weight: 600;
  margin-bottom: 18px;
}
@media screen and (max-width: 600px) {
  .my-jpnap .content h3 {
    font-size: clamp(14px, 4.8vw, 22px);
    margin-bottom: 1em;
  }
}
.my-jpnap .content ul.list-redCircle li {
  margin-bottom: 18px;
}
@media screen and (max-width: 600px) {
  .my-jpnap .content ul.list-redCircle li {
    margin-bottom: min(2.667vw, 10px);
  }
}
.my-jpnap .row {
  margin-top: 85px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 600px) {
  .my-jpnap .row {
    flex-direction: column;
    margin-top: min(12vw, 45px);
  }
}
.my-jpnap .row .col {
  width: 46%;
}
@media screen and (max-width: 600px) {
  .my-jpnap .row .col {
    width: 100%;
    margin-bottom: min(5.333vw, 20px);
  }
}
.my-jpnap .row .col .caption {
  margin-top: 11px;
  text-align: center;
  font-size: clamp(15px, 1.172vw, 18px);
  line-height: 1.8;
}
@media screen and (max-width: 600px) {
  .my-jpnap .row .col .caption {
    font-size: 15px;
  }
}

ul.list-redCircle li {
  font-size: clamp(14px, 1.25vw, 19px);
  padding-left: 30px;
  line-height: 1.8;
  margin-bottom: 12px;
  position: relative;
}
@media screen and (max-width: 600px) {
  ul.list-redCircle li {
    font-size: clamp(15px, 2.5vw, 18px);
    padding-left: 3.5vw;
  }
}
ul.list-redCircle li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  content: "";
  width: 10px;
  height: 10px;
  background: var(--sub_color);
  border-radius: 50%;
}
@media screen and (max-width: 600px) {
  ul.list-redCircle li::before {
    width: min(2.133vw, 8px);
    height: min(2.133vw, 8px);
  }
}

.pop .introduction {
  font-size: clamp(14px, 1.25vw, 19px);
  line-height: 1.75;
  margin-bottom: 35px;
}
@media screen and (max-width: 600px) {
  .pop .introduction {
    line-height: 1.8;
    font-size: clamp(12px, 4vw, 18px);
    margin-bottom: min(6.933vw, 31px);
  }
}
.pop .pop-table {
  width: 100%;
  border-collapse: collapse;
}
@media screen and (max-width: 600px) {
  .pop .pop-table:not(:last-child) {
    margin-bottom: min(13.333vw, 60px);
  }
}
.pop .pop-table .th_01 {
  width: 16%;
}
@media screen and (max-width: 600px) {
  .pop .pop-table .th_01 {
    display: none;
  }
}
.pop .pop-table .th_02 {
  width: 36%;
}
@media screen and (max-width: 600px) {
  .pop .pop-table .th_02 {
    width: 30%;
    text-align: left;
    padding-left: 1.465vw;
    padding-right: 1.465vw;
  }
}
.pop .pop-table .th_03,
.pop .pop-table .th_04,
.pop .pop-table .th_05,
.pop .pop-table .th_06 {
  width: 12%;
}
@media screen and (max-width: 600px) {
  .pop .pop-table .th_03,
  .pop .pop-table .th_04,
  .pop .pop-table .th_05,
  .pop .pop-table .th_06 {
    width: 15%;
  }
}
.pop .pop-table th,
.pop .pop-table td {
  font-size: clamp(12px, 1.172vw, 18px);
  border: #ececec solid 1px;
}
.pop .pop-table th.bt-none,
.pop .pop-table td.bt-none {
  border-top: none;
}
@media screen and (max-width: 600px) {
  .pop .pop-table th.bt-none,
  .pop .pop-table td.bt-none {
    border-top: #ececec solid 1px;
  }
}
.pop .pop-table th.btb-none,
.pop .pop-table td.btb-none {
  border-top: none;
  border-bottom: none;
}
@media screen and (max-width: 600px) {
  .pop .pop-table th.btb-none,
  .pop .pop-table td.btb-none {
    border-top: #ececec solid 1px;
    border-bottom: #ececec solid 1px;
  }
}
.pop .pop-table th.bb-none,
.pop .pop-table td.bb-none {
  border-bottom: none;
}
@media screen and (max-width: 600px) {
  .pop .pop-table th.bb-none,
  .pop .pop-table td.bb-none {
    border-bottom: #ececec solid 1px;
  }
}
@media screen and (max-width: 600px) {
  .pop .pop-table thead tr.title th {
    background: #1b0210;
  }
}
.pop .pop-table thead tr th {
  padding: 7px 0;
  text-align: center;
  background: #330620;
}
@media screen and (max-width: 1024px) {
  .pop .pop-table thead tr th {
    padding: 0.684vw 0;
  }
}
@media screen and (max-width: 600px) {
  .pop .pop-table thead tr th {
    padding: min(3.2vw, 12px) 0;
  }
}
.pop .pop-table tbody th {
  vertical-align: middle;
  text-align: center;
  background: #1b0210;
}
.pop .pop-table tbody tr th {
  width: 16%;
}
.pop .pop-table tbody tr td {
  padding: 12px 0;
  vertical-align: middle;
}
@media screen and (max-width: 1024px) {
  .pop .pop-table tbody tr td {
    padding: 1.172vw 0;
  }
}
@media screen and (max-width: 600px) {
  .pop .pop-table tbody tr td {
    padding: min(3.2vw, 12px) 0;
  }
}
.pop .pop-table tbody tr td:nth-child(1) {
  width: 36%;
  text-align: left;
  padding-left: 15px;
}
@media screen and (max-width: 1024px) {
  .pop .pop-table tbody tr td:nth-child(1) {
    padding-left: 1.465vw;
    padding-right: 1.465vw;
  }
}
.pop .pop-table tbody tr td:nth-child(2), .pop .pop-table tbody tr td:nth-child(3), .pop .pop-table tbody tr td:nth-child(4), .pop .pop-table tbody tr td:nth-child(5) {
  width: 12%;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .pop .pop-table tbody tr td span.u-sp-show {
    display: block;
    text-align: center;
  }
}
.pop .pop-table tbody tr.line1 td:nth-child(2) {
  width: 36%;
  padding-left: 15px;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .pop .pop-table tbody tr.line1 td:nth-child(2) {
    padding-left: 1.465vw;
    padding-right: 1.465vw;
  }
}
.pop .pop-table tbody tr.line1 td:nth-child(3), .pop .pop-table tbody tr.line1 td:nth-child(4), .pop .pop-table tbody tr.line1 td:nth-child(5), .pop .pop-table tbody tr.line1 td:nth-child(6) {
  width: 12%;
  text-align: center;
}
.pop .table_caution {
  font-size: clamp(14px, 1.25vw, 19px);
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  .pop .table_caution {
    margin-top: 5.859vw;
  }
}
@media screen and (max-width: 600px) {
  .pop .table_caution {
    font-size: clamp(12px, 4vw, 18px);
  }
}

.customer:not(.en, .cn-zh) .lower_contents {
  background: none;
}
.customer.en .lower_section .inner-container {
  margin-bottom: 0;
}
.customer:not(.en) .title_section {
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .customer:not(.en) .title_section {
    margin-bottom: 28px;
  }
}
.customer .customer_container {
  margin-left: 8.2%;
  margin-right: 14.5705vw;
  margin-bottom: 9.375vw;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .customer .customer_container {
    flex-direction: column;
    margin-right: 8.2%;
  }
}
@media screen and (max-width: 600px) {
  .customer .customer_container {
    width: 90%;
    margin: 0 auto 11.719vw;
  }
}
.customer .side_content {
  position: sticky;
  top: 7.813vw;
  left: 0;
  width: 15.2%;
}
@media screen and (max-width: 1024px) {
  .customer .side_content {
    width: 100%;
    position: static;
  }
}
@media screen and (max-width: 1024px) {
  .customer .side_content .customer-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: min(8.533vw, 32px);
  }
}
.customer .side_content .customer-menu li {
  font-size: clamp(12px, 1.094vw, 16px);
  margin-bottom: 1.25vw;
}
@media (min-width: 1920px) {
  .customer .side_content .customer-menu li {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .customer .side_content .customer-menu li {
    font-size: clamp(10px, 3.2vw, 14px);
    line-height: 2;
    width: 33.3333%;
    border-left: #413e3e solid 1px;
    margin-bottom: 3.2vw;
  }
}
@media screen and (max-width: 1024px) {
  .customer .side_content .customer-menu li:nth-child(3), .customer .side_content .customer-menu li:last-child {
    border-right: #413e3e solid 1px;
  }
}
.customer .side_content .customer-menu li a {
  display: block;
  padding-left: 1.875vw;
  width: 100%;
  text-decoration: underline;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .customer .side_content .customer-menu li a {
    box-sizing: border-box;
    padding-left: 8.533vw;
    padding-right: 2.133vw;
  }
}
.customer .side_content .customer-menu li a::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  width: 1.25vw;
  height: 1.25vw;
  background: url(../img/ix/icon_anchor-link.png);
  background-size: contain;
}
@media (min-width: 1920px) {
  .customer .side_content .customer-menu li a::before {
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .customer .side_content .customer-menu li a::before {
    left: 2.133vw;
    width: 4.267vw;
    height: 4.267vw;
  }
}
.customer .main_content {
  width: 81.2%;
}
@media screen and (max-width: 1024px) {
  .customer .main_content {
    width: 100%;
  }
}
.customer .main_content .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.734vw;
}
@media (max-width: 768px) {
  .customer .main_content .row {
    flex-direction: column;
    margin-bottom: 7.467vw;
  }
}
.customer .main_content .search_container {
  display: block;
  border: 1px solid #727272;
  border-radius: 30px;
  width: 441px;
  position: relative;
}
.customer .main_content .search_container:focus {
  background-color: initial;
}
@media (max-width: 768px) {
  .customer .main_content .search_container {
    width: 100%;
    margin-bottom: 6.133vw;
  }
}
.customer .main_content .search_container input::-moz-placeholder {
  color: #727272;
}
.customer .main_content .search_container input::placeholder {
  color: #727272;
}
.customer .main_content .search_container input[type=text] {
  border: none;
  position: relative;
  padding: 16px 30px;
  width: 90%;
}
@media (max-width: 768px) {
  .customer .main_content .search_container input[type=text] {
    padding: 3.2vw 5.333vw;
  }
}
.customer .main_content .search_container input[type=text]:focus {
  background-color: initial;
}
.customer .main_content .search_container input[type=text]:focus {
  outline: 0;
}
.customer .main_content .search_container input[type=submit] {
  border: none;
  outline: none;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url(../img/ix/icon_search.png) no-repeat;
  background-size: contain;
  cursor: pointer;
}
@media (max-width: 768px) {
  .customer .main_content .search_container input[type=submit] {
    right: 20px;
    width: 6.4vw;
    height: 6.4vw;
  }
}
.customer .main_content .csv_dl {
  display: block;
  font-size: clamp(12px, 1.094vw, 16px);
  padding-left: 2.969vw;
  text-decoration: underline;
  position: relative;
}
@media (min-width: 1920px) {
  .customer .main_content .csv_dl {
    padding-left: 57px;
  }
}
@media (max-width: 768px) {
  .customer .main_content .csv_dl {
    font-size: clamp(12px, 3.467vw, 15px);
    padding-right: 6.933vw;
    padding-left: 0;
    margin-left: auto;
  }
}
.customer .main_content .csv_dl::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  width: 2.188vw;
  height: 2.188vw;
  background: url(../img/ix/icon_dl.png) no-repeat;
  background-size: contain;
}
@media (min-width: 1920px) {
  .customer .main_content .csv_dl::before {
    width: 42px;
    height: 42px;
  }
}
@media (max-width: 768px) {
  .customer .main_content .csv_dl::before {
    left: auto;
    right: 0;
    width: 4.267vw;
    height: 4.267vw;
  }
}
.customer .main_content .content h2 {
  font-size: clamp(19px, 1.875vw, 28px);
  font-weight: bold;
  margin-bottom: 2.188vw;
}
@media (max-width: 768px) {
  .customer .main_content .content h2 {
    font-size: clamp(14px, 4.8vw, 21px);
    margin-bottom: min(7.467vw, 23px);
  }
}
.customer .main_content .content + .content {
  padding-top: 6.25vw;
}
@media (max-width: 768px) {
  .customer .main_content .content + .content {
    padding-top: 16vw;
  }
}
.customer .main_content .customer-table {
  width: 100%;
  color: #fff;
  font-size: clamp(14px, 1.11vw, 19px);
}
@media screen and (max-width: 600px) {
  .customer .main_content .customer-table {
    font-size: clamp(14px, 2.667vw, 20px);
  }
}
.customer .main_content .customer-table thead th {
  text-align: left;
  padding: 12px 20px;
  padding: min(0.833vw, 12px) min(1.389vw, 20px);
  background: #330620;
  border-right: #111 solid 3px;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .customer .main_content .customer-table thead th {
    padding: 3.2vw 2.667vw;
  }
}
.customer .main_content .customer-table thead th:first-child {
  width: 46.5%;
}
.customer .main_content .customer-table thead th:nth-child(2) {
  width: 28%;
}
.customer .main_content .customer-table thead th:last-child {
  width: 25.5%;
  border-right: none;
}
.customer .main_content .customer-table tbody tr {
  border-bottom: #413e3e solid 1px;
}
.customer .main_content .customer-table tbody td {
  padding: 24px 20px;
  padding: min(1.667vw, 24px) min(1.389vw, 20px);
}
@media screen and (max-width: 600px) {
  .customer .main_content .customer-table tbody td {
    padding: 3.2vw 2.667vw;
    word-break: break-all;
    font-size: clamp(11px, 2.933vw, 13px);
  }
}
.customer .main_content .customer-table tbody td a {
  text-decoration: underline;
  font-weight: 700;
}

.u-sp-show {
  display: none;
}

.u-all-hide {
  display: none;
}

@media screen and (max-width: 600px) {
  .u-sp-show {
    display: table-cell;
  }
  .u-sp-hide {
    display: none;
  }
}
.basic_service_inner-container {
  width: 70.859vw;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .basic_service_inner-container {
    width: 90%;
  }
}

.basic_service_inner-container2 {
  width: 76.859vw;
  max-width: 1400px;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .basic_service_inner-container2 {
    width: 90%;
  }
}

body.basic_service {
  opacity: 0;
}
body.basic_service .lower_section {
  position: relative;
}
body.basic_service .lower_section .inner-container {
  margin-bottom: 25px;
}
body.basic_service .scroll_box {
  position: absolute;
  left: 1.53vw;
}
@media screen and (max-width: 600px) {
  body.basic_service .scroll_box {
    display: none !important;
  }
}
body.basic_service .scroll_box img {
  width: 0.586vw;
  min-width: 6.5px;
}
@media (min-width: 1920px) {
  body.basic_service .scroll_box {
    left: 29px;
  }
  body.basic_service .scroll_box img {
    width: 12px;
  }
}
@keyframes pathmove {
  0% {
    height: 0;
    top: 120%;
    opacity: 1;
  }
  50% {
    height: 100%;
    opacity: 1;
  }
  80% {
    top: 120%;
    opacity: 1;
  }
  100% {
    top: 200%;
    opacity: 0;
  }
}
body.basic_service .scroll_box a {
  display: flex;
  position: relative;
}
body.basic_service .scroll_box a::before {
  content: "";
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 10vw;
  background-color: var(--main_color);
  animation: pathmove 1.4s linear infinite;
  opacity: 0;
}
body.basic_service .scroll_box a::after {
  content: " ";
  position: absolute;
  top: 100%;
  left: 50%;
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--main_color);
  transform: translateX(-50%) translateY(100%);
}

.basic_service_title_summary {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  background: linear-gradient(90deg, #bb0723 -3.49%, #461b83 95.16%);
  font-size: clamp(14px, 1.25vw, 22px);
  line-height: 1.8;
  letter-spacing: 0.08em;
  padding: 2em 1em;
}
@media (min-width: 1921px) {
  .basic_service_title_summary {
    max-width: 1920px;
  }
}

.basic_service_whyJpnap {
  position: relative;
  z-index: 5;
}
.basic_service_whyJpnap > h3 {
  text-align: center;
  margin: 36px auto 20px;
}
.basic_service_whyJpnap > h3 img {
  width: 23.4vw;
}
.basic_service_whyJpnap .basic_service_contentBox > ul {
  display: grid;
  grid-template-columns: calc(50% - 10px) calc(50% - 10px);
  gap: 20px;
}
.basic_service_whyJpnap .basic_service_contentBox > ul > li {
  background-color: #000;
  border: 1px solid #413e3e;
  font-size: clamp(14px, 1.25vw, 20px);
  letter-spacing: 0.08em;
  padding: 1.5em 2em;
}
.basic_service_whyJpnap .basic_service_contentBox > ul > li h4 {
  font-size: 1.25em;
  text-align: center;
  font-weight: 700;
}
.basic_service_whyJpnap .basic_service_contentBox > ul > li h4 span {
  display: inline-block;
  padding-bottom: 0.4em;
  border-bottom: 1px solid #bc001d;
}
.basic_service_whyJpnap .basic_service_contentBox > ul > li p {
  line-height: 1.8;
}
.basic_service_whyJpnap .dec_img {
  position: absolute;
  z-index: -1;
}
.basic_service_whyJpnap .dec1 {
  width: 28.9vw;
  top: 0;
  left: 0;
}
.basic_service_whyJpnap .dec2 {
  width: 28.9vw;
  right: 2.66vw;
  transform: translateY(-70%);
}
.basic_service_whyJpnap .dec3 {
  width: 45.5vw;
  left: 0.25vw;
  transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .basic_service_whyJpnap {
    overflow-x: hidden;
  }
  .basic_service_whyJpnap > h3 {
    text-align: center;
    margin: 46px auto 28px;
  }
  .basic_service_whyJpnap > h3 img {
    width: 66.67vw;
    max-width: 450px;
  }
  .basic_service_whyJpnap .basic_service_contentBox > ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .basic_service_whyJpnap .basic_service_contentBox > ul > li {
    width: 100%;
    padding: 1.5em;
    font-size: clamp(14px, 4.2667vw, 24px);
  }
  .basic_service_whyJpnap .basic_service_contentBox > ul > li h4 {
    font-size: 1em;
  }
  .basic_service_whyJpnap .dec1 {
    width: 98.6vw;
    top: 2%;
    left: -35%;
  }
  .basic_service_whyJpnap .dec2 {
    width: 98.6vw;
    right: -27%;
  }
  .basic_service_whyJpnap .dec3 {
    width: 120.8vw;
    left: -49.32%;
  }
}

body.en .basic_service_whyJpnap .basic_service_contentBox > ul > li h4 span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.basic_service_content_list_1 {
  margin-bottom: 100px;
}
.basic_service_content_list_1 .numbers {
  margin: 30px 0 25px;
  text-align: center;
  font-family: "taviraj", "noto sans", sans-serif;
  letter-spacing: 0;
  line-height: 1;
}
.basic_service_content_list_1 li:first-child .numbers {
  font-size: clamp(64px, 6.41vw, 98px);
  margin-bottom: 5px;
}
.basic_service_content_list_1 li:first-child .numbers .s-1 {
  font-size: 0.83em;
}
.basic_service_content_list_1 li:first-child .numbers .s-2 {
  font-size: 0.34em;
}
.basic_service_content_list_1 li:nth-child(2) .numbers {
  font-size: clamp(58px, 5.7vw, 88px);
  margin-bottom: 12px;
}
.basic_service_content_list_1 li:nth-child(2) .numbers span {
  font-size: 0.578em;
}
.basic_service_content_list_1 li:nth-child(3) .numbers {
  font-size: clamp(68px, 6.71vw, 103px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.basic_service_content_list_1 li:nth-child(3) .numbers .s-2 {
  font-size: 0.744em;
}
.basic_service_content_list_1 li:nth-child(4) .numbers {
  font-size: clamp(74.8px, 7vw, 115px);
  margin-bottom: 18px;
}
.basic_service_content_list_1 li:nth-child(4) .numbers span {
  font-size: 0.22em;
  vertical-align: baseline;
  font-weight: 600;
}
.basic_service_content_list_1 li:nth-child(4) .numbers .s-1 {
  margin-right: 0.5em;
}
.basic_service_content_list_1 .big_list {
  grid-area: 3/1/4/3;
}
.basic_service_content_list_1 .big_list h4 {
  margin-bottom: 1em;
}
.basic_service_content_list_1 .big_list .content {
  display: flex;
  position: relative;
}
.basic_service_content_list_1 .big_list .content p {
  width: 42%;
  padding-bottom: 6.3em;
}
.basic_service_content_list_1 .big_list .content .imgBox {
  width: 49%;
  margin-left: 2%;
}
@media screen and (max-width: 1024px) {
  .basic_service_content_list_1 {
    margin-bottom: 20px;
  }
  .basic_service_content_list_1 li .numbers {
    margin: 15px 0 !important;
  }
  .basic_service_content_list_1 li:first-child .numbers {
    font-size: clamp(44.8px, 17.07vw, 96px);
  }
  .basic_service_content_list_1 li:first-child .numbers .s-1 {
    font-size: 0.781em;
  }
  .basic_service_content_list_1 li:first-child .numbers .s-2 {
    font-size: 0.3125em;
  }
  .basic_service_content_list_1 li:nth-child(2) .numbers {
    font-size: clamp(39px, 14.93vw, 84px);
  }
  .basic_service_content_list_1 li:nth-child(2) .numbers span {
    font-size: 0.5536em;
  }
  .basic_service_content_list_1 li:nth-child(3) .numbers {
    font-size: clamp(42px, 16vw, 90px);
  }
  .basic_service_content_list_1 li:nth-child(3) .numbers .s-2 {
    font-size: 0.85em;
  }
  .basic_service_content_list_1 li:nth-child(4) .numbers {
    font-size: clamp(46px, 18.14vw, 102px);
  }
  .basic_service_content_list_1 li:nth-child(4) .numbers span {
    font-size: max(12px, 0.25em);
  }
  .basic_service_content_list_1 li:nth-child(4) .numbers .s-1 {
    margin-right: 0.5em;
  }
  .basic_service_content_list_1 .big_list {
    padding-bottom: 2em;
  }
  .basic_service_content_list_1 .big_list .content {
    display: flex;
    flex-direction: column;
  }
  .basic_service_content_list_1 .big_list .content p {
    width: 100%;
    padding-bottom: 1.25em;
  }
  .basic_service_content_list_1 .big_list .content .imgBox {
    position: static;
    width: 100%;
    margin-left: 0;
  }
}

.basic_service_content_list_2 {
  margin-bottom: 30px;
}
.basic_service_content_list_2 > li:last-child h4 {
  margin-bottom: 1.25em;
}
.basic_service_content_list_2 .big_list {
  grid-area: 1/1/2/3;
}
@media (min-width: 1025px) {
  .basic_service_content_list_2 .big_list {
    padding-bottom: 2.9em !important;
  }
}
.basic_service_content_list_2 .big_list .content {
  display: flex;
  margin-top: 24px;
}
.basic_service_content_list_2 .big_list .textContent {
  flex: 1;
  padding-left: 0.5em;
}
.basic_service_content_list_2 .big_list ul li {
  margin-bottom: 1.25em;
  padding-left: 1.6em;
  position: relative;
}
.basic_service_content_list_2 .big_list ul li::before {
  content: "";
  position: absolute;
  top: 0.23em;
  left: 0;
  width: 1.125em;
  height: 1.125em;
  background: url(../img/ix/basic_service/check-icon.svg) center/100% 100% no-repeat;
}
.basic_service_content_list_2 .big_list .imgBox {
  width: 40%;
  padding-left: 3.8%;
}
.basic_service_content_list_2 .times {
  text-align: center;
  margin: 45px auto;
}
@media screen and (max-width: 1024px) {
  .basic_service_content_list_2 .big_list .content {
    flex-direction: column;
    padding-left: 0;
  }
  .basic_service_content_list_2 .big_list .content .textContent p {
    margin: 2em 0;
  }
  .basic_service_content_list_2 .big_list .content .imgBox {
    width: 100%;
    padding-left: 0;
  }
}

.basic_service_voice {
  margin: 24px auto 120px;
}
.basic_service_voice .users_voice_list {
  margin-top: 40px;
  display: flex;
  gap: 4.5%;
}
.basic_service_voice .users_voice_list li {
  flex: 1;
}
.basic_service_voice .users_voice_list .voice_num {
  font-size: clamp(17.6px, 1.719vw, 26.4px);
  font-family: "taviraj";
  margin-bottom: 0.5em;
  padding-left: 10px;
  position: relative;
  line-height: 1.8;
}
.basic_service_voice .users_voice_list .voice_num::before {
  content: "";
  width: 1px;
  height: 1em;
  background-color: #9f004d;
  position: absolute;
  top: 0.4em;
  left: 0;
}
.basic_service_voice .users_voice_list .imgBox {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 20px 0;
  overflow: hidden;
}
.basic_service_voice .users_voice_list .imgBox img {
  max-width: 100%;
}
.basic_service_voice .users_voice_list .voice_name {
  font-size: clamp(17.6px, 1.719vw, 26.4px);
  margin: 0.5em 0;
  font-weight: 700;
  line-height: 1.8;
}
.basic_service_voice .users_voice_list .voice_summary {
  font-size: clamp(14px, 1.25vw, 22px);
  line-height: 1.8;
}
@media screen and (max-width: 1024px) {
  .basic_service_voice {
    margin: 40px auto 80px;
  }
  .basic_service_voice .users_voice_list {
    flex-direction: column;
    margin-top: 24px;
    gap: clamp(20px, 5.333vw, 30px);
  }
  .basic_service_voice .users_voice_list .voice_num {
    font-size: clamp(15px, 4.8vw, 27px);
    margin-bottom: 0.833em;
  }
  .basic_service_voice .users_voice_list .voice_name {
    font-size: clamp(15px, 4.8vw, 27px);
    margin: 0.833em 0;
  }
  .basic_service_voice .users_voice_list .voice_summary {
    font-size: clamp(14px, 4vw, 22px);
  }
}

.basic_service_inner-container2 .section_title {
  text-align: center;
  color: #fff;
  font-size: clamp(22.4px, 2.19vw, 34px);
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .basic_service_inner-container2 .section_title {
    font-size: clamp(15px, 4.8vw, 27px);
  }
}

.basic_service_customer_portal {
  background-color: #1f1f1f;
  padding: 55px 0 38px;
}
.basic_service_customer_portal .section_title {
  margin-bottom: 2.83em;
}
@media screen and (max-width: 1024px) {
  .basic_service_customer_portal {
    padding: 8vw 0;
  }
}

.basic_service_customer_portal_list li {
  background-color: #111;
  padding: 5% 6%;
  display: inline-flex;
  line-height: 1.8;
}
.basic_service_customer_portal_list li .textContent {
  width: 51.4%;
  margin-right: 2%;
}
.basic_service_customer_portal_list li h4 {
  font-size: clamp(19px, 1.875vw, 28.8px);
  font-weight: 700;
  padding-left: 20px;
  position: relative;
}
.basic_service_customer_portal_list li h4::before {
  content: "";
  width: 1px;
  background-color: #9f004d;
  position: absolute;
  top: 0.4em;
  bottom: 0.4em;
  left: 0;
}
.basic_service_customer_portal_list li p {
  margin: 1.25em 0;
  font-size: clamp(14px, 1.25vw, 20px);
}
.basic_service_customer_portal_list li .imgContent {
  flex: 1;
}
.basic_service_customer_portal_list li .imgContent img {
  width: auto;
}
.basic_service_customer_portal_list li:first-child {
  margin-bottom: 30px;
}
.basic_service_customer_portal_list li:first-child .imgContent {
  flex: 1;
  text-align: right;
}
.basic_service_customer_portal_list li:first-child .imgContent img {
  width: 83.2%;
}
@media screen and (max-width: 1024px) {
  .basic_service_customer_portal_list li {
    flex-direction: column;
    padding: 7.16%;
  }
  .basic_service_customer_portal_list li .textContent {
    width: 100%;
    margin-right: 0%;
  }
  .basic_service_customer_portal_list li h4 {
    font-size: clamp(16px, 4.2vw, 24px);
  }
  .basic_service_customer_portal_list li p {
    font-size: clamp(14px, 4vw, 20px);
  }
  .basic_service_customer_portal_list li .btnBox {
    margin: 0 auto;
    text-align: center;
    margin-bottom: 1em;
  }
  .basic_service_customer_portal_list li .btnBox .site_btn {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    padding-left: 3.1333em;
  }
  .basic_service_customer_portal_list li .btnBox .site_btn::after {
    transform: translateY(-41%);
  }
  .basic_service_customer_portal_list li:first-child {
    margin-bottom: 8vw;
  }
  .basic_service_customer_portal_list li:first-child .imgContent img {
    width: 100%;
  }
}

.basic_service_option-contact {
  background-color: #727272;
  padding: 4.3vw 0;
  margin-bottom: 63px;
}
.basic_service_option-contact p {
  margin: 1.25em 0;
  font-size: clamp(14px, 1.25vw, 20px);
  text-align: center;
}
.basic_service_option-contact .btnBox {
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .basic_service_option-contact p {
    font-size: clamp(14px, 4vw, 20px);
  }
  .basic_service_option-contact .btnBox .site_btn {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    padding-left: 3.1333em;
  }
}

.remote-peering .introduction {
  margin-bottom: min(3.056vw, 44px);
}
@media screen and (max-width: 600px) {
  .remote-peering .introduction {
    margin-bottom: 9.867vw;
  }
}
.remote-peering .introduction h3 {
  font-size: clamp(16px, 4.8vw, 21px);
  font-weight: bold;
  margin-bottom: 1em;
  line-height: 1.8;
}
@media screen and (max-width: 600px) {
  .remote-peering .introduction h3 {
    font-size: clamp(19px, 1.667vw, 28px);
  }
}
.remote-peering .introduction p {
  font-size: clamp(14px, 1.11vw, 19px);
  line-height: 1.8;
}
@media screen and (max-width: 600px) {
  .remote-peering .introduction p {
    font-size: clamp(14px, 4vw, 18px);
  }
}
.remote-peering .table_title {
  font-size: clamp(14px, 1.25vw, 24px);
  font-weight: bold;
  margin-bottom: min(2.083vw, 30px);
}
@media screen and (max-width: 600px) {
  .remote-peering .table_title {
    font-size: clamp(15px, 4.267vw, 19px);
    margin-bottom: min(8.533vw, 32px);
  }
}
.remote-peering .peering-table-wrapper {
  overflow: auto;
  width: 100%;
}
.remote-peering .peering-table {
  color: #fff;
  font-size: clamp(14px, 1.11vw, 19px);
  table-layout: fixed;
  width: 100%;
  min-width: 700px;
}
@media screen and (max-width: 600px) {
  .remote-peering .peering-table {
    min-width: 500px;
  }
}
.remote-peering .peering-table thead th {
  text-align: left;
  padding: 12px 20px;
  padding: min(0.833vw, 12px) min(1.389vw, 20px);
  background: #330620;
  border-right: #111 solid 3px;
}
@media screen and (max-width: 600px) {
  .remote-peering .peering-table thead th {
    padding: 3.2vw 2.667vw;
    font-size: clamp(10px, 2.667vw, 12px);
  }
}
.remote-peering .peering-table thead th:first-child {
  width: 25%;
}
.remote-peering .peering-table thead th:nth-child(2) {
  width: 15%;
}
.remote-peering .peering-table thead th:nth-child(3) {
  width: 20%;
}
.remote-peering .peering-table thead th:nth-child(4) {
  width: 15%;
}
.remote-peering .peering-table thead th:last-child {
  width: 20%;
  border-right: none;
}
.remote-peering .peering-table tbody tr {
  border-bottom: #413e3e solid 1px;
}
.remote-peering .peering-table tbody td {
  padding: 24px 20px;
  padding: min(1.667vw, 24px) min(1.389vw, 20px);
}
@media screen and (max-width: 600px) {
  .remote-peering .peering-table tbody td {
    padding: 3.2vw 2.667vw;
    word-break: break-all;
    font-size: clamp(11px, 2.933vw, 13px);
  }
}
.remote-peering .peering-table tbody td a {
  text-decoration: underline;
}
.remote-peering .caption {
  margin-top: min(3.125vw, 45px);
  font-size: 14px;
}
@media screen and (max-width: 600px) {
  .remote-peering .caption {
    margin-top: 10.667vw;
    font-size: clamp(12px, 3.2vw, 14px);
  }
}
.remote-peering .linebreak {
  display: inline-block;
}
.remote-peering a .linebreak {
  text-decoration: underline;
}
.remote-peering .break-word {
  word-break: break-word;
}