
@charset "UTF-8";

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
section::before {
  display: none;
}

@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 60px;
  }
}

/*-------------------------------------
  header
------------------------------------- */
.l-header {
  display: block;
  width: 100%;
  min-height: 120px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: var(--color-bg-base);
  overflow: inherit;
  padding-block: 0;
  padding-inline: 50px 19px;
  transition: transform 0.3s ease-in-out;
}
.l-headerContents {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-headerLogo {
  width: 110px;
  margin-top: 24px;
}
.l-headerLogo a,
.l-headerLogo img {
  display: block;
}
.l-headerNav {
  position: absolute;
  top: 8px;
  left: 50%;
  translate: -50% 0;
  z-index: 1;
}
.l-headerMenu {
  list-style: none;
  display: flex;
  align-items: flex-start;
  position: relative;
}
.l-headerSmallMenuItem {
  transition: 0.3s all ease-in-out;
}
.l-headerMenu.is-active {
  border-bottom: 1px solid var(--color-border-light);
}
.l-headerMenuButton,
.l-headerMenuLink {
  color: var(--color-text-main);
  font-family: inherit;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  padding-block: 20px;
  width: 128px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  appearance: none;
  border: none;
  cursor: pointer;
  position: relative;
}
.l-headerMenuButton:hover,
.l-headerMenuLink:hover {
  text-decoration: none;
  opacity: .5;
}
.l-headerMenuLink[target="_blank"]::after {
  content: '';
  display: inline-block;
  width: 13px;
  height: 10px;
  background-image: url('/assets/images/common/icon_new_window_gray.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  left: 4px;
}
.l-headerMenuButton.is-active::before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: var(--color-border-main);
  position: absolute;
  bottom: -1px;
  left: 0;
}
.l-headerSmallMenuWrap {
  display: none;
  position: absolute;
  top: 54px;
  left: 50%;
  translate: -50% 0;
}
.l-headerSmallMenu {
  padding-top: 16px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.l-headerSmallMenuLink {
  font-size: 12px;
  display: inline-block;
  padding: 4px;
  white-space: nowrap;
}
.l-headerRightBlock {
  display: flex;
  align-items: center;
  gap: 20px;
}
.l-headerEnLink {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--color-border-light);
}
.l-headerEnLink:hover {
  text-decoration: none;
}
/* search */
.l-headerSearchButton {
  font-size: 12px;
  font-family: inherit;
  padding-block: 10px;
  background-color: transparent;
  border: none;
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--animation);
  cursor: pointer;
}
.l-headerSearchButton:hover {
  opacity: .5;
}
.l-headerSearchText {
  text-transform: uppercase;
  color: var(--color-text-main);
}
.l-headerSearch {
  position: relative;
}
.l-headerSearchFormWrapper {
  display: none;
}
.l-headerSearchForm {
  width: 150px;
  height: 42px;
  display: grid;
  grid-template-columns: 1fr 24px;
  align-items: center;
  gap: 4px;
  border-bottom: 1px solid var(--color-border-light);
}
.l-headerSearchInput {
  font-family: inherit;
  font-size: 14px;
  width: 100%;
  height: 100%;
  padding: 4px 8px;
  border-radius: 4px;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background: transparent;
}
.l-headerSearchInput::placeholder {
  font-family: inherit;
  color: var(--color-text-lightGray);
  opacity: 1;
}
.l-headerSearchSubmit {
  text-align: center;
  min-width: 24px;
  width: 24px;
  height: 100%;
  padding: 0;
  border: none;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.l-headerHamburger {
  display: none;
  width: 55px;
  height: 60px;
  border: none;
  background-color: transparent;
  position: relative;
}
.l-headerHamburgerLine {
  display: inline-block;
  width: 22px;
  height: 1px;
  background-color: var(--color-border-main);
  border-radius: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  transition: var(--animation);
}
.l-headerHamburgerLine::before,
.l-headerHamburgerLine::after {
  content: '';
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: var(--color-border-main);
  border-radius: 2px;
  position: absolute;
  left: 0;
  transition: var(--animation);
}
.l-headerHamburgerLine::before {
  top: -9px;
}
.l-headerHamburgerLine::after {
  top: 9px;
}
.l-headerHamburger.is-active .l-headerHamburgerLine {
  background-color: transparent;
}
.l-headerHamburger.is-active .l-headerHamburgerLine::before {
  rotate: 38deg;
  top: 50%;
  translate: 0 -50%;
}
.l-headerHamburger.is-active .l-headerHamburgerLine::after {
  rotate: -38deg;
  top: 50%;
  translate: 0 -50%;
}

@media screen and (max-width: 919px) {
  body.is-menuOpen  {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
  }
  .l-header {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-inline: 15px 4px;
  }
  .l-headerContents {
    width: 100%;
  }
  .l-headerLogo {
    width: 72px;
    margin: 0;
  }
  .l-headerMainWrapper {
    display: none;
    width: 100%;
    background-color: var(--color-bg-base);
    position: absolute;
    top: 60px;
    left: 0;
    height: calc(100vh - 60px); /* 100dvhのフォールバック */
    height: calc(100dvh - 60px);
    min-height: calc(100vh - 60px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  .l-headerNav {
    display: block;
    width: 100%;
    background-color: var(--color-bg-base);
    position: static;
    translate: inherit;
  }
  .l-headerMenu {
    flex-direction: column;
  }
  .l-headerMenu.is-active {
    border: none;
  }
  .l-headerMenuItem {
    width: 100%;
    border-top: 1px solid var(--color-border-light);
  }
  .l-headerMenuButton,
  .l-headerMenuLink {
    font-size: 25px;
    width: 100%;
    height: 84px;
    justify-content: flex-start;
    padding-block: 0;
    padding-inline: 50px calc(4px + 40px + 20px); /* テキスト間余白 + アイコン + 右余白 */
    position: relative;
  }
  .l-headerMenuButton:hover,
  .l-headerMenuLink:hover {
    opacity: 1;
  }
  .l-headerMenuButton::after,
  .l-headerMenuLink::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    right: 20px;
    translate: 0 -50%;
    transition: var(--animation);
  }
  .l-headerMenuButton.is-active::before {
    display: none;
  }
  .l-headerMenuButton::after {
    background-image: url('/assets/images/common/icon_plus_black.svg');
  }
  .l-headerMenuLink::after {
    background-image: url('/assets/images/common/icon_arrow_black.svg');
  }
  .l-headerMenuButton.is-active::after {
    background-image: url('/assets/images/common/icon_minus_black.svg');
  }
  .l-headerMenuLink[target="_blank"]::after {
    width: 20px;
    height: 15px;
    left: 10px;
    top: 10px;
  }
  .l-headerSmallMenuWrap {
    position: static;
    translate: inherit;
  }
  .l-headerSmallMenu {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    padding-block: 0 50px;
  }
  .l-headerSmallMenuItem {
    padding-left: 50px;
  }
  .l-headerRightBlock {
    background-color: var(--color-bg-base);
    border-top: 1px solid var(--color-border-light);
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .l-headerEnLink {
    font-size: 15px;
    text-align: left;
    justify-content: flex-start;
    width: 100%;
    height: 72px;
    padding-left: 50px;
    border: none;
  }
  .l-headerEnLink span {
    font-size: inherit;
  }
  .l-headerSearch {
    width: 100%;
    padding-inline: 20px;
    padding-block: 40px 120px;
    border-top: 1px solid var(--color-border-light);
  }
  .l-headerSearchForm {
    width: 100%;
    gap: 16px;
  }
  .l-headerSearchSubmit {
    min-width: 24px;
    min-height: 24px;
    padding: 0;
    text-align: left;
    -webkit-tap-highlight-color: transparent;
  }
  .l-headerSearchButton {
    display: none;
  }
  .l-headerSearchFormWrapper {
    display: block;
  }
  /* hamburger */
  .l-headerHamburger {
    display: block;
  }
}

/*-------------------------------------
  footer
------------------------------------- */
.l-footer {
  background-color: var(--color-bg-lightYellow);
}
.l-footerUpper {
  padding-block: 90px 80px;
  border-bottom: 2px solid var(--color-border-light);
  position: relative;
}
.l-footerContainer {
  width: 1080px;
  max-width: 89.33%;
  margin-inline: auto;
}
.l-footerSitemap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 45px 40px;
  position: relative;
}
.l-footerSitemapItem {
  border-top: 2px solid var(--color-border-light);
  padding-top: 20px;
}
.l-footerSitemapItem ul,
.l-footerSitemapItem ol {
  list-style: none;
}
.l-footerSitemapTitle {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-footerSitemapTitle [lang="en"] {
  font-size: 30px;
  line-height: 1.333;
  text-transform: uppercase;
}
.l-footerSitemapTitle [lang="ja"] {
  color: var(--color-text-gray);
  font-size: 12px;
  font-weight: 500;
}
.l-footerSitemapChildLink {
  font-size: 12px;
  display: block;
  padding-block: 4px;
  margin-top: 10px;
}
.l-footerSitemapChildLink a[target="_blank"]::after {
  content: '';
  display: inline-block;
  width: 13px;
  height: 10px;
  background-image: url('/assets/images/common/icon_new_window_gray.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  left: 4px;
}
.l-footerLogo {
  width: 166px;
  position: absolute;
  bottom: 18%;
  left: 78%;
}
.l-footerLogo a,
.l-footerLogo img {
  display: block;
  width: 100%;
}
.l-footerPagetop {
  width: 72px;
  height: 72px;
  position: absolute;
  right: 50px;
  bottom: 86px;
}
/* footer bottom */
.l-footerBottom {
  padding-block: 24px 72px;
}
.l-footerGroupCompany {
  display: grid;
  grid-template-columns: 22.22% 1fr;
  gap: 40px;
}
.l-footerGroupCompany::before {
  display: none;
}
.l-footerGroupTitle {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.l-footerGroupTitle [lang="en"] {
  font-size: 18px;
  line-height: 1.389;
  text-transform: uppercase;
}
.l-footerGroupTitle [lang="ja"] {
  font-size: 12px;
  font-weight: 500;
}
.l-footerGroupWrapper {
  display: grid;
  gap: 24px;
}
.l-footerGroupList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 12px 8px;
}
.l-footerGroupList.--hasBorder {
  border-top: 1px solid var(--color-border-lightest);
  padding-top: 16px;
}
.l-footerGroupList.--isSanyuGroup .l-footerGroupListItem:first-child {
  grid-column: 1 / -1;
}
.l-footerGroupListItem span,
.l-footerGroupListItem a {
  font-size: 12px;
  line-height: 1.167;
  white-space: nowrap;
}
.l-footerGroupListItem span {
  display: block;
}
.l-footerGroupListItem a[target="_blank"]::after {
  content: '';
  display: inline-block;
  width: 13px;
  height: 10px;
  background-image: url('/assets/images/common/icon_new_window_gray.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  left: 4px;
}
.l-footerCopyright {
  font-size: 10px;
  text-align: right;
  letter-spacing: 0.03em;
  padding-block: 12px;
}
.l-footerCopyright small {
  font-size: inherit;
}

@media screen and (max-width: 1079px) {
  .l-footerSitemap {
    gap: 40px 32px;
  }
  .l-footerSitemapTitle {
    flex-direction: column;
    align-items: flex-start;
  }
  .l-footerPagetop {
    bottom: 56px;
  }
}

@media screen and (max-width: 919px) {
  .l-footerGroupList {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .l-footerUpper {
    padding-block: 50px 60px;
  }
  .l-footerSitemap {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 10px;
    padding-bottom: calc(80px + 60px);
  }
  .l-footerSitemapItem {
    padding-top: 15px;
  }
  .l-footerSitemapTitle {
    margin-bottom: 20px;
  }
  .l-footerSitemapTitle [lang="en"] {
    font-size: 25px;
    margin-bottom: 4px;
  }
  .l-footerLogo {
    width: 143px;
    bottom: 0;
    left: 0;
  }
  .l-footerPagetop {
    width: 60px;
    bottom: 70px;
    right: calc((100% - 89.33%) / 2);
  }
  .l-footerBottom {
    padding-bottom: 16px;
  }
  .l-footerGroupCompany {
    grid-template-columns: 1fr;
  }
  .l-footerGroupWrapper {
    gap: 20px;
  }
  .l-footerGroupList {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 8px;
  }
  .l-footerGroupList.--hasBorder {
    padding-top: 20px;
  }
}

/*-------------------------------------
  common contents
------------------------------------- */
.l-wrapper {
  padding-top: 120px;
}
.l-main {
  padding-top: 80px;
}
.l-container {
  width: 1080px;
  max-width: 89.33%;
  margin-inline: auto;
}
.l-container.--topSection {
  width: 1120px;
  max-width: 94.67%;
}
.l-pageTitle {
  color: #626262;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-inline: 1em;
  padding-bottom: 34px;
  margin-bottom: 100px;
  position: relative;
}
.l-pageTitleText {
  font-size: 36px;
  font-weight: normal;
  text-transform: uppercase;
  line-height: 1.361;
}
.l-pageTitleSubText {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
.l-pageTitle::after {
  content: '';
  display: inline-block;
  width: 50px;
  height: 4px;
  background-color: #9D9D9D;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
}

@media screen and (max-width: 919px) {
  .l-wrapper {
    padding-top: 60px;
  }
  .l-main {
    padding-top: 60px;
  }
  .l-pageTitle {
    gap: 5px;
    padding-bottom: 24px;
    margin-bottom: 60px;
  }
  .l-pageTitleText {
    font-size: 29px;
  }
}

/*-------------------------------------
  content footer
  - parent page nav
  - breadcrumb
------------------------------------- */
.l-contentFooter {
  padding-block: 120px 40px;
}
/* parent page nav */
.p-parentPage {
  margin-bottom: 120px;
}
.p-parentPageLink {
  color: var(--color-text-gray);
  font-size: 12px;
  line-height: 1.5;
  padding-left: 20px;
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  position: relative;
}
.p-parentPageLink::before {
  content: attr(data-english);
  color: var(--color-text-main);
  font-size: 18px;
  text-transform: uppercase;
  line-height: 1.444;
}
.p-parentPageLink::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 7.8px;
  background-image: url('/assets/images/common/arrow_r.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  transform: rotate(180deg);
}
.p-parentPageLink:hover {
  text-decoration: none;
}

/* breadcrumb */
.c-breadcrumbList {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.c-breadcrumbListItem {
  font-size: 16px;
  line-height: 1.625;
}
.c-breadcrumbListItem:not(:last-child):after {
  content: '>';
  font-size: inherit;
  display: inline-block;
  margin-inline: 0.75em 0.5em;
}
.c-breadcrumbListItem a {
  font-size: inherit;
}

/* list */
.c-list__decimal li{
  list-style: decimal;
  margin-left: 1.5em;
}

.c-list__alpha {
  list-style: none;
  counter-reset: alpha;
}

.c-list__alpha li {
  position: relative;
  padding-left: 1.5em;
}

.c-list__alpha li::before {
  counter-increment: alpha;
  content: counter(alpha, upper-alpha) '. ';
  position: absolute;
  left: 0;
}

.c-list__disc li {
  list-style: disc;
  margin-left: 1.5em;
}

.c-list__singleParen {
  list-style: none;
  counter-reset: number;
}

.c-list__singleParen li {
  position: relative;
  padding-left: 1.5em;
}

.c-list__singleParen li::before {
  counter-increment: number;
  content: counter(number) ')';
  position: absolute;
  left: 0;
}

.c-list__paren {
  list-style: none;
  counter-reset: number;
}

.c-list__paren li {
  position: relative;
  padding-left: 2em;
}

.c-list__paren li::before {
  counter-increment: number;
  content: '(' counter(number) ')';
  position: absolute;
  left: 0;
}

.c-heading--indent {
  text-indent: -1.2em;
  margin-left: 1.2em;
}

.c-note {
  text-indent: -1em;
  margin-left: 1em;
}

@media screen and (max-width: 767px) {
  .l-contentFooter {
    padding-block: 60px 30px;
  }
  .p-parentPage {
    margin-bottom: 60px;
  }
  .c-breadcrumbListItem {
    font-size: 12px;
  }
}

/*-------------------------------------
  utility
------------------------------------- */
/* screen reader text */
.u-visuallyHidden {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
/* display */
.u-display[data-display~="lap:over"] {
  display: block;
}
.u-display[data-display~="tab:over"] {
  display: block;
}
.u-display[data-display~="sp:only"] {
  display: none;
}
@media screen and (max-width: 919px) {
  .u-display[data-display~="lap:over"] {
    display: block;
  }
  .u-display[data-display~="tab:over"] {
    display: block;
  }
  .u-display[data-display~="sp:only"] {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .u-display[data-display~="lap:over"] {
    display: none;
  }
  .u-display[data-display~="tab:over"] {
    display: none;
  }
  .u-display[data-display~="sp:only"] {
    display: block;
  }
}