@import url(https://use.fontawesome.com/releases/v5.15.4/css/all.css);
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap");
:root {
  --ff_main: "Noto Sans JP", serif;
  --c_light: #fff;
  --c_dark: #000;
  --c_txt: #1d1d1d;
  --c_gy: #d9d9d9;
  --c_rd: #de4024;
  --fz_xs: 12px;
  --fz_sm: 14px;
  --fz_md: 16px;
  --fz_lg: 18px;
  --fz_xl: 20px;
  --lh_xs: 1.25;
  --lh_sm: 1.5;
  --lh_md: 1.75;
  --lh_lg: 2;
  --fw_r: 400;
  --fw_b: 900;
}
@media screen and (max-width: 1024px) {
  :root {
    --fz_xs: 10px;
    --fz_sm: 12px;
    --fz_md: 14px;
    --fz_lg: 16px;
    --fz_xl: 18px;
    --lh_xs: 1.2;
    --lh_sm: 1.4;
    --lh_md: 1.6;
    --lh_lg: 1.8;
  }
}

*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

img {
  max-width: 100%;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 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-top-width: 1px;
  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] {
  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;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

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;
}

[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.tb {
  display: none;
}
@media screen and (max-width: 768px) {
  .tb {
    display: block;
  }
}

.pt {
  display: block;
}
@media screen and (max-width: 600px) {
  .pt {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .sp {
    display: block;
  }
}

.ov {
  transition: opacity 0.3s;
}
@media (hover) {
  .ov:hover {
    opacity: 0.7;
  }
}

.s_pc {
  display: block;
}

@media screen and (max-width: 1024px) {
  .s_pc {
    display: none;
  }
}
.l_sp {
  display: none;
}

@media screen and (max-width: 1024px) {
  .l_sp {
    display: block;
  }
}
html {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100%;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  font-family: var(--ff_main);
  color: var(--c_txt);
  font-weight: 400;
  scroll-padding-top: 90px;
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 70px;
  }
}

body.is_spOverflow {
  overflow: hidden;
  height: 100%;
}

h2.line {
  text-align: center;
}
h2.line > span {
  display: flex;
  flex-direction: column;
  position: relative;
  font-size: 36px;
  letter-spacing: 0.04em;
  line-height: 1.4;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  h2.line > span {
    font-size: clamp(1.5rem, 1.211rem + 1.23vw, 2rem);
  }
}
h2.line > span:after {
  content: "";
  display: block;
  width: 52px;
  height: 9px;
  position: absolute;
  left: 50%;
  bottom: -25px;
  transform: translate(-50%, 0);
  background: linear-gradient(to right, #1d1d1d 33%, #8fd3d6 33% 64%, #1d1d1d 64%);
}
@media screen and (max-width: 1024px) {
  h2.line > span:after {
    height: 7px;
    width: 48px;
    bottom: -20px;
  }
}
h2.line > span span {
  font-size: 22px;
}
@media screen and (max-width: 1024px) {
  h2.line > span span {
    font-size: clamp(0.875rem, 0.731rem + 0.62vw, 1.125rem);
  }
}

.btn_rd {
  position: relative;
  width: 100%;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #cbab00;
  border: 1px solid #cbab00;
  border-radius: 5px;
  font-size: var(--fz_lg);
  font-weight: bold;
  color: #fff;
  transition: all 0.3s;
}
@media (hover) {
  .btn_rd:hover {
    background: #fff;
    color: #cbab00;
  }
  .btn_rd:hover:after {
    background: #cbab00;
  }
}
.btn_rd:after {
  position: absolute;
  top: 50%;
  right: 13px;
  transform: translate(0, -50%);
  content: "";
  background: #fff;
  width: 8px;
  aspect-ratio: 4/5;
  clip-path: polygon(0px 21%, 21% 0px, 100% 50%, 21% 100%, 0px 79%, 50% 50%, 0px 21%);
  transition: all 0.3s;
}

.btn_dl {
  padding-right: 30px;
  position: relative;
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #cbab00;
  border: 1px solid #cbab00;
  border-radius: 10px;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .btn_dl {
    height: 70px;
  }
}
@media (hover) {
  .btn_dl:hover {
    background: #fff;
  }
  .btn_dl:hover span {
    color: #cbab00;
  }
  .btn_dl:hover svg .cls-1 {
    stroke: #cbab00;
  }
}
.btn_dl span {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.04em;
  font-weight: 500;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .btn_dl span {
    font-size: clamp(1.125rem, 0.981rem + 0.62vw, 1.375rem);
  }
}
.btn_dl span img {
  margin-right: 10px;
  width: 28px;
}
@media screen and (max-width: 1024px) {
  .btn_dl span img {
    width: 25px;
  }
}
@media screen and (max-width: 600px) {
  .btn_dl span img {
    width: 20px;
  }
}
.btn_dl svg {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translate(0, -50%);
}
@media screen and (max-width: 1024px) {
  .btn_dl svg {
    width: 20px;
  }
}
@media screen and (max-width: 600px) {
  .btn_dl svg {
    width: 17px;
    right: 5%;
  }
}
.btn_dl svg .cls-1 {
  fill: none;
  stroke: #fff;
  stroke-width: 3px;
  fill-rule: evenodd;
  transition: all 0.3s;
}

@media screen and (max-width: 1024px) {
  main {
    margin-top: 60px;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  height: 100px;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(70%, rgba(255, 255, 255, 0.7)), color-stop(80%, rgba(255, 255, 255, 0.3)), to(rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(top, #ffffff 0% 60%, rgba(255, 255, 255, 0.7) 70%, rgba(255, 255, 255, 0.3) 80%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to bottom, #ffffff 0% 60%, rgba(255, 255, 255, 0.7) 70%, rgba(255, 255, 255, 0.3) 80%, rgba(255, 255, 255, 0) 100%);
}
header > .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 30px;
}
header > .inner .logo {
  width: 165px;
  -ms-flex-item-align: center;
  align-self: center;
}
header > .inner a.btn_en {
  position: absolute;
  top: 0;
  right: 30px;
  width: 100px;
  margin-left: 15px;
  padding: 7px 0 9px;
  border-radius: 0 0 30px 30px;
  background: #e0e0e0;
  font-weight: bold;
  font-size: var(--fz_sm);
  text-align: center;
}
header > .inner .icon-animation {
  display: none;
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 30;
  width: 60px;
  height: 100%;
  cursor: pointer;
}
header > .inner .icon-animation.is-open .top {
  top: 50%;
  width: 0;
  opacity: 0;
}
header > .inner .icon-animation.is-open .bottom {
  top: 50%;
  width: 0;
  opacity: 0;
}
header > .inner .icon-animation.is-open .middle:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
header > .inner .icon-animation.is-open .middle:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
header > .inner .icon-animation span {
  display: block;
  position: absolute;
  top: 50%;
  right: 25%;
  width: 50%;
  height: 2px;
  background: #141414;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
header > .inner .icon-animation .top {
  top: calc(50% - 12px);
  width: calc(50% + 5px);
  -webkit-transform: translate(0, -50%) scale(1);
  transform: translate(0, -50%) scale(1);
}
header > .inner .icon-animation .bottom {
  top: calc(50% + 12px);
  width: calc(50% - 5px);
  -webkit-transform: translate(0, -50%) scale(1);
  transform: translate(0, -50%) scale(1);
}
header > .inner .icon-animation .middle {
  background: none;
}
header > .inner .icon-animation .middle:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #141414;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
header > .inner .icon-animation .middle:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #141414;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
header > .inner .icon-animation:after {
  content: "MENU";
  display: none;
  position: absolute;
  bottom: 8px;
  left: 50%;
  color: #ffffff;
  font-size: 13px;
  white-space: nowrap;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
header > .inner .head_links {
  height: 100%;
}
header > .inner .head_links .links_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
header > .inner .head_links .links1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-right: 110px;
  padding-right: 103px;
}
header > .inner .head_links .links1 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 15px;
}
header > .inner .head_links .links1 ul li {
  font-size: 0;
}
header > .inner .head_links .links1 ul li:not(:last-child) {
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid #c6c6c6;
}
header > .inner .head_links .links1 ul li a {
  display: inline-block;
  position: relative;
  line-height: 1;
  font-weight: 500;
  font-size: var(--fz_xs);
  letter-spacing: 0.04em;
}
header > .inner .head_links .links1 ul li a:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: -10px;
  width: 0;
  height: 1px;
  background: #000000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
header > .inner .head_links .links1 ul li.btn_wrap {
  border: none;
  margin-right: 4px;
  padding-right: 0;
}
header > .inner .head_links .links1 ul li.btn_wrap a {
  background: #797979;
  border-radius: 5px;
  height: 30px;
  padding: 6px 19px 0;
  display: block;
  color: #fff;
  font-size: 14px;
  box-shadow: 0px 4px 6.93px 0.07px rgba(0, 0, 0, 0.15);
}
header > .inner .head_links .links1 ul li.btn_wrap a::before {
  content: "";
  display: inline-block;
  vertical-align: sub;
  width: 20px;
  height: 17px;
  background: url(../media/images/2027/common/icon_site.svg) center/100% no-repeat;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-right: 5px;
}
header > .inner .head_links .links1 ul li.btn_wrap a.site::before {
  background: url(../media/images/2027/common/icon_site.svg) center/100% no-repeat;
  position: relative;
  top: 1px;
}
header > .inner .head_links .links1 ul li.btn_wrap a.mypage {
  background: #ca3f1f;
  padding: 6px 15px 0;
}
header > .inner .head_links .links1 ul li.btn_wrap a.mypage::before {
  background: url(../media/images/2027/common/icon_mypage.svg) center/100% no-repeat;
  width: 15px;
  height: 18px;
}
header > .inner .head_links .links1 ul li.btn_wrap a.exhibit {
  background: #2f47a2;
  padding: 6px 12px 0;
}
header > .inner .head_links .links1 ul li.btn_wrap a.exhibit::before {
  background: url(../media/images/2027/common/icon_exhibit.svg) center/100% no-repeat;
  width: 15px;
  height: 18px;
}
header > .inner .head_links .links1 ul.sns_links {
  margin-left: 12px;
  margin-top: 5px;
}
header > .inner .head_links .links1 ul.sns_links li:not(last-child) {
  border-right: none;
  margin-right: 0;
}
header > .inner .head_links .links1 .sns_head {
  display: none;
}
header > .inner .head_links .links1 p.policy {
  display: none;
}
header > .inner .head_links .links1 p.policy a {
  font-size: 14px;
}
header > .inner .head_links .links1 p.policy a img {
  margin-left: 5px;
}
header > .inner .head_links.head_links_btn-wrap .links1 ul {
  margin-top: 4px;
  margin-right: 4px;
}
header > .inner .head_links.head_links_btn-wrap .links1 ul li:nth-child(3) {
  border-right: none;
}
header > .inner .head_links .links2 nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  justify-content: flex-end;
}
header > .inner .head_links .links2 nav > ul > li.pulldown {
  position: relative;
}
header > .inner .head_links .links2 nav > ul > li.pulldown > a {
  padding-right: 20px;
}
header > .inner .head_links .links2 nav > ul > li.pulldown > a:before {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  right: 0;
  width: 13px;
  background: url(../media/images/2027/common/arrow_b_bk.svg) center/100% no-repeat;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  aspect-ratio: 13/9;
}
header > .inner .head_links .links2 nav > ul > li.pulldown > .pd_nav {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  padding: 20px 0;
  border-radius: 0 0 5px 5px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
header > .inner .head_links .links2 nav > ul > li.pulldown > .pd_nav ul:last-child {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 5px solid #e2e2e2;
}
header > .inner .head_links .links2 nav > ul > li.pulldown > .pd_nav ul li {
  padding: 0 45px;
}
header > .inner .head_links .links2 nav > ul > li.pulldown > .pd_nav ul li:not(:last-child) {
  margin-bottom: 15px;
}
header > .inner .head_links .links2 nav > ul > li.pulldown > .pd_nav ul li a {
  font-size: var(--fz_md);
  white-space: nowrap;
}
header > .inner .head_links .links2 nav > ul > li.pulldown.act > a:before {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
header > .inner .head_links .links2 nav > ul > li > a {
  display: inline-block;
  position: relative;
  padding-bottom: 20px;
  font-weight: bold;
  font-size: var(--fz_md);
  letter-spacing: 0.04em;
}
header > .inner .head_links .links2 nav > ul > li > a:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #000000;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}
@media screen and (max-width: 1024px) {
  header {
    height: 60px;
    background: #ffffff;
  }
  header > .inner {
    padding: 0 5%;
  }
  header > .inner a.btn_en {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 50%;
    right: 70px;
    width: auto;
    height: 70%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    padding: 0;
    border-radius: 100px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    aspect-ratio: 1/1;
  }
  header > .inner .icon-animation {
    display: block;
  }
  header > .inner .head_links {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100dvh - 60px);
    overflow: auto;
    padding: 25px 5%;
    color: #ffffff;
    background: #1d1d1d;
  }
  header > .inner .head_links .links_wrap {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  header > .inner .head_links .links1 {
    display: block;
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    padding: 0;
  }
  header > .inner .head_links .links1 ul {
    display: block;
    margin: 0;
  }
  header > .inner .head_links .links1 ul li {
    border-bottom: 1px solid #616161;
  }
  header > .inner .head_links .links1 ul li:not(:last-child) {
    margin: 0;
    padding: 0;
    border-right: none;
    width: 100%;
  }
  header > .inner .head_links .links1 ul li a {
    width: 100%;
    padding: 25px 0 !important;
    font-size: 18px;
  }
  header > .inner .head_links .links1 ul li.btn_wrap.first {
    margin: 26px auto 0;
  }
  header > .inner .head_links .links1 ul li.btn_wrap.first a {
    width: 74%;
    margin: auto;
    text-align: center;
    padding: 17px 0 !important;
    height: 50px;
    font-size: 15px;
  }
  header > .inner .head_links .links1 ul li.btn_wrap:not(.first) {
    width: calc(50% - 10px);
    margin: 11px auto;
    text-align: center;
  }
  header > .inner .head_links .links1 ul li.btn_wrap:not(.first) a {
    padding: 12px 0 0 !important;
    height: 60px;
  }
  header > .inner .head_links .links1 ul li.btn_wrap:not(.first) a::before {
    display: block;
    margin: 0 auto 6px;
  }
  header > .inner .head_links .links1 ul.sns_links img {
    max-width: none;
    height: auto;
    width: 35px;
  }
  header > .inner .head_links .links1 ul.sns_links li {
    width: auto;
    border: none;
  }
  header > .inner .head_links .links1 ul.sns_links li:not(last-child) {
    width: auto;
    border: none;
  }
  header > .inner .head_links .links1 ul.sns_links li a {
    padding: 0 !important;
  }
  header > .inner .head_links .links1 .sns_head {
    display: block;
    font-size: 13px;
    text-align: center;
    margin-top: 17px;
  }
  header > .inner .head_links .links1 p.policy {
    display: block;
    margin-top: 20px;
  }
  header > .inner .head_links.head_links_btn-wrap {
    padding: 5px 10%;
  }
  header > .inner .head_links.head_links_btn-wrap .links2 nav > ul > li > a {
    padding: 23px 0 !important;
  }
  header > .inner .head_links.head_links_btn-wrap .links_wrap .links1 ul {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  header > .inner .head_links.head_links_btn-wrap .links_wrap .links1 .sns_links {
    justify-content: center;
    gap: 20px;
    gap: 22px;
    margin-top: 12px;
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 40px;
  }
  header > .inner .head_links .links2 {
    width: 100%;
  }
  header > .inner .head_links .links2 nav > ul {
    display: block;
    justify-content: flex-start;
  }
  header > .inner .head_links .links2 nav > ul > li {
    border-bottom: 1px solid #616161;
  }
  header > .inner .head_links .links2 nav > ul > li.pulldown > a:before {
    top: 30px;
    background-image: url(../media/images/2027/common/arrow_b_w.svg);
  }
  header > .inner .head_links .links2 nav > ul > li.pulldown > .pd_nav {
    position: static;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #343434;
    text-align: center;
  }
  header > .inner .head_links .links2 nav > ul > li.pulldown > .pd_nav ul:last-child {
    border-color: #494949;
  }
  header > .inner .head_links .links2 nav > ul > li > a {
    width: 100%;
    padding: 25px 0 !important;
    font-size: 18px;
  }
  header > .inner .head_links .links2 nav > ul > li > a:after {
    display: none;
  }
}
@media screen and (max-width: 1250px) and (min-width: 1025px) {
  header > .inner {
    padding-right: 10px;
  }
  header > .inner .logo {
    width: 120px;
  }
  header > .inner .head_links .links1 {
    padding-right: 75px;
  }
  header > .inner .head_links .links1 ul li:not(:last-child) {
    padding-right: 4px;
    margin-right: 0;
    padding-right: 5px;
    margin-right: 5px;
  }
  header > .inner .head_links .links1 ul li.btn_wrap a {
    font-size: 12px;
    padding-right: 5px;
    padding-left: 5px;
    padding-top: 7px;
  }
  header > .inner .head_links .links1 ul li.btn_wrap a::before {
    width: 16px;
    height: 13px;
  }
  header > .inner .head_links .links1 ul li.btn_wrap a.mypage {
    padding-right: 5px;
    padding-left: 5px;
    padding-top: 7px;
  }
  header > .inner .head_links .links1 ul li.btn_wrap a.mypage::before {
    width: 13px;
    height: 16px;
  }
  header > .inner .head_links .links1 ul li.btn_wrap a.exhibit {
    padding-right: 5px;
    padding-left: 5px;
    padding-top: 7px;
  }
  header > .inner .head_links .links1 ul li.btn_wrap a.exhibit::before {
    width: 13px;
    height: 16px;
  }
  header > .inner .head_links .links1 ul.sns_links {
    margin-left: 0;
    margin-top: 8px;
  }
  header > .inner .head_links .links1 ul.sns_links img {
    max-width: 22px;
    height: auto;
  }
  header > .inner a.btn_en {
    right: 10px;
    width: 70px;
  }
}
@media screen and (max-width: 600px) {
  header > .inner .logo {
    width: 120px;
  }
}
@media (hover) {
  header > .inner .head_links .links1 ul li:not(.btn_wrap) a:hover:after {
    right: auto;
    left: 0;
    width: 100%;
  }
  header > .inner .head_links .links1 ul.sns_links li a:hover:after {
    right: 0;
    left: auto;
    width: 0;
    opacity: 0.6;
  }
  header > .inner .head_links .links1 ul.sns_links li a:hover {
    opacity: 0.6;
  }
  header > .inner .head_links .links2 nav > ul > li:hover a:after {
    left: 0;
    width: 100%;
  }
}

.pagetop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .pagetop {
    display: block;
    width: 50px;
    bottom: 0;
    right: 0;
    padding: 5px;
  }
  .pagetop img {
    width: 100%;
  }
}
.pagetop.active {
  visibility: visible;
  opacity: 1;
}
.pagetop.abs {
  position: absolute;
  top: -80px;
  bottom: auto;
}
@media screen and (max-width: 1024px) {
  .pagetop.abs {
    top: -60px;
  }
}
.pagetop a {
  display: block;
}
.pagetop a img {
  pointer-events: none;
}

footer {
  position: relative;
  width: 100%;
  background: #1d1d1d;
  padding: 70px 5%;
  color: #fff;
}
@media screen and (max-width: 600px) {
  footer {
    padding: 35px 7%;
  }
}
footer > .inner {
  width: 100%;
  max-width: 1185px;
  margin: 0 auto;
}
footer > .inner ul.ft_nav {
  margin-bottom: 45px;
  display: flex;
  gap: 0 85px;
}
@media screen and (max-width: 600px) {
  footer > .inner ul.ft_nav {
    flex-direction: column;
    gap: 20px 0;
  }
}
footer > .inner ul.ft_nav li a {
  position: relative;
  display: inline-block;
  font-size: var(--fz_md);
  font-weight: bold;
}
@media (hover) {
  footer > .inner ul.ft_nav li a:hover:after {
    left: 0;
    right: auto;
    width: 100%;
  }
}
footer > .inner ul.ft_nav li a:after {
  content: "";
  width: 0;
  height: 2px;
  display: block;
  position: absolute;
  right: 0;
  bottom: -10px;
  background: #fff;
  transition: all 0.3s;
}
footer > .inner .ft_info {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  row-gap: 30px;
}
@media screen and (max-width: 600px) {
  footer > .inner .ft_info {
    width: 100%;
    row-gap: 20px;
    flex-direction: column;
    justify-content: normal;
    align-items: flex-start;
  }
}
@media screen and (max-width: 1024px) {
  footer > .inner .ft_info .ft_left .sns {
    margin-bottom: 25px;
  }
}
footer > .inner .ft_info .ft_left .sns p {
  font-size: 14px;
  text-align: center;
}
footer > .inner .ft_info .ft_left .sns .links {
  display: flex;
  gap: 25px;
  padding-top: 12px;
}
footer > .inner .ft_info .ft_left .sns .links li a :hover {
  opacity: 0.6;
}
footer > .inner .ft_info .ft_left .sns .links li a img {
  width: 50px;
}
footer > .inner .ft_info .ft_right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
  padding-left: 50px;
}
@media screen and (max-width: 600px) {
  footer > .inner .ft_info .ft_right {
    align-items: normal;
    padding-left: 0;
  }
}
footer > .inner .ft_info .ft_right .logos {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 30px;
}
@media screen and (max-width: 600px) {
  footer > .inner .ft_info .ft_right .logos {
    flex-direction: row;
    gap: 0;
  }
}
@media screen and (max-width: 600px) {
  footer > .inner .ft_info .ft_right .logos a {
    width: 50%;
  }
}
footer > .inner .ft_info .ft_right .logos a:first-child img {
  width: 140px;
  filter: invert(100%);
}
@media screen and (max-width: 600px) {
  footer > .inner .ft_info .ft_right .logos a:first-child img {
    width: 120px;
  }
}
footer > .inner .ft_info .ft_right .logos a:last-child img {
  width: 220px;
}
@media screen and (max-width: 600px) {
  footer > .inner .ft_info .ft_right .logos a:last-child img {
    width: 100%;
  }
}
footer > .inner .ft_info .ft_right .privacy a {
  font-size: var(--fz_sm);
  font-weight: bold;
}
footer > .inner .ft_info .ft_right .privacy a img {
  margin-left: 7px;
}
@media screen and (max-width: 600px) {
  footer > .inner .ft_info .ft_right p.copy {
    text-align: left;
    width: 100%;
  }
}
footer > .inner .ft_info .ft_right p.copy small {
  font-size: 11px;
}
@media screen and (max-width: 600px) {
  footer > .inner .ft_info .ft_right p.copy small {
    font-size: 10px;
  }
}

section.kv_sub {
  width: 100%;
  height: 260px;
  background: url(../media/images/2027/common/kv_sub.jpg) center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  section.kv_sub {
    height: 170px;
    padding: 0;
    align-items: center;
  }
}
@media screen and (max-width: 600px) {
  section.kv_sub {
    height: 110px;
  }
}
section.kv_sub.brs {
  border-radius: 0 0 80px 80px;
}
@media screen and (max-width: 1024px) {
  section.kv_sub.brs {
    border-radius: 0 0 60px 60px;
  }
}
section.kv_sub h1 {
  font-size: 42px;
  font-weight: bold;
  letter-spacing: 0.14em;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  section.kv_sub h1 {
    font-size: clamp(1.313rem, 0.699rem + 2.62vw, 2.375rem);
  }
}
section.kv_sub .breadcrumbs {
  position: absolute;
  bottom: 0;
  left: 70px;
  padding: 10px 40px;
  border-radius: 30px 30px 0 0;
  background: #fff;
}
@media screen and (max-width: 600px) {
  section.kv_sub .breadcrumbs {
    display: none;
    left: 40px;
    padding: 5px 15px;
    border-radius: 20px 20px 0 0;
  }
}
section.kv_sub .breadcrumbs ul {
  display: flex;
}
section.kv_sub .breadcrumbs ul li {
  font-size: var(--fz_sm);
}
section.kv_sub .breadcrumbs ul li:not(:last-child):after {
  margin: 0 5px;
  content: ">";
}
section.kv_sub .breadcrumbs ul li a {
  font-weight: 500;
  color: #938e00;
}
section.kv_sub .breadcrumbs ul li strong {
  font-weight: 500;
}

section.kv_anc {
  width: 100%;
  padding: 30px 5%;
  background: #1d1d1d;
  border-radius: 0 0 80px 80px;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  section.kv_anc {
    padding: 25px 5%;
  }
}
@media screen and (max-width: 600px) {
  section.kv_anc {
    border-radius: 0 0 45px 45px;
  }
}
section.kv_anc + * {
  margin-top: -70px;
}
@media screen and (max-width: 1024px) {
  section.kv_anc + * {
    margin-top: -60px;
  }
}
section.kv_anc ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
@media screen and (max-width: 1024px) {
  section.kv_anc ul {
    gap: 25px;
  }
}
@media screen and (max-width: 600px) {
  section.kv_anc ul {
    gap: 15px;
  }
}
section.kv_anc ul li a {
  position: relative;
  font-size: var(--fz_lg);
  line-height: 1;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 600px) {
  section.kv_anc ul li a {
    font-size: 14px;
  }
}
@media (hover) {
  section.kv_anc ul li a:hover:after {
    width: 100%;
    right: auto;
    left: 0;
  }
}
section.kv_anc ul li a:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}