@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");
html {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  scroll-padding-top: 64px;
  scroll-behavior: smooth;
}

body {
  color: #222426;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

li {
  list-style: none;
}

a {
  display: inline-block;
  text-decoration: none;
}

img {
  width: 100%;
}

@media screen and (width >= 768px) {
  .pcInline {
    display: inline;
  }
  .pcBlock {
    display: block;
  }
  .pcFlex {
    display: flex;
  }
}
@media screen and (width < 768px) {
  .pcInline, .pcBlock, .pcFlex {
    display: none;
  }
}

@media screen and (width >= 768px) {
  .spInline, .spBlock, .spFlex {
    display: none;
  }
}
@media screen and (width < 768px) {
  .spInline {
    display: inline;
  }
  .spBlock {
    display: block;
  }
  .spFlex {
    display: flex;
  }
}

.el_menuBtn {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 7px;
  aspect-ratio: 1/1;
  width: 64px;
  padding: 5px 0 0;
  background: none;
  border: none;
}
.el_menuBtn_border {
  display: block;
  position: relative;
  width: 30px;
  height: 20px;
}
.el_menuBtn_border::before, .el_menuBtn_border::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  width: inherit;
  height: 2px;
  background: #222426;
  translate: -50% 0;
}
.el_menuBtn_border::before {
  top: 0;
  transition: top 0.3s, translate 0.3s, rotate 0.3s;
}
.el_menuBtn_border::after {
  bottom: 0;
  transition: bottom 0.3s, translate 0.3s, rotate 0.3s;
}
.el_menuBtn_border_text {
  overflow: hidden;
  display: block;
  position: absolute;
  top: 50%;
  width: 100%;
  height: 2px;
  text-indent: 100%;
  white-space: nowrap;
  background: #222426;
  translate: 0 -50%;
  transition: background 0.3s;
}
.el_menuBtn.is_open .el_menuBtn_border::before {
  top: 50%;
  translate: -50% calc(100% - 1px);
  rotate: 45deg;
}
.el_menuBtn.is_open .el_menuBtn_border::after {
  bottom: 50%;
  translate: -50% calc(100% + 1px);
  rotate: -45deg;
}
.el_menuBtn.is_open .el_menuBtn_border .el_menuBtn_border_text {
  background: transparent;
}
.el_menuBtn_text {
  font-size: 8px;
  line-height: 1.3;
}
.el_pageTitle {
  width: 100%;
}
.el_articleTitle {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 50px;
  text-align: center;
  line-height: 1.1;
  padding-bottom: 16px;
  border-bottom: solid 1px #222426;
}
.el_articleTitle_sub {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: #222426;
  margin-top: 5px;
}
.el_note {
  display: flex;
  -moz-column-gap: 2px;
  column-gap: 2px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3;
}
.el_note::before {
  content: "※";
  display: inline;
}

.bl_header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
}
.bl_header_inner {
  display: flex;
  justify-content: space-between;
  height: 64px;
  background: #fff;
}
.bl_header_logo {
  width: 190px;
  margin-left: 4px;
}
.bl_header_rightItems {
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
  column-gap: 8px;
}
.bl_header_contact {
  color: var(--black);
  font-size: 12px;
  padding: 4px;
  border: solid 1px var(--black);
  border-radius: 2px;
}
.bl_languages {
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 14px;
}
.bl_languages_selected {
  display: flex;
  align-items: center;
  -moz-column-gap: 4px;
  column-gap: 4px;
  background: none;
}
.bl_languages_selected::before, .bl_languages_selected::after {
  content: "";
  display: block;
  aspect-ratio: 1/1;
}
.bl_languages_selected::before {
  width: 24px;
  background: url(../img/ico_language.svg) no-repeat center center/19px 19px;
}
.bl_languages_selected::after {
  width: 8px;
  background: #000000;
  clip-path: polygon(0 0, 100% 0, 50% 6px);
  translate: 0 3px;
}
.bl_languages_listWrap {
  display: grid;
  grid-template-rows: 0fr;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100%;
  margin-top: 4px;
  transition: grid-template-rows 0.3s;
}
.bl_languages_listWrap.is_open {
  grid-template-rows: 1fr;
}
.bl_languages_list {
  .bl_languages_list_container {
    padding-inline: 4px;
    background: #ffffff;
    border: solid 1px #000000;
    border-radius: 8px;
  }
  & {
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  li {
    &:not(:last-child) {
      border-bottom: solid 1px #000000;
    }
    a {
      display: block;
      color: var(--black);
      text-align: right;
      padding: 4px 8px;
    }
  }

}
.bl_globalNav {
  overflow: hidden;
  position: absolute;
  inset: 100% 0 0;
  left: 100%;
  height: calc(100vh - 64px);
  background: #fff;
  transition: left 0.3s;
}
.bl_globalNav.is_open {
  left: 0;
}
.bl_globalNav_list li {
  border-bottom: solid 1px var(--gray);
}
.bl_globalNav_list li a {
  display: block;
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  padding: 16px 24px;
}
.bl_noteList {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.bl_footer {
  position: relative;
  padding-top: 58.1333333333%;
}
.bl_footer_toTop {
  position: absolute;
  top: max(-6.9333333333vw, -26px);
  right: 16px;
  width: 56px;
}
.bl_footer_toTop a {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
.bl_footer_copyright {
  color: #FFFFFF;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3;
  padding: 16px 24px;
  background: #0068B7;
}
.bl_footer_copyrightD {
  color: #FFFFFF;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3;
  padding: 16px 24px;
  background: #f0863f;
}

.ly_wrap {
  max-width: 430px;
  background: white;
  margin-inline: auto;
  box-shadow: 0 0 30px 20px rgba(0, 0, 0, 0.2);
}
.ly_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 64px);
}
.ly_inner {
  padding-inline: 16px;
}

[lang="en"] {
  .bl_header_logo {
    width: 201px;
  }
}