@charset "UTF-8";
:root {
  --color_bg: #fff;
  --color_text: #151410;
  --color_link: #151410;
  --color_border: #DBDBDB;
  --color_primary: #723489;
  --color_secondary: #F5F5F5;
  --color_black: #151410;
  --gra01: linear-gradient(90deg, #714BB5 0%, #A17CDC 100%);
  --font_base: Microsoft YaHei;
  --font_jp: Microsoft YaHei;
  --font_jp_b: Microsoft YaHei;
  --font_en: Candara, Candara;
  --easing: cubic-bezier(0.44, 0.14, 0.09, 1.02);
  --easing_hero: cubic-bezier(0.67, 0.22, 0.24, 0.9);
  --transition: 0.3s cubic-bezier(0.44, 0.14, 0.09, 1.02);
}
/*-----------------------------------------------------------
Animation
-----------------------------------------------------------*/
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
/*-----------------------------------------------------------
Reset
-----------------------------------------------------------*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
  min-block-size: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  font-size: clamp(14px, 0.92vw, 16px);
}
a {
  color: inherit;
  text-decoration: none;
}
:where(button) {
  all: unset;
  box-sizing: border-box;
}
:where(a, input, button, textarea, select) {
  touch-action: manipulation;
}
:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}
textarea {
  resize: block;
}
:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}
:where(:focus-visible) {
  outline: 2px solid #2e2c29;
  outline-offset: 2px;
}
:where(:disabled) {
  cursor: not-allowed;
}
:where(ul, ol, li) {
  list-style: none;
}
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}
:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}
:where(:em, dfn) {
  font-style: inherit;
}
sup {
  vertical-align: text-top;
  font-size: 0.65em;
  line-height: 1;
}
sub {
  vertical-align: text-bottom;
  font-size: 0.65em;
  line-height: 1;
}
hr {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
::selection {
  background: #d4dcd6;
}
fieldset {
  all: unset;
}
/*-----------------------------------------------------------
Bace
-----------------------------------------------------------*/
body {
  display: flex;
  flex-direction: column;
  font-family: var(--font_base);
}
[lang=en] {
  font-family: var(--font_en);
  font-weight: 500;
}
th,
dt {
  font-family: var(--font_jp);
}
.link {
  word-break: break-all;
  position: relative;
}
.link::before {
  content: "";
  display: inline-block;
  background: #723489;
  width: 8px;
  height: 8px;
  mask: none;
}
.gnavi-btn.link::before {
  mask: none;
  background: #723489;
}
.link:is(:hover, :focus) {
  text-decoration: none;
}
.no-link {
  pointer-events: none;
}
a[href^=tel] {
  cursor: default;
}
:target {
  scroll-margin-top: 100px;
}
@media (max-width: 800px) {
  :target {
    scroll-margin-top: 0;
  }
}
main {
  position: relative;
  z-index: 10;
}
.container {
  margin: 0 auto;
  max-width: 1660px;
  width: calc(100% - 13.54%);
}
.container-sm {
  margin: 0 auto;
  max-width: 1460px;
  width: 76%;
}
.container.wide {
  max-width: 1800px;
}
.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  font-size: 17px;
  width: fit-content;
  padding-right: 23px;
}
.btn-more.outline .arrow {
  background: none;
  border: 1px solid #723489;
}
.btn-more.outline .arrow::before {
  background: #723489;
}
.btn-more .arrow {
  border-radius: 50%;
  width: 55px;
  height: 55px;
  overflow: hidden;
  position: relative;
  z-index: 0;
  transition: 0.3s;
  background: linear-gradient(320deg, #723489 0%, #C63BF9 100%);
}
.btn-more .arrow::before {
  content: "";
  background-color: #fff;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: background-color 0.3s ease-in;
}
.btn-more .text {
  display: block;
  overflow: hidden;
  position: relative;
  line-height: 1;
}
.btn-more .text .f,
.btn-more .text .b {
  color: currentColor;
  display: block;
}
.btn-more .text .f {
  transform: translateY(0);
  transition: transform var(--transition);
}
.btn-more .text .b {
  position: absolute;
  top: 0;
  left: 0;
  transition: color var(--transition), transform var(--transition), opacity var(--transition);
  transform: translateY(30px);
  opacity: 0;
}
@media (any-hover: hover) {
  .btn-more:hover .f {
    transform: translateY(-30px);
  }
  .btn-more:hover .b {
    opacity: 1;
    transform: translateY(0px);
  }
  .btn-more:hover .arrow::after {
    opacity: 1;
  }
}
/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
  margin-top: auto;
  position: relative;
  z-index: 10;
  background: url(../img/common/footer.png) no-repeat center / cover;
}
.f-main {
  position: relative;
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-top: 130px;
  padding-bottom: 22px;
}
.f-main .container {
  z-index: 2;
}
.f-main-grid {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
  padding: 43px 0 27vh;
  flex: 1;
}
.f-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px 70px;
  width: max-content;
}
.f-nav-ttl {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-align: center;
}
.f-main .f-links {
  display: grid;
  gap: 14px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.f-main .f-links li {
  text-align: center;
}
.f-main .f-links a {
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.25s ease, opacity 0.25s ease;
}
@media (any-hover: hover) {
  .f-main .f-links a:hover {
    color: #fff;
    opacity: 1;
  }
}
.f-main .f-links .text {
  display: inline-block;
  overflow: hidden;
  position: relative;
  line-height: 1;
}
.f-main .f-links .text .f,
.f-main .f-links .text .b {
  color: currentColor;
  display: block;
}
.f-main .f-links .text .f {
  transform: translateY(0);
  transition: transform var(--transition);
}
.f-main .f-links .text .b {
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity var(--transition), transform var(--transition);
  transform: translateY(30px);
  opacity: 0;
}
@media (any-hover: hover) {
  .f-main .f-links a:hover .f {
    transform: translateY(-30px);
  }
  .f-main .f-links a:hover .b {
    opacity: 1;
    transform: translateY(0);
  }
}
.f-aside {
  flex-shrink: 0;
}
.f-aside-panel {
  background: rgba(154, 117, 214, 0.5);
  border-radius: 7px;
  padding: 83px 90px 68px;
  position: relative;
  top: -60px;
}
.f-aside-panel .f-address,
.f-aside-panel .f-tel {
  color: rgba(255, 255, 255, 0.96);
}
.f-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 24px;
}
.f-social-item {
  position: relative;
}
.f-social-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
}
button.f-social-btn {
  appearance: none;
  margin: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
}
a.f-social-btn {
  text-decoration: none;
}
.f-social-btn img {
  display: block;
  width: 100%;
  height: 100%;
}
.f-social-pop {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translate3d(-50%, 6px, 0);
  z-index: 30;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}
.f-social-pop--img {
  padding: 8px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.f-social-pop--img img {
  display: block;
  width: 130px;
  height: auto;
  max-width: min(130px, 70vw);
}
.f-social-pop--text {
  white-space: nowrap;
  padding: 7px 12px;
  background: rgba(12, 8, 20, 0.92);
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}
@media (any-hover: hover) {
  .f-social-item:hover .f-social-pop,
  .f-social-item:focus-within .f-social-pop {
    opacity: 1;
    visibility: visible;
    transform: translate3d(-50%, 0, 0);
  }
  .f-social-btn:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
  }
}
.f-address,
.f-tel {
  line-height: 1.75;
  margin: 0;
  color: #fff;
}
.f-tel {
  margin-top: 8px;
}
.f-main-bottom {
  position: relative;
  z-index: 1;
  margin-top: auto;
}
.copyright {
  font-size: 14px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.41);
  padding-top: 22px;
}
.copyright span {
  margin: 0 5px;
}
@media (max-width: 1280px) {
  .f-social {
    gap: 20px;
  }
  .f-aside {
    width: max-content;
  }
  .f-address,
  .f-tel {
    font-size: 15px;
  }
  .f-nav {
    gap: 10px 55px;
  }
}
/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header {
  width: 100%;
  z-index: 100;
  background: #fff;
  box-shadow: 0 1px 0 rgba(21, 20, 16, 0.06);
  position: sticky;
  top: 0;
}
.header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 6.77%;
  width: 100%;
}
.header.scroll {
  box-shadow: 0 4px 24px rgba(21, 20, 16, 0.08);
}
.header .mobile-header {
  display: none;
  height: 1.16rem;
}
.header .mobile-header .m-h-box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 0.3rem;
}
.header .mobile-header .m-h-box > div {
  margin-left: 0.21rem;
  display: inline-flex;
  align-items: center;
}
.header .mobile-header .m-h-box .logo img {
  width: 5.15rem;
  max-width: 100%;
}
.header .mobile-header .m-h-box .language-box {
  color: #10111A;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
}
.header .mobile-header .m-h-box .language-box img {
  width: 0.45rem;
  margin-right: 0.21rem;
}
.header .mobile-header .m-h-box .menu-box img {
  width: 1.18rem;
}
.header .mobile-header .m-h-box .menu-box .close {
  display: none;
}
.mobile-menu {
  position: fixed;
  top: 1.16rem;
  left: 0;
  height: calc(100vh - 1.16rem);
  background: #fff;
  width: 100%;
  z-index: 9999;
  overflow-y: scroll;
  display: none;
  padding: 0.8rem 0 0.3rem;
}
.mobile-menu li.active .mobile-menu-title {
  color: #723489;
  font-weight: bold;
}
.mobile-menu li .mobile-menu-title {
  padding: 0.34rem 0.3rem 0.32rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.34rem;
  color: #363636;
}
.mobile-menu li .mobile-menu-title a {
  color: #363636;
}
.mobile-menu li .sub-nav {
  background: #F9F9F9;
  display: none;
}
.mobile-menu li .sub-nav .sub-nav-item {
  padding: 0 0.3rem 0 0.4rem;
  border-bottom: 1px solid #E1E1E1;
}
.mobile-menu li .sub-nav .sub-nav-item-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.3rem 0;
  font-size: 0.34rem;
  color: #2E425B;
}
.mobile-menu li .sub-nav .sub-nav-item-title img {
  width: 0.32rem;
  transition: all 0.3s ease;
}
.mobile-menu li .sub-nav .sub-nav-item-title img.on {
  transform: rotate(90deg);
}
.mobile-menu li .sub-nav .sub-nav-item-content {
  display: none;
  padding-bottom: 0.4rem;
}
.mobile-menu li .sub-nav .sub-nav-item-content a {
  padding: 0.13rem 0;
  color: #707E90;
  display: block;
  padding-left: 0.18rem;
  position: relative;
  font-size: 0.28rem;
}
.mobile-menu li .sub-nav .sub-nav-item-content a::after {
  content: '';
  width: 0.24rem;
  height: 0.28rem;
  position: absolute;
  left: 0;
  top: calc(50% - 0.16rem);
}
.mobile-menu li .sub-nav .sub-nav-item-content a.on {
  color: #723489;
}
.h-gnavi {
  display: none;
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
}
.h-gnavi-list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
.h-gnavi-item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 18px 0;
}
.h-gnavi-item > .h-gnavi-link {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  transition: all 0.2s ease;
  position: relative;
  padding: 12px 21px;
  font-size: clamp(16px, 0.92vw, 18px);
}
.h-gnavi-item > .h-gnavi-link::after {
  content: '';
  width: 0;
  height: 4px;
  background: #723489;
  border-radius: 3px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transition: all 0.2s ease;
}
@media (any-hover: hover) {
  .h-gnavi-item:hover > .h-gnavi-link::after,
  .h-gnavi-item:focus-within > .h-gnavi-link::after,
  .h-gnavi-item.active > .h-gnavi-link::after {
    width: 28px;
    margin-left: -14px;
  }
}
.h-gnavi-sub {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 120;
  min-width: 120px;
  background: #fff;
  transform: translate3d(-50%, 0, 0);
  transition: all 0.2s ease;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  padding: 5px 0 10px;
  box-shadow: 0px 13px 16px 1px rgba(109, 109, 109, 0.12);
}
.h-gnavi-sub a {
  display: block;
  padding: 10px;
  text-align: center;
  transition: color 0.2s ease, background 0.2s ease;
}
@media (any-hover: hover) {
  .h-gnavi-sub a:hover,
  .h-gnavi-sub a:focus-visible {
    color: #723489;
  }
}
@media (any-hover: hover) {
  .h-gnavi-item.has-sub:hover .h-gnavi-sub,
  .h-gnavi-item.has-sub:focus-within .h-gnavi-sub {
    opacity: 1;
    visibility: visible;
    transform: translate3d(-50%, 0, 0);
    pointer-events: auto;
  }
}
.h-utility {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  margin-left: auto;
  right: 6.77%;
  z-index: 200;
  margin-left: 24px;
}
.h-lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 5px;
  color: #fff;
  line-height: 1;
  background-image: var(--gra01);
  transition: opacity 0.2s ease, transform 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  border: none;
  font-family: inherit;
}
button.h-lang {
  appearance: none;
}
@media (any-hover: hover) {
  a.h-lang:hover,
  button.h-lang:hover {
    opacity: 0.92;
    transform: translateY(-1px);
  }
}
@media (min-width: 801px) {
  .h-gnavi {
    display: flex;
  }
  .menu-btn {
    display: none;
  }
}
.h-btns {
  display: flex;
  gap: 10px;
  transition: 0.3s;
}
.h-btns.is-open {
  opacity: 0;
  pointer-events: none;
}
.h-btn {
  border-radius: 6px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  background-image: var(--gra01);
  color: #fff;
  line-height: 1;
  padding: 15px 20px;
  height: 50px;
  text-align: center;
}
.h-btn::before {
  content: "";
  display: inline-block;
  background: url("icon_arrow.svg") no-repeat center / contain;
  width: 11px;
  height: 12px;
}
.h-btn .text {
  display: block;
  overflow: hidden;
  position: relative;
  line-height: 1;
}
.h-btn .text .f,
.h-btn .text .b {
  color: currentColor;
  display: block;
}
.h-btn .text .f {
  transform: translateY(0);
  transition: transform var(--transition);
}
.h-btn .text .b {
  position: absolute;
  top: 0;
  left: 0;
  transition: color var(--transition), transform var(--transition), opacity var(--transition);
  transform: translateY(30px);
  opacity: 0;
}
@media (any-hover: hover) {
  .h-btn:hover .f {
    transform: translateY(-30px);
  }
  .h-btn:hover .b {
    opacity: 1;
    transform: translateY(0px);
  }
  .h-btn:hover .arrow::before {
    background-color: #fff;
  }
  .h-btn:hover .arrow::after {
    opacity: 1;
  }
}
.sp-fixed-btns {
  display: none;
}
.breadcrumb {
  position: relative;
  padding-top: 104px;
  overflow: hidden;
}
.breadcrumb .breadcrumb-loop-text {
  pointer-events: none;
  color: rgba(0, 0, 0, 0.03);
  display: flex;
  font-family: var(--font_en);
  font-size: 152px;
  font-weight: bold;
  letter-spacing: 0.05em;
  white-space: nowrap;
  font-style: italic;
  position: absolute;
  inset: 74px 0 auto 0;
  z-index: 0;
}
.breadcrumb .breadcrumb-loop-text * {
  backface-visibility: hidden;
  display: flex;
  flex-shrink: 0;
  padding-left: 25px;
}
.breadcrumb .breadcrumb-loop-text .item:nth-child(odd) {
  animation: loop 100s -50s linear infinite;
  transform: translateX(100%);
}
.breadcrumb .breadcrumb-loop-text .item:nth-child(even) {
  animation: loop2 100s linear infinite;
  transform: translateX(0);
}
.breadcrumb .sec01-inner {
  position: relative;
  z-index: 1;
}
.breadcrumb .breadcrumb-inner {
  margin-bottom: 60px;
}
.breadcrumb .breadcrumb-en {
  font-size: clamp(28px, 1.95vw, 32px);
  color: #723489;
  margin-bottom: 16px;
  letter-spacing: 3px;
}
.breadcrumb .breadcrumb-zh {
  font-size: clamp(30px, 1.95vw, 36px);
  margin-bottom: 27px;
  font-weight: 400;
}
.breadcrumb .breadcrumb-nav {
  font-size: clamp(18px, 0.95vw, 20px);
  color: #000;
  display: flex;
  align-items: center;
}
.breadcrumb .breadcrumb-nav a {
  transition: color var(--transition);
}
.breadcrumb .breadcrumb-nav a:hover {
  color: var(--color_primary);
}
.breadcrumb .breadcrumb-nav .sep {
  margin: 2px 8px 0;
  opacity: 0.7;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}
.breadcrumb .breadcrumb-nav .sep .sep-svg {
  display: block;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  vertical-align: middle;
  color: #3A3C47;
}
@media (max-width: 800px) {
  .sp-fixed-btns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    z-index: 100;
  }
  .sp-fixed-btns a {
    border-radius: 6px;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    background-image: var(--gra01);
    color: #fff;
    line-height: 1;
    padding: 15px 20px;
    height: 50px;
    text-align: center;
  }
  .sp-fixed-btns a::before {
    content: "";
    display: inline-block;
    background: url("icon_arrow.svg") no-repeat center / contain;
    width: 11px;
    height: 12px;
  }
}
/*------------
Gnavi
--------------*/
.gnavi-drawer {
  pointer-events: none;
  opacity: 0;
  background-color: #f5f5f5;
  position: fixed;
  inset: 0;
  overflow: hidden;
  transition: opacity 0.6s;
  will-change: opacity;
  z-index: 150;
  height: 100vh;
}
.gnavi-drawer.is-open {
  opacity: 1;
  pointer-events: all;
}
.gnavi-drawer-container {
  display: grid;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 5%;
  overflow-y: auto;
}
.gnavi-logo {
  margin-bottom: 50px;
  height: max-content;
}
.gnavi-menu {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 100px;
}
.gnavi-menu .col-ttl {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0 15px;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 32px;
  justify-content: center;
  color: #707070;
}
.gnavi-menu .col-ttl .en {
  font-size: 11px;
}
.gnavi-links {
  display: grid;
  font-size: 15px;
  gap: 10px;
  line-height: 1.5;
}
.gnavi-menu .gnavi-links li {
  text-align: center;
}
.gnavi-links .text {
  display: inline-block;
  overflow: hidden;
  position: relative;
  line-height: 1;
}
.gnavi-links .text .f,
.gnavi-links .text .b {
  color: currentColor;
  display: block;
}
.gnavi-links .text .f {
  transform: translateY(0);
  transition: transform var(--transition);
}
.gnavi-links .text .b {
  position: absolute;
  top: 0;
  left: 0;
  transition: color var(--transition), transform var(--transition), opacity var(--transition);
  transform: translateY(30px);
  opacity: 0;
}
@media (any-hover: hover) {
  .gnavi-links a:hover .text {
    color: #714BB5;
  }
  .gnavi-links a:hover .b {
    opacity: 1;
  }
  .gnavi-links a:hover .arrow::before {
    background-color: #fff;
  }
  .gnavi-links a:hover .arrow::after {
    opacity: 1;
  }
}
.gnavi-links .out {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.gnavi-links .out::after {
  content: "";
  display: inline-block;
  background-color: currentColor;
  mask: url("icon_out.svg") no-repeat center / contain;
  width: 11px;
  height: 11px;
}
.gnavi-links .has-img {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.gnavi-links ul {
  display: grid;
  gap: 15px;
  margin: 20px 0;
}
.gnavi-links ul > li {
  position: relative;
  padding-left: 15px;
}
.gnavi-links ul > li::before {
  content: "-";
  position: absolute;
  top: -3px;
  left: 0;
}
.gnavi-bottom {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.gnavi-btns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}
.gnavi-btn {
  border: 1px solid var(--color_black);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border-radius: 6px;
  padding: 19px 20px 19px 35px;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  position: relative;
  min-width: 160px;
  border-color: #C8C8C8;
}
.gnavi-btn::before {
  content: "";
  background-color: var(--color_black);
  mask: url("icon_arrow.svg") no-repeat center / contain;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 23px;
  transform: translate(0, -50%);
}
.gnavi-btn.gra {
  background-image: var(--gra01);
  color: #fff;
  border: none;
}
.gnavi-btn.gra::before {
  background-color: #fff;
}
.gnavi-btn .text {
  display: block;
  overflow: hidden;
  position: relative;
  line-height: 1;
}
.gnavi-btn .text .f,
.gnavi-btn .text .b {
  color: currentColor;
  display: block;
}
.gnavi-btn .text .f {
  transform: translateY(0);
  transition: transform var(--transition);
}
.gnavi-btn .text .b {
  position: absolute;
  top: 0;
  left: 0;
  transition: color var(--transition), transform var(--transition), opacity var(--transition);
  transform: translateY(30px);
  opacity: 0;
}
@media (any-hover: hover) {
  .gnavi-btn:hover .f {
    transform: translateY(-30px);
  }
  .gnavi-btn:hover .b {
    opacity: 1;
    transform: translateY(0px);
  }
  .gnavi-btn:hover .arrow::before {
    background-color: #fff;
  }
  .gnavi-btn:hover .arrow::after {
    opacity: 1;
  }
}
html.is-open {
  height: 100%;
  overflow: hidden;
}
.menu-btn {
  display: none;
  place-items: center;
  background: linear-gradient(320deg, #714BB5 0%, #A17CDC 100%);
  border-radius: 5px;
  width: 46px;
  height: 46px;
  position: relative;
}
.menu-btn-line {
  --menu-line-h: 2px;
  --menu-line-gap: 6px;
  display: flex;
  gap: var(--menu-line-gap);
  flex-direction: column;
  align-items: center;
}
.menu-btn-line span {
  display: block;
  background-color: #fff;
  width: 20px;
  height: var(--menu-line-h);
  transform-origin: 50% 50%;
  transition: transform 0.2s ease, opacity 0.2s ease;
  border-radius: 2px;
}
.menu-btn.is-open .menu-btn-line span:nth-of-type(1) {
  transform: translateY(calc(var(--menu-line-h) + var(--menu-line-gap))) rotate(45deg);
}
.menu-btn.is-open .menu-btn-line span:nth-of-type(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-btn.is-open .menu-btn-line span:nth-of-type(3) {
  transform: translateY(calc(-1 * (var(--menu-line-h) + var(--menu-line-gap)))) rotate(-45deg);
}
.h-logo {
  width: 36.8%;
  max-width: 611px;
}
@media (max-width: 1440px) {
  .f-aside-panel {
    padding: 68px 60px 53px;
  }
  .f-aside-panel .f-social-btn {
    width: 42px;
    height: 42px;
  }
  .h-gnavi-item > .h-gnavi-link {
    padding: 12px 16px;
  }
  .h-utility {
    margin-left: 18px;
  }
  .h-lang {
    font-size: 15px;
  }
  .h-gnavi-sub a {
    font-size: 15px;
  }
}
@media screen and (max-width: 1600px) {
  .f-brand-logo img {
    width: 300px;
  }
}
@media (max-width: 1024px) {
  .header .header-inner {
    display: none;
  }
  .header .mobile-header {
    display: flex;
  }
  .btn-more {
    gap: 0.12rem;
    font-size: 0.28rem;
  }
  .btn-more .arrow {
    width: 0.78rem;
    height: 0.78rem;
  }
  .btn-more .arrow::before {
    width: 0.16rem;
    height: 0.16rem;
  }
  .f-main {
    padding-top: 0.6rem;
  }
  .f-main .f-brand-logo img {
    width: 4.4rem;
    margin: 0 auto;
  }
  .container {
    width: calc(100% - 0.6rem);
  }
}
