@charset 'UTF-8';

/*----------- 共通 -----------*/
body {
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Language preference prompt (en-test) */
.bl-lang-prompt {
  position: fixed;
  inset: 0;
  z-index: 100001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.bl-lang-prompt[hidden] {
  display: none !important;
}

.bl-lang-prompt__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.bl-lang-prompt__card {
  position: relative;
  width: 100%;
  max-width: 480px;
  padding: 28px 24px 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.bl-lang-prompt__close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  color: #888;
  cursor: pointer;
  padding: 4px 8px;
}

.bl-lang-prompt__title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  color: #022fab;
}

.bl-lang-prompt__text {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.7;
  color: #333;
}

.bl-lang-prompt__text-sub {
  display: block;
  margin-top: 8px;
  color: #555;
}

.bl-lang-prompt__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bl-lang-prompt__btn {
  display: block;
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s ease;
}

.bl-lang-prompt__btn:hover {
  opacity: 0.85;
}

.bl-lang-prompt__btn--primary {
  color: #fff;
  background: linear-gradient(90deg, #0177BC 18%, #022FAB 100%);
}

.bl-lang-prompt__btn--secondary {
  color: #022fab;
  background: #f0f3f8;
  border: 1px solid #d5d9e0;
}

body.bl-lang-prompt-open {
  overflow: hidden;
}

@media screen and (min-width: 600px) {
  .bl-lang-prompt__actions {
    flex-direction: row;
  }

  .bl-lang-prompt__btn {
    flex: 1;
  }
}

html {
  scroll-behavior: smooth;
}

a {
  transition: 0.5s;
}

a:hover {
  opacity: 0.7;
  transition: 0.3s;
}

span.s-b {
  font-size: 14px;
  color: var(--corol_blue);
}

h1 {
  font-size: 34px;
  font-weight: bold;
}

h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 30px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

.text-xs {
  font-size: 12px;
}

.text-s {
  font-size: 14px;
}

.text-l {
  font-size: 20px;
}

.sp-block {
  display: none;
}

.pc-block {
  display: block;
}

.page-width {
  max-width: 1200px;
  margin: 0px auto;
  padding: 50px 20px;
}

.menu-b-btn a {
  background: linear-gradient(90deg, #0177BC 18%, #022FAB 100%);
  padding: 10px 40px;
  text-decoration: none;
  border-radius: 20px;
  color: #fff !important;
  border-radius: 30px;
}

.menu-b-btn a {
  padding: 15px 40px;
  border-radius: 30px;
}

.b-btn {
  background: linear-gradient(90deg, #0177BC 18%, #022FAB 100%);
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 20px;
}

a.b-btn {
  color: #fff !important;
  padding: 15px 40px;
  border-radius: 30px;
}

.header-btn {
  padding: 12px 30px !important;
}

.top-btn {
  margin-top: 60px;
}

p {
  line-height: 1.8;
}

.a-border {
  text-decoration: underline;
  text-decoration-color: #4C4C4C;
  text-decoration-thickness: .5px;
  text-underline-offset: 4px;
}

.sp-none {
  display: block;
}

.pc-none {
  display: none;
}

.wave-bg {
  background-image: url(../images/bg_top.png);
  background-repeat: no-repeat;
  background-size: 100%;
}

:root {
  --grade: linear-gradient(90deg, #0177BC 18%, #022FAB 100%);
  --color_gray: #4C4C4C;
  --color_right-gray: #E9E9E9;
  --color_red: #E60012;
  --corol_blue: #022FAB;
  --color_text-link: #0078BB;
  --bl-header-offset: 72px;
}

@media screen and (min-width: 1025px) {
  :root {
    --bl-header-offset: 136px;
  }
}

html {
  scroll-padding-top: var(--bl-header-offset);
}

/* くの字矢印 */
.r-right {
  display: inline-block;
  line-height: 1;
  position: relative;
  width: 10px;
  height: 10px;
  transform: translateX(-25%) rotate(45deg);
}

.r-right::before,
.r-right::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 0.1em;
}

.r-right::before {
  top: 0;
  left: 0;
  right: 0;
  height: 0.1em;
}

.r-right::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 0.1em;
}

.jump_point {
  padding-top: 40px;
  margin-top: -40px;
}

/* お知らせタグカラー */
.category {
  color: #fff;
}

.category.product-info {
  background-color: #C80000;
}

.category.news {
  background-color: #0F1982;
}

.category.event {
  background-color: #EE7801;
}

.category.info {
  background-color: #F6AC00;
}

.box {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
  transform: translateY(150px);
}

.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/*----------- header -----------*/
.header {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 10px 20px;
}

.main-logo img {
  width: 200px;
}

.header .menu-ad-wrapper__nav > div > ul.menu {
  display: flex;
  align-items: center;
}

.header .menu a {
  margin: 0 10px;
}

.header .menu .menu-item {
  white-space: nowrap;
}

.header .sub-menu {
  display: block;
}

.header .sub-menu .menu-item {
  white-space: normal;
}

.header a.language:before {
  content: "";
  background-image: url(../images/lange.png);
  padding: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  margin-right: 5px;
}

.header-lang--selector {
  padding: 10px 20px 0;
  margin-bottom: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  z-index: 10010;
  overflow: visible;
}

.header-lang--selector .bogo-language-switcher.list-view,
.header-lang--selector .bl-lang-toggle {
  display: flex;
  flex-direction: row;
  font-size: 12px;
  visibility: visible;
}

nav.bl-lang-toggle {
  display: flex;
  visibility: visible;
}

.country-selector:before {
  content: "";
  background-image: url(../images/lange.png);
  padding: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  margin-right: 5px;
}

.language {
  margin-left: 20px;
}

.country-selector:before {
  content: "";
  background-image: url(../images/lange.png);
  padding: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  margin-right: 5px;
}

.country-selector {
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.wgcurrent:after {
  content: "/";
  margin-left: 5px;
}

a.weglot-language-en,
a.weglot-language-ja {
  margin: 0;
}

/* ハンバーガーメニュー */
.hamburger {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
}

.hamburger .bar {
  width: 40px;
  height: 3px;
  background: #333;
  border-radius: 2px;
  display: block;
  position: absolute;
  transition: all 0.3s;
}

.hamburger .bar-top {
  transform: translate(0, -12px);
}

.hamburger .bar-bottom {
  transform: translate(0, 12px);
}

.hamburger.close .bar-middle {
  opacity: 0;
}

.hamburger.close .bar-top {
  transform: translate(0, 0) rotate(45deg);
}

.hamburger.close .bar-bottom {
  transform: translate(0, 0) rotate(-45deg);
}

.header .hamburger {
  display: none;
}

.header {
  z-index: 9999;
  width: 100%;
  background: #fff;
  top: 0;
  left: 0;
  right: 0;
}

/*----------- 下層header -----------*/
.underlayer-header,
.for-products-header {
  margin-top: 0;
}

ul.breadcrumb li:after {
  content: " > ";
}

ul.breadcrumb {
  display: flex;
  column-gap: 5px;
}

.underlayer-header {
  background: var(--grade);
  color: #fff;
  height: 200px;
  position: relative;
  clip-path: ellipse(90% 85% at 50% 0%);
}

.underlayer-header .page-width,
.for-products-header .page-width {
  margin: 0px auto;
  padding-top: 35px;
}

.underlayer-header h1 {
  margin-top: 20px;
}

.for-products-header img {
  width: 100px;
}

.for-products-header {
  background-image: url(../images/h-logo.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.f-p-h1 {
  margin-top: 35px;
  font-size: 36px;
}

/*----------- お問い合わせバナー＆footer -----------*/
section.contact-banner {
  background: var(--grade);
}

.contact-banner {
  margin-top: 40px;
}

.contact-banner .page-width {
  margin: 50px auto;
}

.banner-bg {
  background-image: url(/images/contact-banner-bg.png);
  background-repeat: no-repeat;
  background-size: 55%;
  background-position: 155% 85%;
  padding: 15px 0;
}

.con-b-flex {
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-banner h2 span {
  font-size: 14px;
}

.con-b-item2 {
  text-align: center;
}

.migi {
  display: inline-block;
  color: var(--corol_blue);
  line-height: 1;
  position: relative;
  width: 13px;
  height: 13px;
  transform: translateX(-25%) rotate(45deg);
  margin-left: 30px;
}

.migi::before,
.migi::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 0.1em;
}

.migi::before {
  top: 0;
  left: 0;
  right: 0;
  height: 0.1em;
}

.migi::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 0.1em;
}

.con-b-btn a {
  color: var(--corol_blue);
}

.con-b-btn {
  background-color: #fff;
  padding: 18px 30px;
  border-radius: 30px;
  font-size: 18px;
  margin-bottom: 10px;
}

/* footer */
footer {
  max-width: 1200px;
  margin: 15px auto;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px 1.5em;
}

.footer-bottom__menu {
  text-align: center;
  padding-bottom: 1em;
}

.footer-bottom__menu .menu {
  display: block;
}

.footer-bottom__menu .menu .menu-item a {
  font-size: 12px;
}

.footer-flex .footer__menu ul.menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-flex .footer__menu .menu-item {
  margin: 0;
}

.footer-bottom__menu ul.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-bottom__menu .menu-item {
  margin: 0;
}

footer .copyright {
  text-align: center;
  font-size: 12px;
}

.fixed-header {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
  z-index: 1000;
  transition: top 0.3s;
}

.header-spacer {
  display: block;
  width: 100%;
  height: var(--bl-header-offset);
  flex-shrink: 0;
}

/* .hidden-header {
  top: -100px;
} */
span.bogoflags.bogoflags-us,
.bogoflags,
.bogoflags-before:before {
  display: none;
}

.menu {
  display: flex;
}

ul.bogo-language-switcher.list-view {
  flex-direction: row-reverse;
}

li.ja:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url('../images/lange.png');
  background-size: cover;
  background-repeat: no-repeat;
  vertical-align: middle;
}

ul.bogo-language-switcher.list-view a {
  margin: 0 !important;
}

ul.bogo-language-switcher li {
  font-size: 16px;
}

li.ja {
  display: flex;
  align-items: center;
}

li.ja:after {
  content: "/";
  padding-left: 8px;
}

/* Language toggle (en-test) */
.bl-lang-toggle__wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bl-lang-toggle__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: #555;
  flex-shrink: 0;
}

.bl-lang-toggle__icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.bl-lang-toggle__track {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-width: 88px;
  padding: 3px;
  background: #eceef2;
  border: 1px solid #d5d9e0;
  border-radius: 999px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.06);
}

.bl-lang-toggle__thumb {
  position: absolute;
  top: 3px;
  width: calc(50% - 3px);
  height: calc(100% - 6px);
  background: linear-gradient(90deg, #0177BC 18%, #022FAB 100%);
  border-radius: 999px;
  box-shadow: 0 1px 3px rgba(2, 47, 171, 0.35);
  transition: transform 0.25s ease, left 0.25s ease, box-shadow 0.25s ease;
  z-index: 0;
}

.bl-lang-toggle__track--ja .bl-lang-toggle__thumb {
  left: 3px;
}

.bl-lang-toggle__track--en .bl-lang-toggle__thumb {
  left: auto;
  right: 3px;
}

.bl-lang-toggle__track--en:has(a.bl-lang-toggle__seg:hover) .bl-lang-toggle__thumb {
  transform: translateX(-4px);
  box-shadow: 0 2px 6px rgba(2, 47, 171, 0.25);
}

.bl-lang-toggle__track--ja:has(a.bl-lang-toggle__seg:hover) .bl-lang-toggle__thumb {
  transform: translateX(4px);
  box-shadow: 0 2px 6px rgba(2, 47, 171, 0.25);
}

.bl-lang-toggle__seg {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #666;
  text-decoration: none;
  border-radius: 999px;
  transition: color 0.2s ease;
  cursor: default;
  user-select: none;
}

a.bl-lang-toggle__seg {
  cursor: pointer;
}

a.bl-lang-toggle__seg:hover {
  color: #022fab;
  opacity: 1;
}

.bl-lang-toggle__seg--active {
  color: #fff;
}

.tab-block {
  display: none;
}

.tab2-block {
  display: none;
}

.menu-ad-wrapper {
  display: flex;
}

.menu-lang-switcher {
  display: none;
}

@media screen and (min-width: 1025px) {
  .header-lang--selector {
    display: flex !important;
    padding: 10px 20px 0;
    margin-bottom: 0;
    z-index: 10010;
    overflow: visible;
  }

  .header-lang--selector .bl-lang-toggle,
  .header-lang--selector .bl-lang-toggle__track {
    overflow: visible;
  }

  .menu-ad-wrapper .bogo-language-switcher,
  .menu-ad-wrapper .bl-lang-toggle,
  .menu-lang-switcher {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) {

  /*----------- header -----------*/
  .fixed-header .header {
    position: relative;
    z-index: 1002;
  }

  .header .main-logo,
  .header .hamburger,
  .header .tab2-block {
    position: relative;
    z-index: 1003;
  }

  .header .h-c-f {
    position: relative;
    z-index: 1002;
  }

  .header-lang--selector {
    display: none;
  }

  .header .menu li {
    margin: 5px 0;
    width: 100%;
    /* text-align: center; */
    padding: 15px 0;
    padding: 8px 0;
  }

  .header .menu.open {
    display: flex;
    flex-direction: column;
  }

  .header .open .menu {
    display: flex;
    flex-direction: column;
  }

  .header .menu {
    display: none;
    flex-direction: column;
    width: 100%;
    position: fixed;
    top: var(--bl-header-offset, 72px);
    left: 0;
    right: 0;
    bottom: 0;
    height: auto;
    margin: 0;
    padding: 0 30px;
    z-index: 1001;
    background-color: rgba(255, 255, 255, 0.97);
    overflow: hidden;
    box-sizing: border-box;
  }

  .header .menu-ad-wrapper__nav a {
    margin: 10px 0;
    text-align: center;
  }

  .header .menu.open > .menu-ad-wrapper {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .header .hamburger {
    display: flex;
  }

  .header {
    justify-content: space-between;
  }

  ul.bogo-language-switcher.list-view {
    bottom: 53%;
    position: absolute;
    z-index: 999;
  }

  .header li.ja {
    width: 83px !important;
  }

  .header .menu .en-US.en {
    width: 70px;
  }

  .tab2-block {
    display: block;
  }

  .h-c-f {
    display: flex;
    align-items: center;
  }

  li#menu-item-94,
  li#menu-item-92,
  li.menu-item-contact {
    display: none;
  }

  .hamburger {
    margin-left: 15px;
  }

  .menu-ad-wrapper {
    position: relative;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 0;
    max-height: 100%;
    padding: 20px 0 0;
    z-index: 1;
    align-items: stretch;
    justify-content: flex-start;
    overflow: hidden;
  }

  .menu-ad-wrapper__nav {
    flex: 1 1 auto;
    width: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
  }

  .header .menu-ad-wrapper .sub-menu {
    display: block;
    position: static;
    width: 100%;
    height: auto !important;
    opacity: 1 !important;
    transform: none !important;
    overflow: visible;
    margin: 0;
    padding: 0 0 0 1em;
  }

  .header .menu-ad-wrapper .sub-menu li {
    display: block;
    width: 100%;
    margin: 0;
    padding: 6px 0;
    border-bottom: none;
    background: transparent;
  }

  .header .menu-ad-wrapper .sub-menu li a {
    margin: 0;
    text-align: left;
    display: block;
  }

  .header .menu.open .menu-lang-switcher {
    display: flex !important;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    margin-top: auto;
    padding: 10px 0 18px;
    flex: 0 0 auto;
    flex-shrink: 0;
    border-top: 1px solid #e0e0e0;
    background: rgba(255, 255, 255, 0.98);
    position: relative;
    z-index: 1005;
    visibility: visible;
    overflow: visible;
    pointer-events: auto;
    isolation: isolate;
  }

  ul.bogo-language-switcher.list-view {
    position: static;
    margin-top: 0;
  }

  .menu-lang-switcher .bl-lang-toggle {
    position: static;
    transform: none;
    margin: 0;
    width: auto;
    height: auto;
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
  }

  .menu-lang-switcher .bl-lang-toggle__wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: nowrap;
    width: auto;
    height: auto;
  }

  .menu-lang-switcher .bl-lang-toggle__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  .menu-lang-switcher .bl-lang-toggle__icon svg {
    width: 18px;
    height: 18px;
  }

  .menu-lang-switcher .bl-lang-toggle__track {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    box-sizing: border-box;
    min-width: 92px;
    width: 92px;
    height: 28px;
    padding: 3px;
    flex-shrink: 0;
    overflow: hidden;
  }

  .menu-lang-switcher .bl-lang-toggle__seg,
  .menu-lang-switcher a.bl-lang-toggle__seg {
    padding: 0;
    margin: 0 !important;
    min-width: 0;
    min-height: 0;
    height: 22px;
    font-size: 11px;
    line-height: 22px;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
  }

  .menu-lang-switcher .bl-lang-toggle__thumb {
    top: 3px;
    width: calc(50% - 3px);
    height: calc(100% - 6px);
  }

  .menu-lang-switcher .bl-lang-toggle__track--ja .bl-lang-toggle__thumb {
    left: 3px;
    right: auto;
  }

  .menu-lang-switcher .bl-lang-toggle__track--en .bl-lang-toggle__thumb {
    left: auto;
    right: 3px;
  }
}

/*----------- menu-dropdown -----------*/
@media(min-width: 821px) {
  .menu-main-menu-container li {
    position: relative;
  }

  .menu-main-menu-container .sub-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 22px;
    left: 0;
    overflow: hidden;
    width: 300px;
    height: 0;
    transition: .8s;
    transform: translateY(-8%);
    opacity: 0;
  }

  .menu-main-menu-container li:hover .sub-menu {
    height: auto;
    transform: translateY(0);
    opacity: 1;
  }

  .menu-main-menu-container .sub-menu li {
    display: block;
    margin-left: 0;
    padding: 0.5em 0;
    border-bottom: 1px solid #ddd;
    background-color: rgb(255 255 255 / 90%);
    width: 100%;
    height: auto;
  }

  .menu-main-menu-container .menu-item-has-children:nth-last-child(1) .sub-menu,
  .menu-main-menu-container .menu-item-has-children:nth-last-child(2) .sub-menu {
    right: 0;
    left: auto;
  }

  .menu-main-menu-container .sub-menu li a {
    padding: 10px 10px 10px 15px;
    position: relative;
    display: inline-block;
  }

  .menu-main-menu-container .sub-menu li a::before {
    content: '';
    width: 6px;
    height: 6px;
    border: 0;
    border-top: solid 2px #333;
    border-right: solid 2px #333;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
  }
}

/*スマホ用レイアウト*/
@media(max-width: 820px) {
  .menu-main-menu-container li a {
    text-align: left;
  }

  .menu-main-menu-container .menu-item-has-children > a {
    padding-bottom: 0.5em;
  }

  .menu-main-menu-container .sub-menu li a {
    position: relative;
    padding: 0.3rem 1rem 0.3rem 1em;
  }

  .menu-main-menu-container .sub-menu li a::before {
    position: absolute;
    top: 0.75em;
    left: 0;
    display: block;
    width: .5em;
    height: .5em;
    content: "";
    border-bottom: 1px solid #333;
    border-left: 1px solid #333;
  }
}

@media screen and (max-width: 850px) {

  /*----------- footer -----------*/
  .footer-flex .menu ul {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .footer-flex {
    flex-direction: column;
    padding-bottom: 0;
  }

  .footer-flex .footer__menu {
    padding: 20px 0 2em;
  }

  .footer-flex .footer__menu ul.menu {
    justify-content: center;
    gap: 10px;
  }
}

@media (max-width: 768px) {

  /*----------- 共通 -----------*/
  .page-width {
    padding: 30px 20px !important;
  }

  h1 {
    font-size: 30px !important;
  }

  h2 {
    font-size: 25px !important;
  }

  .page-width {
    max-width: 100%;
  }

  li#menu-item-94 {
    margin: 20px 0;
  }

  .en-US .header .menu {
    padding-top: 60px;
  }

  /*----------- footer -----------*/
  .con-b-flex {
    flex-direction: column;
    gap: 18px;
  }
}

@media (max-width: 735px) {
  .tab-block {
    display: block;
  }
}

@media screen and (max-width: 599px) {

  /*----------- 共通 -----------*/
  h1 {
    font-size: 27px !important;
  }

  h3 {
    font-size: 21px;
  }

  .sp-none {
    display: none !important;
  }

  .pc-none {
    display: none;
  }

  .sp-block {
    display: block;
  }

  .pc-block {
    display: none;
  }

  .page-width {
    margin-top: 0 !important;
    padding: 30px 20px 60px 20px !important;
  }

  .wave-bg {
    background-image: url(../images/bg_top_sp.png);
    background-position: bottom;
  }

  .top-about-us.wave-bg {
    background-image: url(../images/top-sp-bg.png);
    background-position: bottom;
  }

  /*----------- header -----------*/
  .underlayer-header h1,
  .f-p-h1 {
    margin-top: 13px;
  }

  .underlayer-header .page-width,
  .for-products-header .page-width {
    padding-top: 10px !important;
  }

  .underlayer-header {
    height: 185px;
  }

  /*----------- footer -----------*/
  .for-products-header {
    background-image: url(../images/u-header-sp.png);
    background-size: contain;
  }

  .co-b-item1 h2 {
    margin-bottom: 15px;
  }

  .co-b-item1 {
    text-align: center;
  }

  .co-b-item1 p {
    padding: 5px 15px;
  }

  .banner-bg {
    background-size: cover;
    background-position: 160px -180px;
  }

  .footer-flex {
    flex-direction: column;
  }

  .footer-flex .menu ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-flex .menu {
    margin: 10px;
  }

  .footer-flex .footer__menu {
    margin: 0;
  }

  .footer-flex .footer__menu .menu {
    margin: 0;
  }

  li {
    margin: 5px 0;
  }

  footer .copyright {
    text-align: center;
  }

  .contact-banner .page-width {
    margin: 0;
  }
}

/* お問い合わせボタン表示 */
@media screen and (max-width: 544px) {
  .hamburger {
    margin-left: 5px
  }
}

@media screen and (max-width: 481px) {
  .d-con a.b-btn {
    padding: 10px 15px;
    font-size: 14px;
  }

  .header-btn {
    padding: 8px 12px !important;
  }
}

@media screen and (max-width: 430px) {
  .header {
    padding: 10px 15px;
  }

  .main-logo img {
    width: 135px;
  }

  .footer-flex .main-logo img {
    width: 165px;
  }

  .hamburger .bar {
    width: 35px;
  }
}

@media screen and (max-width: 375px) {
  .header .menu li {
    padding: 8px 0;
  }

  .hamburger {
    width: 55px;
  }
}

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

/* Google recaptcha */
.grecaptcha-badge {
  visibility: hidden;
}

.vr-app_icon__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5em;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}

.vr-apl-icon {
  max-width: 90%;
}

.vr-ggl-icon {
  max-width: 220px;
}

@media screen and (max-width: 768px) {
  .vr-app_icon__wrapper {
    display: flex;
    flex-direction: column;
    gap: 1em;
    align-items: center;
  }
}

.forSP {
  display: none;
}

.forPC {
  display: block;
}

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

  .forSP {
    display: block;
  }
}

/*----------- Heading hierarchy (semantic fixes, same visuals) -----------*/
.maker-container .content-wrapper .content .brand-logo-wrap {
  height: 160px;
  text-align: center;
  align-content: center;
}
.products-lamp h2.product-item-title {
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: bold;
  border-bottom: 1px solid #544c99;
}
.products-lamp h3.prod-detail-label {
  font-weight: bold;
  font-size: 20px;
}
.contact-banner .contact-banner-heading {
  font-size: 1.5em;
  font-weight: bold;
  margin: 0 0 0.5em;
}
.contact-banner .contact-banner-heading span {
  font-size: 14px;
}
.brand-second h3.brand-item-name {
  margin-bottom: 20px;
  font-weight: 700;
  line-height: normal;
}
.brand-second .LED-type .flex-box .type h3.brand-item-name {
  margin-bottom: 0;
}
.brand-second .pdf-dw h4.pdf-section-title {
  background-color: var(--color_right-gray);
  padding: 10px;
  font-weight: 700;
  position: relative;
  margin-bottom: 20px;
}
.brand-second .pdf-dw h4.pdf-section-title::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  width: 20px;
  height: 20px;
  background: url(/images/dw-icon.png) no-repeat center right;
  background-size: contain;
}
.page-product-hero-title {
  font-size: 1.5em;
  font-weight: bold;
  margin: 0 0 0.5em;
}
.vr-desc__title {
  font-size: 1.5em;
  font-weight: bold;
  margin: 0 0 1em;
}
.aleg-en-section h3.line {
  display: flex;
  align-items: center;
  gap: 60px;
}
.aleg-en-section h3.line::after {
  content: "";
  display: block;
  border-top: 1px solid #707070;
  flex: 1;
}
.page-template-page-utsuwa-en main .aleg-en-section h4.utsuwa-series-lead {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}
.led-intro-headline {
  font-size: 1.17em;
  font-weight: bold;
  margin: 0 0 1em;
}
