@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
html {
  overflow-x: hidden;
  min-width: 0;
  font-size: 0.6944444444vw;
}
@media screen and (max-width: 828px) {
  html {
    font-size: 1.2077294686vw;
  }
}
@media screen and (max-width: 414px) {
  html {
    font-size: 2.4154589372vw;
  }
}

:root {
  --g-color-base: #DDDDDD;
  --g-color-grey: #D9D9D9;
  --g-color-red: #FF5704;
  --g-color-orange: #FFD9C7;
  --g-color-pink: #F8F0E9;
  --g-color-text: #231F20;
  --g-color-white: #FFFFFF;
  --g-padding-s: 72px;
}

.header a,
.mobile-menu-bar a {
  text-decoration: none;
}

.header *,
.mobile-menu-bar * {
  box-sizing: border-box;
}

.header.container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 9.94rem;
  background-color: var(--g-color-white);
  padding: 0.8rem 4.8rem;
  position: sticky;
  top: 0;
  z-index: 100;
  min-width: 0;
}
@media screen and (max-width: 828px) {
  .header {
    padding: 0.8rem 4.8rem;
  }
}
@media screen and (max-width: 414px) {
  .header {
    padding: 1rem 1.4rem 1rem 1rem;
    height: auto;
  }
}
.header-logo {
  cursor: pointer;
}
.header-logo img {
  width: 16rem;
  height: auto;
  display: block;
}
@media screen and (max-width: 828px) {
  .header-logo img {
    width: 18rem;
    height: 8.34rem;
  }
}
@media screen and (max-width: 414px) {
  .header-logo img {
    width: 12.8rem;
    height: auto;
  }
}
.header-content {
  display: flex;
  align-items: center;
  min-width: 0;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-right: 24px;
}
@media screen and (max-width: 828px) {
  .header-nav {
    display: none;
  }
}
.header-nav-item {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Meiryo", "MS PGothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #231F20;
  font-style: W5;
  line-height: 1.2;
  letter-spacing: 0%;
  white-space: nowrap;
}
.header-nav-item:hover {
  opacity: 0.7;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 16px;
}
@media screen and (max-width: 828px) {
  .header-actions {
    margin-right: 1.2rem;
  }
}
@media screen and (max-width: 414px) {
  .header-actions {
    margin-right: 12px;
  }
}
.header-actions-btn {
  padding: 1rem 1.2rem;
  color: var(--g-color-text);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.header-actions-btn:hover {
  opacity: 0.7;
}
.header-actions-btn .btn-text {
  font-size: 1.4rem;
  font-weight: 700;
  font-style: bold;
  line-height: 1.2;
  letter-spacing: 0%;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  white-space: nowrap;
}
.header-actions-btn .btn-icon-arrow {
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  position: relative;
}
.header-actions-btn .btn-icon-arrow .icon-arrow {
  width: 4px;
  height: 2px;
  background-color: var(--g-color-red);
}
.header-actions-btn .btn-icon-arrow .icon-triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 4px;
  border-color: transparent transparent transparent var(--g-color-red);
}
.header-actions-btn .btn-icon-download {
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  background-color: #FFD9C7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-actions-btn .btn-icon-download .icon-download {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.header-actions-btn .btn-icon-download .icon-download-btn {
  position: relative;
  width: 5px;
  height: 5px;
  background-color: var(--g-color-red);
  top: -1px;
}
.header-actions-btn .btn-icon-download .icon-download-btn::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: var(--g-color-red) transparent transparent transparent;
}
.header-actions-btn .btn-icon-download .icon-download-box {
  width: 8px;
  height: 2px;
  background-color: var(--g-color-red);
  margin-top: 3px;
}
.header-actions-arrow {
  background-color: var(--g-color-red);
  color: #fff;
  border: none;
}
.header-actions-download {
  background-color: #fff;
  border: 1px solid var(--g-color-red);
  color: var(--g-color-text);
}
@media screen and (max-width: 828px) {
  .header-actions-download {
    display: none;
  }
}
.header-lang {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 2px;
  background-color: #EEEEEE;
  border-radius: 999px;
  gap: 0;
}
@media screen and (max-width: 828px) {
  .header-lang {
    display: none;
  }
}
.header-lang-btn {
  position: relative;
  z-index: 2;
  flex: 1;
  min-width: 40px;
  padding: 6.5px 10px;
  border: none;
  background-color: transparent;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #231F20;
  cursor: pointer;
  transition: color 0.3s ease;
}
.header-lang-btn.is-active {
  color: #fff;
}
.header-lang-btn:hover:not(.is-active) {
  opacity: 0.7;
}
.header-lang::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: calc(50% - 2px);
  height: calc(100% - 4px);
  background-color: var(--g-color-red);
  border-radius: 999px;
  transition: transform 0.3s ease;
  z-index: 1;
}
.header-lang.lang-en::before {
  transform: translateX(100%);
}
.header-menu {
  display: none;
}
@media screen and (max-width: 828px) {
  .header-menu {
    display: block;
  }
}
@media screen and (max-width: 414px) {
  .header-menu {
    right: 2.4rem;
  }
}
.header-menu-toggle {
  position: relative;
  width: 38px;
  height: 34px;
  background-color: #FFD9C7;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}
.header-menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  background-color: #FF5704;
  transition: all 0.3s ease;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.header-menu-toggle span:nth-child(1) {
  transform: translate(-50%, calc(-50% - 6px));
}
.header-menu-toggle span:nth-child(2) {
  transform: translate(-50%, -50%);
}
.header-menu-toggle span:nth-child(3) {
  transform: translate(-50%, calc(-50% + 6px));
}
.header-menu-toggle.is-active {
  background-color: #FFD9C7;
}
.header-menu-toggle.is-active span {
  background-color: var(--g-color-red);
  width: 18px;
  height: 2px;
}
.header-menu-toggle.is-active span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.header-menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.header-menu-toggle.is-active span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu-bar {
  display: none;
  width: 100%;
  height: calc(100vh - 84px);
  background-color: var(--g-color-white);
  position: fixed;
  top: 79px;
  left: 0;
  z-index: 10;
  overflow-y: auto;
  border-top: 1px solid #DDDDDD;
}
.mobile-menu-bar.is-open {
  display: block;
}
.mobile-menu-bar .mobile-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.8rem 2.4rem;
  border-bottom: 1px solid #E8E8E8;
  text-decoration: none;
  transition: background-color 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 414px) {
  .mobile-menu-bar .mobile-menu-item {
    padding: 2rem 2.4rem;
  }
}
.mobile-menu-bar .mobile-menu-item:active {
  background-color: #F5F5F5;
}
.mobile-menu-bar .mobile-menu-item-text {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Meiryo", "MS PGothic", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #111111;
  line-height: 1.2;
  letter-spacing: 0%;
}
.mobile-menu-bar .mobile-menu-item-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--g-color-red);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-bar .mobile-menu-item-icon .mobile-menu-arrow {
  width: 5px;
  height: 2px;
  background-color: #fff;
}
.mobile-menu-bar .mobile-menu-item-icon .mobile-menu-triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-color: transparent transparent transparent #fff;
}

/*# sourceMappingURL=header-global.css.map */
