@charset "UTF-8";
/* form */
:root {
  --font-ja: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --font-en: "Inter", "Helvetica Neue", Arial, sans-serif;
  --header-height: 70px;
  --container-space: 20px;
  --content-vertical-space: 20px;
  --v-space-sm: calc(var(--content-vertical-space) * 1);
  --v-space-s: calc(var(--content-vertical-space) * 1.5);
  --v-space-m: calc(var(--content-vertical-space) * 2);
  --v-space-l: calc(var(--content-vertical-space) * 3);
  --v-space-xl: calc(var(--content-vertical-space) * 4);
  --ease-out: cubic-bezier(.25, .46, .45, .94);
  --ease-in-out: cubic-bezier(1, 0, 0, 1) ;
}

@media screen and (min-width: 768px) {
  :root {
    --header-height: 85px ;
  }
}
@media screen and (min-width: 1080px) {
  :root {
    --header-height: 124px;
  }
}
@media screen and (min-width: 1200px) {
  :root {
    --container-space: 60px ;
  }
}
* {
  box-sizing: border-box;
}

:before, :after {
  box-sizing: inherit;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p, table, blockquote, address, pre, iframe, form, figure, dl {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  /*font-weight: 700*/
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border: 0;
  border-top: 1px solid;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
  vertical-align: bottom;
}

embed, object, iframe {
  border: 0;
  vertical-align: bottom;
}

button, input, optgroup, select, textarea, [role=button] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
     -moz-appearance: checkbox;
          appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
     -moz-appearance: radio;
          appearance: radio;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, [type=button], [type=reset], [type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

button[disabled], [type=button][disabled], [type=reset][disabled], [type=submit][disabled] {
  cursor: default;
}

button::-moz-focus-inner, [type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring, [type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

select::-ms-expand {
  display: none;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}
summary:focus {
  outline: none;
}

[contenteditable] {
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td, th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

:focus:not(:fous-visible) {
  outline: none;
}

.p-header-navbar {
  position: sticky;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: var(--header-height);
  background-color: #fff;
  padding-left: var(--container-space);
  border-bottom: 1px solid #bcbcbc;
  z-index: 999;
}
.p-header-navbar .c-button {
  position: relative;
  display: inline-grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--c-primary-contrast);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
  width: 100%;
  background-color: var(--c-primary);
  white-space: nowrap;
  overflow: hidden;
  text-align: center;
  transition: background-color 0.2s ease;
  z-index: 1;
}
.p-header-navbar .c-button:hover {
  background-color: #002A50;
}
.p-header-navbar .c-button[data-size=header] {
  display: inline-flex;
  justify-content: center;
  height: 50px;
  padding: 12px 20px;
  border-radius: 25px;
}
.p-header-navbar .c-button-icon {
  fill: currentColor;
}
.p-header-navbar .c-button[data-size=header] .c-button-item[data-position=left] {
  margin-right: 1em;
}
@media not all and (min-width: 1080px) {
  .p-header-navbar .c-button[data-size=header] {
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-header-items {
  position: relative;
  flex: 1;
  padding-right: 5px;
}

.p-header-logo-sumitomo {
  position: relative;
  width: 100%;
}

.p-header-logo-sumitomo__item {
  display: block;
}

.p-header-logo-sumitomo__item:after {
  display: block;
  content: "";
  padding-top: 5.6314%;
}

.p-header-menu[data-device=mobile] {
  transition: opacity 0.2s linear, visibility 0.2s linear;
}

.p-header-gnav {
  margin-bottom: 50px;
}

.p-header-gnav__item {
  font-size: 1.25rem;
}

.p-header-gnav__item:not(:last-child) {
  margin-bottom: 32px;
}

.p-header-gnav__link {
  color: var(--c-base-text);
}

.p-header-gnav__link {
  position: relative;
}
.p-header-gnav__link.active {
  color: #BCC0C2;
}
.p-header-gnav__link > span {
  display: inline-block;
  color: inherit;
  clip-path: inset(0 0 -5% 0);
}
.p-header-gnav__link::before {
  display: block;
  position: absolute;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto auto auto 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  translate: 0 18px;
  content: attr(data-txt);
  opacity: 0;
  clip-path: inset(0 0 100% 0);
}
.p-header-gnav__link:not(.active):hover::before {
  translate: 0 0;
  clip-path: inset(0 0 0 0);
  opacity: 1;
  color: #004C97;
}
.p-header-gnav__link:not(.active):hover::after {
  transform: scale(1, 1);
  /*ホバー後、x軸方向に1（相対値）伸長*/
}
.p-header-gnav__link:not(.active):hover > span {
  clip-path: inset(100% 0 0 0);
  opacity: 0;
}

.p-menu-trigger {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: var(--header-height);
  padding: 0 var(--container-space);
}

.p-menu-trigger__icon {
  position: relative;
  display: block;
  width: 100%;
  height: 20px;
}

.p-menu-trigger__icon span {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transform-origin: 50% 50%;
  transition: transform 0.25s ease;
  border-radius: 10px;
}

.p-menu-trigger__icon span:nth-of-type(1) {
  top: 0;
  left: 0;
}

.p-menu-trigger__icon span:nth-of-type(2) {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.p-menu-trigger__icon span:nth-of-type(3) {
  right: 0;
  bottom: 0;
}

.p-menu-trigger[aria-pressed=true] .p-menu-trigger__icon span:nth-of-type(1) {
  top: 50%;
  transform: rotate(45deg);
}

.p-menu-trigger[aria-pressed=true] .p-menu-trigger__icon span:nth-of-type(2) {
  visibility: hidden;
}

.p-menu-trigger[aria-pressed=true] .p-menu-trigger__icon span:nth-of-type(3) {
  top: 50%;
  left: 0;
  right: auto;
  bottom: auto;
  transform: rotate(-45deg);
}

@media screen and (min-width: 1080px) {
  .p-header-navbar {
    align-items: flex-start;
    padding: 22px var(--container-space) 10px;
    border-bottom: none;
  }
}
@media screen and (min-width: 1080px) {
  .p-header-items {
    display: grid;
    align-items: center;
    padding-right: 0;
  }
}
@media screen and (min-width: 1080px) {
  .p-header-logo-sumitomo {
    width: auto;
  }
}
@media screen and (min-width: 1080px) {
  .p-header-menu {
    justify-self: ri;
    background-color: #FFFFFF;
  }
}
@media not all and (min-width: 1080px) {
  .p-header-menu {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: calc(100% - var(--header-height));
    background-color: #fff;
    padding: 72px;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    z-index: 999;
  }
}
@media not all and (min-width: 1080px) {
  .p-header-menu[aria-hidden=false] {
    visibility: visible;
    opacity: 1;
  }
}
@media not all and (min-width: 1080px) {
  .p-header-menu__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}
@media screen and (min-width: 1080px) {
  .p-header-gnav {
    display: flex;
    justify-content: right;
    align-items: center;
    line-height: 1;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1080px) {
  .p-header-gnav__item {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1080px) {
  .p-header-gnav__item:not(:last-child) {
    margin-right: 35px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1080px) {
  .p-header-buttons {
    right: 0;
    top: -10px;
    display: flex;
    align-items: flex-start;
  }
}
.p-header-buttons__item:not(:last-child) {
  margin-bottom: 20px;
}

@media not all and (min-width: 1080px) {
  .p-header-buttons__item {
    text-align: center;
  }
}
@media screen and (min-width: 1080px) {
  .p-header-buttons__item:not(:last-child) {
    margin-right: 10px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1080px) {
  .p-menu-trigger {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .p-header-navbar {
    padding: 22px var(--container-space);
  }
}
.p-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: var(--header-height);
  background-color: #FFFFFF;
  padding-left: var(--container-space);
  border-bottom: 1px solid #BCC0C2;
  z-index: 999;
}
@media screen and (min-width: 1080px) {
  .p-header {
    height: auto;
    padding: 0;
    border-bottom: 3px #004C97 solid;
  }
}
.p-header__inner {
  position: relative;
  flex: 1;
  padding-right: 5px;
  margin: 0 auto;
}
@media screen and (min-width: 1080px) {
  .p-header__inner {
    display: grid;
    grid-template-rows: auto auto;
    row-gap: 0.25rem;
    align-items: center;
    padding: 0.75rem 3rem 0.75rem;
  }
}
.p-header__inner .header-site {
  position: relative;
  width: 100%;
}
.p-header__inner .header-site__link {
  display: none;
}
@media screen and (min-width: 1080px) {
  .p-header__inner .header-site {
    display: inline-flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .p-header__inner .header-site__link {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    align-self: center;
    gap: 0.25rem;
  }
  .p-header__inner .header-site__link .language-list {
    display: flex;
    justify-content: right;
  }
  .p-header__inner .header-site__link .language-list__jp {
    padding-right: 0.5rem;
    border-right: 1px #D7D9DB solid;
    text-align: right;
  }
  .p-header__inner .header-site__link .language-list__en {
    padding-left: 0.5rem;
    text-align: left;
  }
  .p-header__inner .header-site__link .language-list a.active {
    color: #C9CDCF;
  }
  .p-header__inner .header-site__link .language-list li:not(:has(.active)) :hover {
    color: #004C97;
    transition: color 1s ease;
  }
  .p-header__inner .header-site__link .site-link {
    display: flex;
  }
  .p-header__inner .header-site__link .site-link__item > a {
    display: flex;
    align-items: center;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
    color: #004C97;
    font-size: 0.875rem;
    font-weight: 400;
  }
  .p-header__inner .header-site__link .site-link__item > a span:has(svg) {
    padding-top: 3px;
  }
  .p-header__inner .header-site__link .site-link__item > a span:has(svg) svg {
    fill: #004C97;
  }
  .p-header__inner .header-site__link .site-link__item > a:hover {
    text-decoration: underline;
  }
  .p-header__inner .header-site__link .site-link {
    flex-direction: row;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
}
.p-header__inner .header-nav {
  width: 80vw;
  padding: 1rem;
}
@media screen and (min-width: 744px) {
  .p-header__inner .header-nav {
    width: 60vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-header__inner .header-nav {
    width: 100%;
    padding: 0;
  }
}
.p-header__inner .header-nav__inner {
  display: block;
}
.p-header__inner .header-nav__inner .nav-list > li {
  margin-bottom: 0;
  padding: 0.5rem 0;
}
@media screen and (min-width: 1080px) {
  .p-header__inner .header-nav__inner .nav-list > li {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1079px) {
  .p-header__inner .header-nav__inner .nav-list > li {
    font-size: 1rem;
  }
}
.p-header__inner .header-nav__sub {
  width: 100%;
  position: absolute;
  left: 100%;
  z-index: 800;
  padding: 1rem;
  background-color: #FFFFFF;
  box-shadow: -4px 4px 15px rgba(0, 0, 0, 0.08);
  animation: sub-menu-mobile-release 1s ease forwards normal;
}
@media screen and (min-width: 1080px) {
  .p-header__inner .header-nav__sub {
    display: none;
    animation: none;
  }
}
.p-header__inner .header-nav__sub--products-mobile {
  top: 5.4rlh;
}
.p-header__inner .header-nav__sub--downloads-mobile {
  top: 7.8rlh;
}
.p-header__inner .header-nav__sub--contact-mobile {
  top: 10.3rlh;
}
.p-header__inner .header-nav__sub:has(:checked) {
  animation: sub-menu-mobile 1s ease forwards normal;
}
@media screen and (min-width: 1080px) {
  .p-header__inner .header-nav__sub:has(:checked) {
    display: block;
    animation: none;
  }
}
.p-header__inner .header-nav__sub .sub-menu {
  display: flex;
  flex-direction: column;
  row-gap: var(--v-space-sm);
  position: relative;
}
.p-header__inner .header-nav__sub .sub-menu::after {
  content: "";
  background-color: #D7D9DB;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 100%;
}
.p-header__inner .header-nav__sub .sub-menu__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
  padding-bottom: 1rlh;
  border-bottom: 1px #D7D9DB solid;
}
.p-header__inner .header-nav__sub .sub-menu__item:last-of-type {
  border-bottom: none;
}
.p-header__inner .header-nav__sub .sub-menu__item .title {
  font-size: clamp(1rem, 0.964rem + 0.24vw, 1.125rem);
  font-weight: 500;
}
.p-header__inner .header-nav__sub .sub-menu__item .item {
  line-height: 1.5;
}
.p-header__inner .header-nav__sub .sub-menu__item .item a {
  font-size: clamp(0.875rem, 0.839rem + 0.24vw, 1rem);
  font-weight: 300;
  color: #004C97;
  line-height: 1.5;
}
.p-header__inner .header-nav__sub .sub-menu__item .item a:hover {
  text-decoration: underline;
}
.p-header__inner .header-nav__sub .firstlayer-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.5rem;
  padding: 2rem 0;
}
.p-header__inner .header-nav__sub .firstlayer-menu > a {
  font-size: clamp(1.125rem, 1.094rem + 0.21vw, 1.25rem);
}
.p-header__inner .header-nav__sub .firstlayer-menu > a:hover {
  color: #004C97;
  transition: color 0.25s ease;
}
.p-header__inner .header-nav__sub .firstlayer-menu::after {
  content: "";
  width: 4rem;
  height: 3px;
  background-color: #FFDA69;
}
.p-header__inner .header-nav__sub .firstlayer-menu:has(a:hover)::after {
  background-color: #004C97;
  transition: background-color 0.25s ease;
}
.p-header__inner .header-nav__sub .menu__switch {
  display: none;
}
@media screen and (min-width: 1080px) {
  .p-header__inner .header-nav__sub {
    width: 100vw;
    top: 124px;
    left: 0;
    padding: 2rem 3rem;
  }
  .p-header__inner .header-nav__sub .sub-menu {
    flex-direction: row;
    margin-bottom: 2rem;
  }
  .p-header__inner .header-nav__sub .sub-menu__item {
    flex: 1;
    flex-direction: column;
    row-gap: 0.5rem;
    border-right: 1px #D7D9DB solid;
    border-bottom: none;
    padding: 0 1rem;
  }
  .p-header__inner .header-nav__sub .sub-menu__item:last-of-type {
    border-right: none;
  }
  .p-header__inner .header-nav__sub .sub-menu__item .title {
    font-size: 1rem;
    font-weight: 500;
  }
  .p-header__inner .header-nav__sub .sub-menu__item .item {
    line-height: 1.5;
  }
  .p-header__inner .header-nav__sub .sub-menu__item .item a {
    color: #004C97;
    font-size: 0.9375rem;
    line-height: 1.45;
    letter-spacing: 0.06em;
    font-weight: 400;
  }
  .p-header__inner .header-nav__sub .sub-menu__item .item a:hover {
    text-decoration: underline;
    color: #002A50;
  }
  .p-header__inner .header-nav__sub .sub-menu::after {
    top: calc(100% + 2rem);
  }
  .p-header__inner .header-nav__sub .firstlayer-menu {
    padding-top: 2rem;
    padding-bottom: 0;
  }
}
.p-header__inner .header-nav__site-link-mobile {
  display: block;
}
.p-header__inner .header-nav__site-link-mobile .language-list {
  display: flex;
  justify-content: right;
}
.p-header__inner .header-nav__site-link-mobile .language-list__jp {
  padding-right: 0.5rem;
  border-right: 1px #D7D9DB solid;
  text-align: right;
}
.p-header__inner .header-nav__site-link-mobile .language-list__en {
  padding-left: 0.5rem;
  text-align: left;
}
.p-header__inner .header-nav__site-link-mobile .language-list a.active {
  color: #C9CDCF;
}
.p-header__inner .header-nav__site-link-mobile .language-list li:not(:has(.active)) :hover {
  color: #004C97;
  transition: color 1s ease;
}
.p-header__inner .header-nav__site-link-mobile .language-list {
  justify-content: center;
  row-gap: 0.5rem;
  margin-bottom: var(--v-space-sm);
}
.p-header__inner .header-nav__site-link-mobile .site-link {
  display: flex;
}
.p-header__inner .header-nav__site-link-mobile .site-link__item > a {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  color: #004C97;
  font-size: 0.875rem;
  font-weight: 400;
}
.p-header__inner .header-nav__site-link-mobile .site-link__item > a span:has(svg) {
  padding-top: 3px;
}
.p-header__inner .header-nav__site-link-mobile .site-link__item > a span:has(svg) svg {
  fill: #004C97;
}
.p-header__inner .header-nav__site-link-mobile .site-link__item > a:hover {
  text-decoration: underline;
}
.p-header__inner .header-nav__site-link-mobile .site-link {
  flex-direction: column;
  align-items: center;
  row-gap: 0.5rem;
}
.p-header__inner .header-nav__site-link-mobile .site-link__item > a {
  align-items: flex-end;
  text-align: center;
}
.p-header__inner .header-nav__site-link-mobile .site-link__item .name-sbu > span {
  display: block;
}
@media screen and (min-width: 576px) {
  .p-header__inner .header-nav__site-link-mobile .site-link__item .name-sbu > span {
    display: inline;
  }
}
@media screen and (min-width: 1080px) {
  .p-header__inner .header-nav__site-link-mobile {
    display: none;
  }
}
.p-header__menu-button {
  display: block;
}
@media screen and (min-width: 1080px) {
  .p-header__menu-button {
    display: none;
  }
}

@keyframes sub-menu-mobile {
  from {
    left: 100%;
  }
  to {
    left: 0;
  }
}
@keyframes sub-menu-mobile-release {
  from {
    left: 0;
  }
  to {
    left: 100%;
  }
}
/* @media screen and (min-width: 1080px) {
    .p-header-buttons {
        display: flex;
        align-items: flex-start
    }
} */
.p-footer {
  color: #fff;
  background-color: #004C97;
  padding-top: 42px;
  padding-bottom: 24px;
}

@media screen and (min-width: 576px) {
  .p-footer {
    padding-top: 55px;
    padding-bottom: 30px;
  }
}
/*202505 IMA Start*/
@media screen and (min-width: 576px) {
  .p-footer {
    line-height: 1.35;
    padding-bottom: 2.87rem;
  }
}
@media screen and (max-width: 575px) {
  .p-footer {
    line-height: 1.35;
    padding-bottom: 2.75rem;
  }
}
/*202505 IMA End*/
.p-footer-container {
  padding-left: var(--container-space);
  padding-right: var(--container-space);
}

.p-footer-logo {
  width: 58.96%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 35px;
  line-height: 1;
}

/*202512 IMA Start */
.p-footer-logo {
  width: 70%;
}

/*202512 IMA End */
@media screen and (min-width: 576px) {
  .p-footer-logo {
    width: auto;
    text-align: center;
  }
}
@media screen and (min-width: 1080px) {
  .p-footer-logo {
    margin-bottom: 50px;
    text-align: left;
  }
}
.p-footer-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 1080px) {
  .p-footer-nav {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: "b b" "c a";
  }
}
.p-footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.75rem;
  margin-bottom: 8px;
}

@media screen and (min-width: 1080px) {
  .p-footer-links {
    grid-area: a;
    justify-content: flex-start;
    font-size: 0.8125rem;
    padding-right: 20px;
    margin-bottom: 0;
  }
}
/*202505 IMA Start*/
@media screen and (min-width: 1080px) {
  .p-footer-nav {
    grid-template-areas: "b d" "c a";
  }
  .p-footer-links {
    grid-area: d;
  }
}
/*202505 IMA End*/
.p-footer-links__item {
  display: inline-flex;
  align-items: center;
  line-height: 1.2;
}

.p-footer-links__item:not(:last-child) {
  margin-right: 20px;
}

.p-footer-links__item:hover {
  text-decoration: underline;
}

.p-footer-links__item:before {
  display: inline-block;
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  margin-right: 8px;
  transform: rotate(45deg);
  vertical-align: middle;
}

.p-footer-corp-link {
  font-size: 0.75rem;
  margin-bottom: 14px;
}

@media screen and (min-width: 1080px) {
  .p-footer-corp-link {
    grid-area: b;
    font-size: 1rem;
    margin-bottom: 8px;
  }
}
.p-footer-corp-link__item {
  display: inline-flex;
  align-items: center;
}

.p-footer-corp-link__item:hover {
  text-decoration: underline;
}

.p-footer-corp-link__item:after {
  display: inline-block;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  margin-left: 8px;
  transform: rotate(45deg) skew(-10deg, -10deg);
  vertical-align: middle;
}

.p-footer-copyright {
  font-size: 0.5625rem;
  text-align: center;
}

@media screen and (min-width: 576px) {
  .p-footer-copyright {
    font-size: 0.8125rem;
  }
}
@media screen and (min-width: 1080px) {
  .p-footer-copyright {
    grid-area: c;
    text-align: left;
  }
}
@media screen and (min-width: 1080px) {
  .p-footer-links {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  .p-footer-corp-link {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .p-footer-copyright {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
}
.p-pagetop-button {
  position: fixed;
  right: 15px;
  bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #004C97;
  font-size: 0.625rem;
  font-family: Helvetica, Roboto, sans-serif;
  line-height: 1;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border: 1px solid #004C97;
  border-radius: 50%;
  z-index: 99;
  transition: color 0.2s ease, background-color 0.2s ease, opacity 0.3s ease;
}

@media screen and (min-width: 576px) {
  .p-pagetop-button {
    right: 20px;
    bottom: 50px;
    font-size: 0.8125rem;
    width: 46px;
    height: 46px;
  }
}
/*202505 IMA Start*/
@media screen and (max-width: 576px) {
  .p-pagetop-button {
    bottom: 12.3rem;
  }
}
/*202505 IMA End*/
@media (hover: hover) {
  .p-pagetop-button:hover {
    color: #FFFFFF;
    background-color: #004C97;
    border: 1px #FFFFFF solid;
  }
}
.p-pagetop-button[data-visible=false] {
  opacity: 0;
}

.p-pagetop-button[data-visible=true] {
  opacity: 1;
}

footer #ot-sdk-btn.ot-sdk-show-settings {
  font-size: 0.75rem;
  color: #fff;
  border: none;
  padding: 0;
  line-height: inherit;
  width: auto;
  box-shadow: none;
  transition: none;
}

footer #ot-sdk-btn.ot-sdk-show-settings:hover {
  background-color: initial;
  text-decoration: underline;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-ja);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.02em;
  font-weight: 400;
  color: #000000;
  background-color: #FFFFFF;
  word-wrap: break-word;
}
body.full {
  height: 100vh;
  left: 0px;
  overflow: hidden;
  position: fixed;
  width: 100vw;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

.l-wrapper {
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100vh;
}

.link-button-icon {
  fill: #fff;
}

.link-button {
  color: #FFFFFF;
  background-color: #004C97;
  border: 1px solid #004C97;
  border-radius: 0.125rem; /*2px*/
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  transition: background-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: #FFFFFF;
}
.link-button:hover {
  background-color: #002A50;
}
.link-button {
  position: relative;
  display: inline-grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  white-space: nowrap;
  max-width: 420px;
  width: 100%;
  padding: 1.25rem 2rem;
  border-radius: 3.5rem;
  font-size: 1.0625rem;
  font-weight: 500;
}
.link-button::before {
  content: "";
}
.link-button::after {
  content: "";
  display: inline-block;
  justify-self: end;
  width: 1.25rem;
  height: 1.25rem;
  background-image: url('data:image/svg+xml, <svg xmlns="http://www.w3.org/2000/svg" width="11.16" height="19.5" viewBox="0 0 11.16 19.5" class="link-button-icon" fill="white"><path d="M1.41,19.5l-1.41-1.41L8.33,9.75,0,1.41,1.41,0,11.16,9.75,1.41,19.5Z"></path></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center right;
}

.chapter-page__header {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 240px;
  margin: 0 auto;
  margin-bottom: var(--v-space-s);
  overflow: hidden;
  background-image: url(/roll-to-roll-drive-system/assets/images/chapter-title-back.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.chapter-page__header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.68) 48%, rgba(255, 255, 255, 0.74) 100%);
  z-index: 0;
}
@media screen and (max-width: 319px) {
  .chapter-page__header {
    margin-bottom: var(--v-space-sm);
    min-height: 180px;
  }
}
@media screen and (orientation: landscape) and (max-width: 743px) {
  .chapter-page__header {
    min-height: 220px;
  }
}
@media screen and (min-width: 768px) {
  .chapter-page__header {
    margin-bottom: var(--v-space-l);
    min-height: 280px;
  }
}
@media screen and (min-width: 956px) {
  .chapter-page__header {
    min-height: 360px;
  }
}
@media screen and (min-width: 1080px) {
  .chapter-page__header {
    margin-bottom: var(--v-space-xl);
  }
}
.chapter-page__header .inner {
  position: relative;
  z-index: 1;
  width: min(1200px, 100% - 40px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .chapter-page__header .inner {
    width: calc(100% - 32px);
    gap: 8px;
  }
}
.chapter-page__header .chapter-page__eyebrow {
  margin: 0;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.14em;
  color: rgba(0, 79, 159, 0.72);
}
@media screen and (max-width: 767px) {
  .chapter-page__header .chapter-page__eyebrow {
    font-size: 11px;
  }
}
.chapter-page__header .inner > h2 {
  margin: 0;
  width: auto;
  padding: 0;
  position: relative;
  text-align: left;
  color: #004C97;
  font-size: clamp(2rem, 4.8vw, 4.5rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-shadow: none;
}
.chapter-page__header .inner > h2 > span {
  position: relative;
  display: inline-block;
}
.chapter-page__header .inner > h2::before {
  display: none;
}
.chapter-page__header .inner > h2::after {
  content: "";
  display: block;
  width: clamp(120px, 18vw, 240px);
  height: 1px;
  margin-top: 18px;
  background: linear-gradient(to right, #004C97 0%, rgba(0, 79, 159, 0.35) 72%, rgba(0, 79, 159, 0) 100%);
}
@media screen and (max-width: 767px) {
  .chapter-page__header .inner > h2 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    letter-spacing: 0.03em;
  }
  .chapter-page__header .inner > h2::after {
    width: 120px;
    margin-top: 14px;
  }
}

.section {
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .section {
    padding-bottom: var(--v-space-sm);
  }
}
@media screen and (min-width: 768px) {
  .section {
    padding-bottom: var(--v-space-l);
  }
}
@media screen and (min-width: 1080px) {
  .section {
    padding-bottom: var(--v-space-xl);
  }
}
@media screen and (max-width: 767px) {
  .section.first {
    padding-top: var(--v-space-sm);
  }
}
@media screen and (min-width: 768px) {
  .section.first {
    padding-top: var(--v-space-l);
  }
}
@media screen and (min-width: 1080px) {
  .section.first {
    padding-top: var(--v-space-xl);
  }
}
.section__title {
  display: grid;
  grid-template-columns: calc((100% - 1080px) / 2) auto 1fr;
  align-items: center;
  font-size: clamp(0.875rem, 0.268rem + 4.05vw, 3rem);
  font-weight: 400;
  color: #004C97;
  text-align: center;
  margin-left: 1rem;
  margin-bottom: var(--v-space-m);
}
@media screen and (min-width: 744px) {
  .section__title {
    margin-bottom: var(--v-space-xl);
  }
}
.section__title::before {
  content: "";
  height: 1px;
  background-color: transparent;
}
.section__title::after {
  content: "";
  height: 1px;
  background-color: #004C97;
  margin-left: 2rem;
}
@media screen and (max-width: 575px) {
  .section__title::after {
    margin-left: 0.5rem;
  }
}
.section__content {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding-left: var(--v-space-s);
  padding-right: var(--v-space-s);
}
@media screen and (max-width: 767px) {
  .section__content {
    padding-left: var(--v-space-sm);
    padding-right: var(--v-space-sm);
  }
}

.fade-in-up {
  visibility: visible;
  opacity: 0;
  transform: translateY(60px);
  filter: blur(1px);
  transition: opacity 1.2s ease-out, transform 0.72s ease-out, filter 0.72s ease-out;
  will-change: opacity, transform, filter;
}
.fade-in-up.show {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.fade-in-up--fast {
  transition: opacity 0.72s ease-out, transform 0.42s ease-out, filter 0.42s ease-out;
}
.fade-in-up--notup {
  transform: translateY(0);
  filter: blur(1px);
  transition: opacity 1.2s ease-out, filter 0.72s ease-out;
}
.fade-in-up--notup.show {
  filter: blur(0);
}
.fade-in-up--notup.fade-in-up--fast {
  transition: opacity 0.72s ease-out, filter 0.42s ease-out;
}

.section:has(.form) {
  width: min(100%, 1080px);
  padding-left: 1rem;
  padding-right: 1rem;
  margin: 0 auto;
}
@media screen and (min-width: 1080px) {
  .section:has(.form) {
    padding-left: 0;
    padding-right: 0;
  }
}

.listfinderContactArea__text {
  margin-bottom: var(--v-space-sm);
}
@media screen and (min-width: 576px) {
  .listfinderContactArea__text {
    margin-bottom: var(--v-space-m);
  }
}
.listfinderContactArea__text > .intro {
  width: 100%;
  font-size: clamp(0.75rem, 0.656rem + 0.63vw, 1.125rem);
  text-align: center;
  line-height: 1.7;
  margin-bottom: var(--v-space-sm);
}
@media screen and (min-width: 576px) {
  .listfinderContactArea__text > .intro {
    margin-bottom: var(--v-space-m);
  }
}
.listfinderContactArea__text > .intro > span {
  display: block;
}
@media screen and (min-width: 576px) {
  .listfinderContactArea__text > .intro > span {
    display: inline-block;
  }
}
.listfinderContactArea__text > .intro br {
  display: none;
}
@media screen and (min-width: 576px) {
  .listfinderContactArea__text > .intro br {
    display: block;
  }
}
.listfinderContactArea__form {
  width: min(100%, 1000px);
  margin: 0 auto;
  line-height: 1.5rem;
}

.lf-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 180px;
  text-align: center;
}
.lf-loading__spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(0, 76, 151, 0.18);
  border-top-color: #004C97;
  border-radius: 50%;
  animation: lf-spin 1.5s linear infinite;
}
.lf-loading__text {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@keyframes lf-spin {
  to {
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=request-information.css.map */