@charset "UTF-8";

:root {
  --font-body: "Noto Sans JP", sans-serif;
  --font-min: YakuHanJP, "Shippori Mincho", serif;
  --font-en: "Noto Sans JP", sans-serif;
  --color-txt: #0A0A0A;
  --color-blue: #7198ce;
  --color-dark-blue: #143a67;
  --color-gray: #E7E7E7;
  --side: 0;
}

* {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  box-sizing: border-box;
}

*:where(:not(fieldset, progress, meter)) {
  border-width: 0;
  border-style: solid;
  background-origin: border-box;
  background-repeat: no-repeat;
}

html {
  block-size: 100%;
  -webkit-text-size-adjust: none;
  font-size: 62.5%;
  font-size: 2.6666666667vw;
  font-feature-settings: "palt";
  scroll-behavior: smooth;
  scroll-padding-top: 4.7rem;
}

@media (min-width: 768px) {
  html {
    font-size: 0.8333333333vw;
    scroll-padding-top: 7.8rem;
  }
}

@media (min-width: 1000px) {
  html {
    font-size: min(0.625vw, 62.5%);
  }
}

@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}

body {
  text-rendering: optimizeSpeed;
  min-block-size: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  color: #0a0a0a;
  line-height: 1.86;
}

:where(video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, svg, video):not(.desktop-dropdown img) {
  block-size: auto;
  max-inline-size: 100%;
  vertical-align: middle;
}

:where(svg):where(:not([width])) {
  inline-size: 5rem;
}

:where(input, button, textarea, select),
:where(input[type=file])::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
}

:where(button) {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

:where(textarea) {
  resize: vertical;
  font-size: 1.4rem;
  padding: 1.5rem;
  border: 1px solid #D5D5D5;
  border-radius: 0.5rem;
}

@media (min-width: 768px) {
  :where(textarea) {
    padding: 2.5rem;
  }
}

@supports (resize: block) {
  :where(textarea) {
    resize: block;
  }
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(ul, ol) {
  list-style: none;
}

:where(a) {
  text-decoration: none;
  color: currentColor;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

:where(a[href], area, button, input, label[for], select, summary, textarea, [tabindex]:not([tabindex*="-"])) {
  cursor: pointer;
  touch-action: manipulation;
  font-family: inherit;
}

:where(input[type=text]) {
  border-radius: 0.5rem;
  height: 4rem;
  font-size: 1.4rem;
  padding: 1.5rem;
  border: 1px solid #D5D5D5;
}

@media (min-width: 768px) {
  :where(input[type=text]) {
    height: 5rem;
    padding: 1.5rem 2.5rem;
  }
}

:where(input[type=file]) {
  cursor: auto;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  cursor: pointer;
}

@media (prefers-reduced-motion: no-preference) {
  :focus-visible {
    transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
  }

  :where(:not(:active)):focus-visible {
    transition-duration: 0.25s;
  }
}

:where(:not(:active)):focus-visible {
  outline-offset: 5px;
}

:where(button, button[type], input[type=button], input[type=submit], input[type=reset]),
:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
  text-align: center;
}

:where(button, button[type], input[type=button], input[type=submit], input[type=reset])[disabled] {
  cursor: not-allowed;
}

p {
  font-size: 14px;
}

p+p {
  margin-top: 1em;
}

@media screen and (min-width: 768px) {
  p {
    font-size: 16px;
  }
}

.min {
  font-family: var(--font-min) !important;
}

.en {
  font-family: var(--font-en) !important;
}

.black {
  color: var(--color-txt) !important;
}

.bg-black {
  background-color: #000 !important;
}

.blue {
  color: var(--color-blue) !important;
}

.bg-blue {
  background-color: var(--color-blue) !important;
}

.gray {
  color: var(--color-gray) !important;
}

.bg-gray {
  background-color: var(--color-gray) !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-mid {
  font-weight: 500 !important;
}

.fw-semi {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.5em;
}

.mt-2 {
  margin-top: 1em;
}

.mt-3 {
  margin-top: 1.5em;
}

.mt-4 {
  margin-top: 2.5em;
}

.mt-5 {
  margin-top: 3em;
}

@media screen and (min-width: 768px) {
  .show_sp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .show_tabpc {
    display: none;
  }
}

@media screen and (max-width: 999px) {
  .show_pc {
    display: none;
  }
}

.sec_inner {
  margin-inline: 5vw;
}

.page-contents+.sec_inner:has(.card_item) {
  margin-top: 7.5rem;
}

@media screen and (min-width: 1000px) {
  .sec_inner {
    max-width: 144rem;
    margin-inline: auto;
    width: 100%;
  }

  .page-contents+.sec_inner:has(.card_item) {
    margin-top: 15rem;
  }
}

.sec_ttl {
  display: flex;
  flex-direction: column;
}

.sec_ttl strong {
  font-family: var(--font-min);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.3;
  color: currentColor;
}

@media screen and (min-width: 768px) {
  .sec_ttl strong {
    font-size: 60px;
  }
}

.sec_ttl span {
  font-family: var(--font-min);
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  letter-spacing: 0.01em;
  color: currentColor;
}

@media screen and (min-width: 768px) {
  .sec_ttl span {
    font-size: 20px;
  }
}

.sec_ttl span::before {
  content: '';
  width: 16px;
  aspect-ratio: 52/27;
  background: url(../img/icon-blue.svg) no-repeat center/100% auto;
  margin-right: 0.5rem;
}

@media screen and (min-width: 768px) {
  .sec_ttl span::before {
    width: 30px;
    margin-right: 1rem;
  }
}

.sec_ttl-inv span::before {
  background-image: url(../img/icon-white-d.svg);
}

.sec_ttl-center {
  align-items: center;
  text-align: center;
}

.btn {
  position: relative;
  display: block;
  padding-block: 0.4rem;
  padding-inline: 0.3rem;
  transition: opacity 0.3s;
}

@media screen and (min-width: 768px) {
  .btn {
    padding-block: 0.5rem;
    padding-inline: 0.4rem;
  }
}

.btn::before {
  content: '';
  width: 100%;
  height: 0.4rem;
  background-color: var(--color-blue);
  position: absolute;
  top: 1px;
  left: 0;
}

@media screen and (min-width: 768px) {
  .btn::before {
    height: 0.5rem;
  }
}

.btn::after {
  content: '';
  width: 100%;
  height: 0.4rem;
  background-color: var(--color-blue);
  position: absolute;
  bottom: 1px;
  left: 0;
}

@media screen and (min-width: 768px) {
  .btn::after {
    height: 0.5rem;
  }
}

.btn span {
  background-color: var(--color-blue);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 37px;
  font-size: 15px;
  font-weight: 700;
  padding: 0 20px;
}

@media screen and (min-width: 768px) {
  .btn span {
    min-height: 50px;
    font-size: 18px;
  }
}

.btn span:after {
  content: '';
  flex: none;
  width: 14px;
  height: 14px;
  margin-left: 0.5em;
  background: url(../img/arrow.svg) no-repeat center/100% auto;
}

@media screen and (min-width: 768px) {
  .btn span:after {
    width: 17px;
    height: 17px;
  }
}

.btn-white:before,
.btn-white::after {
  background-color: #fff;
}

.btn-white span {
  background-color: #fff;
  color: var(--color-dark-blue);
}

.btn-white span:after {
  background-image: url(../img/arrow_blue.svg);
}

.btn-mid {
  width: fit-content;
}

.btn-lg {
  padding-block: 0.6rem;
}

@media screen and (min-width: 768px) {
  .btn-lg {
    padding-block: 1rem;
  }
}

.btn-lg::before,
.btn-lg::after {
  height: 0.6rem;
}

@media screen and (min-width: 768px) {
  .btn-lg::before,
  .btn-lg::after {
    height: 1rem;
  }
}

.btn-lg span {
  min-height: 35px;
  font-size: 18px;
}

.btn-lg span span {
  display: contents;
  min-height: 1em;
  padding: 0;
  font-size: 0.8em;
}

.btn-lg span span::after {
  display: none;
}

@media screen and (min-width: 768px) {
  .btn-lg span {
    min-height: 7rem;
    font-size: 2.5rem;
    padding-left: 3.5rem;
    padding-right: 2.5rem;
  }
}

.btn-center {
  margin-inline: auto;
}

@media screen and (max-width: 767px) {
  .btn.sp-center {
    margin-inline: auto;
  }
}

@media (hover) {
  .btn:hover {
    opacity: 0.7;
  }
}

.btn-download {
  position: relative;
  display: block;
  padding-block: 0.4rem;
  padding-inline: 0.3rem;
  transition: opacity 0.3s;
}

@media screen and (min-width: 768px) {
  .btn-download {
    padding-block: 0.5rem;
    padding-inline: 0.4rem;
  }
}

.btn-download::before {
  content: '';
  width: 100%;
  height: 0.4rem;
  background-color: var(--color-dark-blue);
  position: absolute;
  top: 1px;
  left: 0;
}

@media screen and (min-width: 768px) {
  .btn-download::before {
    height: 0.5rem;
  }
}

.btn-download::after {
  content: '';
  width: 100%;
  height: 0.4rem;
  background-color: var(--color-dark-blue);
  position: absolute;
  bottom: 1px;
  left: 0;
}

@media screen and (min-width: 768px) {
  .btn-download::after {
    height: 0.5rem;
  }
}

.btn-download span {
  background-color: var(--color-dark-blue);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 47px;
  font-size: 18px;
  font-weight: 700;
  padding-left: 2.4rem;
  padding-right: 2.2rem;
}

@media screen and (min-width: 768px) {
  .btn-download span {
    height: 7rem;
    font-size: 2.4rem;
    padding-left: 3.5rem;
    padding-right: 3rem;
  }
}

.btn-download span:after {
  content: '';
  width: 17px;
  height: 17px;
  background: url(../img/icon_download.svg) no-repeat center/100% auto;
}

@media screen and (min-width: 768px) {
  .btn-download span:after {
    width: 30px;
    height: 30px;
  }
}

@media (hover) {
  .btn-download:hover {
    opacity: 0.7;
  }
}

.btn-download-mid span {
  font-size: 16px;
}

@media screen and (min-width: 768px) {
  .btn-download-mid span {
    font-size: 18px;
    padding-left: 22px;
    padding-right: 20px;
    height: 47px;
  }
}

@media screen and (min-width: 768px) {
  .btn-download-mid span:after {
    width: 17px;
    height: 17px;
    margin-left: 17px;
  }
}

.txt {
  font-size: 15px;
  line-height: 1.86;
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .txt {
    font-size: 20px;
    line-height: 2;
  }
}

.txt-link {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--color-dark-blue);
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .txt-link {
    font-size: 18px;
  }
}

.txt-link:before {
  content: '';
  background: url(../img/arrow_blue.svg) no-repeat center/100% auto;
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 0.8rem;
}

@media screen and (min-width: 768px) {
  .txt-link:before {
    width: 1.6rem;
    height: 1.6rem;
    margin-right: 1rem;
  }
}

.txt-link-right {
  justify-content: flex-end;
}

@media (hover) {
  .txt-link:hover {
    text-decoration: underline;
    text-underline-offset: 0.3em;
  }
}

@media screen and (min-width: 768px) {
  main {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
  }
}

/*------------------------
header
-------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: background-color 0.3s ease;
}

.header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  height: 100%;
  padding: 0.75vw 0;
}

.header_logo {
  line-height: 1;
}

.header_logo a {
  display: block;
  padding-inline: min(2rem, 20px);
}

.header_logo img {
  width: clamp(180px, 50vw, 300px);
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(173deg) brightness(112%) contrast(102%);
}

@media screen and (max-width: 999px) {
  .header_nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100dvh;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.3s ease-in;
    z-index: 100;
  }
}

@media screen and (max-width: 999px) {
  .header_nav:before {
    content: '';
    width: 100%;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    left: 0;
  }
}

.header_nav_item {
  position: relative;
}

@media screen and (max-width: 767px) {
  .header_nav_item {
    width: 23.6rem;
  }
}

@media screen and (max-width: 999px) {
  .header_nav_item {
    width: 30rem;
    background-color: #fff;
    padding: 6.5rem 2rem 2.5rem;
    margin-left: auto;
    min-height: 100dvh;
    transition: 0.3s ease-in;
    transform: translateX(100%);
  }

  .header_nav_item>li>a {
    display: block;
    font-size: min(2rem, 20px);
    font-weight: 400;
    padding-block: 1rem;
    align-items: center;
    line-height: 1;
    position: relative;
  }

  .header_nav_item>li+li {
    margin-top: 1em;
  }

  .header_nav_item>li>a.ac_btn span {
    width: 100%;
    height: 100%;
  }

  .header_nav_item>li>a.ac_btn span:before {
    content: '';
    width: 1.4rem;
    height: 0.2rem;
    background-color: var(--color-blue);
    border-radius: 0.2rem;
    position: absolute;
    right: 1.2rem;
    top: calc(50% - 0.1rem);
  }

  .header_nav_item>li>a.ac_btn span:after {
    content: '';
    height: 1.4rem;
    width: 0.2rem;
    background-color: var(--color-blue);
    border-radius: 0.2rem;
    position: absolute;
    right: 1.8rem;
    top: calc(50% - 0.7rem);
    transition: opacity ease 0.3sa;
  }

  .header_nav_item>li>a.ac_btn.is-open span:after {
    opacity: 0;
  }
}

@media screen and (min-width: 1000px) {
  .header_nav_item {
    display: flex;
  }

  .header_nav_item>li>a {
    display: block;
    padding: 0.5em 0;
    color: #fff;
    font-size: max(1.6rem, 16px);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
    white-space: nowrap;
  }

  .header_nav_item>li:not(.header_nav-contact):not(.header_nav-lang) a {
    padding-inline: 1.8rem;
    position: relative;
  }

  .header_nav_item>li:not(.header_nav-contact):not(.header_nav-lang) a:after {
    content: '';
    width: 0;
    height: 1px;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 1.8rem;
    transition: 0.3s ease;
  }
}

@media screen and (min-width: 1000px) and (hover) {
  .header_nav_item>li:not(.header_nav-contact):not(.header_nav-lang):not(.has-dropdown) a:hover:after {
    width: calc(100% - 3.6rem);
  }
}

.header_nav_v2 {
  padding-block: 0;
}

@media screen and (min-width: 1000px) {
  .header_nav_v2 {
    display: none;
  }
}

.header_nav_v2 a {
  display: block;
  padding: 0.5rem 0 0.5rem 2rem;
}

@media screen and (min-width: 1000px) {
  .header_nav-contact {
    padding-left: 1.8rem;
  }
}

@media screen and (min-width: 1000px) {
  .header_nav-contact a {
    background-color: var(--color-blue);
    min-width: 10em;
    border: 2px solid var(--color-blue);
    transition: 0.3s;
  }
}

@media (hover) {
  .header_nav-contact a:hover {
    background-color: #fff;
    color: #000 !important;
  }
}

.header_nav-lang select {
  appearance: none;
  position: relative;
  min-width: 10em;
  height: 100%;
  padding: 0 10px;
  background: var(--color-dark-blue);
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}

.header_nav-lang select:focus {
  outline: none;
}

.header.open .btn-drawer {
  z-index: 110;
  filter: brightness(0) saturate(100%) invert(11%) sepia(97%) saturate(3334%) hue-rotate(231deg) brightness(76%) contrast(94%);
}

.header.open .header_nav {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
}

.header.open .header_nav_item {
  transform: translateX(0);
}

.header.scroll {
  background-color: #fff;
}

.header.scroll .header_logo img {
  filter: none;
  vertical-align: baseline;
}

@media screen and (min-width: 1000px) {
  .header.scroll .header_nav_item>li:not(.header_nav-contact):not(.header_nav-lang)>a {
    color: var(--color-txt);
  }
}

.header.scroll .btn-drawer img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(875%) hue-rotate(149deg) brightness(79%) contrast(92%);
}

.btn-drawer {
  display: flex;
  align-items: center;
  padding-right: min(1.2rem, 12px);
}

@media screen and (min-width: 1000px) {
  .btn-drawer {
    display: none;
  }
}

.btn-drawer img {
  width: 40px;
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.16));
}

.dropdown-link:before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  margin-right: 0.5em;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(135deg);
}

.header.scroll .dropdown-link:before {
  border-top: 1px solid var(--color-dark-blue);
  border-right: 1px solid var(--color-dark-blue);
}

.has-dropdown {
  position: relative;
}

.has-dropdown::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 13px;
}

.desktop-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  background: var(--color-blue);
  padding: 3rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  z-index: 999;
  display: none;
  left: 100%;
  transform: translateX(-40%);
  line-height: 1.2;
}

@media (min-width: 999px) {
  .has-dropdown:hover .desktop-dropdown {
    display: flex;
  }
}

.desktop-dropdown .dropdown-item {
  display: block;
  color: #fff;
}

.desktop-dropdown .dropdown-item:last-child {
  margin-bottom: 0;
}

.desktop-dropdown img {
  display: block;
  max-width: 160px;
}

.dropdown-item {
  transition: 0.3s all;
}

.dropdown-item:hover {
  opacity: 0.8;
}

.desktop-dropdown .label {
  display: block;
  margin-top: 0.5em;
  font-size: max(1.6rem, 16px);
  font-weight: 400;
}

.l-dropdown__ttl {
  color: #fff;
}

.l-dropdown__ttl span:first-child {
  font-family: var(--font-min);
  font-size: 20px;
  width: 120px;
}

.l-dropdown__ttl span:nth-child(2) {
  margin-top: -0.3em;
  font-size: 15px;
  font-family: var(--font-min);
  font-weight: 600;
  opacity: 0.5;
  line-height: 3;
}

.l-dropdown__ttl span {
  display: block;
}

/*------------------------
footer
-------------------------*/
.footer {
  position: relative;
  background-color: var(--color-blue);
  color: #fff;
  margin-top: auto;
}

.footer_main {
  padding: 5rem 2rem 4rem;
  display: grid;
}

@media screen and (min-width: 768px) {
  .footer_main {
    padding: 10rem 8rem 4rem;
  }
}

@media screen and (min-width: 1000px) {
  .footer_main {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 2.5vw;
    padding: 10rem 8rem;
    width: 100%;
    max-width: 160rem;
    margin-inline: auto;
  }
}

.footer_nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-self: start;
  row-gap: 5rem;
}

@media screen and (min-width: 768px) {
  .footer_nav {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer_nav li {
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}

.footer_nav li a {
  display: block;
  max-width: 100%;
  padding-inline: 1.2rem;
}

@media screen and (min-width: 768px) {
  .footer_nav li a {
    max-width: 12em;
  }
}

@media (hover) {
  .footer_nav li a:hover {
    text-decoration: underline;
    text-underline-offset: 0.2em;
  }
}

.footer_nav_v1 {
  color: rgba(255, 255, 255, 0.65);
  font-size: max(1.8rem, 18px);
  font-weight: 500;
  padding-bottom: 1.5rem;
  pointer-events: none;
}

@media screen and (min-width: 1000px) {
  .footer_nav_v1 {
    font-size: max(2rem, 20px);
    padding-bottom: 2rem;
  }
}

.footer_nav_v2 {
  font-size: 14px;
  font-weight: 400;
  padding-block: 1.0rem;
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  .footer_nav_v2 {
    font-size: 15px;
  }
}

@media screen and (min-width: 1000px) {
  .footer_nav_v2 {
    font-size: 16px;
  }
}

.footer_logo {
  text-align: center;
  margin-top: 6.5rem;
  margin-bottom: 2.5rem;
}

@media screen and (min-width: 1000px) {
  .footer_logo {
    margin-top: 0;
    margin-bottom: 0;
    text-align: left;
  }
}

.footer_logo img {
  width: 175px;
}

@media screen and (min-width: 1000px) {
  .footer_logo img {
    width: 240px;
  }
}

.foooter_address {
  display: flex;
  gap: 1.5em;
  margin-top: 1em;
}

.foooter_address div {
  margin-top: 1em;
  font-size: 0.875em;
  text-align: left;
  line-height: 1.6;
  opacity: 0.85;
}

.foooter_address div span {
  font-weight: bold;
}

@media screen and (max-width: 1365px) {
  .foooter_address {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
  }
  .foooter_address div {
    width: 23em;
  }
  .foooter_address div br:nth-child(odd) {
    display: none;
  }
}

.footer_iso {
  margin: 5rem auto 0;
}

.footer_iso img {
  max-width: 210px;
}

@media screen and (max-width: 999px) {
  .footer_iso img {
    width: 50%;
  }
}

.footer_sns {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 0.5rem;
}

@media screen and (min-width: 1000px) {
  .footer_sns {
    position: absolute;
    left: calc(50% - 80rem);
    bottom: 0.5rem;
    width: 100%;
    max-width: 160rem;
    margin-inline: auto;
    padding-inline: 8rem;
    justify-content: flex-start;
  }
}

.footer_sns a {
  padding: 1rem;
}

.footer_sns img {
  width: 4rem;
}

.footer_copyright {
  background: var(--color-dark-blue);
  padding-block: 1rem;
}

@media screen and (min-width: 1000px) {
  .footer_copyright {
    padding-block: 2.8rem;
  }
}

.footer_copyright p {
  font-size: 12px;
  line-height: 1;
  text-align: center;
}

@media screen and (min-width: 1000px) {
  .footer_copyright p {
    font-size: 14px;
    text-align: right;
    padding-right: 10.5rem;
    width: 100%;
    max-width: 160rem;
    margin-inline: auto;
  }
}

.pagetop {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 1;
  width: 50px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s ease-in;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .pagetop {
    width: 60px;
    bottom: 0.5rem;
    right: 0.5rem;
  }
}

.pagetop.is-active {
  opacity: 0.5;
  visibility: visible;
  pointer-events: visible;
}

/*------------------------
animation
-------------------------*/
.img-fade {
  position: relative;
  opacity: 0;
  transition: 0.5s;
}

.img-fade.show {
  opacity: 1;
}

.fadeIn {
  opacity: 0;
  transform: translateY(2rem);
  transition: 0.5s ease-out;
}

.fadeIn.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fade {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.card_item {
  margin-top: 2rem;
  display: grid;
  row-gap: 5rem;
}

@media screen and (min-width: 768px) {
  .card_item {
    grid-area: 2/1/3/3;
    margin-top: 5rem;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
  }
}

.card_item li a {
  display: block;
  transition: 0.3s;
}

@media (hover) {
  .card_item li a:hover {
    opacity: 0.7;
  }
}

.card_item li figure img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .card_item li figure img {
    width: 100%;
  }
}

.card_item li .btn {
  width: 25.2rem;
  margin-inline: auto;
  margin-top: -2.2rem;
  margin-bottom: 2rem;
  line-height: 1.2;
}

@media screen and (min-width: 768px) {
  .card_item li .btn {
    width: 85.5%;
    margin-top: -4rem;
  }
}

@media (hover) {
  .card_item li .btn:hover {
    opacity: 1;
  }
}

.card_item li .txt {
  padding-inline: 2rem;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .card_item li .txt {
    padding-inline: 0;
    width: 85.5%;
  }
}

/*------------------------
under page
-------------------------*/
.pagehead {
  position: relative;
}

.pagehead figure img {
  width: 100%;
}

.pagehead_ttl {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .pagehead_ttl .sec_inner {
    padding-top: 4.7rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
}

@media screen and (min-width: 1000px) {
  .pagehead_ttl .sec_inner {
    padding-top: 7.8rem;
  }
}

.pagehead h1 {
  color: #fff;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .pagehead h1 {
    width: fit-content;
  }
}

.pagehead h1 strong {
  font-family: var(--font-min);
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.2;
  padding-left: 5rem;
  padding-right: 2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #fff;
  position: relative;
}

@media screen and (min-width: 768px) {
  .pagehead h1 strong {
    font-size: 6rem;
    padding-left: 9rem;
    padding-right: 9.5rem;
    padding-bottom: 2rem;
  }
}

.pagehead h1 strong::before {
  content: '';
  width: 3rem;
  aspect-ratio: 52/27;
  background: url(../img/icon-white.svg) no-repeat center/100% auto;
  position: absolute;
  bottom: -1px;
  left: 0;
}

@media screen and (min-width: 768px) {
  .pagehead h1 strong::before {
    width: 5.2rem;
  }
}

.pagehead h1 span {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  font-family: var(--font-min);
  padding-left: 5rem;
  padding-top: 0.2rem;
  text-transform: capitalize;
}

.pagehead h1 strong span {
  padding-left: 0;
}

@media screen and (min-width: 768px) {
  .pagehead h1 span {
    font-size: 2.4rem;
    padding-left: 9.5rem;
    padding-top: 1rem;
    line-height: 1.3;
  }
}

.pagehead h1 small {
  font-size: 2rem;
  font-family: var(--font-min);
  font-weight: 400;
  padding-left: 5rem;
  padding-bottom: 0.7rem;
  line-height: 1.3;
}

@media screen and (min-width: 768px) {
  .pagehead h1 small {
    font-size: 2rem;
    padding-left: 9.5rem;
    padding-bottom: 1rem;
  }
}

.pagehead nav {
  display: flex;
  flex-direction: column;
  margin-top: 3rem;
  padding-left: 3.8rem;
}

@media screen and (min-width: 768px) {
  .pagehead nav {
    margin-top: 0;
    padding-left: 0;
    padding-right: 20rem;
  }
}

.pagehead nav a {
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  padding-block: 0.4rem;
}

@media screen and (min-width: 768px) {
  .pagehead nav a {
    font-size: 2rem;
    padding-block: 0.6rem;
  }
}

.pagehead nav a::before {
  content: '';
  width: 0.4rem;
  height: 2px;
  border-radius: 2px;
  margin-right: 1.5rem;
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .pagehead nav a::before {
    width: 0.6rem;
    margin-right: 2rem;
  }
}

@media (hover) {
  .pagehead nav a:hover {
    text-decoration: underline;
    text-underline-offset: 0.3em;
  }
}

.breadcrumb {
  display: flex;
  align-items: center;
  padding-top: 1rem;
  margin-bottom: 2rem;
  overflow-x: auto;
}

@media screen and (min-width: 768px) {
  .breadcrumb {
    padding-top: 1.5rem;
    margin-bottom: 7rem;
  }
}

.breadcrumb li {
  font-size: 12px;
  white-space: nowrap;
}

.breadcrumb li:first-child {
  margin-left: auto;
}

@media screen and (min-width: 768px) {
  .breadcrumb li {
    font-size: 14px;
  }
}

.breadcrumb li+li::before {
  content: "＞";
  margin-inline: 12px;
}

.breadcrumb li a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

@media (hover) {
  .breadcrumb li a:hover {
    text-decoration: none;
  }
}

.page-sec {
  padding-bottom: 5.5rem;
}

@media screen and (min-width: 768px) {
  .page-sec {
    padding-bottom: 7rem;
  }
}

.page-sec .box_download {
  margin-top: 7rem;
}

@media screen and (min-width: 768px) {
  .page-sec .box_download {
    margin-top: 9rem;
  }
}

/*------------------------
floater bnr
-------------------------*/
.cta_bnr {
  position: fixed;
  right: 6.5rem;
  bottom: 1rem;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s ease;
}

@media screen and (min-width: 768px) {
  .cta_bnr {
    right: 7rem;
  }
}

.cta_bnr button {
  width: 2rem;
  height: 2rem;
  position: absolute;
  bottom: calc(100% + 0.5rem);
  right: 0;
}

.cta_bnr button::before {
  content: '';
  width: 1.6rem;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: calc(50% - 0.8rem);
  transform: rotate(45deg);
}

.cta_bnr button::after {
  content: '';
  width: 1.6rem;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: calc(50% - 0.8rem);
  transform: rotate(-45deg);
}

@media (hover) {
  .cta_bnr button:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
  }
}

.cta_bnr.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
}

.floater {
  width: 100%;
}

.floater a {
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  background: url(../img/bnr_bg.webp) no-repeat center/cover;
  padding: 15px;
}

@media screen and (min-width: 768px) {
  .floater a {
    padding: 20px;
  }
}

@media (hover) {
  .floater a:hover {
    opacity: 0.7;
  }
}

.floater_detail {
  flex: 1;
  padding-right: 8px;
}

.floater_detail p {
  color: #fff;
  font-size: 11px;
  font-weight: 400;
  margin-bottom: 15px;
}

@media screen and (min-width: 768px) {
  .floater_detail p {
    font-size: 13px;
  }
}

.floater_detail .btn-download span {
  font-size: 14px;
  height: 3.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media screen and (min-width: 768px) {
  .floater_detail .btn-download span {
    font-size: 16px;
    height: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.floater_detail .btn-download span:after {
  width: 15px;
}

@media screen and (min-width: 768px) {
  .floater_detail .btn-download span:after {
    width: 18px;
  }
}

.floater figure img {
  width: 6rem;
}

@media screen and (min-width: 768px) {
  .floater figure img {
    width: 7.4rem;
  }
}

/*------------------------
TOP
-------------------------*/
.kv {
  width: 100%;
  height: 100dvh;
  position: relative;
  background: #111;
}

.kv_img {
  height: 100%;
}

.kv_img .splide__track,
.kv_img .splide__list,
.kv_img .splide__slide {
  height: 100%;
}

.kv_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kv_ttl {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5vw;
  color: #fff;
}

.kv_ttl h1 {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  font-size: min(11.85vw, 10rem);
  line-height: 1;
}

.kv_ttl h1 img {
  width: max(300px, 50vw);
}

/*
.kv_ttl h1 .size-l {
  margin-top: -0.075em;
}

.kv_ttl h1 span {
  opacity: 0.1;
  scale: 1.2;
  display: inline-block;
  filter: blur(10px);
  transition: 0.4s linear;
}

.kv_ttl h1 span:nth-child(1) {
  transition-delay: 0.12s;
}

.kv_ttl h1 span:nth-child(2) {
  transition-delay: 0.24s;
}

.kv_ttl h1 span:nth-child(3) {
  transition-delay: 0.36s;
}

.kv_ttl h1 span:nth-child(4) {
  transition-delay: 0.48s;
}

.kv_ttl h1 span:nth-child(5) {
  transition-delay: 0.6s;
}

.kv_ttl h1 span:nth-child(6) {
  transition-delay: 0.72s;
}

.kv_ttl h1 span:nth-child(7) {
  transition-delay: 0.84s;
}

.kv_ttl h1 span:nth-child(8) {
  transition-delay: 0.96s;
}

.kv_ttl h1 span:nth-child(9) {
  transition-delay: 1.08s;
}

.kv_ttl h1 span:nth-child(10) {
  transition-delay: 1.2s;
}
*/

/*20260129start*/
/*.kv_ttl h1 span:nth-child(11) {
  transition-delay: 1.32s;
}

.kv_ttl h1 span:nth-child(12) {
  transition-delay: 1.44s;
}

.kv_ttl h1 span:nth-child(13) {
  transition-delay: 1.56s;
}

.kv_ttl h1 span:nth-child(14) {
  transition-delay: 1.68s;
}

.kv_ttl h1 span:nth-child(15) {
  transition-delay: 1.8s;
}

.kv_ttl h1 span:nth-child(16) {
  transition-delay: 1.92s;
}

.kv_ttl h1 span:nth-child(17) {
  transition-delay: 2.04s;
}

.kv_ttl h1 span:nth-child(18) {
  transition-delay: 2.16s;
}

.kv_ttl h1 span:nth-child(19) {
  transition-delay: 2.28s;
}

.kv_ttl h1 span:nth-child(20) {
  transition-delay: 2.4s;
}

.kv_ttl h1 span:nth-child(21) {
  transition-delay: 2.52s;
}

.kv_ttl h1 span:nth-child(22) {
  transition-delay: 2.64s;
}

.kv_ttl h1 span:nth-child(23) {
  transition-delay: 2.76s;
}

.kv_ttl h1 span:nth-child(24) {
  transition-delay: 2.88s;
}

.kv_ttl h1 span:nth-child(25) {
  transition-delay: 3.0s;
}

.kv_ttl h1 span:nth-child(26) {
  transition-delay: 3.12s;
}
*/
/*20260129end*/

@media screen and (min-width: 768px) {
  .kv_ttl h1 {
    justify-content: left;
  }
}

.kv_ttl p {
  margin-top: 1.5em;
  font-size: min(3.75vw, 3.15rem);
  font-weight: 600;
  opacity: 1;
  transition: 0.8s ease 0.6s;
}

.kv_scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 2rem;
  display: flex;
  align-items: flex-end;
}

.kv_scroll:after {
  content: "Scroll";
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--font-min);
  letter-spacing: 0.01em;
  padding-left: 1rem;
  line-height: 1;
  color: #fff;
}

.loaded .kv_ttl h1 span {
  display: flex;
  opacity: 1;
  scale: 1;
  filter: blur(0);
  text-shadow: 0 0 0.75em #003;
}

.loaded .kv_ttl h1 span.size-s {
  opacity: 1;
}

.top_sec .sec_inner {
  padding-top: 3.4rem;
  padding-bottom: 5rem;
}

@media screen and (min-width: 768px) {
  .top_sec .sec_inner {
    padding-top: 9rem;
    padding-bottom: 10rem;
  }
}

.top_philosophy {
  background-color: #000;
  padding: 2rem;
}

@media screen and (min-width: 768px) {
  .top_philosophy {
    padding: 4rem 2rem;
    margin-top: -1px;
  }
}

.top_philosophy_inner {
  background: url(../img/top/bg_philosophy_sp.webp) no-repeat center/cover #fff;
  filter: drop-shadow(7px 7px 30px rgba(0, 0, 0, 0.2));
}

@media screen and (min-width: 768px) {
  .top_philosophy_inner {
    background-image: url(../img/top/bg_philosophy.webp);
    filter: drop-shadow(10px 0 30px rgba(0, 0, 0, 0.2));
  }
}

.top_philosophy_detail {
  margin-top: 2.5rem;
}

@media screen and (min-width: 768px) {
  .top_philosophy_detail {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.top_philosophy_img {
  position: relative;
  z-index: 0;
  margin-bottom: 10rem;
}

.top_philosophy_img span {
  display: block;
}

.top_philosophy_img span:nth-child(1) {
  position: relative;
  z-index: 2;
}

.top_philosophy_img span:nth-child(1) img {
  width: 18.5rem;
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .top_philosophy_img span:nth-child(1) img {
    width: 70rem;
    max-width: 100%;
  }
}

.top_philosophy_img span:nth-child(2) {
  position: absolute;
  top: 9.5rem;
  left: 10.3rem;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .top_philosophy_img span:nth-child(2) {
    display: none;
  }
}

.top_philosophy_img span:nth-child(2) img {
  width: 12rem;
}

.top_philosophy_img span:nth-child(3) {
  position: absolute;
  top: 3.3rem;
  right: 0;
}

@media screen and (min-width: 768px) {
  .top_philosophy_img span:nth-child(3) {
    display: none;
  }
}

.top_philosophy_img span:nth-child(3) img {
  width: 9.1rem;
}

.top_philosophy_img img {
  filter: drop-shadow(7px 7px 30px rgba(0, 0, 0, 0.2));
}

@media screen and (min-width: 768px) {
  .top_philosophy_img img {
    filter: drop-shadow(10px 0 30px rgba(0, 0, 0, 0.2));
  }
}

@media screen and (min-width: 768px) {
  .top_philosophy_lead {
    padding-left: 9rem;
    margin-top: -14rem;
  }

  .lang-th .top_philosophy_lead,
  .lang-vi .top_philosophy_lead {
    margin-top: -5rem;
  }
}

@media screen and (min-width: 1000px) {
  .top_philosophy_lead {
    padding-left: 13rem;
    /*margin-top: -12rem;*/
    margin-top: 0;
  }
}

.top_philosophy_lead .btn {
  margin-top: 3rem;
}

@media screen and (min-width: 768px) {
  .top_philosophy_lead .btn {
    margin-top: 2rem;
  }
}

.top_philosophy_pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .top_philosophy_pc {
    display: flex;
    flex-direction: column-reverse;
    row-gap: 3rem;
    margin-top: 2.5rem;
  }
}

@media screen and (min-width: 1000px) {
  .top_philosophy_pc {
    display: grid;
    grid-template-columns: 33rem 26rem;
    align-items: flex-start;
    column-gap: 3.7rem;
    margin-left: -4rem;
  }
}

.top_philosophy_pc span {
  display: block;
}

@media screen and (min-width: 768px) {
  .top_philosophy_pc span:nth-child(1) {
    width: 33rem;
  }
}

@media screen and (min-width: 1000px) {
  .top_philosophy_pc span:nth-child(1) {
    margin-top: 13.5rem;
  }
}

@media screen and (min-width: 768px) {
  .top_philosophy_pc span:nth-child(2) {
    width: 26rem;
    margin-left: auto;
  }
}

.top_philosophy_pc img {
  filter: drop-shadow(7px 7px 30px rgba(0, 0, 0, 0.2));
}

@media screen and (min-width: 768px) {
  .top_philosophy_pc img {
    width: 100%;
    filter: drop-shadow(10px 0 30px rgba(0, 0, 0, 0.2));
  }
}

.top_feature {
  color: #fff;
  background-color: var(--color-blue);
}

.top_feature_list {
  margin-top: 4.2rem;
  display: grid;
  row-gap: 5.6rem;
}

@media screen and (min-width: 768px) {
  .top_feature_list {
    row-gap: 5rem;
  }
}

@media screen and (min-width: 768px) {
  .top_feature_list li {
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .top_feature_list li:nth-child(odd) .top_feature_detail {
    flex: 1;
    transform: translateX(12rem);
  }
}

@media screen and (min-width: 1000px) {
  .top_feature_list li:nth-child(odd) .top_feature_detail {
    transform: translateX(18rem);
  }
}

@media screen and (min-width: 768px) {
  .top_feature_list li:nth-child(odd) .top_feature_img {
    width: 66.7%;
  }

  .top_feature_list li:nth-child(even) {
    flex-direction: row-reverse;
  }

  .top_feature_list li:nth-child(even) .top_feature_detail {
    flex: 1;
    padding-left: 5rem;
  }

  .top_feature_list li:nth-child(even) .top_feature_img {
    flex: 1;
  }

  .top_feature_detail {
    position: relative;
    z-index: 1;
  }
}

@media screen and (min-width: 1000px) {
  .top_feature_detail {
    padding-top: 1.5rem;
  }
}

.top_feature_detail span {
  display: block;
  font-family: var(--font-min);
  font-style: italic;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .top_feature_detail span {
    font-size: 7.2rem;
    margin-bottom: 2.4rem;
  }
}

.top_feature_detail h3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  row-gap: 0.3rem;
  margin-bottom: 2.5rem;
}

@media screen and (min-width: 768px) {
  .top_feature_detail h3 {
    row-gap: 0.8rem;
    margin-bottom: 3rem;
  }
}

.top_feature_detail h3 strong {
  background-color: #fff;
  padding: 0.5rem 1rem;
  line-height: 1;
  font-size: min(2.2rem, 22px);
  font-weight: 700;
  color: var(--color-txt);
  filter: drop-shadow(7px 7px 30px rgba(0, 0, 0, 0.2));
}

@media screen and (min-width: 768px) {
  .top_feature_detail h3 strong {
    filter: drop-shadow(10px 0 30px rgba(0, 0, 0, 0.2));
    font-size: min(3.6rem, 36px);
    padding: 0.8rem 1.2rem;
    white-space: nowrap;
  }

  .lang-th .top_feature_detail h3 strong,
  .lang-vi .top_feature_detail h3 strong {
    white-space: normal;
  }

  .top_feature_detail .txt {
    font-size: max(1.6rem, 18px);
  }
}

.top_feature_img {
  margin-top: 2.5rem;
}

@media screen and (min-width: 768px) {
  .top_feature_img {
    margin-top: 0;
  }
}

.top_feature_img img {
  width: 100%;
  filter: drop-shadow(7px 7px 30px rgba(0, 0, 0, 0.2));
}

@media screen and (min-width: 768px) {
  .top_feature_img img {
    filter: drop-shadow(10px 0 30px rgba(0, 0, 0, 0.2));
  }
}

.top_product {
  background: url(../img/top/bg_product_sp.webp) no-repeat center top/cover #e2e3e3;
  padding: 10rem 2rem 4rem;
}

@media screen and (min-width: 768px) {
  .top_product {
    background-image: url(../img/top/bg_product.webp);
    padding: 36rem 2rem 9.5rem;
  }
}

.top_product_inner {
  background: url(../img/top/bg_product2_sp.webp) no-repeat center top/100% auto #E7E7E7;
}

@media screen and (min-width: 768px) {
  .top_product_inner {
    background-image: url(../img/top/bg_product2.webp);
  }

  .top_product .sec_inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-end;
  }

  .top_product .sec_ttl {
    grid-area: 1/1/2/2;
  }
}

.top_product_btn {
  margin-top: 5rem;
}

.top_product_btn .btn-white span {
  gap: 5em;
}

@media screen and (min-width: 768px) {
  .top_product_btn {
    grid-area: 1/2/2/3;
    margin-top: 0;
  }
}

.top_product_btn .btn {
  width: fit-content;
}

@media screen and (min-width: 768px) {
  .top_product_btn .btn {
    margin-left: auto;
  }
}

.box_download {
  background: url(../img/bg_download_sp.webp) no-repeat center/cover;
  text-align: center;
  padding-top: 3.5rem;
  padding-bottom: 4.5rem;
  padding-inline: 2rem;
  margin-top: 2rem;
}

.box_download .sec_ttl strong,
.box_download .sec_ttl span {
  color: #fff;
}

.box_download .sec_ttl span {
  opacity: 0.75;
}

.box_download .sec_ttl strong br {
  display: none;
}

@media screen and (min-width: 768px) {
  .box_download {
    background-image: url(../img/bg_download.webp);
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .box_download .sec_ttl strong {
    font-size: 36px;
  }
  .box_download .sec_ttl strong br {
    display: none;
  }
}

@media screen and (max-width: 540px) {
  .box_download .sec_ttl strong br {
    display: block;
  }
}

.box_download .sec_ttl-inv span::before {
  background-image: url(../img/icon-white-d.svg);
}

.box_download dl {
  margin-top: 3.5rem;
}

@media screen and (min-width: 768px) {
  .box_download dl {
    display: flex;
    justify-content: center;
  }
}

.box_download dl dt {
  margin-bottom: 3.5rem;
}

@media screen and (min-width: 768px) {
  .box_download dl dt {
    margin-bottom: 0;
    width: 36rem;
    margin-right: 6rem;
  }
}

.box_download dl dt img {
  width: min(27rem, 350px);
}

@media screen and (min-width: 768px) {
  .box_download dl dt img {
    width: 100%;
  }
}

.box_download dl dd {
  color: #fff;
  text-align: left;
}

.box_download dl dd p {
  margin-bottom: 3rem;
}

.box_download dl dd p br {
  display: none;
}

@media screen and (min-width: 768px) {
  .box_download dl dd a {
    width: 44rem;
  }

  .box_download dl dd p br {
    display: block;
  }
}

.top_construction {
  background: url(../img/top/bg_construction_sp.webp) no-repeat center top/cover;
  padding: 3rem 2rem;
}

@media screen and (min-width: 768px) {
  .top_construction {
    background-image: url(../img/top/bg_construction.webp);
    padding: 5rem 2rem;
  }
}

.top_construction_item {
  margin-top: 1.7rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media screen and (min-width: 768px) {
  .top_construction_item {
    grid-template-columns: repeat(4, 1fr);
    gap: 5rem;
  }
}

@media screen and (min-width: 1000px) {
  .top_construction_item {
    gap: 8rem;
  }
}

@media screen and (min-width: 768px) {
  .top_construction_item li:nth-child(odd) {
    padding-top: 6rem;
  }
}

.top_construction_item a {
  display: block;
  position: relative;
}

.top_construction_item a figure {
  overflow: hidden;
}

.top_construction_item a figure img {
  width: 100%;
  display: block;
  transition: 0.5s ease;
  transform: scale(1);
}

.top_construction_item a span {
  width: 5rem;
  height: 5rem;
  position: absolute;
  bottom: 0.8rem;
  right: 0.75rem;
}

@media screen and (min-width: 768px) {
  .top_construction_item a span {
    width: 7rem;
    height: 7rem;
    right: 1rem;
    bottom: 1rem;
  }
}

@media screen and (min-width: 1000px) {
  .top_construction_item a span {
    width: 10rem;
    height: 10rem;
  }
}

.top_construction_item a span img {
  width: 100%;
}

.top_construction_item a span:before {
  content: '';
  width: 100%;
  height: 100%;
  background: url(../img/hexagon.svg) no-repeat center/100% auto;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(0);
}

.top_construction_item a h3 {
  position: absolute;
  top: 0;
  right: 1.6rem;
  writing-mode: vertical-rl;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  padding-top: 1.8rem;
}

@media screen and (min-width: 768px) {
  .top_construction_item a h3 {
    font-size: 2.4rem;
  }
}

@media screen and (min-width: 1000px) {
  .top_construction_item a h3 {
    font-size: 3.6rem;
    right: 2.5rem;
    padding-top: 3.4rem;
  }

  .lang-en .top_construction_item a h3,
  .lang-th .top_construction_item a h3,
  .lang-vi .top_construction_item a h3 {
    height: 10em;
  }
}

.top_construction_item a h3::before {
  content: '';
  width: 100%;
  height: 0.4rem;
  background-color: var(--color-blue);
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (min-width: 768px) {
  .top_construction_item a h3::before {
    height: 0.7rem;
  }
}

.top_construction_item a p {
  font-size: 0.8rem;
  color: #fff;
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .top_construction_item a p {
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 1000px) {
  .top_construction_item a p {
    font-size: 1.6rem;
    bottom: 2rem;
    left: 2rem;
  }
}

@media (hover) {
  .top_construction_item a:hover figure img {
    transform: scale(1.1);
  }

  .top_construction_item a:hover span:before {
    animation: rotate 2s linear infinite;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.top_news {
  background: #fff;
  padding: 5rem 2rem;
}

@media screen and (min-width: 768px) {
  .top_news .sec_inner {
    display: grid;
    grid-template-columns: 34.7% 1fr;
    column-gap: 5rem;
  }
}

.top_news_list {
  margin-bottom: 4rem;
}

.top_news_list li {
  border-bottom: 1px solid rgba(51, 51, 51, 0.3);
}

.top_news_list li a {
  display: block;
  padding-block: 1.5rem;
}

@media screen and (min-width: 768px) {
  .top_news_list li a {
    display: grid;
    grid-template-columns: 15em 1fr;
    padding-block: 3rem;
  }
}

.top_news_list li a time {
  display: block;
  color: var(--color-dark-blue);
  font-size: 15px;
  font-family: var(--font-en);
  margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  .top_news_list li a time {
    font-size: 18px;
    padding-left: 2rem;
    margin-bottom: 0;
  }
}

.top_news_list li a h3 {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.86;
}

@media screen and (min-width: 768px) {
  .top_news_list li a h3 {
    font-size: 18px;
  }
}

/*------------------------
Product
-------------------------*/
.page-productList {
  background: url(../img/product/bg_detail_sp.webp) no-repeat center top/100% auto;
}

@media screen and (min-width: 768px) {
  .page-productList {
    background-image: url(../img/product/bg_detail.webp);
  }
}

.inner-white {
  background-color: #fff;
  padding: 3rem 2rem;
}

@media screen and (min-width: 768px) {
  .inner-white {
    padding: 5rem 5rem;
  }
}

@media screen and (min-width: 1000px) {
  .inner-white {
    padding: 7rem 10rem;
  }
}

.column_img {
  display: flex;
  flex-direction: column-reverse;
  padding-block: 3rem;
}

@media screen and (min-width: 768px) {
  .column_img {
    justify-content: center;
    flex-direction: row;
  }
}

.column_img dt {
  margin-top: 2.5rem;
}

@media screen and (min-width: 768px) {
  .column_img dt {
    margin-top: 0;
    width: 31.3%;
    margin-right: 5.6%;
  }
}

.column_img dt img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .column_img dd {
    flex: 1;
  }
}

.column_img dd h2 {
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 768px) {
  .column_img dd h2 {
    margin-bottom: 2.5rem;
  }
}

@media screen and (min-width: 1000px) {
  .column_img dd h2 {
    margin-bottom: 4rem;
  }
}

.column_img dd p {
  font-size: 15px;
  line-height: 1.86;
  font-weight: 400;
}

@media screen and (min-width: 1000px) {
  .column_img dd p {
    font-size: 20px;
  }
}

h1.h1_ttl {
  color: var(--color-blue);
  font-weight: 700;
}

.card_item+h1.h1_ttl {
  margin-top: 3em;
}

/*.page_ttl,*/
.page-body h2:not(.page_ttl, .sec_ttl),
.page-more h2:not(.page_ttl, .sec_ttl) {
  margin-top: 2.5rem;
  font-size: 22px;
}

.page_ttl {
  position: relative;
  padding-bottom: 0.5em;
}

.page_ttl::before,
.page_ttl::after {
  content: '';
  position: absolute;
  left: 1.5em;
  bottom: -5px;
  width: 1.5em;
  background: #e3e3e3;
  height: 5px;
}

.page_ttl::before {
  background: var(--color-blue);
  left: 0;
  width: 1.5em;
}

.page_ttl,
.page-body h2,
.page-more h2 {
  font-size: 24px;
  line-height: 1.3;
}

@media screen and (min-width: 768px) {
  .page-body h2:not(.page_ttl, .sec_ttl),
  .page-more h2:not(.page_ttl, .sec_ttl) {
    font-size: 27px;
    width: fit-content;
  }

  .page-body h2:not(.page_ttl, .sec_ttl),
  .page-more h2:not(.page_ttl, .sec_ttl) {
    margin-top: 7rem;
  }
}

.page-body h2 span {
  line-height: 1.86;
}

@media screen and (min-width: 1000px) {
  .page_ttl,
  .page-body h2,
  .page-more h2 {
    font-size: 36px;
  }
}

.page_ttl_h3 {
  position: relative;
  margin-top: 1.5em;
  padding-left: 1.75em;
  color: var(--color-blue);
  font-size: 18px;
  line-height: 1.3;
}

.page_ttl_h3::before {
  content: '';
  position: absolute;
  top: -0.05em;
  left: 0;
  width: 1.5em;
  height: 1.5em;
  background: url(../img/icon_check.svg) no-repeat 0 0 / contain;
}

@media screen and (min-width: 768px) {
  .page_ttl_h3 {
    font-size: 24px;
  }
}

.page-productDetail {
  background: url(../img/product/bg_detail_sp.webp) no-repeat center top/100% auto;
}

@media screen and (min-width: 768px) {
  .page-productDetail {
    background-image: url(../img/product/bg_detail.webp);
  }
}

.productDetail {
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 2rem;
}

@media screen and (min-width: 768px) {
  .productDetail {
    flex-direction: row;
    margin: 5em 0;
  }

  .productDetail>div {
    flex: 1;
  }
}

.productDetail h2 {
  margin-bottom: 4rem;
}

.productDetail h2 span {
  display: inline-block;
  font-size: 75%;
}

@media screen and (min-width: 768px) {
  .productDetail h2 {
    margin-bottom: 7rem;
  }
}

.productDetail figure {
  width: 100%;
  margin: 3em 0 1.5em 0;
}

@media screen and (min-width: 768px) {
  .productDetail figure {
    width: min(45vw, 640px);
    margin-bottom: 0;
    margin-right: 3rem;
    margin-top: 0;
  }
}

@media screen and (min-width: 1000px) {
  .productDetail figure {
    margin-right: 5rem;
  }
}

.productDetail figure img {
  width: 100%;
}

.productDetail p {
  font-size: 15px;
  line-height: 1.86;
}

.productDetail p.product-type {
  width: fit-content;
  margin-top: 1em;
  padding: 0.75em;
  background: #f0f0f0;
  line-height: 1.2;
}

@media screen and (min-width: 768px) {
  .productDetail p {
    font-size: 16px;
  }
}

@media screen and (min-width: 1000px) {
  .productDetail p {
    font-size: 20px;
  }
}

.page-contents.page-body+.flame_download {
  margin-top: 7rem;
}

.flame_download {
  background: url(../img/bg-cta.webp) no-repeat center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  padding: 30px 60px;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .flame_download {
    width: fit-content;
    margin-top: 10rem;
    margin-inline: auto;
  }
}

.flame_download h2 {
  text-align: center;
  font-family: var(--font-min);
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  margin-top: 0 !important;
  margin-bottom: 2.5rem;
}

@media screen and (min-width: 768px) {
  .flame_download h2 {
    font-size: 32px;
    margin-bottom: 3.8rem;
  }
}

.flame_download a {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .flame_download a {
    width: fit-content;
  }
}

/*------------------------
Company
-------------------------*/
.page-company .sec_ttl {
  color: #0A0A0A !important;
}

.page-company .com_history .sec_ttl {
  color: #fff !important;
}

.page-company .sec_ttl strong {
  font-size: 30px;
}

@media screen and (min-width: 768px) {
  .page-company .sec_ttl strong {
    font-size: 54px;
  }
}

.com_greeting {
  background: url(../img/company/bg_company_sp.webp) no-repeat center bottom/cover;
  margin: 0 0 40px;
  padding: 36px 0 55px;
}

@media screen and (min-width: 768px) {
  .com_greeting {
    background-image: url(../img/company/bg_company.webp);
    background-color: #fff;
    margin: 0 20px 11.6rem;
    filter: drop-shadow(7px 7px 30px rgba(0, 0, 0, 0.2));
    max-width: 156rem;
    padding: 100px 20px;
  }

}

@media screen and (min-width: 1000px) {
  .com_greeting {
    margin: 0 auto 11.6rem;
    padding: 100px 60px;
  }
}

.com_greeting .sec_inner {
  position: relative;
}

@media screen and (min-width: 768px) {
  .com_greeting .sec_inner {
    padding-right: 39.5rem;
  }
}

@media screen and (min-width: 1000px) {
  .com_greeting .sec_inner {
    padding-right: 51.6rem;
  }
}

.com_greeting h3 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.77;
  margin-top: 2.5rem;
  margin-bottom: 2rem;
}

@media screen and (min-width: 768px) {
  .com_greeting h3 {
    margin-top: 7.8rem;
    margin-bottom: 5rem;
    font-size: 20px;
  }
}

@media screen and (min-width: 768px) {
  .com_greeting p {
    font-size: 15px;
  }
}

.com_greeting figure {
  margin-bottom: 2rem;
}

@media screen and (min-width: 768px) {
  .com_greeting figure {
    position: absolute;
    right: 0;
    top: 0;
  }
}

.com_greeting figure img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .com_greeting figure img {
    width: 36.5rem;
  }
}

@media screen and (min-width: 1000px) {
  .com_greeting figure img {
    width: 48.6rem;
  }
}

.com_greeting h4 {
  font-size: 20px;
  font-family: var(--font-min);
  font-weight: 700;
  text-align: right;
  margin-top: 4rem;
}

@media screen and (min-width: 768px) {
  .com_greeting h4 {
    margin-top: 5rem;
    text-align: left;
  }
}

#profile .sec_inner {
  margin-inline: 0;
}

.table_img {
  margin-top: 1.5rem;
}

@media screen and (min-width: 768px) {
  .table_img {
    display: grid;
    grid-template-columns: 44.2rem 1fr;
    column-gap: 5.5rem;
    margin-top: 11.5rem;
  }
}

.table_img dl {
  display: grid;
  grid-template-columns: 10rem 1fr;
}

@media screen and (min-width: 768px) {
  .table_img dl {
    grid-template-columns: 18.5rem 1fr;
    grid-area: 1/2/2/3;
  }
}

.table_img dl dt {
  padding-right: 1.5rem;
}

@media screen and (min-width: 768px) {
  .table_img dl dt {
    padding-right: 2rem;
  }
}

.table_img dl dt,
.table_img dl dd {
  font-size: 15px;
  font-weight: 400;
  line-height: 2.13;
  padding: 1rem;
}

@media screen and (min-width: 768px) {
  .table_img dl dt,
  .table_img dl dd {
    font-size: 16px;
    padding: 2rem;
  }
}

@media screen and (min-width: 1000px) {
  .table_img dl dt,
  .table_img dl dd {
    font-size: 18px;
    padding-block: 3rem;
  }
}

.table_img dl dt:not(:last-of-type),
.table_img dl dd:not(:last-of-type) {
  border-bottom: 1px solid rgba(51, 51, 51, 0.3);
}

.table_img .profile_map {
  display: flex;
  flex-direction: column;
}

.table_img .profile_map+.profile_map {
  margin-top: 1em;
}

.table_img .profile_map iframe {
  width: 100%;
  height: 200px;
}

@media screen and (min-width: 1280px) {
  .table_img .profile_map {
    flex-direction: row;
  }

  .table_img .profile_map iframe {
    width: 300px;
    margin-left: auto;
  }
}

.table_img figure {
  margin-top: 2.5rem;
}

@media screen and (min-width: 768px) {
  .table_img figure {
    grid-area: 1/1/2/2;
    margin-top: 0;
    margin-left: -2rem;
  }
}

@media screen and (min-width: 1000px) {
  .table_img figure {
    margin-left: calc((144rem - 100vw) / 2 + 7px);
  }
}

.table_img figure img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .table_img figure img {
    max-width: none;
    height: 100%;
    object-fit: cover;
  }
}

.table_img dl dd p+p {
  margin-top: 1.5em;
}

.com_history {
  background-color: var(--color-blue);
  margin: 25px 0 65px;
  padding: 36px 0 55px;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .com_history {
    margin: 100px 20px 70px;
    max-width: 156rem;
    padding: 100px 20px;
  }
}

@media screen and (min-width: 1000px) {
  .com_history {
    margin: 100px auto 70px;
    padding: 100px 60px;
  }
}

.com_history_chart {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 7rem 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
}

@media screen and (min-width: 768px) {
  .com_history_chart {
    margin-top: 7.8rem;
    grid-template-columns: 11.8rem 1fr;
  }
}

@media screen and (min-width: 1000px) {
  .com_history_chart {
    grid-template-columns: 15.8rem 1fr;
  }
}

.com_history_chart:after {
  content: '';
  width: 7rem;
  height: 2px;
  background-color: #fff;
  position: absolute;
  bottom: -1px;
  left: 0;
}

@media screen and (min-width: 768px) {
  .com_history_chart:after {
    width: 11.8rem;
  }
}

@media screen and (min-width: 1000px) {
  .com_history_chart:after {
    width: 15.8rem;
  }
}

.com_history_chart dt {
  padding-block: 1.2rem;
  line-height: 1.3;
  font-size: 24px;
  font-family: var(--font-min);
  font-weight: 400;
  text-align: center;
  position: relative;
}

@media screen and (min-width: 768px) {
  .com_history_chart dt {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-block: 1.6rem;
    font-size: 23px;
  }
}

@media screen and (min-width: 1000px) {
  .com_history_chart dt {
    font-size: 30px;
  }
}

.com_history_chart dt:before {
  content: '';
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: -1px;
  left: 0;
}

.com_history_chart dd li {
  padding-block: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-left: 0.7rem;
}

@media screen and (min-width: 768px) {
  .com_history_chart dd li {
    padding-block: 2.45rem;
    display: grid;
    grid-template-columns: 7rem 1fr;
    column-gap: 3.5rem;
    position: relative;
    padding-left: 5.8rem;
  }

  .com_history_chart dd li:before {
    content: '';
    width: 1.3rem;
    height: 1.3rem;
    background-color: #fff;
    position: absolute;
    left: 4.5rem;
    top: 3.4rem;
    border-radius: 50%;
  }

  .com_history_chart dd li:after {
    content: '';
    width: 1px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: -50%;
    left: 5.1rem;
  }

  .com_history_chart dd li:has(+ li):first-child:after {
    height: calc(50% + 2rem);
    background-color: transparent;
    border-left: 1px dashed #fff;
    top: -2rem;
  }
}

.com_history_chart dd em {
  font-style: normal;
  font-family: var(--font-min);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .com_history_chart dd em {
    text-align: right;
  }
}

.com_history_chart dd p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.86;
}

.com_link {
  margin-top: 6.5rem;
}

@media screen and (min-width: 768px) {
  .com_link {
    margin-top: 7rem;
  }
}

.com_link .card_item {
  gap: 4rem;
}



/*------------------------
Quality Policy
-------------------------*/
.iso {
  display: flex;
}

.iso+.iso {
  border-top: 1px solid rgba(51, 51, 51, 0.3)
}

.iso dt {
  min-width: 8em;
  font-weight: 400;
}

.iso dt,
.iso dd {
  padding: 2rem;
  font-size: 14px;
}

.mt-be-columns:has(.iso) .mt-be-column-2 .mt-be-image img {
  margin-inline: auto;
  border: 1px solid #ddd;
}

@media screen and (min-width: 768px) {
  .mt-be-columns:has(.iso) .mt-be-column-2 {
    width: fit-content !important;
  }

  .iso dt,
  .iso dd {
    font-size: 16px;
  }
}



/*------------------------
Inquiry
-------------------------*/
.inquiry iframe {
  margin-top: 5em;
}



/*------------------------
Site_policy
-------------------------*/
.page-site_policy .page-body {
  margin-top: 2.5rem;
}

@media screen and (min-width: 768px) {
  .page-site_policy .page-body {
    margin-top: 7rem;
  }
}

.pp_box {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 1.5em 0;
  padding: 1.5em;
  background: #f0f0f0;
}

.pp_box dt,
.pp_box dd {
  width: 100%;
}

.pp_box dt {
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .pp_box {
    flex-direction: row;
    flex-wrap: wrap;
    width: 32.5em;
  }

  .pp_box dt {
    width: 10em;
  }

  .pp_box dd {
    width: 17.5em;
  }
}

.page-site_policy .btn {
  margin-bottom: 2.5em;
}


/*------------------------
Webpage Common
-------------------------*/

/* ブロックエディタ：h2 */
.page-contents h2:not(.page_ttl) {
  margin-bottom: 1.5em;
  color: var(--color-blue);
}

/* ブロックエディタ：マルチカラム */
.page-contents .mt-be-columns {
  display: flex;
  gap: 0.75rem 2.5%;
  flex-wrap: wrap;
}

.page-contents .mt-be-columns {
  margin-top: 2.5%;
}

.page-contents .mt-be-columns .mt-be-column-2,
.page-contents .mt-be-columns .mt-be-column-3 {
  width: 100%;
}

.page-contents .mt-be-columns figcaption {
  margin-top: 0.5em;
  text-align: center;
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  .page-contents .mt-be-columns .mt-be-column-2 {
    width: calc((100% - 2.5%) / 2)
  }

  .page-contents .mt-be-columns .mt-be-column-3 {
    width: calc((100% - 5%) / 3)
  }

  .page-contents .mt-be-columns .mt-be-column figcaption {
    font-size: 12px;
  }
}

/* ブロックエディタ：リスト */
h2+ul.list-_delivery_record {
  margin-top: 1.5em;
}

ul.list-_delivery_record {
  list-style-position: inside;
  font-size: 14px;
}

ul.list-_delivery_record>li {
  display: flex;
  align-items: center;
  color: var(--color-blue);
  flex-wrap: wrap;
  font-weight: 700;
}

ul.list-_delivery_record>li::before {
  content: '';
  display: block;
  width: 1em;
  height: 1px;
  margin-right: 0.5em;
  background: var(--color-blue);
}

ul.list-_delivery_record + ul.list-_delivery_record,
ul.list-_delivery_record>li+li {
  margin-top: 5rem;
}

ul.list-_delivery_record li ul {
  list-style-position: inside;
  width: 100%;
  padding-left: 1.5em;
}

ul.list-_delivery_record li ul li {
  color: var(--color-txt);
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  ul.list-_delivery_record {
    font-size: 16px;
  }
}

ol.list_quality_policy,
ol.list_site_policy {
  list-style: none inside;
  counter-reset: list-01;
  margin: 1em 0;
  font-size: 14px;
}

ol.list_quality_policy li::before,
ol.list_site_policy li::before {
  counter-increment: list-01;
  content: counter(list-01)'.';
  margin-right: 0.5em;
  color: var(--color-blue);
  font-size: 1.25em;
  font-weight: 700;
}

ol.list_quality_policy li+li,
ol.list_site_policy li+li {
  margin-top: 1em;
}

ol.list_quality_policy li ol {
  list-style: none;
  counter-reset: list-02;
  width: 100%;
  margin: 0 0 1em 0;
  padding-left: 1.5em;
}

ol.list_quality_policy li ol li {
  display: flex;
}

ol.list_quality_policy li ol li::before {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: none;
  counter-increment: list-02;
  content: counter(list-02);
  width: 1.25em;
  height: 1.25em;
  margin: 0.125em 0.25em 0 0;
  background: var(--color-blue);
  color: #fff;
  font-weight: 400;
  text-align: center;
}

ol.list_quality_policy li ol li+li {
  margin-top: 0.5em;
}

@media screen and (min-width: 768px) {
  ol.list_quality_policy,
  ol.list_site_policy {
    font-size: 16px;
  }
}

/* 工事実績 */
.table_rail_achievement {
  width: 100% !important;
  height: auto !important;
  border-collapse: collapse;
  border-spacing: 0;
  margin-top: 1em;
  border-bottom: 1px solid #e3e3e3;
  font-size: 14px;
}

.table_rail_achievement tr {
  width: 100% !important;
  height: auto !important;
}

.table_rail_achievement thead th {
  width: auto !important;
  height: auto !important;
  padding: 0.75em 1em;
  background: var(--color-blue);
  color: #fff;
  text-align: left;
}

.table_rail_achievement tbody th {
  width: auto !important;
  height: auto !important;
  padding: 1em 1em 0;
  border-top: 1px solid #e3e3e3 !important;
  text-align: left;
  line-height: 1.2;
}

.table_rail_achievement td {
  width: auto !important;
  height: auto !important;
  padding: 0.5em 1em 0;
  line-height: 1.2;
}

.table_rail_achievement tr:has(+ tr th) td,
.table_rail_achievement tr:last-child td {
  padding-bottom: 1em;
}

@media screen and (min-width: 768px) {
  .table_rail_achievement {
    font-size: 16px;
  }
}

/* ダウンロードページ */
.table_download {
  width: fit-content;
  border-collapse: collapse;
  border-spacing: 0;
  margin-top: 1em;
  font-size: 14px;
}

.table_download th {
  padding: 0.75em 1em;
  background: var(--color-blue);
  color: #fff;
  text-align: left;
  line-height: 1.2;
}

.table_download tr {
  background: #fff;
  transition: all 0.3s;
}

.table_download tr:has(td):hover {
  background: #f7f7f7;
}

.table_download td {
  padding: 0.5em 1em;
  border-bottom: 1px solid #ddd;
  line-height: 1.2;
}

.table_download td img {
  width: 2em;
  height: auto;
  transition: all 0.3s;
}

.table_download td a img:hover {
  opacity: 0.65;
}

.table_download {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .table_download {
    font-size: 16px;
  }
}

.table_disabled tr td img {
  opacity: 0.2;
  filter: grayscale(1);
}

#_bownow_iframe_sid_74ed435ee7b25ce53dbb {
  margin-top: 1em;
  padding: 2em;
  height: 50em;
  background: #f7f7f7;
}

.catalogue object {
  aspect-ratio: 2 / 3;
}

.catalogue object {
  width: 100%;
  height: 100%;
  margin-top: 1em;
}


/* ニュース一覧 */
.news-sidebar__wrap ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5em;
  margin-bottom: 1.5em;
}

.news-sidebar__wrap ul li * {
  display: block;
  width: 10em;
  padding: 0.125em 1.5em;
  border: 1px solid #ddd;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  transition: .3s all;
}

.news-sidebar__wrap ul li a:hover {
  border: 1px solid var(--color-blue);
}

.news-sidebar__wrap ul li p.nolink {
  background: #eee;
  opacity: 0.7;
}

.news-sidebar__wrap ul li.current * {
  background: var(--color-blue);
  color: #fff;
  border: 1px solid var(--color-blue);
}

@media screen and (min-width: 768px) {
  .news-sidebar__wrap ul li * {
    font-size: 16px;
  }
}

.newslist li {
  padding-inline: 1em;
  border-bottom: 1px solid rgba(51, 51, 51, 0.3);
}

.newslist li:hover {
  background: #edf3fd;
}

.newslist li a {
  display: flex;
  flex-direction: column;
  padding-block: 1.5rem;
}

.newslist li a div {
  display: flex;
  align-items: center;
  gap: 1em;
  width: 100%;
}

.newslist li a div time {
  color: var(--color-dark-blue);
  font-size: 16px;
  font-family: var(--font-en);
}

.newslist li a div .category:not(:empty) {
  width: fit-content;
  padding: 0.125em 0.5em;
  background: #fff;
  border: 1px solid #ddd;
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .newslist li a {
    flex-direction: row;
    padding-block: 3rem;
  }

  .newslist li a div {
    width: 15em;
  }

  .newslist li a div time {
    font-size: 18px;
  }

  .newslist li a div .category:not(:empty) {
    font-size: 14px;
  }
}

.newslist li a h3 {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.86;
}

@media screen and (min-width: 768px) {
  .newslist li a h3 {
    font-size: 18px;
  }
}

.newslistbutton-wrap {
  display: flex;
  margin-top: 1em;
}

.newslistbutton-wrap .btn::before {
  display: none;
}

.newslistbutton-wrap .btn::after {
  height: 1px;
}

.newslistbutton-wrap .newslist__prevbutton {
  margin-right: auto;
}

.newslistbutton-wrap .newslist__nextbutton {
  margin-left: auto;
}

/* ニュース詳細 */
.news .page_ttl {
  margin-bottom: 2rem;
}

.news .page_ttl + .d-flex {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: 1em;
}

.news time {
  color: var(--color-dark-blue);
  font-size: 16px;
}

.news .entry_category:not(:empty) {
  width: fit-content;
  padding: 0.125em 0.5em;
  border: 1px solid #ddd;
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .news .page_ttl + .d-flex {
    margin-bottom: 3em;
  }

  .news .entry_category:not(:empty) {
    font-size: 14px;
  }
}

.news .page-contents p + p {
  margin-top: 1em;
}

.news .page-contents a {
  color: var(--color-dark-blue);
  text-decoration: underline;
  transition: .3s all;
}

.news .page-contents a:hover {
  text-decoration: none;
}

.page-back {
  margin-top: 2em;
  padding-top: 2em;
  border-top: 1px solid #ddd;
}

@media screen and (min-width: 768px) {
  .page-back {
    margin-top: 4em;
    padding-top: 4em;
  }
}



/* 採用情報 */
.page-recruit .page-contents ul li {
  list-style: disc inside;
  margin-top: 1em;
}

.page-recruit .page-contents a {
  color: var(--color-blue);
  text-decoration: underline;
  transition: .3s all;
}

.page-recruit .page-contents a:hover {
  text-decoration: none;
}

.page-recruit .page-contents .mt-be-columns + .mt-be-columns {
  margin-top: 5em;
}

.page-recruit .page-contents .mt-be-columns .mt-be-image {
  margin-top: 1em;
}

@media screen and (min-width: 768px) {
  .page-recruit .page-contents .mt-be-columns .mt-be-image {
    margin-top: 0;
  }
}


/*SS式レール締結装置リスト*/
.itemlist-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: min(5vw, 120px);
}

.side-list {
  padding: 1.5em;
  background: #e1e1e166;
}

.side-list ul li {
  line-height: 1.3;
}

.side-list ul li + li {
  margin-top: 0.75em;
  padding-top: 0.75em;
  border-top: 1px solid #e1e1e1;
}

.side-list ul li a {
  display: flex;
  align-items: center;
  gap: 0.25em;
  height: 100%;
  white-space: nowrap;
}

.side-list ul li a:hover {
  opacity: 0.7;
}

.side-list ul li a::after {
  content: '';
  width: 0.8em;
  height: 0.8em;
  margin-left: auto;
  background: url(../img/arrow_blue.svg) center center no-repeat;
}

.side-list ul li a span {
  width: 10em;
  font-size: 87.5%;
  white-space: normal;
}

@media (max-width: 999px) {
  .itemlist-container {
    flex-direction: column;
  }

  .side-list {
    position: relative;
    width: 100%;
  }

  .itemlist-container .side-list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .side-list ul li {
    width: calc(100% / 3 - 1.5vw);
  }
  
  .side-list ul li:nth-child(-n+3) {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }
}

@media (max-width: 768px) {
  .side-list ul li {
    width: calc(100% / 2 - 1.5vw);
  }
  
  .side-list ul li:nth-child(n+3) {
    margin-top: 0.75em;
    padding-top: 0.75em;
    border-top: 1px solid #e1e1e1;
  }
}

@media (max-width: 540px) {
  .side-list ul li {
    width: 100%;
    font-size: 14px;
  }
    
  .side-list ul li:nth-child(n+2) {
    margin-top: 0.75em;
    padding-top: 0.75em;
    border-top: 1px solid #e1e1e1;
  }
  
  .side-list ul li a span {
    width: auto;
  }
}

@media (min-width: 1000px) {
  .side-list {
    position: sticky;
    top: 100px;
    width: 23.5em;
  }
}



/* 404ページ */
.page-404 .page-contents h2 {
  margin-bottom: 4rem;
}

.page-404 .page-contents p {
  margin-bottom: 4rem;
}

@media screen and (min-width: 768px) {
  .page-404 .page-contents h2 {
    margin-bottom: 7rem;
  }

  .page-404 .page-contents p {
    margin-bottom: 7rem;
  }
}