@charset "UTF-8";
.Breadcrumb {
  position: relative;
  color: #171C8F;
  background: #fff;
  border-left: solid 1px #ddd;
  border-right: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
}
@media screen and (max-width: 960px) {
  .Breadcrumb {
    border-left: none;
    border-right: none;
  }
}
.Breadcrumb a {
  color: #171C8F;
}
.Breadcrumb a[aria-current=page] {
  color: #555;
}
.Breadcrumb a[aria-current=page]:hover {
  text-decoration: none;
}
.Breadcrumb ol {
  list-style: none;
  padding-inline: 0;
  margin-block: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  display: flex;
  justify-content: flex-start;
  padding-inline: 30px;
  padding-block: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
}
@media screen and (max-width: 960px) {
  .Breadcrumb ol {
    padding-inline: 10px;
  }
}
.Breadcrumb ol::before, .Breadcrumb ol::after {
  content: "";
  width: 43px;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.1) 0%, #fff 100%);
  position: absolute;
  top: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.2s ease-out;
}
.Breadcrumb ol::before {
  left: 0;
  scale: -1 1;
}
.Breadcrumb ol::after {
  right: 0;
}
.Breadcrumb ol.--show-prev::before, .Breadcrumb ol.--show-next::after {
  opacity: 1;
  z-index: 1;
}
.Breadcrumb li {
  white-space: nowrap;
  margin-right: 10px;
}
.Breadcrumb li::before {
  content: ">";
  margin-right: 10px;
}
.Breadcrumb li.Breadcrumb__home::before {
  display: none;
}

.Breadcrumb__homeIcon {
  display: inline-block;
  vertical-align: middle;
  width: 12px;
  height: 13px;
  margin-top: -3px;
  background: url("/common_2023/img/icon_home.svg");
}

.Footer {
  font-size: 0.88rem;
  line-height: 1.5;
  border-top: solid 1px #ddd;
  position: relative;
  z-index: 50;
}

.Footer__section {
  background: #2F3244;
  padding: 25px 5.6% 15px;
}
@media screen and (max-width: 960px) {
  .Footer__section {
    padding: 25px 10px;
  }
}
.Footer__section.--gray {
  background: #F2F2F2;
  padding-block: 35px 25px;
}
@media screen and (max-width: 960px) {
  .Footer__section.--gray {
    padding-block: 35px;
  }
}

.Footer__sectionInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 960px) {
  .Footer__sectionInner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.Footer__sectionInner > * {
  flex: 0 0 auto;
}

.Footer__utilityLink {
  list-style: none;
  padding-inline: 0;
  margin-block: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 960px) {
  .Footer__utilityLink {
    width: 100%;
    gap: 20px 10px;
  }
}

@media screen and (max-width: 960px) {
  .Footer__utilityLink > li {
    width: calc((100% - 10px) / 2);
  }
}

.Footer__utilityLink > li > a {
  color: #fff;
}
.Footer__section.--gray .Footer__utilityLink > li > a {
  color: #555;
}

.Footer__snsLink {
  list-style: none;
  padding-inline: 0;
  margin-block: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 960px) {
  .Footer__snsLink {
    align-self: center;
  }
}

.Footer__snsLink > li > a:hover {
  opacity: 0.7;
}

.Footer__copyright {
  font-size: 0.75rem;
  line-height: 1.5;
  color: #fff;
}
@media screen and (max-width: 960px) {
  .Footer__copyright {
    align-self: center;
  }
}

.Footer__toTop {
  width: 60px;
  height: 60px;
  background: #171C8F;
  position: fixed;
  bottom: 30px;
  right: 20px;
  opacity: 0;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  visibility: hidden;
  z-index: 100;
}
@media screen and (max-width: 960px) {
  .Footer__toTop {
    width: 30px;
    height: 30px;
    right: 10px;
  }
}
.Footer__toTop.--show {
  opacity: 1;
  visibility: visible;
}
.Footer__toTop.--not-fixed {
  position: absolute;
  top: -90px;
}
@media screen and (max-width: 960px) {
  .Footer__toTop.--not-fixed {
    top: -60px;
  }
}
.Footer__toTop::after {
  content: "";
  display: inline-block;
  background: #fff;
  width: 22px;
  height: 12px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  -webkit-mask: url("/common_2023/img/icon_arrow_pagetop.svg");
  mask: url("/common_2023/img/icon_arrow_pagetop.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
@media screen and (max-width: 960px) {
  .Footer__toTop::after {
    width: 14px;
    height: 8px;
  }
}

/* Hamburger */
.IconHamburger {
  display: none;
  position: absolute;
  width: 20px;
  height: 18px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 960px) {
  .IconHamburger {
    display: block;
  }
  .Header__menuButton.--open .IconHamburger {
    display: none;
  }
}

.IconHamburger__bar1,
.IconHamburger__bar2,
.IconHamburger__bar3 {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  margin-top: -1px;
  left: 0;
}

.IconHamburger__bar1 {
  opacity: 1;
}

.IconHamburger__bar2 {
  transform: translateY(-8px);
}

.IconHamburger__bar3 {
  transform: translateY(8px);
}

/* Cross */
.IconCross {
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
.IconCross::before, .IconCross::after {
  content: "";
  display: block;
  width: 141%;
  height: 2px;
  background: #555;
  position: absolute;
  top: 50%;
  translate: -3px 0;
  left: 0;
}
.IconCross::before {
  transform: rotate(45deg);
}
.IconCross::after {
  transform: rotate(-45deg);
}
.MenuPanel__close .IconCross {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  top: -2px;
}
.MenuPanel__close .IconCross::before, .MenuPanel__close .IconCross::after {
  background: #fff;
}
.HeaderSearch__close .IconCross {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  top: -2px;
}
@media screen and (max-width: 960px) {
  .Header__menuButton .IconCross, .Header__regionButton .IconCross {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
  .Header__menuButton[aria-expanded=true] .IconCross, .Header__regionButton[aria-expanded=true] .IconCross {
    display: block;
  }
}

/* Earth */
.IconEarth {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 22px;
  height: 22px;
  background-color: #fff;
  -webkit-mask: url("../img/icon_earth.png") no-repeat;
  mask: url("../img/icon_earth.png") no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.Header__regionButton .IconEarth {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.Header__regionButton[aria-expanded=true] .IconEarth {
  display: none;
}
.Header__selectRegion .IconEarth {
  margin-right: 10px;
}

.Header {
  z-index: 101;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
@media screen and (max-width: 960px) {
  .Header {
    position: fixed;
    top: 0;
  }
}
.Header.--fixed {
  position: fixed;
  top: 0;
}
html:not(.js) .Header {
  position: static;
}

.Header__inner {
  display: grid;
  grid-template-columns: 210px 1fr;
  align-items: start;
  justify-content: space-between;
  grid-template-areas: "logo utility" "logo globalNav";
}
@media screen and (max-width: 960px) {
  .Header__inner {
    grid-template-columns: 103px 1fr;
    grid-template-areas: "logo utility";
    z-index: 1000;
    position: relative;
    border-bottom: solid 1px #ddd;
  }
}
.Header.--fixed .Header__inner {
  grid-template-columns: 124px 1fr;
}
body#Home .Header__inner {
  border-bottom: none;
}
@media screen and (max-width: 960px) {
  body#Home .Header__inner {
    border-bottom: solid 1px #ddd;
  }
}

.Header__logo {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  grid-area: logo;
  display: grid;
  place-items: center;
  position: relative;
  background: #fff;
  box-sizing: border-box;
  border: solid 1px #ddd;
  height: 100%;
}
.Header.--fixed .Header__logo {
  border-top: none;
  border-left: none;
  border-right: none;
}
@media screen and (max-width: 960px) {
  .Header__logo {
    border-top: none;
    border-bottom: none;
    border-left: none;
  }
}
.Header__logo h1 {
  font-size: 1rem;
  line-height: 1;
}
.Header__logo a:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.Header__logo img {
  width: 155px;
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 960px) {
  .Header__logo img {
    width: 72px;
  }
}
.Header.--fixed .Header__logo img {
  width: 89px;
}

.Header__utility {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: utility;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  padding-inline: 20px 40px;
  background: #171C8F;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 960px) {
  .Header__utility {
    height: initial;
    min-height: 55px;
    padding-inline: 10px 120px;
    position: initial;
  }
}
.Header.--fixed .Header__utility {
  display: none;
}
body#Home .Header__utility {
  background: rgba(0, 0, 0, 0.8);
}
@media screen and (max-width: 960px) {
  body#Home .Header__utility {
    background: #171C8F;
  }
}

.Header__other {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: globalNav;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 70px;
  padding-inline: 20px 40px;
  background: #fff;
  color: #333;
  border: solid 1px #ddd;
  border-left: none;
  box-sizing: border-box;
}

@media screen and (max-width: 960px){
  .Header__logo {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
  }
  .Header__utility {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
}
.Header.--fixed .Header__other {
  border-top: none;
  border-right: none;
}
@media screen and (max-width: 960px) {
  .Header__other {
    display: initial;
    visibility: hidden;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    width: 100%;
    background: transparent;
    align-items: initial;
    justify-content: initial;
    padding-inline: initial;
    translate: 100% 0;
  }
  .Header__other.--animation {
    transition: translate 0.1s ease-out, visibility 0.1s ease-out;
  }
  .Header__other.--open {
    visibility: visible;
    translate: 0% 0;
  }
}
body#Home .Header__other {
  border: none;
  background: rgba(0, 0, 0, 0.5490196078);
}
@media screen and (max-width: 960px) {
  body#Home .Header__other {
    background: transparent;
  }
}

.Header__region {
  font-size: 1rem;
}
@media screen and (max-width: 960px) {
  .Header__region {
    font-size: 0.88rem;
  }
}

.Header__utilityLinks {
  list-style: none;
  padding-inline: 0;
  margin-block: 0;
  font-size: 0.88rem;
  display: flex;
  gap: 20px;
}
.Header__utilityLinks a {
  color: #fff;
}
.Header__selectRegion {
  display: block;
}
@media screen and (max-width: 960px) {
  .Header__selectRegion {
    display: none;
  }
}

.Header__langLink {
  list-style: none;
  padding-inline: 0;
  margin-block: 0;
  font-size: 0.88rem;
  display: flex;
}
.Header__langLink li::before {
  content: "/";
  display: inline-block;
  margin-inline: 6px;
}
.Header__langLink li:first-child::before {
  display: none;
}
.Header__langLink a[aria-current=true] {
  font-weight: bold;
  text-decoration: underline;
}

@media screen and (max-width: 960px) {
  .Header__contact {
    display: none;
  }
}

.Header__utility__search {
  font-size: 1.4rem;
}
@media screen and (max-width: 960px) {
  .Header__utility__search {
    position: absolute;
    bottom: 10px;
    right: 64px;
  }
}
@media screen and (max-width: 960px) {
  .Header__utility__search {
    right: 48px;
    bottom: 10px;
  }
}

.Header__utility__global a::after {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: text-top;
  margin-left: 0.57em;
  background-image: url("../img/icon_global_gray.svg");
}
.Menu__utility .Header__utility__global {
  margin-top: 20px;
  padding-top: 20px;
}

.Header__utility__menu {
  display: none;
}
@media screen and (max-width: 960px) {
  .Header__utility__menu {
    display: block;
  }
}

@media screen and (min-width: 960.1px) {
  .HeaderSearch {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 40px;
    z-index: 1;
    box-sizing: border-box;
  }
}
.HeaderSearch.--open {
  display: block;
}
@media screen and (max-width: 960px) {
  .HeaderSearch {
    background: #fff;
    padding: 15px;
  }
}

.HeaderSearchForm form {
  margin: 0;
}

.HeaderSearchForm__container {
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: solid 2px #171C8F;
  margin-top: 10px;
  padding-bottom: 10px;
}
@media screen and (max-width: 960px) {
  .HeaderSearchForm__container {
    margin-top: 15px;
    padding-bottom: 2px;
  }
}

.HeaderSearchForm__input {
  flex: 1 1 auto;
}
.HeaderSearchForm__input input[type=text] {
  color: #171C8F !important;
  background: none;
  border: none;
  width: 100%;
  box-sizing: border-box;
  height: 40px;
  padding-left: 18px;
  outline-color: initial;
}
.HeaderSearchForm__input input[type=text]::-moz-placeholder {
  color: #555;
}
.HeaderSearchForm__input input[type=text]::placeholder {
  color: #555;
}

.HeaderSearchForm__input > input {
  width: 100%;
}

.HeaderSearchForm__button {
  flex: 0 0 auto;
  line-height: 1;
}

.HeaderSearchForm__button > input {
  opacity: 1 !important;
  background: none !important;
  left: 0 !important;
}
@media screen and (max-width: 960px) {
  .HeaderSearchForm__button > input {
    width: 40px !important;
    height: 40px !important;
    padding: 9px !important;
    background: none !important;
  }
}

.HeaderSearchButton {
  display: block;
  padding-block: 10px;
}
.HeaderSearchButton::after {
  content: "";
  display: inline-block;
  width: 21px;
  height: 21px;
  vertical-align: middle;
  background: url("/common_2023/img/icon_search_gray.png") no-repeat 50% 50%;
  background-size: contain;
}
body#Home .HeaderSearchButton::after {
  background-image: url("/common_2023/img/icon_search_white.png");
}

@media screen and (min-width: 960.1px) {
  .HeaderSearchForm {
    max-width: 625px;
    margin: 60px auto 0;
  }
}
@media screen and (max-width: 960px) {
  .HeaderSearchForm {
    background: #fff;
  }
}
.HeaderSearchForm form {
  display: grid;
}
.HeaderSearchForm label {
  display: block;
}

.HeaderSearch__form input[type=text] {
  border: 1px solid #949494;
  border-radius: 22px;
  height: 44px;
  padding: 0 50px 0 calc(24px - 1px);
  box-sizing: border-box;
  font-size: 1.6rem;
  vertical-align: top;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
}
.HeaderSearch__form input[type=text]::-moz-placeholder {
  color: #6f6f6f;
}
.HeaderSearch__form input[type=text]::placeholder {
  color: #6f6f6f;
}
.HeaderSearch__form input[type=text]::-moz-placeholder {
  opacity: 1;
}

.HeaderSearch__form button[type=submit] {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-16px);
  background-image: url("../img/icon_search_gray.svg");
}

.HeaderSearch__close {
  position: absolute;
  top: 40px;
  right: 40px;
}
@media screen and (max-width: 960px) {
  .HeaderSearch__close {
    display: none;
  }
}
.HeaderSearch__close button {
  color: inherit;
  border: none;
  background: transparent;
  border-radius: 0;
  cursor: pointer;
  padding: 0;
}
.HeaderSearch__close button::-webkit-search-decoration {
  display: none;
}

.Header__regionButton {
  color: inherit;
  border: none;
  background: transparent;
  border-radius: 0;
  cursor: pointer;
  padding: 0;
  display: none;
}
.Header__regionButton::-webkit-search-decoration {
  display: none;
}
@media screen and (max-width: 960px) {
  .Header__regionButton {
    display: block;
    position: absolute;
    top: 0;
    right: 55px;
    width: 55px;
    height: 100%;
  }
  .Header__regionButton[aria-expanded=true] {
    background: #fff;
  }
}
.Header__regionButton button {
  color: inherit;
  border: none;
  background: transparent;
  border-radius: 0;
  cursor: pointer;
  padding: 0;
}
.Header__regionButton button::-webkit-search-decoration {
  display: none;
}

.Header__menuButton {
  color: inherit;
  border: none;
  background: transparent;
  border-radius: 0;
  cursor: pointer;
  padding: 0;
  display: none;
}
.Header__menuButton::-webkit-search-decoration {
  display: none;
}
@media screen and (max-width: 960px) {
  .Header__menuButton {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 55px;
    height: 100%;
  }
  .Header__menuButton[aria-expanded=true] {
    background: #fff;
  }
}
.Header__menuButton button {
  color: inherit;
  border: none;
  background: transparent;
  border-radius: 0;
  cursor: pointer;
  padding: 0;
}
.Header__menuButton button::-webkit-search-decoration {
  display: none;
}

.Header__subNav {
  display: none;
}
@media screen and (max-width: 960px) {
  .Header__subNav {
    font-size: 0.88rem;
    border-top: solid 1px #9A9DA4;
    background: #373A4B;
    padding: 13px 0;
    display: flex;
    flex-direction: column;
  }
}
.Header__subNav ul {
  list-style: none;
  padding-inline: 0;
  margin-block: 0;
}
.Header__subNav a {
  color: #fff;
  display: block;
  padding: 7px 15px;
}

.Header__backdrop {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(32, 35, 47, 0.9607843137);
  visibility: hidden;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.15s ease, visibility 0.15s ease;
}
.Header__backdrop.--show {
  height: calc(100vh - 100%);
  opacity: 1;
  visibility: visible;
}
.Header__backdrop.--white.--show {
  background: #fff;
}
.Header__backdrop.--white.--show::before {
  display: none;
}

.HeaderLangMenu {
  position: relative;
  width: 115px;
  border-bottom: solid 1px #fff;
}
@media screen and (max-width: 960px) {
  .HeaderLangMenu {
    position: initial;
    width: initial;
    border-bottom: none;
  }
}

.HeaderLangMenu__button {
  color: inherit;
  border: none;
  background: transparent;
  border-radius: 0;
  cursor: pointer;
  padding: 0;
  width: 100%;
  padding-inline: 6px 19px;
  text-align: left;
  position: relative;
}
.HeaderLangMenu__button::-webkit-search-decoration {
  display: none;
}
@media screen and (max-width: 960px) {
  .HeaderLangMenu__button {
    position: absolute;
    top: 0;
    right: 110px;
    width: 55px;
    height: 100%;
    padding-inline: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .HeaderLangMenu__button[aria-expanded=true] {
    background: #fff;
    color: #555;
  }
}
.HeaderLangMenu__button:hover {
  opacity: 0.7;
}
@media screen and (max-width: 960px) {
  .HeaderLangMenu__button:hover {
    opacity: 1;
  }
}

.HeaderLangMenu__buttonLabel::after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 8px;
  background: url("../img/icon_arw_nav02.png") 50% 50% no-repeat;
}
.HeaderLangMenu__buttonLabel.--desktop {
  display: block;
}
.HeaderLangMenu__buttonLabel.--desktop::after {
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
}
@media screen and (max-width: 960px) {
  .HeaderLangMenu__buttonLabel.--desktop {
    display: none;
  }
}
.HeaderLangMenu__buttonLabel.--mobile {
  position: relative;
  display: none;
}
.HeaderLangMenu__buttonLabel.--mobile::after {
  margin-left: 6px;
}
@media screen and (max-width: 960px) {
  .HeaderLangMenu__buttonLabel.--mobile {
    display: block;
  }
  .HeaderLangMenu__button[aria-expanded=true] .HeaderLangMenu__buttonLabel.--mobile::after {
    rotate: 180deg;
    translate: 0 -1px;
    background: url("../img/icon_arw_nav.png") 50% 50% no-repeat;
  }
}

.HeaderLangMenu__panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  color: #171C8F;
  background-color: #fff;
  border: 1px solid #171C8F;
  z-index: 5;
}
@media screen and (max-width: 960px) {
  .HeaderLangMenu__panel {
    border: none;
    top: calc(100% + 1px);
  }
}
.HeaderLangMenu__panel.--open {
  display: block;
}
body#Home .HeaderLangMenu__panel {
  color: #fff;
  background-color: #000;
  border: 1px solid #868482;
}
@media screen and (max-width: 960px) {
  body#Home .HeaderLangMenu__panel {
    background: #fff;
    border: none;
  }
}
.HeaderLangMenu__panel ul {
  list-style: none;
  padding-inline: 0;
  margin-block: 0;
}
@media screen and (max-width: 960px) {
  .HeaderLangMenu__panel li {
    font-size: 0.88rem;
  }
}
.HeaderLangMenu__panel li:not(:first-child) {
  border-top: 1px solid #171C8F;
}
@media screen and (max-width: 960px) {
  .HeaderLangMenu__panel li:not(:first-child) {
    border-top: 1px solid #9a9da4;
  }
}
body#Home .HeaderLangMenu__panel li:not(:first-child) {
  border-top: 1px solid #868482;
}
@media screen and (max-width: 960px) {
  body#Home .HeaderLangMenu__panel li:not(:first-child) {
    border-top: 1px solid #9a9da4;
  }
}
.HeaderLangMenu__panel li a {
  padding: 2px 6px;
  display: block;
  color: #171C8F;
}
@media screen and (min-width: 960.1px) {
  .HeaderLangMenu__panel li a:hover, .HeaderLangMenu__panel li a:focus-visible {
    text-decoration: none;
    opacity: 0.7;
  }
}
@media screen and (max-width: 960px) {
  .HeaderLangMenu__panel li a {
    padding: 15px 45px 15px 15px;
    position: relative;
  }
  .HeaderLangMenu__panel li a::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 15px;
    height: 11px;
    background: url(/common_2023/img/icon_list.gif) 50% 50% no-repeat;
    background-size: cover;
    position: absolute;
    right: 15px;
    top: 50%;
    translate: 0 -50%;
  }
}
body#Home .HeaderLangMenu__panel li a {
  color: #fff;
}
@media screen and (max-width: 960px) {
  body#Home .HeaderLangMenu__panel li a {
    color: #171C8F;
  }
}

.Header__regionPanel {
  display: none;
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
}
.Header__regionPanel.--open {
  display: block;
}
.Header__regionPanel .outer {
  background: #fff;
}
.Header__regionPanel .outer > dl > dt {
  font-size: 1rem;
  line-height: 1.5;
  color: #000;
  font-weight: bold;
  padding: 15px;
  border-top: 1px solid #9a9da4;
}
.Header__regionPanel dd > dl {
  display: flex;
  flex-wrap: wrap;
}
.Header__regionPanel dd > dl > dt {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #555;
  flex: 0 0 auto;
  width: 105px;
  padding: 15px 20px 15px 30px;
  border-top: 1px solid #9a9da4;
  box-sizing: content-box;
}
.Header__regionPanel dd > dl > dd {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #555;
  flex: 1 1 auto;
  width: calc(100% - 155px);
  padding: 15px 30px 15px 0;
  border-top: 1px solid #9a9da4;
  box-sizing: border-box;
}
.Header__regionPanel dd > dl > dd > ul {
  list-style: none;
  padding-inline: 0;
  margin-block: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 0;
}
.Header__regionPanel dd > dl > dd > ul > li {
  position: relative;
  padding-right: 21px;
}
.Header__regionPanel dd > dl > dd > ul > li::after {
  content: "";
  display: block;
  width: 1px;
  height: 1em;
  border-top: 1px solid #ddd;
  position: absolute;
  top: 50%;
  right: 10px;
  translate: 0 -50%;
}
.Header__regionPanel dd > dl > dd > ul > li:last-child::after {
  display: none;
}
.Header__regionPanel dd > dl > dd > ul > li > a img {
  vertical-align: middle;
  margin-left: 7px;
}

.LocalNavA {
  margin-top: 90px;
  background: #f6f6f6;
  padding-inline: 40px;
}
@media screen and (max-width: 960px) {
  .LocalNavA {
    margin-top: 70px;
    padding-inline: 10px;
  }
}
.LocalNavB + .LocalNavA {
  margin-top: 0;
}
.layout-wrap.clm2_contents + .LocalNavA, .layout-wrap.clm2_contents + .LocalNavB + .LocalNavA {
  display: none;
}
@media screen and (max-width: 960px) {
  .layout-wrap.clm2_contents + .LocalNavA, .layout-wrap.clm2_contents + .LocalNavB + .LocalNavA {
    display: block;
  }
}

.LocalNavA__inner {
  max-width: 1285px;
  margin-inline: auto;
  padding-block: 40px 80px;
  container-type: inline-size;
}
@media screen and (max-width: 960px) {
  .LocalNavA__inner {
    max-width: initial;
    padding-block: 40px 60px;
  }
}

.LocalNavA__heading1 {
  font-size: 1.75rem;
  line-height: 1.5;
  color: #000;
  padding-bottom: 18px;
  position: relative;
}
@media screen and (max-width: 960px) {
  .LocalNavA__heading1 {
    font-size: 1.13rem;
    line-height: 1.5;
    padding-bottom: 16px;
  }
}
.LocalNavA__heading1:first-of-type {
  margin-top: 0;
}
.LocalNavA__heading1 + .LocalNavA__heading1 {
  margin-top: 42px;
}
.LocalNavA__heading1::after {
  content: "";
  display: block;
  width: 45px;
  height: 3px;
  background: #171C8F;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 960px) {
  .LocalNavA__heading1::after {
    width: 36px;
  }
}

.LocalNavA__heading2 {
  font-size: 1rem;
  line-height: 2;
  color: #333;
  border-bottom: solid 1px #ddd;
  margin-top: 50px;
  padding-bottom: 10px;
}
.LocalNavA__heading2:first-of-type {
  margin-top: 0;
}
.LocalNavA__heading1 + .LocalNavA__heading2 {
  margin-top: 42px;
}
@media screen and (max-width: 960px) {
  .LocalNavA__heading1 + .LocalNavA__heading2 {
    margin-top: 34px;
  }
}

.LocalNavA__link {
  list-style: none;
  padding-inline: 0;
  margin-block: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  margin-top: 42px;
  display: grid;
  gap: 20px 35px;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
@container (max-width: 250px) {
  .LocalNavA__link {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 960px) {
  .LocalNavA__link {
    margin-top: 34px;
  }
}
.LocalNavA__heading2 + .LocalNavA__link {
  margin-top: 17px;
}

.LocalNavA__link > li > a[aria-current=true] {
  font-weight: bold;
}

.LocalNavB {
  margin-top: 90px;
  padding-inline: 40px;
}
@media screen and (max-width: 960px) {
  .LocalNavB {
    margin-top: 70px;
    padding-inline: 10px;
  }
}
.layout-wrap.clm2_contents + .LocalNavB {
  display: none;
}
@media screen and (max-width: 960px) {
  .layout-wrap.clm2_contents + .LocalNavB {
    display: block;
  }
}

.LocalNavB__inner {
  border-top: solid 1px #ddd;
  max-width: 1285px;
  margin-inline: auto;
  padding-block: 40px 60px;
  container-type: inline-size;
}
@media screen and (max-width: 960px) {
  .LocalNavB__inner {
    max-width: initial;
    padding-block: 50px 60px;
  }
}

.LocalNavB__heading1 {
  font-size: 1.25rem;
  line-height: 1.5;
  color: #000;
  position: relative;
  margin-top: 40px;
}
@media screen and (max-width: 960px) {
  .LocalNavB__heading1 {
    font-size: 1.13rem;
    line-height: 1.5;
  }
}
.LocalNavB__heading1:first-of-type {
  margin-top: 0;
}

.LocalNavB__link {
  list-style: none;
  padding-inline: 0;
  margin-block: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  margin-top: 42px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
@container (max-width: 519px) {
  .LocalNavB__link {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
@media screen and (max-width: 960px) {
  .LocalNavB__link {
    margin-top: 34px;
  }
}
.LocalNavB__heading2 + .LocalNavB__link {
  margin-top: 17px;
}

.LocalNavB__link > li {
  border: solid 1px #e0e0e0;
}

.LocalNavB__link > li > a {
  display: block;
  position: relative;
  height: 100%;
  padding: 10px 50px 10px 15px;
  box-sizing: border-box;
}
.LocalNavB__link > li > a[aria-current=true]::before {
  content: "";
  display: block;
  width: calc(100% + 2px);
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: -1px;
  background: #171C8F;
}
.LocalNavB__link > li > a::after {
  content: "";
  display: block;
  width: 20px;
  height: 11px;
  background: url("/common_2023/img/icon_arw_blue_01_2.png") 50% 50% no-repeat;
  position: absolute;
  top: 50%;
  right: 15px;
  translate: 0 -50%;
}

@media screen and (max-width: 960px) {
  .Menu {
    position: relative;
    z-index: 1001;
    background: #373A4B;
    overflow: hidden;
  }
  .Menu a {
    color: #fff;
  }
}

.Menu__menuBar {
  list-style: none;
  padding-inline: 0;
  margin-block: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0 42px;
}
@media screen and (max-width: 960px) {
  .Menu__menuBar {
    position: relative;
    flex-direction: column;
    gap: initial;
  }
  .Menu__menuBar.--open {
    left: -100%;
  }
}

@media screen and (max-width: 960px) {
  .Menu__menuItem.--search {
    display: none;
  }
}

.Menu__category {
  font-size: 0.88rem;
}
@media screen and (max-width: 960px) {
  .Menu__category {
    font-size: 1rem;
    font-weight: bold;
  }
  .Menu.--sub .Menu__category {
    display: none;
  }
}

.Menu__categoryAnchor {
  color: #333;
  display: block;
}
body#Home .Menu__categoryAnchor {
  color: #fff;
}
@media screen and (min-width: 960.1px) {
  .Menu__categoryAnchor {
    position: relative;
    padding-block: 12px;
  }
  .Menu__categoryAnchor:hover, .Menu__categoryAnchor:focus-visible, .Menu__menuItem.--open .Menu__categoryAnchor, .Menu__menuItem.--current .Menu__categoryAnchor {
    text-decoration: none;
  }
  .Menu__categoryAnchor:hover::before, .Menu__categoryAnchor:focus-visible::before, .Menu__menuItem.--open .Menu__categoryAnchor::before, .Menu__menuItem.--current .Menu__categoryAnchor::before {
    width: 100%;
  }
  .Menu__categoryAnchor::before {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    position: absolute;
    left: 50%;
    bottom: 2px;
    transform: translateX(-50%);
    background: #171C8F;
    transition: width 0.2s ease-out;
  }
  body#Home .Menu__categoryAnchor::before {
    background: #fff;
  }
  .Menu__categoryAnchor.--sub::after {
    content: "";
    display: inline-block;
    width: 13px;
    height: 8px;
    margin-left: 5px;
    background: url("../img/icon_arw_nav.png") 50% 50% no-repeat;
  }
  .Menu__menuItem.--open .Menu__categoryAnchor.--sub::after {
    rotate: 180deg;
  }
  .Menu__menuItem.--current .Menu__categoryAnchor.--sub::after {
    background: url("../img/icon_arw_nav_current.png") 50% 50% no-repeat;
  }
  body#Home .Menu__categoryAnchor.--sub::after {
    background: url("../img/icon_arw_nav02.png") 50% 50% no-repeat;
  }
}
@media screen and (max-width: 960px) {
  .Menu__categoryAnchor {
    padding: 15px;
    border-bottom: solid 1px #9A9DA4;
    position: relative;
  }
  .Menu__categoryAnchor.--sub {
    padding-right: 45px;
  }
  .Menu__categoryAnchor.--sub::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 15px;
    height: 11px;
    background: url("/common_2023/img/icon_arrow_right01.png") 50% 50% no-repeat;
    background-size: cover;
    position: absolute;
    right: 15px;
    top: 50%;
    translate: 0 -50%;
  }
}

.MenuPanel {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  overflow-y: auto;
  width: 100%;
  z-index: 1;
  color: #fff;
}
.MenuPanel::after {
  content: "";
}
.Menu__menuItem.--open .MenuPanel {
  display: block;
}
@media screen and (max-width: 960px) {
  .MenuPanel {
    position: absolute;
    top: 0;
    left: 100%;
    background: #373A4B;
  }
  .MenuPanel.--show {
    display: block;
  }
  .MenuPanel.--slide {
    position: relative;
    left: 100%;
  }
}
.MenuPanel a {
  color: #fff;
}

.MenuPanel__shadow {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 140px;
  background: transparent linear-gradient(0deg, rgba(25, 27, 37, 0.8) 0%, rgba(32, 35, 47, 0.6) 43%, rgba(106, 108, 116, 0) 100%) 0% 0% no-repeat padding-box;
  mix-blend-mode: multiply;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
@media screen and (max-width: 960px) {
  .MenuPanel__shadow {
    display: none;
  }
}
.MenuPanel.--scroll .MenuPanel__shadow {
  opacity: 1;
  visibility: visible;
}
.MenuPanel.--hover .MenuPanel__shadow {
  opacity: 0 !important;
  visibility: hidden !important;
}

.MenuPanel__inner {
  position: relative;
  padding: 40px;
}
.Menu__menuItem.is--show .MenuPanel__inner {
  animation: megaMenuFadeIn 0.2s ease-out;
}
@media screen and (max-width: 960px) {
  .MenuPanel__inner {
    padding: initial;
  }
}

.MenuPanel__category {
  font-size: 1.25rem;
  font-weight: bold;
}
@media screen and (max-width: 960px) {
  .MenuPanel__category {
    font-size: 1rem;
    padding: 20px 15px;
    border-bottom: solid 1px #9A9DA4;
  }
}
.MenuPanel__category a {
  color: #fff;
}
@media screen and (max-width: 960px) {
  .MenuPanel__category a {
    display: block;
    position: relative;
    padding: 15px;
    color: #171C8F;
    background: #f2f2f2;
    border: 1px solid #e0e0e0;
  }
}
.MenuPanel__category a::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 15px;
  height: 11px;
  background: url("/common_2023/img/icon_arrow_right01.png") 50% 50% no-repeat;
  background-size: cover;
  margin-left: 20px;
  translate: 0 -2px;
}
@media screen and (max-width: 960px) {
  .MenuPanel__category a::after {
    position: absolute;
    right: 15px;
    top: 50%;
    translate: 0 -50%;
    background: url("/common_2023/img/icon_list.gif") 50% 50% no-repeat;
    background-size: cover;
  }
}

.MenuPanel__panel,
.MenuPanel__panelLink {
  font-size: 0.88rem;
  color: #fff;
}
@media screen and (max-width: 960px) {
  .MenuPanel__panel,
  .MenuPanel__panelLink {
    padding-bottom: initial;
    border-bottom: solid 1px #9A9DA4;
  }
}

.MenuPanel__panel {
  display: none;
}
@media screen and (max-width: 960px) {
  .MenuPanel__panel {
    display: block;
    border-bottom: solid 1px #9A9DA4;
  }
}
.MenuPanel__panel button {
  color: inherit;
  border: none;
  background: transparent;
  border-radius: 0;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.MenuPanel__panel button::-webkit-search-decoration {
  display: none;
}
@media screen and (max-width: 960px) {
  .MenuPanel__panel button {
    font-size: 0.88rem;
    display: block;
    width: 100%;
    padding: 15px;
    padding-right: 45px;
    text-align: left;
  }
}
.MenuPanel__panel button::before, .MenuPanel__panel button::after {
  content: "";
  display: block;
  position: absolute;
  right: 21px;
  top: 50%;
  width: 18px !important;
  height: 2px !important;
  background: #fff;
  translate: 0 -1px;
  transition: rotate 0.2s ease-out;
}
.MenuPanel__panel button::after {
  rotate: 90deg;
}
.MenuPanel__panel button[aria-expanded=true]::after {
  rotate: 180deg;
}

@media screen and (max-width: 960px) {
  .MenuPanel__detail {
    display: none;
    overflow: hidden;
    background: #454859;
    border-bottom: solid 1px #9A9DA4;
  }
  .MenuPanel__detail.--show {
    display: block;
    height: 0;
  }
  .MenuPanel__detail.--slide {
    height: auto;
  }
}

.MenuPanel__grid {
  display: grid;
  gap: 40px 35px;
  margin-top: 40px;
}
.MenuPanel__grid.--grid-4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media screen and (max-width: 960px) {
  .MenuPanel__grid {
    gap: initial;
    margin-top: initial;
  }
  .MenuPanel__grid.--grid-4 {
    grid-template-columns: 1fr;
  }
}

.MenuPanel__links {
  list-style: none;
  padding-inline: 0;
  margin-block: 0;
  font-size: 0.88rem;
  margin-top: 17px;
}
@media screen and (max-width: 960px) {
  .MenuPanel__links {
    margin-top: 0;
  }
  .MenuPanel__detail .MenuPanel__links {
    margin-block: 8px;
  }
}
@media screen and (max-width: 960px) {
  .MenuPanel__links .MenuPanel__link a {
    display: block;
    padding: 7px 30px;
  }
}
.MenuPanel__links ul {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
  margin-top: 17px;
  padding-top: 20px;
  border-top: 1px solid #fff;
}
@media screen and (max-width: 960px) {
  .MenuPanel__links ul {
    gap: initial;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }
}
@media screen and (max-width: 960px) {
  .MenuPanel__detail .MenuPanel__links .MenuPanel__panelLink span {
    border-bottom: none;
    margin-top: -8px;
    font-size: 1rem;
    font-weight: bold;
  }
}
.MenuPanel__links .MenuPanel__panelLink a span::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 8px;
  background: url("/common_2023/img/icon_arw_01_white.png") 50% 50% no-repeat;
  margin-left: 9px;
}
@media screen and (max-width: 960px) {
  .MenuPanel__links .MenuPanel__panelLink a span {
    display: block;
    padding: 15px;
  }
  .MenuPanel__links .MenuPanel__panelLink a span::after {
    display: none;
  }
}
.MenuPanel__links .MenuPanel__panelLink:not(:has(ul)) {
  padding-bottom: 17px;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 960px) {
  .MenuPanel__links .MenuPanel__panelLink:not(:has(ul)) {
    padding-bottom: 0;
    border-bottom: 1px solid #9A9DA4;
  }
}
@media screen and (max-width: 960px) {
  .MenuPanel__links .MenuPanel__panelLink:has(ul) {
    border-bottom: none;
  }
}
.MenuPanel__links .MenuPanel__panelTitle span {
  display: block;
  padding-bottom: 17px;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 960px) {
  .MenuPanel__links .MenuPanel__panelTitle span {
    display: none;
  }
}
.MenuPanel__links .MenuPanel__panelTitle ul {
  margin-top: 0;
  border: none;
}

.MenuPanel__back {
  display: none;
}
@media screen and (max-width: 960px) {
  .MenuPanel__back {
    color: inherit;
    border: none;
    background: transparent;
    border-radius: 0;
    cursor: pointer;
    padding: 0;
    display: block;
    margin: 15px 15px 0;
    color: #fff;
  }
  .MenuPanel__back::-webkit-search-decoration {
    display: none;
  }
  .MenuPanel__back::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 6px;
    height: 8px;
    background: url("/common_2023/img/icon_arw_01_white.png") 50% 50% no-repeat;
    scale: -1 1;
    margin-right: 10px;
    translate: 0 -25%;
  }
}

.MenuPanel__close {
  position: absolute;
  top: 40px;
  right: 40px;
}
@media screen and (max-width: 960px) {
  .MenuPanel__close {
    display: none;
  }
}
.MenuPanel__close button {
  color: inherit;
  border: none;
  background: transparent;
  border-radius: 0;
  cursor: pointer;
  padding: 0;
}
.MenuPanel__close button::-webkit-search-decoration {
  display: none;
}

.MenuPanel__productLinks {
  font-size: 0.88rem;
  line-height: 1.5;
  margin-top: 100px;
}
@media screen and (max-width: 960px) {
  .MenuPanel__productLinks {
    margin-top: 0;
    padding: 20px 15px;
  }
}

.MenuPanel__productLinks > ul {
  list-style: none;
  padding-inline: 0;
  margin-block: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.MenuPanel__productLink > a {
  display: block;
  background: #36394B;
  padding: 14px;
}
@media screen and (max-width: 960px) {
  .MenuPanel__productLink > a {
    padding: initial;
    background: initial;
  }
}

.MenuPanel__productLink > a > span {
  color: #fff;
  background: #484C68;
  padding: 14px 50px 14px 14px;
  box-sizing: border-box;
  min-height: 60px;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 960px) {
  .MenuPanel__productLink > a > span {
    color: #171C8F;
    min-height: initial;
    background: #fff;
  }
}
.MenuPanel__productLink > a > span::after {
  content: "";
  display: block;
  width: 20px;
  height: 11px;
  background: url("/common_2023/img/icon_arw_white_02_02.png") 50% 50% no-repeat;
  position: absolute;
  top: 50%;
  right: 15px;
  translate: 0 -50%;
}
@media screen and (max-width: 960px) {
  .MenuPanel__productLink > a > span::after {
    background: url("/common_2023/img/icon_arw_blue_01_2.png") 50% 50% no-repeat;
  }
}

/** スキップリンク
--------------------------------
--------------------------------
*/
#SkipLink {
  position: absolute;
}
#SkipLink:focus {
  z-index: 1000;
  padding: 20px;
  background-color: #fff;
  color: #555;
  border: 1px solid #171C8F;
}
#SkipLink:not(:focus) {
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media print {
  body {
    width: 980px !important;
  }
  body .layout-wrap {
    min-width: initial !important;
  }
  .Header,
  .Header.--fixed {
    position: relative !important;
  }
  html.template-2023 .Header,
  html.template-2023 .Header.--fixed {
    padding-bottom: 25px !important;
  }
  .Header__inner {
    display: block;
  }
  .Header__logo {
    border: none;
    display: block;
  }
  .Header__logo img {
    width: 120px !important;
  }
  .Header__utility,
  .Header__other {
    display: none;
  }
  .Spacer,
  .Breadcrumb {
    display: none;
  }
  .Footer__section.--gray,
  .Footer__toTop,
  .Footer__utilityLink {
    display: none;
  }
  .Footer__section {
    background: transparent !important;
    padding-inline: 0 !important;
  }
  .Footer__sectionInner {
    justify-content: flex-end !important;
  }
  .Footer__copyright {
    color: #000 !important;
  }
}